.hero-section .hero-content{display: flex; padding-top: 110px;}
.hero-section.service.oneday { background-color: #E8FAFF; }
.hero-section.service.subscribe { background-color: #FFF6ED; }
.hero-section.service.store { background-color: #FFFADA; }
.hero-section.service.shop { background-color: #F2FBE2; }
.hero-section.service.oneday .sub-banner-img{width: 392px;}
.hero-section.service.subscribe .sub-banner-img{width: 374px;}
.hero-section.service.store .sub-banner-img{width: 488px;}
.hero-section.service.shop .sub-banner-img{width: 404px;}

/* ==========================================================================
   Service Pricing Section (서비스 요금 안내 & 탭 메뉴)
   ========================================================================== */
.service-pricing-section { padding: 200px 0; }

/* 탭 메뉴 스타일 */
.service-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 100px;
}

.tab-btn {
    padding: 14px 28px;
    border-radius: 30px; /* 둥근 버튼 형태 */
    border: none;
    background-color: #f1f3f5; /* 기본 연한 회색 바탕 */
    color: var(--color-text-main);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--color-text-main); /* 활성화 시 검정 바탕 */
    color: var(--color-white);
}

/* 탭 콘텐츠 전환 */
.tab-content {
    display: none; /* 기본 숨김 처리 */
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block; /* 활성화 시 보임 처리 */
}

/* 서비스 소개 텍스트 */
.service-info {
    margin-bottom: 192px;
}

.service-info-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-info-desc {
    font-size: 22px;
    line-height: 1.6;
}

/* 요금 안내 테이블 영역 */
.pricing-info-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 65px;
    letter-spacing: -0.02em;
}

.pricing-table-wrapper {
    margin-bottom: 65px;
}

/* 요금표 헤더 (중형, 대형 등) */
.pricing-header-row {
    display: flex;
    padding-left: 140px; /* '세단' 라벨의 너비만큼 띄워서 상단 헤더 정렬 맞춤 */
    margin-bottom: 16px;
}

.pricing-header-item {
    width: calc(100%/5); /* 세단, SUV 동일하게 고정 너비 지정 */
    flex-shrink: 0;
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 24px;;
}

/* 요금표 본문 라운드 박스 */
.pricing-body-box {
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea; /* 시안과 같은 은은한 테두리 */
    border-radius: 16px;
    padding: 32px 0;
    box-shadow: 0 0 9px 0 rgb(106 104 104 / 15%);
}

.pricing-car-type {
    width: 140px; /* 라벨 고정 너비 지정 */
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border-right: 1px solid #eaeaea; /* 구분선 */
}

.pricing-prices {
    display: flex;
    flex: 1;
}

.pricing-price-item {
    width: calc(100%/5);
    text-align: center;
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: var(--color-text-main);
}

/* 내부 세차 옵션 배너 (G2, G4 전용) */
  .notice-banner {
    background-color: #FFF2E8; /* 서브컬러 연한 톤 */
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .notice-banner .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #FF8800;
    color: var(--color-white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
  }
  .notice-banner .txt {
    color: #FF8800;
    font-size: 22px;
    font-weight: 600;
  }

/* ==========================================================================
   Event Banner Section (이벤트 배너)
   ========================================================================== */
.event-banner-section {
    width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #4f96ff; /* 시안의 밝고 청량한 파란색 */
    border-radius: 20px; /* 둥근 모서리 */
}

.event-banner-section.store {
    background-color: #FF8235;
}

.event-banner-inner {
    width: 1080px; /* 요청하신 width 전역 변수 적용 */
    max-width: 100%; /* 화면이 변수값보다 작아질 때를 대비한 안전 장치 */
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 0;
    box-sizing: border-box;
}

.event-banner-text {
    color: var(--color-white);
    text-align: left;
}

.event-banner-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 17px;
    letter-spacing: -0.02em;
}

.event-banner-desc {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 31px;
    letter-spacing: -0.02em;
}

.btn-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 1px solid var(--color-white);
    border-radius: 40px;
    color: var(--color-white);
    font-size: 22px;
    transition: all 0.3s ease;
    gap: 28px;
}

/* CSS로 화살표 모양 생성 */
.btn-event::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 1px;
}

.btn-event:hover {
    background-color: var(--color-white);
    color: #4f96ff;
}

.store .btn-event:hover {
    background-color: var(--color-white);
    color: #FF8235;
}

.event-banner-img {
    width: 265px;
}

.event-banner-img img {
    width: 100%;
}

/* ==========================================================================
   Service Process Section (서비스 진행 과정)
   ========================================================================== */
.process-section {
    padding: 200px 0 100px;
    overflow: hidden; /* 슬라이더가 화면 우측을 벗어날 때 가로 스크롤이 생기지 않도록 방지 */
}

.process-header {
    margin-bottom: 90px;
}

.process-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.process-desc {
    font-size: 22px;
    color: var(--color-text-sub);
    line-height: 1.6;
    margin-bottom: 50px;
}

/* 탭 버튼 스타일 */
.process-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 95px;
}

.process-tab-btn {
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
    background-color: #F3F3F3;
    color: var(--color-text-main);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-tab-btn.active {
    background-color: #222; /* 시안처럼 짙은 어두운 회색/검정 */
    color: var(--color-white);
}

/* 탭 콘텐츠 전환 스타일 (마스터 및 서브 탭 공통) */
.process-tab-content,
.master-process-content {
    display: none; /* 기본 숨김 */
}

.process-tab-content.active,
.master-process-content.active {
    display: block; /* 활성화 시 노출 */
}

/* 스와이프 슬라이더 영역 (Swiper 적용) */
.process-slider {
    padding-bottom: 20px;
    /* 우측 여백을 없애고 화면 끝까지 슬라이더 영역 확장 */
    margin-right: calc(-50vw + 50%);
    padding-right: 20px; /* 완전히 끝까지 밀었을 때의 최소 여백 */
}

.process-slide {
    width: 561px; /* 각 슬라이드 고정 너비 (Swiper의 slidesPerView: 'auto'와 함께 사용) */
}

.process-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-text {
    text-align: left;
}

.process-text .slide-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 19px;
    letter-spacing: -0.02em;
}

.process-text .slide-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
    word-break: keep-all; /* 단어 단위로 줄바꿈 */
}

/* ==========================================================================
   App Process Section (서비스 신청 과정)
   ========================================================================== */
.app-process-section {
    padding: 100px 0 0;
    background-color: var(--color-white);
}

.app-process-title {
    font-size: 2rem; /* 32px */
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

/* 정보 안내 박스 */
.app-process-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f4f8ff; /* 시안의 옅은 파란색 배경 */
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 100px;
    margin-top: 52px;
}

.app-process-info .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #4f96ff;
    color: var(--color-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

.app-process-info p {
    font-size: 22px;
    color: #2b70d4; /* 텍스트 파란색 */
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

/* 타임라인 리스트 */
.timeline-list {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
    padding-bottom: 24px; /* 각 단계별 하단 간격 */
}

/* 마지막 요소는 하단 간격 및 연결선 제거 */
.timeline-item:last-child {
    padding-bottom: 0;
}

/* 타임라인 세로 연결선 */
.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px; /* 원의 중앙 위치 계산 (32px의 절반 16px - 선두께 절반 1px) */
    top: 32px; /* 원의 높이 아래부터 시작 */
    bottom: 0;
    width: 1px;
    background-color: #DCDEE3; /* 연한 회색 선 */
    z-index: 1;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-color: #4D5159; /* 시안의 짙은 회색 원 */
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.timeline-content {
    display: flex;
    flex: 1;
    justify-content: space-between;
    margin-top: -2px; /* 텍스트 타이틀과 원의 상단 높이 미세 조정 */
}

.timeline-text {
    flex: 1;
    padding-right: 40px;
}

.timeline-step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.timeline-step-desc {
    font-size: 22px;
    color: #333;
    line-height: 1.6;
    word-break: keep-all;
    letter-spacing: -0.02em;
}

.timeline-img {
    width: 366px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.timeline-img img {
    max-width: 100%;
}

/* ==========================================================================
   Store Intro Banner Section (매장 소개 배너)
   ========================================================================== */
.store-intro-banner {
    background-color: #FFFEF5; /* 시안의 연한 베이지/아이보리 톤 */
    padding: 200px 0;
    text-align: center;
}

.store-intro-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.store-intro-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.store-intro-desc strong {
    font-weight: 700;
    color: #333; /* 강조 텍스트 진하게 처리 */
}

/* ==========================================================================
   Store Care Section (디테일링 매장 케어 서비스)
   ========================================================================== */
.store-care-section {
    padding: 200px 0;
}

.store-care-header {
    text-align: center;
    margin-bottom: 200px;
}

.store-care-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.store-care-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.store-list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 150px;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 90px;
    justify-content: start;
}

.store-img {
    width: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.store-img img {
    width: 100%;
    object-fit: cover;
}

.store-text {
    text-align: left;
}

.store-name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.store-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 45px;
    letter-spacing: -0.02em;
}

.store-info-box {
    background-color: #F9FAFC;
    padding: 40px 35px;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 400px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #555;
    font-weight: 500;
}

.info-row .icon {
    width: 22px;
    height: 22px;
    text-align: center;
}

.info-row .icon img{
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   Reliable Service Section (안심할 수 있는 서비스)
   ========================================================================== */
.reliable-service-section {
    padding: 200px 0;
    background-color: #F9FAFC;
    text-align: center;
}

.reliable-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 74px;
    letter-spacing: -0.02em;
}

.cert-img {
    width: 359px;
    margin: 0 auto;
}

.cert-img img {
    width: 100%;
}

.reliable-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.reliable-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
}
/* ==========================================================================
   Store Service Section (매장 서비스)
   ========================================================================== */
.service-pricing-section.store .process-desc{
    margin-bottom: 80px;
}
.service-pricing-section.store{
    padding-bottom: 0;
}
.process-section.store{
    padding-top: 48px;
    padding-bottom: 200px;
}
.pricing-info.store .pricing-header-item{
    width: calc(100% / 6);
}
.pricing-info.store .suv-cols{
    margin-top: 22px;
}

/* ==========================================================================
   Shop Process Section (쇼핑몰 판매상품 선별과정)
   ========================================================================== */
.shop-process-section {
    padding: 200px 0;
}

.shop-process-main-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 74px;
    letter-spacing: -0.02em;
    text-align: left;
}

.shop-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2단 그리드 */
    gap: 22px;
}

.shop-process-item {
    display: flex;
    flex-direction: column;
}

.shop-process-img {
    flex: 1;
    margin-bottom: 33px;
}

.shop-process-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shop-process-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 19px;
    letter-spacing: -0.02em;
}

.shop-process-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
    word-break: keep-all; /* 단어 단위 줄바꿈 유지 */
}

/* ==========================================================================
   Video Review Section (영상 리뷰)
   ========================================================================== */
.video-review-section {
    padding: 0 0 200px;
}
.video-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 130px;
}

.video-review-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.video-review-desc {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.btn-youtube{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 1px solid var(--color-text-main);
    border-radius: 40px;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.3s ease;
    gap: 12px;
}

.btn-youtube::after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 1px;
}

.btn-youtube:hover {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.review-card-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.review-card {
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px); /* 마우스 오버 시 위로 살짝 떠오름 */
}

/* 2번, 4번 카드 지그재그(아래로 내리기) 효과 */
.review-card.mt-stagger {
    margin-top: 135px; 
}

/* 통이미지 스타일 */
.review-card img {
    width: 100%;
    object-fit: cover; /* 이미지가 카드 영역에 꽉 차게 설정 (비율 유지) */
    display: block;
}

/* ==========================================================================
   Shop Recommend Section (추천 상품 모아보기)
   ========================================================================== */
.shop-recommend-section {
    padding: 200px 0 ;
    background-color: #F9FAFC; /* 시안의 아주 옅은 회색 배경 */
}

.shop-recommend-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.shop-recommend-img {
    width: 306px;
}

.shop-recommend-img img {
    width: 100%;
    display: block;
}

.shop-recommend-text {
    flex: 1;
    text-align: left;
}

.shop-recommend-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.shop-recommend-desc {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 82px;
    letter-spacing: -0.02em;
}

.shop-recommend-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; /* 버튼이 길면 다음 줄로 넘어갈 수 있도록 */
}

.btn-shop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 1px solid var(--color-text-main);
    border-radius: 40px;
    background-color: transparent;
    font-size: 22px;
    transition: all 0.3s ease;
    gap: 9px;
}

.btn-shop-link::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 1px;
}

.btn-shop-link:hover {
    background-color: var(--color-text-main);
    color: var(--color-white);
}