/* ---------- Root & Reset ---------- */
:root {
    --font-family: "Noto Sans KR", sans-serif;
    /* colors */
    --color-text: #222;
    --color-bg: #fff;
    --color-primary: #3D9CE0;
    --color-primaryAlt: #5D82AB;
    --color-accent: #E3E22D;
    --color-heroSub: #578FFF;
    --color-mint: #E7FBF9;
    --color-mintBorder: #B4D3C4;
    --color-muted: #6b7689;
    --color-line: #e3e9f2;
    --color-dashed: #dfe6ef;
    --color-darkFooter: #2D3A4A;
    /* layout */
    --container-max: 1200px;
    --content-max: 1100px;
    --gutter: 20px;
    /* radius & shadow */
    --radius-lg: 16px;
    --radius-xl: 22px;
    --shadow-sm: 0 4px 0 rgba(0, 0, 0, 0.08);
    /* z-index */
    --z-header: 999;
    --z-sticky: 9999;
    --z-modal: 1000;
    /* sizing */
    --sticky-height: 100px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    color: var(--color-text);
}

hr {
    width: 200px;
}

.container {
    max-width: var(--container-max);
    margin-inline: auto;
}

.row {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.col {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* ---------- Header ---------- */
.siteHeader {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
}

.headerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brandLogo {
    inline-size: 96px;
    block-size: auto;
}

.ctaButton {
    appearance: none;
    border: none;
    background: var(--color-primary);
    color: var(--color-accent);
    padding: 10px 14px;
    border-radius: 15px 0 15px 0;
    font-weight: 600;
    cursor: pointer;
}

/* ---------- Hero ---------- */
.heroSection {
    position: relative;
    width: 100%;
    background: #eaf3ff url("./img/back.png") no-repeat right center;
    background-size: cover;
    padding: 60px 0;
    overflow: hidden;
    margin-bottom: 50px;
}

.innerWrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
}

.heroTitle {
    text-align: center;
    margin-bottom: 30px;
}

.heroTitle>h1 {
    color: var(--color-primaryAlt);
    font-size: 42px;
    font-weight: 700;
}

.heroTitle>p {
    color: var(--color-primary);
    font-size: 36px;
    font-weight: 600;
}

.colText {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 20px;
}

.colText>p {
    font-size: 22px;
    font-weight: 400;
}

.colImage {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.colImage img {
    display: block;
    width: 125%;
    height: auto;
    transform: translateX(20%);
    max-width: none;
}

.hashChips {
    display: flex;
    width: fit-content;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
    background: var(--color-primaryAlt);
    border-radius: 999px;
    margin-top: 20px;
    font-size: 18px;
}

.hashChips p {
    margin: 0 16px;
    color: #fff;
    white-space: nowrap;
}

/* ---------- Stats ---------- */
.sectionStats {
    padding: 50px 25px;
}

.statsBorderBox {
    width: 100%;
    padding: 40px 0;
    border: 10px solid var(--color-mintBorder);
    border-radius: 50px;
}

.statsBorderBox .row>div {
    flex: 33.33%;
    text-align: center;
}

.sectionStats .row>div>p {
    font-size: 32px;
    font-weight: 600;
    margin: 15px 0;
}

.sectionStats .row>div>p:nth-child(2) {
    color: var(--color-mintBorder);
}

/* ---------- Divider & Titles ---------- */
.divider {
    margin: 0 auto 30px;
    width: 200px;
}

.dividerPrimary {
    border-top: 4px solid var(--color-primaryAlt);
}

.dividerSecondary {
    border-top: 4px solid var(--color-primary);
}

.sectionTitle {
    text-align: center;
    color: var(--color-primaryAlt);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ---------- Deals / Catalog ---------- */
.sectionDeals {
    padding: 50px 0;
}

.catalogGrid {
    max-width: var(--container-max);
    margin: 40px auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.carCard {
    display: flex;
    flex-direction: column;
}

.carCardMedia {
    background: #f4f6f8;
    border-radius: var(--radius-xl);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carCardMedia img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carCardTitle {
    margin: 14px 0 6px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .2px;
    color: #1d2433;
    text-transform: uppercase;
}

.carCardPrices {
    display: flex;
    gap: 12px 16px;
    flex-wrap: wrap;
}

.price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.priceLabel {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.priceLabelRent {
    background: #3b6cf5;
}

.priceLabelLease {
    background: #ffa93a;
}

.priceVal {
    font-size: 14px;
    color: var(--color-muted);
    white-space: nowrap;
}

.sectionDeals>div>p {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

/* ---------- Features ---------- */
.sectionFeatures {
    padding: 50px var(--gutter);
}

.sectionFeatures>h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
    text-align: center;
}

.sectionFeatures>p {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

.featuresGrid {
    max-width: 1150px;
    margin: 15px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
}

.featuresGrid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px dashed var(--color-dashed);
    transform: translateX(-0.5px);
}

.featuresGrid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px dashed var(--color-dashed);
    transform: translateY(-0.5px);
}

.feature {
    position: relative;
    min-height: 160px;
    padding: 28px 0;
}

.feature h4 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
}

.feature p {
    margin: 0;
    line-height: 1.7;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.featureNo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.06);
    pointer-events: none;
    user-select: none;
}

.featuresGrid>.feature:nth-child(odd) .featureNo {
    right: 16px;

}

.featuresGrid>.feature:nth-child(even) .featureNo {
    left: 16px;
}

.featuresGrid>.feature:nth-child(2),
.featuresGrid>.feature:nth-child(4) {
    padding-left: 0px;

}

/* ---------- Quote & Form ---------- */
.sectionQuote {
    background: var(--color-mint);
    padding: 50px var(--gutter);
}

.quoteBlock {
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: center;
}

.quoteEyebrow {
    margin: 0 0 8px;
    font-size: 42px;
    color: var(--color-primaryAlt);
    font-weight: 700;
}

.quoteTitle {
    margin: 0 0 12px;
    font-size: 42px;
    color: var(--color-primaryAlt);
    font-weight: 700;
}

.quoteSub {
    margin: 0 0 24px;
    font-size: 22px;
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.span3 {
    grid-column: 1 / -1;
}

.field {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 2px solid #cfe5df;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    outline: none;
}

.field:focus {
    border-color: #86b9ad;
    box-shadow: 0 0 0 3px rgba(134, 185, 173, .2);
}

.selectWrap {
    position: relative;
}

.selectWrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.selectArrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-muted);
    font-size: 18px;
}

.agreeRow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7a8693;
    font-size: 18px;
}

.agreeRow input {
    width: 18px;
    height: 18px;
}

.agreeView {
    color: #557c90;
    text-decoration: underline;
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.ctaPrimary {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #406C9D;
    padding: 7px;
    color: var(--color-accent);
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0;
    animation: ctaFlash 1s ease-in-out infinite;
}

@keyframes ctaFlash {

    0%,
    100% {
        background-color: #406C9D;
        /* 기본색 */
        box-shadow: 0 0 0 0 rgba(255, 85, 84, 0);
        /* 무광 */
    }

    50% {
        background-color: #ff5554;
        /* 요청색 */
    }
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
}

.modal[aria-hidden="false"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 0;
}

.modalDialog {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 32px));
    max-height: 90vh;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modal-pop .18s ease-out;
}

@keyframes modal-pop {
    from {
        transform: translateY(8px);
        opacity: .92;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.modalHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eef2f5;
}

.modalHeader h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.modalClose {
    appearance: none;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
}

.modalBody {
    padding: 16px 20px;
    overflow: auto;
    color: #333;
    line-height: 1.7;
}

.modalBody h4 {
    margin: 14px 0 6px;
    font-size: 16px;
}

.dotList {
    margin: 6px 0 10px 1.2em;
    list-style: disc;
}

.dotList li {
    margin: 4px 0;
}

.modalFooter {
    padding: 14px 20px;
    border-top: 1px solid #eef2f5;
    display: flex;
    justify-content: flex-end;
}

.btn {
    height: 42px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: #3f6a98;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

/* ---------- Compare (VS) ---------- */
.sectionCompare {
    padding: 50px 0;
}

.sectionCompare>h2 {
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.sectionCompare>p {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

.sectionVs {
    padding: 50px 0;
}

.compareGrid {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    gap: 40px;
}

.compareGrid .col {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
}

.colCenter {
    flex: 0 0 140px;
    display: flex;
    justify-content: center;
}

.vsImage {
    width: 100%;
    max-width: 140px;
    height: auto;
    display: block;
}

.pill {
    background: #f6e9e7;
    color: #6b6b6b;
    text-align: center;
    padding: 32px 16px;
    margin-bottom: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
}

.pillTop {
    font-weight: 700;
    color: #7a7474;
    font-size: 22px;
}

.pillMid {
    border-bottom: 1px dashed #fff;
    border-top: 1px dashed #fff;
}

.pillBottom {
    font-weight: 700;
    color: #8a7d7c;
}

.panel {
    background: #fff;
    border: 3px solid #8ec3f1;
    border-radius: 14px;
    padding: 32px 0;
    margin-bottom: 0;
    box-shadow: 0 4px 0 rgba(142, 195, 241, 0.45);
    text-align: center;
}

.panelTitle {
    font-weight: 700;
    color: #ff9a1a;
    font-size: 32px;
}

.goLogo {
    width: 40%;
}

.panelPrice {
    display: inline-block;
    margin-top: 10px;
    background: var(--color-primaryAlt);
    color: #fff72e;
    font-weight: 900;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 18px;
}

.vsContent {
    text-align: center;
}

.vsContent p {
    background-color: var(--color-primaryAlt);
    margin: 10px auto 10px auto;
    padding: 10px;
    color: white;
    font-size: 22px;
    border-radius: 999px;
    width: 40%;
}

/* ---------- Promo ---------- */
.sectionPromo {
    background: var(--color-mint);
    position: relative;
    padding: 60px 0;
}

.sectionPromo>div>h2 {
    font-size: 42px;
    color: var(--color-primaryAlt);
    text-align: center;
    margin-bottom: 20px;
}

.sectionPromo>div>p {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
}

.promoInner {
    max-width: var(--container-max);
    margin: 20px auto 0 auto;
    padding: 0 var(--gutter);
    overflow: hidden;
    min-height: 240px;
}

.promoCar {
    display: block;
    width: 110%;
    height: auto;
    transform: translateX(-5%);
}

.promoBill {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.promoBill img {
    width: 450px;
}

/* ---------- Reasons ---------- */
.sectionReasons {
    padding: 48px var(--gutter);
}

.sectionReasons>h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.benefitsGrid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 24px;
    position: relative;
}

.benefitsGrid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(to bottom, var(--color-line) 0 8px, transparent 8px 16px), repeating-linear-gradient(to bottom, var(--color-line) 0 8px, transparent 8px 16px);
    background-size: 2px 100%, 2px 100%;
    background-position: 33.333% 0, 66.666% 0;
    background-repeat: no-repeat;
    pointer-events: none;
}

.benefitsGrid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-1px);
    background-image: repeating-linear-gradient(to right, var(--color-line) 0 8px, transparent 8px 16px);
    pointer-events: none;
}

.benefit {
    text-align: center;
    padding: 8px 20px;
}

.benefitNo {
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    color: #1e9cd7;
    margin-bottom: 10px;
}

.benefitTitle {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

.benefitDesc {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.8;
    font-size: 18px;
    font-weight: 500;
}

/* ---------- Footer ---------- */
.pageFooter {
    background: var(--color-darkFooter);
    color: #cfd6de;
}

.footerInner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 22px var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footerList {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 60px;
}

.footerList>li>strong {
    color: white
}

.footerList li {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.7;
    color: white;
}

.footerBrand img {
    display: block;
    width: 160px;
    height: auto;
    opacity: .9;
}

.banner {
    background-color: black;
    height: 100px;
}

.banner>a>img {
    width: 100%;
    height: 100px;
}

.banner h2 {
    color: white;
    text-align: center;
}


/* ========================================================= ≤ 768px ========================================================= */
@media (max-width: 768px) {

    .headerInner {
        padding: 0 12px;
    }

    .para {
        display: block;
    }

    /* 간격/타이포 살짝 축소 */
    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 34px;
    }

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 18px;
    }

    /* Hero: 좌우 2열 → 1열 */
    .row {
        flex-wrap: wrap;
    }

    .heroSection .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .colImage img {
        width: 100%;
        transform: none;
    }

    .heroTitle>h1 {
        font-size: 36px;
    }

    .heroTitle>p {
        font-size: 28px;
    }

    .hashChips {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 16px;
    }

    .hashChips p {
        margin: 0 10px;
    }

    /* 통계 박스: 줄바꿈 허용 */
    .statsBorderBox .row {
        flex-wrap: wrap;
        gap: 8px 0;
    }

    /* 카탈로그: 3열 → 2열 */
    .catalogGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .carCardMedia {
        height: 200px;
    }

    /* 특장점: 2열 → 1열 (점선 제거) */
    .featuresGrid {
        grid-template-columns: 1fr;
    }

    .featuresGrid::before,
    .featuresGrid::after {
        display: none;
    }

    .feature h4 {
        font-size: 26px;
    }

    .feature p {
        font-size: 18px;
    }

    .featureNo {
        font-size: 96px;
    }

    .featuresGrid>.feature:nth-child(2),
    .featuresGrid>.feature:nth-child(4) {
        padding-left: 0;
    }

    /* 폼: 3열 → 2열 */
    .formGrid {
        grid-template-columns: 1fr 1fr;
    }

    .span3 {
        grid-column: 1 / -1;
    }

    .ctaPrimary {
        font-size: 28px;
        padding: 10px;
    }

    /* 비교 섹션: 3열 → 세로 스택 */
    .compareGrid {
        flex-direction: column;
        gap: 20px;
    }

    .colCenter {
        flex: none;
    }

    .vsImage {
        max-width: 120px;
    }

    .pill {
        font-size: 14px;
    }

    .panelTitle {
        font-size: 24px;
    }

    .panelPrice {
        font-size: 16px;
    }

    /* 비교 하단 포인트 문구 폭 축소 */
    .vsContent p {
        width: 60%;
        font-size: 20px;
    }

    /* 프로모션: 영수증 이미지 세로 정렬 */
    .promoBill {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .promoBill img {
        width: min(100%, 420px);
    }

    /* 이유 섹션: 3열 → 2열 (가이드선 제거) */
    .benefitsGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefitsGrid::before,
    .benefitsGrid::after {
        display: none;
    }

    /* 푸터: 세로 정렬 + 목록 1열 */
    .footerInner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footerList {
        columns: 1;
    }
}

/* ========================================================= ≤ 576px ========================================================= */
@media (max-width: 576px) {

    .para {
        display: block;
    }

    /* 타이틀 더 컴팩트 */
    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 28px;
    }

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 16px;
    }

    /* Hero 텍스트 */
    .heroTitle>h1 {
        font-size: 28px;
    }

    .heroTitle>p {
        font-size: 20px;
    }

    /* 통계 항목 세로 스택 */
    .sectionStats .row>div {
        flex: 1 1 100%;
    }

    /* 카탈로그: 1열 */
    .catalogGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .carCardMedia {
        height: 180px;
    }

    /* 특장점 */
    .feature h4 {
        font-size: 24px;
        text-align: center;
    }

    .feature p {
        font-size: 18px;
        text-align: center;
    }

    .featureNo {
        font-size: 72px;
    }

    /* 폼: 1열 */
    .formGrid {
        grid-template-columns: 1fr;
    }

    .ctaPrimary {
        font-size: 22px;
        padding: 12px;
    }

    /* 비교 섹션 */
    .vsImage {
        max-width: 100px;
    }

    .vsContent p {
        width: 100%;
        font-size: 18px;
    }

    /* 프로모션 이미지 */
    .promoBill img {
        width: 100%;
    }

    /* 이유 섹션: 1열 */
    .benefitsGrid {
        grid-template-columns: 1fr;
    }

    .benefitTitle {
        font-size: 18px;
    }

    .benefitDesc {
        font-size: 16px;
    }

    /* 푸터 중앙 정렬 */
    .footerInner {
        align-items: center;
        text-align: center;
    }

    .footerBrand img {
        margin-top: 6px;
    }
}

/* ========================================================= ≤ 425px ========================================================= */
@media (max-width: 425px) {

    /* 여백 살짝 축소 (var로 전체 반영) */
    :root {
        --gutter: 14px;
    }

    /* 헤더/버튼 */
    .headerInner {
        height: 56px;
    }

    .ctaButton {
        padding: 8px 12px;
        border-radius: 12px 0 12px 0;
    }

    /* 섹션 타이틀/설명 더 컴팩트 */
    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 24px;
    }

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 15px;
    }

    /* Hero */
    .heroTitle>h1 {
        font-size: 24px;
    }

    .heroTitle>p {
        font-size: 18px;
    }

    .colText>p {
        font-size: 18px;
    }

    .hashChips {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 14px;
        padding: 6px 8px;
    }

    .hashChips p {
        margin: 0 8px;
    }

    /* 통계 */
    .sectionStats .row>div>p {
        font-size: 24px;
    }

    /* 카탈로그 (이미 1열: 576px 규칙) — 카드 간격/이미지 높이만 더 축소 */
    .catalogGrid {
        gap: 12px;
    }

    .carCardMedia {
        height: 160px;
        border-radius: 16px;
    }

    .carCardTitle {
        font-size: 18px;
    }

    .priceVal {
        font-size: 13px;
    }

    /* 폼 (이미 1열) — 필드/버튼 더 컴팩트 */
    .formGrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field {
        height: 50px;
        font-size: 15px;
    }

    .ctaPrimary {
        font-size: 20px;
        padding: 12px;
    }

    /* 특장점 */
    .feature h4 {
        font-size: 20px;
    }

    .feature p {
        font-size: 16px;
    }

    .featureNo {
        font-size: 56px;
    }

    /* 비교 섹션 */
    .vsImage {
        max-width: 88px;
    }

    .panelTitle {
        font-size: 20px;
    }

    .panelPrice {
        font-size: 16px;
        padding: 6px 14px;
    }

    .pill {
        padding: 20px 12px;
    }

    /* 프로모션 이미지 (영수증) */
    .promoBill img {
        width: 100%;
    }

    /* 이유 섹션 (이미 1열) — 텍스트 크기 보정 */
    .benefitTitle {
        font-size: 18px;
    }

    .benefitDesc {
        font-size: 16px;
    }

    /* 푸터 */
    .footerInner {
        padding: 18px var(--gutter);
    }

    .footerList li {
        font-size: 13px;
    }

    /* 안전: 고정 배너가 작은 화면에서 넘치지 않도록 */
    .stickyBanner {
        width: min(100%, var(--container-max));
    }


}

/* ========================================================= ≤ 425px ========================================================= */
@media (max-width: 425px) {

    /* 여백 살짝 축소 (var로 전체 반영) */
    :root {
        --gutter: 14px;
    }

    /* 헤더/버튼 */
    .headerInner {
        height: 56px;
    }

    .ctaButton {
        padding: 8px 12px;
        border-radius: 12px 0 12px 0;
    }

    /* 섹션 타이틀/설명 더 컴팩트 */
    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 24px;
    }

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 15px;
    }

    /* Hero */
    .heroTitle>h1 {
        font-size: 24px;
    }

    .heroTitle>p {
        font-size: 18px;
    }

    .colText>p {
        font-size: 18px;
    }

    .hashChips {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 14px;
        padding: 6px 8px;
    }

    .hashChips p {
        margin: 0 8px;
    }

    /* 통계 */
    .sectionStats .row>div>p {
        font-size: 24px;
    }

    /* 카탈로그 (이미 1열: 576px 규칙) — 카드 간격/이미지 높이만 더 축소 */
    .catalogGrid {
        gap: 12px;
    }

    .carCardMedia {
        height: 160px;
        border-radius: 16px;
    }

    .carCardTitle {
        font-size: 18px;
    }

    .priceVal {
        font-size: 13px;
    }

    /* 폼 (이미 1열) — 필드/버튼 더 컴팩트 */
    .formGrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field {
        height: 50px;
        font-size: 15px;
    }

    .ctaPrimary {
        font-size: 20px;
        padding: 12px;
    }

    /* 특장점 */
    .feature h4 {
        font-size: 20px;
    }

    .feature p {
        font-size: 16px;
    }

    .featureNo {
        font-size: 56px;
    }

    /* 비교 섹션 */
    .vsImage {
        max-width: 88px;
    }

    .panelTitle {
        font-size: 20px;
    }

    .panelPrice {
        font-size: 16px;
        padding: 6px 14px;
    }

    .pill {
        padding: 20px 12px;
    }

    /* 프로모션 이미지 (영수증) */
    .promoBill img {
        width: 100%;
    }

    /* 이유 섹션 (이미 1열) — 텍스트 크기 보정 */
    .benefitTitle {
        font-size: 18px;
    }

    .benefitDesc {
        font-size: 16px;
    }

    /* 푸터 */
    .footerInner {
        padding: 18px var(--gutter);
    }

    .footerList li {
        font-size: 13px;
    }

    /* 안전: 고정 배너가 작은 화면에서 넘치지 않도록 */
    .stickyBanner {
        width: min(100%, var(--container-max));
    }
}

/* =========================
   Typography: use rem + fluid root
   붙여넣기 위치: 기존 CSS 맨 아래 (override)
   ========================= */

/* 1) 루트 폰트 크기를 화면에 따라 14px~16px로 유동화 */
html {
    font-size: clamp(14px, 1.5vw + 8px, 16px);
}

/* 2) base(데스크탑) 폰트들 px -> rem 변환 */
.heroTitle>h1 {
    font-size: 2.625rem;
}

/* 42px */
.heroTitle>p {
    font-size: 2.25rem;
}

/* 36px */
.colText>p {
    font-size: 1.375rem;
}

/* 22px */

.hashChips {
    font-size: 1.125rem;
}

/* 18px */
.sectionStats .row>div>p {
    font-size: 2rem;
}

/* 32px */

.sectionTitle {
    font-size: 2.625rem;
}

/* 42px */

.carCardTitle {
    font-size: 1.25rem;
}

/* 20px */
.priceLabel {
    font-size: 0.8125rem;
}

/* 13px */
.priceVal {
    font-size: 0.875rem;
}

/* 14px */

.sectionDeals>div>p {
    font-size: 1.375rem;
}

/* 22px */

.sectionFeatures>h2 {
    font-size: 2.625rem;
}

/* 42px */
.sectionFeatures>p {
    font-size: 1.375rem;
}

/* 22px */
.feature h4 {
    font-size: 2rem;
}

/* 32px */
.feature p {
    font-size: 1.375rem;
}

/* 22px */
.featureNo {
    font-size: 7.5rem;
}

/* 120px */

.quoteEyebrow {
    font-size: 2rem;
}

/* 42px */
.quoteTitle {
    font-size: 2rem;
}

/* 42px */
.quoteSub {
    font-size: 1.375rem;
}

/* 22px */

.selectArrow {
    font-size: 1.125rem;
}

/* 18px */
.agreeRow {
    font-size: 1.125rem;
}

/* 18px */

.ctaPrimary {
    font-size: 2rem;
}

/* 32px */

.modalHeader h3 {
    font-size: 1.125rem;
}

/* 18px */
.modalBody h4 {
    font-size: 1rem;
}

/* 16px */
.modalClose {
    font-size: 1.5rem;
}

/* 24px */

.sectionCompare>h2 {
    font-size: 2.625rem;
}

/* 42px */
.sectionCompare>p {
    font-size: 1.375rem;
}

/* 22px */

.pill {
    font-size: 0.9375rem;
}

/* 15px */
.pillTop {
    font-size: 1.375rem;
}

/* 22px */
.panelTitle {
    font-size: 2rem;
}

/* 32px */
.panelPrice {
    font-size: 1.125rem;
}

/* 18px */
.vsContent p {
    font-size: 1.375rem;
}

/* 22px */

.sectionPromo>div>h2 {
    font-size: 2.625rem;
}

/* 42px */
.sectionPromo>div>p {
    font-size: 1.375rem;
}

/* 22px */

.sectionReasons>h2 {
    font-size: 2.625rem;
}

/* 42px */
.benefitNo {
    font-size: 2rem;
}

/* 32px */
.benefitTitle {
    font-size: 1.375rem;
}

/* 22px */
.benefitDesc {
    font-size: 1.125rem;
}

/* 18px */

.footerList li {
    font-size: 0.875rem;
}

/* 14px */

/* 3) ≤ 768px: px -> rem */
@media (max-width: 768px) {

    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 2.125rem;
    }

    /* 34px */

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 1.125rem;
    }

    /* 18px */

    .heroTitle>h1 {
        font-size: 2.25rem;
    }

    /* 36px */
    .heroTitle>p {
        font-size: 1.75rem;
    }

    /* 28px */
    .hashChips {
        font-size: 1rem;
    }

    /* 16px */

    .feature h4 {
        font-size: 1.625rem;
    }

    /* 26px */
    .feature p {
        font-size: 1.125rem;
    }

    /* 18px */
    .featureNo {
        font-size: 6rem;
    }

    /* 96px */

    .ctaPrimary {
        font-size: 1.75rem;
    }

    /* 28px */
    .pill {
        font-size: 0.875rem;
    }

    /* 14px */
    .panelTitle {
        font-size: 1.5rem;
    }

    /* 24px */
    .panelPrice {
        font-size: 1rem;
    }

    /* 16px */
    .vsContent p {
        font-size: 1.25rem;
    }

    /* 20px */
}

/* 4) ≤ 576px: px -> rem */
@media (max-width: 576px) {

    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 1.75rem;
    }

    /* 28px */

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 1rem;
    }

    /* 16px */

    .heroTitle>h1 {
        font-size: 1.75rem;
    }

    /* 28px */
    .heroTitle>p {
        font-size: 1.25rem;
    }

    /* 20px */

    .feature h4 {
        font-size: 1.5rem;
    }

    /* 24px */
    .feature p {
        font-size: 1.125rem;
    }

    /* 18px */
    .featureNo {
        font-size: 4.5rem;
    }

    /* 72px */

    .ctaPrimary {
        font-size: 1.375rem;
    }

    /* 22px */
    .vsContent p {
        font-size: 1.125rem;
    }

    /* 18px */

    .benefitTitle {
        font-size: 1.125rem;
    }

    /* 18px */
    .benefitDesc {
        font-size: 1rem;
    }

    /* 16px */
}

/* 5) ≤ 425px: px -> rem  (중복 블록 하나만 유지) */
@media (max-width: 425px) {

    .sectionTitle,
    .sectionFeatures>h2,
    .sectionCompare>h2,
    .sectionPromo>div>h2,
    .sectionReasons>h2 {
        font-size: 1.45rem;
    }

    /* 24px */

    .sectionDeals>div>p,
    .sectionFeatures>p,
    .sectionCompare>p,
    .sectionPromo>div>p {
        font-size: 0.9375rem;
    }

    /* 15px */

    .heroTitle>h1 {
        font-size: 1.5rem;
    }

    /* 24px */
    .heroTitle>p {
        font-size: 1.125rem;
    }

    /* 18px */
    .colText>p {
        font-size: 1.125rem;
    }

    /* 18px */
    .hashChips {
        font-size: 0.875rem;
    }

    /* 14px */

    .sectionStats .row>div>p {
        font-size: 1.5rem;
    }

    /* 24px */

    .carCardTitle {
        font-size: 1.125rem;
    }

    /* 18px */
    .priceVal {
        font-size: 0.8125rem;
    }

    /* 13px */

    .field {
        font-size: 0.9375rem;
    }

    /* 15px */
    .ctaPrimary {
        font-size: 1.25rem;
    }

    /* 20px */

    .feature h4 {
        font-size: 1.25rem;
    }

    /* 20px */
    .feature p {
        font-size: 1rem;
    }

    /* 16px */
    .featureNo {
        font-size: 3.5rem;
    }

    /* 56px */

    .panelTitle {
        font-size: 1.25rem;
    }

    /* 20px */
    .panelPrice {
        font-size: 1rem;
    }

    /* 16px */

    .benefitTitle {
        font-size: 1.125rem;
    }

    /* 18px */
    .benefitDesc {
        font-size: 1rem;
    }

    /* 16px */

    .footerList li {
        font-size: 0.8125rem;
    }

    /* 13px */
}