.section { padding: 112px 0; }
.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 28px;
    font-weight: 400;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #101826;
}
.hero-track {
    position: relative;
    aspect-ratio: 1920 / 743;
    touch-action: pan-y;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .65s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 14, 30, .88) 0%, rgba(5, 14, 30, .64) 35%, rgba(5, 14, 30, .12) 70%),
        linear-gradient(0deg, rgba(5, 14, 30, .28), transparent 50%);
}
.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(48px, calc((100% - var(--max)) / 2));
    width: min(620px, calc(100% - 96px));
    color: var(--white);
    transform: translateY(-50%);
}

.hero-eyebrow {
    color: var(--lime);
    margin: 0 0 8px 0;
}

.hero-content h1 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(46px, 4.6vw, 64px);
    font-weight: 600;
    line-height: 1.13;
}
.hero-content p {
    max-width: 480px;
    margin: 22px 0 32px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.65;
}
.hero-desktop-link {
    min-width: 150px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}
.hero-desktop-link:hover {
    color: var(--navy);
    background: #fff;
}
.hero-mobile-link { display: none; }
.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .6));
    cursor: pointer;
    transform: translateY(-50%);
    transition: color .2s ease, transform .2s ease;
}
.hero-arrow:hover {
    transform: translateY(-50%) scale(1.06);
}
.hero-arrow:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .82);
    outline-offset: 3px;
}
.hero-arrow-prev { left: clamp(12px, 2vw, 32px); }
.hero-arrow-next { right: clamp(12px, 2vw, 32px); }
.hero-arrow svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-pagination {
    position: absolute;
    z-index: 4;
    bottom: 26px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}
.hero-pagination button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}
.hero-pagination button[aria-current="true"] {
    width: 22px;
    border-radius: 10px;
    background: #fff;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}
.section-heading h1, .section-heading h2 {
    margin: 0;
    color: #1f325b;
    font-size: var(--type-section-title);
    line-height: 1.2;
    font-weight: 800;
}
.section-heading p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 17px;
}
.models-intro { padding-top: 112px; }
.models-list {
    --vehicle-accent: #3182f6;
    --vehicle-accent-dark: #3182f6;
    padding-bottom: 112px;
}
.vehicle-count {
    padding: 8px 15px;
    border-radius: 999px;
    color: var(--blue);
    background: #edf2ff;
    font-size: 13px;
    font-weight: 700;
}
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vehicle-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e7ebf1;
    border-radius: 1px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(6, 21, 45, .06);
    transition: border-color .22s ease, box-shadow .18s ease, transform .14s ease;
}
.vehicle-card:hover {
    border-color: #cad5e7;
    box-shadow: 0 18px 38px rgba(6, 21, 45, .1);
    transform: translateY(-4px);
}
.vehicle-card:active {
    box-shadow: 0 6px 16px rgba(6, 21, 45, .08);
    transform: translateY(-1px) scale(.985);
}
.vehicle-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9.5;
}
.vehicle-image img { width: 100%; height: 100%; padding: 8px; object-fit: contain; transition: transform .35s; }
.vehicle-card:hover .vehicle-image img { transform: scale(1.04); }
.vehicle-card-actyon-hybrid .vehicle-image img {
    transform: scale(.8);
}
.vehicle-card-actyon-hybrid:hover .vehicle-image img {
    transform: scale(.84);
}
.vehicle-tags {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
}
.vehicle-tag {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 6px;
    color: #fff;
    background: #172238;
    box-shadow: 0 4px 12px rgba(6, 21, 45, .16);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
.vehicle-body {
    flex: 1;
    padding: 0 22px 22px 22px;
    display: flex;
    flex-direction: column;
}
.vehicle-title-row {
    min-height: 60px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name deposit"
        "description price";
    align-items: end;
    gap: 2px 18px;
}
.vehicle-title-copy {
    display: contents;
}
.vehicle-body h2 { grid-area: name; min-width: 0; margin: 0; font-size: 24px; font-weight: 700; line-height: 1.35; }
.vehicle-rental-price {
    display: contents;
}
.vehicle-rental-price small { grid-area: deposit; color: #7c8798; font-size: 14px; font-weight: 500; line-height: 1.3; text-align: right; white-space: nowrap; }
.vehicle-rental-price strong { grid-area: price; color: var(--vehicle-accent); font-size: 20px; font-weight: 800; line-height: 1.3; text-align: right; white-space: nowrap; }
.vehicle-description { grid-area: description; min-width: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 15px; line-height: 1.55; white-space: nowrap; text-overflow: ellipsis; }
.vehicle-body dl { margin: 0 0 24px; }
.vehicle-body dl div { display: flex; justify-content: space-between; margin-top: 8px; }
.vehicle-body dt { color: var(--muted); font-size: 13px; }
.vehicle-body dd { margin: 0; font-size: 14px; }
.vehicle-body dd strong { color: var(--blue); font-size: 18px; }
.vehicle-body > .vehicle-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
}
.vehicle-body > .vehicle-cta span { font-size: 20px; }
.vehicle-card-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd7eb;
    border-radius: 8px;
    color: #172238;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-top: auto;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.vehicle-card:hover .vehicle-card-cta {
    border-color: #172238;
    color: #fff;
    background: #172238;
}
.subscription-block {
    position: relative;
    min-height: 420px;
    margin-top: 48px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 20px;
    color: white;
    background:
        linear-gradient(90deg, rgba(4, 13, 29, .02) 0%, rgba(4, 13, 29, .08) 42%, rgba(4, 13, 29, .78) 66%, rgba(4, 13, 29, .95) 100%),
        url("/images/kgm/musso1.png") center / cover no-repeat;
    box-shadow: 0 18px 44px rgba(6, 21, 45, .14);
    transition: box-shadow .18s ease, transform .14s ease;
}
.subscription-block:hover { color: #fff; }
.subscription-block:active {
    box-shadow: 0 8px 22px rgba(6, 21, 45, .12);
    transform: scale(.99);
}
.subscription-copy {
    z-index: 2;
    flex: 0 0 38%;
    margin-left: auto;
}
.subscription-copy h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
}
.subscription-copy h2 span { display: inline-block; }
.subscription-copy p { margin: 12px 0 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.6; }
.subscription-price { margin: 30px 0 24px; display: flex; flex-direction: column; gap: 5px; }
.subscription-price small { color: rgba(255,255,255,.68); font-size: 14px; }
.subscription-price strong { font-size: 32px; line-height: 1.25; }
.subscription-cta {
    min-width: 164px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: #172238;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background-color .2s ease, transform .2s ease;
}
.subscription-block:hover .subscription-cta {
    color: #172238;
    background: #f1f4f8;
    transform: translateY(-2px);
}

.advantages {
    position: relative;
    overflow: hidden;
    min-height: 920px;
    color: white;
    background:
        linear-gradient(90deg, rgba(4,12,25,.94) 0%, rgba(4,12,25,.75) 46%, rgba(4,12,25,.24) 100%),
        linear-gradient(180deg, rgba(4,12,25,.3), rgba(4,12,25,.86)),
        url("/images/kgm/advantage-bg.jpg") center / cover no-repeat;
}
.advantages::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(3,10,22,.48));
    content: "";
    pointer-events: none;
}
.advantages .container { position: relative; z-index: 1; }
.section-heading.light h2 { color: white; }
.section-heading.light p { color: #9aabc1; }
.section-heading.light .eyebrow { color: var(--lime); }
.advantages .section-heading.light h2 { color: white; }
.advantages .section-heading.light p { color: rgba(255,255,255,.62); }
.advantages .section-heading.light .eyebrow { color: var(--lime); }
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.advantage-card {
    min-height: 235px;
    padding: 28px 26px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: rgba(5,17,36,.38);
    box-shadow: 0 16px 35px rgba(0,0,0,.14);
    backdrop-filter: blur(1px);
    text-align: center;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.advantage-card:hover {
    border-color: rgba(255,255,255,.42);
    background: rgba(5,17,36,.55);
    box-shadow: 0 24px 48px rgba(0,0,0,.25);
    transform: translateY(-5px);
}
.advantage-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    display: block;
}
.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.advantage-card h3 { margin: 0 0 11px; color: white; font-size: 21px; font-weight: 700; }
.advantage-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; }

.period {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    padding: 0;
    color: #15191f;
    background: #eef0f4 url("/images/kgm/period-background.png") center / cover no-repeat;
}
.period-content {
    width: min(calc(100% - 48px), 1280px);
    min-height: 650px;
    padding: 64px 0 52px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.period-heading {
    width: min(100%, 480px);
}

.good-eyebrow {
    font-weight: 400;
}

.benefit-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #63df05;
    font-size: 28px;
    font-weight: 400;
}

.period-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #63df05;
    font-size: 28px;
    font-weight: 400;
}

.period-title {
    margin: 0;
    color: #171b20;
    font-size: clamp(46px, 4.2vw, 58px);
    font-weight: 600;
    line-height: 1.13;
    word-break: keep-all;
}
.period-heading p {
    margin: 15px 0 0;
    color: #262c34;
    font-size: 17px;
    font-weight: 0;
    line-height: 1.55;
}
.period-months {
    position: relative;
    width: 100%;
    margin: auto 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
}
.period-months::before {
    position: absolute;
    top: 9px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: #252b33;
    content: "";
}
.period-months li {
    position: relative;
    padding-top: 32px;
    text-align: center;
}
.period-months li::before {
    position: absolute;
    z-index: 1;
    top: 2px;
    left: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #20262d;
    border-radius: 50%;
    background: #f1f2f5;
    content: "";
    transform: translateX(-50%);
}
.period-months li:last-child::before {
    border-color: #1e5cff;
    background: #1e5cff;
    box-shadow: 0 0 0 3px #eef2ff, 0 0 0 5px #1e5cff;
}
.period-months strong {
    color: #171b20;
    font-size: 22px;
    font-weight: 800;
}
.period-months span {
    margin-left: 2px;
    color: #171b20;
    font-size: 18px;
    font-weight: 800;
}
.period-guides {
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.period-guides p {
    width: 100%;
    margin: 0;
    color: #242a31;
    text-align: center;
    word-break: keep-all;
}
.period-guides p:last-child {
    grid-column: 5;
    text-align: center;
}
.period-guides strong,
.period-guides span {
    display: block;
    color: #242a31;
}
.period-month-highlight {
    color: inherit;
    background: transparent;
    font-weight: inherit;
}
.period-guides strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}
.period-guides span {
    margin-top: 1px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.benefits {
    position: relative;
    min-height: 455px;
    padding: 0;
    overflow: hidden;
    color: white;
    background:
        linear-gradient(90deg, rgba(5, 15, 29, .93) 0%, rgba(5, 15, 29, .84) 45%, rgba(5, 15, 29, .66) 100%),
        url("/images/kgm/benefit-bg.jpg") center / cover no-repeat;
}
.benefit-layout {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), 1280px);
    min-height: 455px;
    padding: 64px 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.65fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
}
.benefit-copy h2 {
    max-width: 420px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.13;
    word-break: keep-all;
}
.benefit-copy p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    font-weight: 0;
    line-height: 1.65;
}
.advantages .section-heading.light h2 {
    line-height: 1.15;
    font-size: 58px;
    font-weight: 600;
}
.benefit-list {
    min-width: 0;
    padding: 38px clamp(22px, 2.7vw, 34px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 14px;
    background: rgba(3, 13, 27, .7);
    box-shadow: 0 18px 44px rgba(0,0,0,.2);
    backdrop-filter: blur(0px);
}
.benefit-list article {
    min-width: 0;
    padding: 0 clamp(16px, 2vw, 26px);
}
.benefit-list article:first-child { padding-left: 0; }
.benefit-list article:last-child { padding-right: 0; }
.benefit-list article + article { border-left: 1px solid rgba(255,255,255,.22); }
.benefit-list article strong {
    width: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 14px;
    padding: 0;
    color: #72ef08;
    background: transparent;
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 800;
    line-height: 1.25;
    word-break: keep-all;
}
.benefit-list article p {
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    word-break: keep-all;
}
.benefit-list article p b {
    width: max-content;
    max-width: 100%;
    min-height: 30px;
    margin-top: 10px;
    padding: 5px 10px 5px 7px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(114, 239, 8, .5);
    border-radius: 999px;
    color: #83f22a;
    background: rgba(114, 239, 8, .09);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: normal;
}
.benefit-list article p b::before {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    border-radius: 50%;
    color: #071426;
    background: #72ef08;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
}

.company-banner { padding: 75px 0; color: white; background: linear-gradient(110deg, #1238af, #0e63e9); }
.company-banner .container { display: flex; align-items: center; justify-content: space-between; }
.company-banner span { color: #9ee936; font-size: 12px; font-weight: 800; }
.company-banner h2 { margin: 12px 0; font-size: 30px; }
.company-banner p { margin: 0; color: #d7e3ff; font-size: 14px; }
.company-banner a { min-width: 230px; padding: 20px 25px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; }
.company-banner a small { display: block; color: #d7e3ff; }
.company-banner a strong {
    color: #fff;
    font-size: 28px;
    transition: color .2s ease;
}
.company-banner a:hover strong { color: var(--lime); }

.post-hero-content {
    position: relative;
}

.floating-support {
    position: sticky;
    z-index: 39;
    top: calc(var(--site-header-height) + 20px);
    width: 204px;
    height: 0;
    margin-left: auto;
    margin-right: 75px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-consult-card {
    width: 100%;
    min-height: 184px;
    padding: 25px 18px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #dfe5ee;
    border-radius: 20px;
    color: var(--navy);
    text-align: center;
    background: #fff;
    box-shadow: 0 16px 42px rgba(4, 24, 63, .16);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.quick-consult-card:hover {
    border-color: #c5cfdd;
    color: var(--navy);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(4, 24, 63, .21);
}

.quick-consult-icon {
    width: 72px;
    height: 72px;
}

.quick-consult-copy strong {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.35;
}

.quick-consult-title-mobile { display: none; }

.quick-consult-copy small {
    display: block;
    margin-top: 8px;
    color: #778398;
    font-size: 12px;
    line-height: 1.6;
    word-break: keep-all;
}

.floating-call,
.floating-kakao {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(3, 20, 49, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.floating-call {
    color: #fff;
    background: #174be8;
}

.floating-kakao {
    color: #191919;
    background: #fee500;
}

.floating-call:hover,
.floating-kakao:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(3, 20, 49, .23);
}

.floating-call:hover {
    color: #fff;
    background: #174be8;
}

.floating-kakao:hover {
    color: #191919;
    background: #fee500;
}

.floating-call svg,
.floating-kakao svg {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.floating-kakao svg {
    width: 33px;
    height: 33px;
}

.floating-call strong,
.floating-kakao strong {
    font-size: 14px;
    font-weight: 700;
}

body.consult-modal-open { overflow: hidden; }
.quick-consult-modal {
    position: fixed;
    z-index: 1200;
    inset: 0;
    padding: 24px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .26s ease, visibility .26s ease;
}
.quick-consult-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.quick-consult-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(9, 18, 34, .56);
    backdrop-filter: blur(4px);
    cursor: default;
}
.quick-consult-panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100dvh - 48px);
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(7, 18, 38, .28);
    opacity: 0;
    transform: translateY(28px) scale(.965);
    transition: opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
    outline: none;
}
.quick-consult-modal.is-open .quick-consult-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.quick-consult-drag { display: none; }
.quick-consult-panel > form {
    min-height: 0;
    max-height: calc(100dvh - 48px);
    display: flex;
    flex-direction: column;
}
.quick-consult-header {
    position: relative;
    min-height: 58px;
    padding: 0;
    flex: 0 0 auto;
    background: #fff;
}
.quick-consult-close {
    position: absolute;
    top: 8px;
    right: 14px;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #526078;
    background: #f3f5f8;
    cursor: pointer;
    outline: none;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}
.quick-consult-close svg { width: 22px; height: 22px; }
.quick-consult-close:hover { color: #172238; background: #e9edf3; transform: rotate(4deg); }
.quick-consult-close:focus-visible { box-shadow: 0 0 0 4px rgba(49, 130, 246, .18); }
.quick-consult-body {
    min-height: 0;
    padding: 22px 30px 30px;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.consult-benefit {
    margin-bottom: 17px;
    padding: 17px 19px;
    border: 1px solid #e0e7f0;
    border-radius: 14px;
    color: #263b5b;
    background: #f7f9fc;
}
.consult-benefit > strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}
.consult-benefit ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
    list-style: none;
}
.consult-benefit li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #526681;
    font-size: 13px;
    font-weight: 550;
    line-height: 1.4;
    word-break: keep-all;
}
.consult-benefit li::before {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    flex: 0 0 17px;
    border-radius: 50%;
    color: #3182f6;
    background: #eaf3ff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    content: '✓';
}
.consult-fieldset { min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
.consult-fieldset legend,
.consult-input-grid label > span:first-child,
.consult-full-input > span {
    margin-bottom: 7px;
    color: #25324a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}
.consult-fieldset small,
.consult-full-input small { color: #8893a5; font-size: 13px; font-weight: 500; }
.consult-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.consult-choice-grid label { position: relative; margin: 0; cursor: pointer; }
.consult-choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.consult-choice-grid span {
    min-height: 48px;
    padding: 8px 10px;
    display: grid;
    place-items: center;
    border: 1px solid #d8dfe9;
    border-radius: 10px;
    color: #536176;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: color .18s ease, border-color .18s ease, background .18s ease, transform .14s ease;
}
.consult-choice-grid label:active span { transform: scale(.98); }
.consult-choice-grid input:focus-visible + span { outline: 3px solid rgba(49, 130, 246, .18); outline-offset: 2px; }
.consult-choice-grid input:checked + span { border-color: #3182f6; color: #1769d6; background: #edf5ff; }
.consult-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.consult-input-grid label,
.consult-full-input { display: flex; flex-direction: column; }
.consult-input-grid em { margin-left: 3px; color: #3182f6; font-style: normal; font-size: 12px; }
.consult-full-input { margin-bottom: 18px; }
.consult-control {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #d8dfe9;
    border-radius: 10px;
    color: #172238;
    background: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.consult-control::placeholder { color: #98a2b2; }
.consult-control:focus { border-color: #3182f6; box-shadow: 0 0 0 4px rgba(49, 130, 246, .11); }
.consult-control.is-invalid {
    border-color: #d14343;
    box-shadow: 0 0 0 4px rgba(209, 67, 67, .09);
}
.consult-select {
    padding-right: 42px;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #778398 50%), linear-gradient(135deg, #778398 50%, transparent 50%);
    background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}
.consult-privacy-row { display: flex; align-items: center; gap: 10px; }
.consult-privacy { min-width: 0; display: flex; align-items: center; gap: 10px; color: #536176; font-size: 14px; line-height: 1.4; cursor: pointer; }
.consult-privacy input { width: 20px; height: 20px; margin: 0; flex: 0 0 20px; accent-color: #3182f6; cursor: pointer; }
.consult-privacy.is-invalid { color: #b42318; }
.consult-privacy-link {
    margin-left: auto;
    flex: 0 0 auto;
    color: #536176;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.consult-field-error {
    margin-top: 6px;
    color: #b42318;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.consult-field-error:empty { display: none; }
.consult-privacy-error { margin-left: 30px; }
.consult-honeypot { position: fixed; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.quick-consult-modal .consultation-feedback { min-height: 0; margin: 10px 0 0; font-size: 14px; line-height: 1.5; }
.quick-consult-modal .consultation-feedback:empty { display: none; }
.quick-consult-modal .consultation-feedback.is-success { color: #08783e; }
.quick-consult-modal .consultation-feedback.is-error { color: #c02b2b; }
.quick-consult-footer { padding: 0; flex: 0 0 auto; border-top: 1px solid #edf0f5; background: #3182f6; }
.home-consultation-submit {
    width: 100%;
    min-height: 64px;
    padding: 16px 20px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: #3182f6;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, transform .14s ease;
}
.home-consultation-submit:hover { background: #1f72e8; }
.home-consultation-submit:active { transform: scale(.99); }
.home-consultation-submit:disabled { opacity: .6; cursor: wait; }

@media (max-width: 1180px) {
    .benefit-layout {
        grid-template-columns: minmax(230px, .7fr) minmax(0, 1.7fr);
        gap: 30px;
    }
    .benefit-copy h2 { font-size: clamp(38px, 4vw, 46px); }
    .benefit-list { padding: 30px 20px; }
    .benefit-list article { padding: 0 16px; }
    .benefit-list article strong { font-size: clamp(18px, 2vw, 23px); }
    .benefit-list article p { font-size: 14px; }
    .benefit-list article p b { padding-right: 8px; font-size: 12px; }
}

@media (max-width: 980px) {
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .benefit-list { margin-top: 0; grid-template-columns: 1fr; }
    .benefit-list article {
        padding: 18px 0;
        display: grid;
        grid-template-columns: 170px minmax(0, 1fr);
        align-items: center;
        gap: 22px;
    }
    .benefit-list article + article {
        border-top: 1px solid rgba(255,255,255,.22);
        border-left: 0;
    }
    .benefit-list article strong { margin: 0; font-size: 22px; }
    .company-banner .container { align-items: flex-start; flex-direction: column; gap: 30px; }
    .subscription-block {
        padding: 45px;
        background-position: 42% center;
    }
    .subscription-copy { flex-basis: 48%; }
    .floating-support { margin-right: 16px; }
}

@media (max-width: 640px) {
    .section { padding: 78px 0; }
    .models-intro { padding-top: 20px; }
    .models-list { padding-bottom: 78px; }
    .hero-track { aspect-ratio: 1 / .95; }
    .hero-video { object-position: center; }
    .hero-shade {
        background:
            linear-gradient(90deg, rgba(4, 13, 29, .82), rgba(4, 13, 29, .34)),
            linear-gradient(0deg, rgba(4, 13, 29, .28), transparent 55%);
    }
    .hero-content {
        top: 46%;
        left: 24px;
        width: calc(100% - 48px);
    }
    .hero-content h1 { font-size: clamp(34px, 10vw, 40px); line-height: 1.15; }
    .hero-content { z-index: 3; pointer-events: none; }
    .hero-content p { max-width: 300px; margin: 16px 0 0; font-size: 15px; line-height: 1.65; }
    .hero-desktop-link { display: none; }
    .hero-mobile-link {
        position: absolute;
        z-index: 2;
        inset: 0;
        display: block;
    }
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    .hero-arrow-prev { left: 10px; }
    .hero-arrow-next { right: 10px; }
    .hero-arrow svg {
        width: 24px;
        height: 24px;
        stroke-width: 2.25;
    }
    .hero-pagination { bottom: 15px; }
    .section-heading { align-items: flex-start; margin-bottom: 34px; }
    .section-heading h1, .section-heading h2 { font-size: var(--type-section-title); }
    .section-heading p { font-size: 13px; line-height: 1.65; }
    .vehicle-count { display: none; }
    .vehicle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .vehicle-image { aspect-ratio: 3 / 2; }
    .vehicle-image img { padding: 5px; }
    .vehicle-body {
        min-height: 0;
        padding: 13px 12px;
    }
    .vehicle-title-row {
        min-height: 0;
        margin: 0 0 12px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "name"
            "deposit"
            "price";
        gap: 2px;
    }
    .vehicle-body h2 {
        display: -webkit-box;
        overflow: hidden;
        color: #172238;
        font-size: 18px;
        line-height: 1.25;
        word-break: keep-all;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .vehicle-rental-price small { margin-top: 5px; font-size: 13px; text-align: left; }
    .vehicle-rental-price strong { font-size: 16px; text-align: left; }
    .vehicle-description,
    .vehicle-tags { display: none; }
    .vehicle-card-cta {
        min-height: 40px;
        border-radius: 7px;
        font-size: 14px;
    }
    .vehicle-card:hover { transform: none; }
    .vehicle-card:active { transform: scale(.98); }
    .vehicle-card {
        border-color: #dce3ec;
        border-radius: 10px;
        box-shadow: 0 5px 16px rgba(6, 21, 45, .08);
    }
    .subscription-block {
        min-height: 360px;
        margin-top: 32px;
        padding: 20px;
        align-items: flex-end;
        justify-content: flex-start;
        border-radius: 14px;
        background:
            linear-gradient(180deg, rgba(4, 13, 29, .18) 0%, rgba(4, 13, 29, .24) 38%, rgba(4, 13, 29, .82) 62%, rgba(4, 13, 29, .98) 82%, rgba(4, 13, 29, 1) 100%),
            url("/images/kgm/musso1.png") 32% top / auto 70% no-repeat,
            #040d1d;
        box-shadow: 0 18px 38px rgba(6, 21, 45, .18);
    }
    .subscription-copy {
        width: 100%;
        flex: 0 0 100%;
        margin: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
    }
    .subscription-copy h2 {
        margin-top: 0;
        font-size: 29px;
        font-weight: 700;
        line-height: 1.25;
        text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
    }
    .subscription-copy p {
        max-width: 270px;
        margin: 7px 0 0;
        font-size: 15px;
        line-height: 1.55;
        word-break: keep-all;
        text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
    }
    .subscription-price {
        width: 100%;
        margin: 14px 0;
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
    }
    .subscription-price small { font-size: 11px; }
    .subscription-price strong { font-size: 25px; line-height: 1; }
    .subscription-cta {
        width: 100%;
        padding: 11px 15px;
        justify-content: center;
        border-radius: 9px;
        font-size: 14px;
    }
    .advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .advantage-card {
        min-height: 155px;
        padding: 20px 14px;
    }
    .advantage-card p { display: none; }
    .advantage-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 15px;
    }
    .advantage-card h3 {
        margin: 0;
        font-size: 18px;
        line-height: 1.4;
        word-break: keep-all;
    }
    .period {
        min-height: 520px;
        padding: 0;
        background:
            linear-gradient(180deg, rgba(247,248,251,.96) 0%, rgba(247,248,251,.84) 48%, rgba(247,248,251,.94) 100%),
            url("/images/kgm/period-background.png") 63% center / cover no-repeat;
    }
    .period-content {
        width: min(calc(100% - 32px), 1280px);
        min-height: 520px;
        padding: 44px 0 38px;
    }
    .period-heading { width: min(100%, 330px); }
    .period-eyebrow,
    .benefit-eyebrow {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .period-title {
        display: block;
        font-size: 36px;
        line-height: 1.14;
    }
    .period-heading p {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.55;
    }
    .period-months {
        width: 100%;
        margin: 92px 0 0;
        padding: 0;
        display: grid;
    }
    .period-months::before {
        top: 7px;
        right: 10%;
        left: 10%;
    }
    .period-months li { padding-top: 25px; }
    .period-months li::before {
        top: 1px;
        width: 13px;
        height: 13px;
    }
    .period-months strong { font-size: 17px; }
    .period-months span {
        display: block;
        margin: 1px 0 0;
        font-size: 11px;
    }
    .period-guides {
        width: 100%;
        margin-top: 18px;
        display: flex;
        gap: 20px;
    }
    .period-guides p { width: 48%; max-width: none; }
    .period-guides p:last-child { text-align: right; }
    .period-guides strong { font-size: 12px; }
    .period-guides span { margin-top: 2px; font-size: 11px; }
    .period-month-highlight { color: inherit; background: transparent; }
    .benefits {
        min-height: 0;
        padding: 0;
        background:
            linear-gradient(180deg, rgba(5, 15, 29, .93), rgba(5, 15, 29, .78)),
            url("/images/kgm/benefit-bg.jpg") 44% center / cover no-repeat;
    }
    .benefit-layout {
        width: min(calc(100% - 32px), 1280px);
        min-height: 0;
        padding: 56px 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .benefit-copy h2 {
        max-width: 330px;
        font-size: 36px;
        line-height: 1.14;
    }
    .benefit-copy p {
        margin-top: 16px;
        font-size: 14px;
    }
    .benefit-list {
        margin-top: 0;
        padding: 8px 20px;
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    .benefit-list article {
        padding: 20px 0;
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
    }
    .benefit-list article:first-child,
    .benefit-list article:last-child { padding: 20px 0; }
    .benefit-list article + article {
        border-top: 1px solid rgba(255,255,255,.2);
        border-left: 0;
    }
    .benefit-list article strong { margin: 0; font-size: 19px; }
    .benefit-list article p { font-size: 14px; }
    .benefit-list article p b {
        padding-right: 8px;
        font-size: 11px;
        gap: 5px;
    }
    .company-banner h2 { font-size: 25px; }
    .company-banner a { width: 100%; }
    .consult-input-grid { grid-template-columns: 1fr; }
}

/* Mobile consultation dock */
@media (max-width: 640px) {
    .floating-support {
        position: fixed;
        top: auto;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        left: 12px;
        width: auto;
        height: 64px;
        margin: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 64px 64px;
        gap: 8px;
        z-index: 40;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(16px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .floating-support.is-mobile-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .quick-consult { min-width: 0; }

    .quick-consult-card {
        min-height: 64px;
        height: 64px;
        padding: 8px 13px;
        justify-content: flex-start;
        flex-direction: row;
        gap: 9px;
        border: 1px solid #dfe5ee;
        border-radius: 15px;
        color: var(--navy);
        background: #fff;
        box-shadow: 0 12px 30px rgba(3, 20, 49, .18);
        text-align: left;
    }

    .quick-consult-card:hover { transform: none; }

    .quick-consult-icon {
        width: 44px;
        height: 44px;
    }

    .quick-consult-copy {
        min-width: 0;
        flex: 1;
    }

    .quick-consult-copy strong {
        color: var(--navy);
        font-size: 18px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .quick-consult-title-desktop { display: none; }
    .quick-consult-title-mobile { display: inline; }
    .quick-consult-copy small { display: none; }

    .floating-call,
    .floating-kakao {
        width: 64px;
        min-height: 64px;
        height: 64px;
        padding: 0;
        border-radius: 15px;
    }

    .floating-call:hover,
    .floating-kakao:hover { transform: none; }

    .floating-call svg {
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 0;
        color: #fff;
        background: transparent;
    }

    .floating-kakao svg {
        width: 36px;
        height: 36px;
    }

    .floating-call strong,
    .floating-kakao strong {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}
/* 모바일 맞춤 견적 바텀시트 */
@media (max-width: 640px) {
    .quick-consult-modal {
        padding: 0;
        place-items: end center;
    }
    .quick-consult-backdrop {
        background: rgba(9, 18, 34, .48);
        backdrop-filter: blur(2px);
    }
    .quick-consult-panel {
        width: 100%;
        height: calc(100dvh - 8px);
        max-height: calc(100dvh - 8px);
        border: 0;
        border-radius: 22px 22px 0 0;
        opacity: 1;
        transform: translate3d(0, 100%, 0);
        transition: transform .42s cubic-bezier(.22, 1, .36, 1);
        will-change: transform;
    }
    .quick-consult-modal.is-open .quick-consult-panel {
        transform: translate3d(0, 0, 0);
    }
    .quick-consult-modal.is-open .quick-consult-panel[data-sheet-state="collapsed"] {
        transform: translate3d(0, 44dvh, 0);
    }
    .quick-consult-panel.is-dragging { transition: none; }
    .quick-consult-drag {
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 28px;
        background: #fff;
        cursor: grab;
        touch-action: none;
        user-select: none;
    }
    .quick-consult-drag span {
        width: 42px;
        height: 5px;
        border-radius: 999px;
        background: #cdd4df;
    }
    .quick-consult-panel > form {
        min-height: 0;
        height: calc(100% - 28px);
        max-height: calc(100% - 28px);
    }
    .quick-consult-header { display: none; }
    .quick-consult-close { display: none; }
    .quick-consult-body {
        min-height: 0;
        padding: 17px 20px 12px;
        flex: 1 1 auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    .consult-benefit {
        margin-bottom: 14px;
        padding: 15px 16px;
        border-radius: 12px;
    }
    .consult-benefit > strong { margin-bottom: 8px; font-size: 14px; }
    .consult-benefit ul { gap: 5px; }
    .consult-benefit li { font-size: 12px; }
    .consult-fieldset { margin-bottom: 16px; }
    .consult-fieldset legend,
    .consult-input-grid label > span,
    .consult-full-input > span { font-size: 15px; }
    .consult-choice-grid span { min-height: 46px; font-size: 14px; }
    .consult-input-grid { gap: 12px; margin-bottom: 15px; }
    .consult-full-input { margin-bottom: 15px; }
    .consult-control { min-height: 49px; font-size: 16px; }
    .consult-privacy { font-size: 14px; }
    .quick-consult-footer {
        padding: 0 0 env(safe-area-inset-bottom);
        box-shadow: 0 -8px 24px rgba(9, 18, 34, .06);
    }
    .home-consultation-submit { min-height: 62px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
