.vehicle-page {
    --muted: #566174;
    --detail-title-size: 26px;
    --detail-subtitle-size: 20px;
    --detail-body-size: 16px;
    --detail-small-size: 14px;
    color: #151b26;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

/* 차량 상세 숨김 처리 */
.vehicle-page .d-none {
    display: none !important;
}

.detail-container {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
}

/* Breadcrumb */
.breadcrumb {
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.breadcrumb .detail-container {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #626d7d;
    font-size: 13px;
    font-weight: 400;
}
.breadcrumb strong {
    color: var(--ink);
}

/* Vehicle hero */
.vehicle-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fb 0%, #e9edf3 100%);
}
.vehicle-hero.has-video {
    min-height: 560px;
    color: #fff;
    background: #06152d;
}
.vehicle-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vehicle-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 11, 25, 0.88) 0%, rgba(3, 11, 25, 0.58) 38%, rgba(3, 11, 25, 0.12) 72%),
        linear-gradient(0deg, rgba(3, 11, 25, 0.34), transparent 48%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
}
.vehicle-hero.has-video .hero-grid {
    min-height: 560px;
    grid-template-columns: minmax(0, 560px) 1fr;
}
.hero-copy {
    position: relative;
    z-index: 2;
    padding: 65px 0;
}
.detail-tag {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    border-radius: 18px;
    color: white;
    background: var(--blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    vertical-align: top;
}
.hero-kicker {
    margin: 28px 0 0px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
}
.vehicle-hero.has-video .hero-kicker {
    color: #8bea12;
}
.hero-copy h1 {
    margin: 22px 0 0;
    /* font-size: var(--type-display); */
    font-size: 60px;
    font-weight: 800;
    line-height: 1.12;
}
.hero-subtitle {
    margin: 14px 0 32px;
    color: var(--muted);
    font-size: 17px;
}
.vehicle-hero.has-video .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.counting_visited {
    position: relative;
    width: fit-content;
    margin-top: 28px;
}
.counting_num {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(21, 84, 232, .2);
    border-radius: 999px;
    color: #334155;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 24px rgba(6, 21, 45, .1);
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.counting_num:hover,
.counting_num[aria-expanded="true"] {
    border-color: rgba(21, 84, 232, .55);
    box-shadow: 0 12px 28px rgba(6, 21, 45, .16);
    transform: translateY(-2px);
}
.counting_num strong {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}
.vehicle-hero.has-video .counting_num {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    background: rgba(4, 18, 40, .58);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}
.vehicle-hero.has-video .counting_num strong {
    color: var(--lime);
}
.counting_tooltip {
    position: absolute;
    z-index: 5;
    top: calc(100% + 10px);
    left: 0;
    min-width: 225px;
    padding: 13px 15px;
    border-radius: 10px;
    color: #fff;
    background: #07172e;
    box-shadow: 0 14px 35px rgba(3, 14, 32, .25);
    font-size: 11px;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.counting_tooltip::before {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 100%;
    border: 6px solid transparent;
    border-bottom-color: #07172e;
}
.counting_visited.is-open .counting_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hero-vehicle {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-vehicle img {
    position: relative;
    z-index: 2;
    width: 110%;
    max-width: none;
    filter: drop-shadow(0 30px 30px rgba(5, 18, 38, 0.2));
}
.hero-glow {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0) 70%
    );
}
.image-note {
    position: absolute;
    right: 0;
    bottom: 26px;
    color: #929baa;
    font-size: 10px;
}

/* Sticky estimate navigation */
.estimate-steps {
    position: sticky;
    z-index: 30;
    top: var(--site-header-height);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy);
    box-shadow: 0 10px 25px rgba(5, 18, 38, 0.12);
}
.estimate-steps .detail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.estimate-steps a {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    font-weight: 700;
}
.estimate-steps a:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.estimate-steps a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}
.estimate-steps span {
    color: var(--lime);
    font-size: 10px;
    font-weight: 800;
}

/* Estimate layout */
.estimate-area {
    padding: 40px 0 112px;
    background: #f5f7fa;
}
.estimate-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 32px;
    align-items: start;
}
.estimate-content {
    min-width: 0;
}
.estimate-intro {
    display: none;
}
.estimate-intro > span,
.other-models .detail-container > span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}
.estimate-intro h2 {
    margin: 12px 0 8px;
    font-size: 34px;
}
.estimate-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.choice-section {
    scroll-margin-top: 175px;
    margin-bottom: 24px;
    padding: 34px 36px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}
.choice-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 18px;
}
.choice-heading > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-size: 11px;
    font-weight: 800;
}
.choice-heading h3 {
    margin: 1px 0 5px;
    font-size: 26px;
    font-weight: 800;
}
.choice-heading p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    font-weight: 500;
}

/* Model and color selection */
.contract-heading {
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contract-heading h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
}
.contract-heading p {
    margin: 7px 0 0;
    color: #667085;
    font-size: 16px;
    font-weight: 500;
}
.contract-defer {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 0;
    color: #242830;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
}
.contract-defer span {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid #d6dce4;
    border-radius: 50%;
    color: #bcc4ce;
    font-size: 10px;
}
.contract-defer.is-selected span {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}

.choice-block h4 {
    margin: 0 0 14px;
    color: #252c38;
    font-size: 17px;
    font-weight: 700;
}
.choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.choice {
    min-width: 112px;
    padding: 13px 18px;
    border: 1px solid #dbe1e9;
    border-radius: 8px;
    color: #586376;
    background: white;
    cursor: pointer;
}
.choice:hover {
    border-color: #9db2ef;
}
.choice.is-selected {
    color: var(--blue);
    border-color: var(--blue);
    background: #f1f5ff;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px var(--blue);
}
.model-option {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--blue);
    border-radius: 10px;
    background: #f7f9ff;
}
.model-option span:first-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.model-option small {
    color: var(--muted);
}
.model-check {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-size: 12px;
}
.popular-note {
    margin-top: 12px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    background: #f4f7fb;
}
.popular-note strong {
    color: var(--blue);
    font-size: 12px;
}
.popular-note span {
    color: var(--muted);
    font-size: 10px;
}
.subheading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.document-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.spec-button {
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}
.popular-title {
    padding: 1px 10px;
    border-radius: 8px;
    color: var(--blue);
    /* background: #f4f7fb; */
    font-size: 12px;
    font-weight: 700;
}
.instant-delivery-section {
    margin: 14px 0 18px;
    padding: 18px;
    border: 1px solid #c9dafd;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
}
.instant-delivery-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}
.instant-delivery-heading div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.instant-delivery-heading strong {
    font-size: 17px;
}
.instant-delivery-heading small {
    color: #566174;
    font-size: 14px;
    font-weight: 500;
}
.instant-delivery-heading > span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    font-size: 11px;
    font-weight: 700;
}
.instant-delivery-list {
    display: grid;
    gap: 9px;
}
.instant-delivery-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 16px;
    width: 100%;
    padding: 16px;
    border: 1px solid #d8e0ed;
    border-radius: 11px;
    color: var(--ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
}
.instant-delivery-card:hover,
.instant-delivery-card.is-selected {
    border-color: var(--blue);
    box-shadow: 0 8px 22px rgba(27, 82, 184, 0.12);
}
.instant-delivery-card:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}
.instant-delivery-card > strong,
.instant-delivery-card > small,
.instant-delivery-card > .instant-delivery-meta,
.instant-delivery-card > .instant-delivery-status {
    grid-column: 1;
}
.instant-delivery-card > b {
    grid-column: 2;
    grid-row: 2;
    color: var(--blue);
    font-size: 18px;
    white-space: nowrap;
}
.instant-delivery-card > small {
    color: #687386;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}
.instant-delivery-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.instant-delivery-options > span {
    padding: 5px 8px;
    border-radius: 6px;
    color: #536176;
    background: #f1f4f8;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.instant-delivery-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}
.instant-featured {
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
    background: #ff6b35;
    font-style: normal;
}
.instant-delivery-meta {
    color: #42516a;
    font-size: 14px;
    font-weight: 500;
}
.instant-delivery-card .instant-price-condition {
    grid-column: 2;
    grid-row: 3;
    text-align: right;
}
.instant-delivery-empty {
    padding: 18px;
    border-radius: 9px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}
.instant-fixed-spec-notice {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 22px;
    border: 1px solid #c5d5f8;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7faff 0%, #edf3ff 100%);
    box-shadow: 0 8px 24px rgba(24, 84, 232, .08);
}
.instant-fixed-spec-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #fff;
    background: #1854e8;
    box-shadow: 0 7px 15px rgba(24, 84, 232, .22);
}
.instant-fixed-spec-icon svg { width: 27px; height: 27px; }
.instant-fixed-spec-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
    word-break: keep-all;
}
.instant-fixed-spec-copy strong { color: #172f58; font-size: 16px; line-height: 1.45; }
.instant-fixed-spec-copy > span { color: #62718a; font-size: 13px; line-height: 1.55; }
.instant-fixed-spec-consult {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 21px;
    color: #fff;
    background: #1854e8;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
.detail-skeleton {
    width: 100%;
    grid-column: 1 / -1;
    pointer-events: none;
}
.detail-skeleton > i,
.getQuote.is-loading,
.mobile-quote-confirm.is-loading {
    background-color: #edf0f4;
    background-image: linear-gradient(100deg, #edf0f4 20%, #f8f9fb 42%, #e8ecf1 64%);
    background-size: 220% 100%;
    animation: detail-skeleton-shimmer 1.35s ease-in-out infinite;
}
.detail-skeleton > i {
    width: 100%;
    display: block;
    border: 0;
    font-style: normal;
}
.detail-skeleton-instant > i { height: 104px; border-radius: 14px; }
.detail-skeleton-model > i { height: 150px; border-radius: 14px; }
.detail-skeleton-color > i { height: 90px; border-radius: 14px; }
.detail-skeleton-option > i { height: 160px; border-radius: 14px; }
.detail-skeleton-contract > i { height: 58px; border-radius: 14px; }
@keyframes detail-skeleton-shimmer {
    to { background-position-x: -220%; }
}
@media (prefers-reduced-motion: reduce) {
    .detail-skeleton > i,
    .getQuote.is-loading,
    .mobile-quote-confirm.is-loading {
        animation: none;
    }
}
.instant-contract-condition {
    margin-top: 16px;
    padding: 24px;
    border: 1px solid #b9cdf7;
    border-radius: 13px;
    background: linear-gradient(135deg, #f4f8ff, #eaf1ff);
}
.instant-contract-condition span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}
.instant-contract-condition strong {
    display: block;
    font-size: 22px;
}
.instant-contract-condition p {
    margin: 10px 0 0;
    color: #61708a;
    font-size: 13px;
    line-height: 1.6;
}
#contract.is-instant-contract > .choice-block,
#contract.is-instant-contract > .insurance-panel,
#contract.is-instant-contract .contract-heading .contract-defer {
    display: none;
}
.popular-title small {
    float: right;
    color: var(--muted);
    font-weight: 400;
}
.model-list {
    display: grid;
    gap: 10px;
}

/* KGM 차량 조합 */
.kgm-model-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kgm-model-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kgm-model-step h4 {
    margin: 0;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.kgm-step-heading {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kgm-step-heading .document-links {
    flex: 0 0 auto;
}

.kgm-step-heading .spec-button {
    min-height: 38px;
    margin: 0;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 19px;
}

.kgm-model-step .kgm-step-buttons {
    width: 100%;
    grid-template-columns: repeat(var(--kgm-step-count, 1), minmax(0, 1fr));
}

.kgm-model-step .kgm-step-buttons button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    word-break: keep-all;
}

@media (max-width: 640px) {
    .kgm-model-steps {
        gap: 20px;
    }

    .kgm-step-heading {
        min-height: 36px;
    }

    .kgm-step-heading .spec-button {
        min-height: 34px;
        padding-inline: 12px;
    }

}

.model-family-list {
    display: grid;
    gap: 0;
    border-top: 1px solid #e2e7ee;
}

.model-family-item {
    min-width: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #e2e7ee;
    border-radius: 0;
    background: #fff;
    transition: background-color .2s ease;
}

.model-family-item:hover {
    background: #fafbfc;
}

.model-family-item.is-open {
    background: #f7f8fa;
    box-shadow: none;
}

.model-family-button {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 18px 4px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 28px;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: #111827;
    text-align: left;
    cursor: pointer;
    transition: background-color .2s ease;
}

.model-family-button:hover {
    background: transparent;
}

.model-family-button:focus {
    outline: none;
}

.model-family-button:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(23, 81, 229, .45);
}

.model-family-button span {
    font-size: 16px;
    font-weight: 700;
    padding-left: 8px;
}

.model-family-button em {
    color: #1751e5;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.model-family-button i {
    width: 28px;
    height: 28px;
    grid-column: 3;
    position: relative;
    background: transparent;
}

.model-family-button i::before {
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-right: 1.5px solid #66758a;
    border-bottom: 1.5px solid #66758a;
    content: "";
    transform: translate(-50%, -65%) rotate(45deg);
    transform-origin: center;
    transition: transform .2s ease, border-color .2s ease;
}

.model-family-button.is-selected {
    background: transparent;
}

.model-family-button.is-selected span {
    color: #111827;
}

.model-family-item.is-open .model-family-button i {
    background: transparent;
}

.model-family-item.is-open .model-family-button i::before {
    border-color: var(--blue);
    transform: translate(-50%, -35%) rotate(225deg);
}

.model-variant-panel {
    display: none;
    padding: 0 18px 20px;
    border-top: 0;
    background: transparent;
}

.model-variant-panel.is-active {
    display: block;
}

.model-variant-heading {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.model-variant-heading strong {
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.model-variant-heading small {
    color: #667085;
    font-size: 14px;
    font-weight: 500;
}

.model-variant-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
}

.model-variant-list .model-row {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    flex: none;
    padding: 14px 16px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 12px;
    border-color: #d4dae3;
    border-radius: 12px;
    background: #fff;
}

.model-variant-list .model-row b {
    width: 20px;
    height: 20px;
    display: grid;
    border-width: 1.5px;
}

.model-variant-list .model-row span div {
    font-size: 16px;
    font-weight: 700;
}

.model-variant-list .model-row em {
    color: #475569;
    font-size: 13px;
    white-space: nowrap;
}

.model-variant-list .model-row.is-selected {
    border-color: #253044;
    background: #fff;
    box-shadow: none;
}

.model-variant-list .model-row.is-selected span div {
    color: #111827;
}
.model-row {
    min-width: 280px;
    flex: 1 0 280px;
}
.model-row {
    width: 100%;
    padding: 18px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    text-align: left;
    cursor: pointer;
}
.model-row b {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    color: transparent;
    background: #fff;
}
.model-row span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.model-row small {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
}
.model-row .model-basic-items {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    color: #596579;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}
.model-row .model-basic-items-text {
    min-width: 0;
    display: block;
    overflow: hidden;
    flex: 1 1 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.model-row .model-basic-items-toggle {
    display: inline-flex;
    align-self: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    color: #7b8493;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
}
.model-row .model-basic-items-toggle:hover,
.model-row .model-basic-items-toggle:focus-visible {
    color: var(--blue);
}
.model-row .model-basic-items-toggle:focus-visible {
    outline: 1px solid var(--blue);
    outline-offset: 2px;
    border-radius: 2px;
}
.model-row .model-basic-items-toggle i {
    font-size: 8px;
    font-style: normal;
}
.model-row .model-basic-items.is-expanded .model-basic-items-text {
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
}
.model-row em {
    font-style: normal;
    /* font-weight: 700; */
}
.model-row.is-selected {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px var(--blue);
}
.vehicle-spec-table {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}
.vehicle-spec-table div {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}
.vehicle-spec-table div:last-child {
    border-bottom: 0;
}
.vehicle-spec-table span {
    color: var(--muted);
    font-size: 12px;
}
.vehicle-spec-table strong {
    font-size: 13px;
}
.defer-choice {
    margin-top: 22px;
    padding: 10px 15px;
    border: 1px solid #dbe1e9;
    border-radius: 7px;
    color: #667185;
    background: #fff;
    cursor: pointer;
}
.defer-choice:hover,
.defer-choice.is-selected {
    color: var(--blue);
    border-color: var(--blue);
    background: #f1f5ff;
}
.tip-box {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--muted);
    background: #f4f7fb;
    font-size: 11px;
}
.tip-box strong {
    margin-right: 6px;
    color: var(--blue);
}
.multiple-note {
    margin-left: 8px;
    color: var(--muted);
    font-size: 11px;
}
.color-choice-block + .color-choice-block {
    margin-top: 28px;
}
.color-list-heading {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.color-list-heading h4 {
    margin: 0;
    font-size: 16px;
}
.color-list-heading > span {
    color: #343b49;
    font-size: 15px;
    font-weight: 600;
}
.color-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}
.color-choice {
    position: relative;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    padding: 0;
    overflow: visible;
    border: 1px solid #d9dee6;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.color-choice:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(7, 28, 66, .12);
}
.color-choice i {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: 14px;
}
.color-choice .multi {
    background: conic-gradient(#111 0 25%, #eee 0 50%, #777 0 75%, #1245db 0);
}
.color-choice.is-selected {
    border-color: #1a2f55;
    box-shadow: inset 0 0 0 1px #1a2f55;
}
.color-choice.is-selected::after {
    content: '✓';
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 29px;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .45);
}
.color-best {
    position: absolute;
    z-index: 3;
    left: 5px;
    bottom: -7px;
    padding: 3px 6px;
    border-radius: 3px;
    color: #ef3340;
    background: #fff;
    box-shadow: 0 2px 7px rgba(8, 25, 57, .1);
    font-size: 10px;
    font-weight: 900;
}
.color-choice-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.color-choice.is-disabled {
    opacity: .45;
    pointer-events: none;
}
.color-choice.is-rule-disabled,
.color-choice.is-rule-disabled:hover {
    opacity: .32;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Vehicle options */
.option-list {
    padding-top: 25px;
    display: grid;
    gap: 10px;
}
.option-list label {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    cursor: pointer;
}
.option-list input {
    width: 18px;
    height: 18px;
    margin: 0 14px 0 0;
    accent-color: var(--blue);
}
.option-list span {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}
.option-list small {
    color: var(--muted);
}
.option-list b {
    color: var(--blue);
    font-size: 12px;
}
.option-heading > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.option-heading small {
    color: #8c949f;
    font-size: 10px;
}
.vehicle-option-list {
    display: grid;
    gap: 10px;
}
.vehicle-option-list label {
    position: relative;
    min-height: 0;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid #d9dfe8;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.vehicle-option-list label:hover {
    border-color: #9cadd0;
    box-shadow: 0 8px 22px rgba(20, 43, 83, 0.08);
    transform: translateY(-1px);
}
.vehicle-option-list label.is-selected {
    border-color: #1751e5;
    background: linear-gradient(100deg, #f5f8ff 0%, #fff 72%);
    box-shadow:
        inset 0 0 0 1px #1751e5,
        0 8px 24px rgba(23, 81, 229, 0.1);
}
.vehicle-option-list label.is-rule-disabled,
.vehicle-option-list label.is-rule-disabled:hover {
    opacity: .42;
    cursor: not-allowed;
    border-color: var(--line);
    background: #f7f8fa;
    box-shadow: none;
    transform: none;
}
.vehicle-option-list label.is-rule-required {
    cursor: default;
}
.vehicle-option-list label.is-description-open {
    align-items: start;
}
.vehicle-option-list label.is-description-open > i {
    margin-top: 4px;
}
.vehicle-option-list input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vehicle-option-list > label > i {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border: 2px solid #cbd3df;
    border-radius: 8px;
    background: #fff;
    color: transparent;
    font-size: 13px;
    font-weight: 900;
    font-style: normal;
    transition: all 0.2s ease;
}
.vehicle-option-list label.is-selected > i {
    color: #fff;
    border-color: #1751e5;
    background: #1751e5;
    box-shadow: 0 4px 10px rgba(23, 81, 229, 0.28);
    transform: scale(1.04);
}
.vehicle-option-list .option-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-left: 0;
}
.vehicle-option-list .option-summary {
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.vehicle-option-list .option-name {
    color: #182033;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    word-break: keep-all;
}
.vehicle-option-list strong {
    font-size: 16px;
}
.vehicle-option-list em {
    padding: 2px 5px;
    color: #27bcd0;
    background: #e8fafc;
    font-size: 9px;
    font-style: normal;
}
.vehicle-option-list small {
    width: 100%;
    color: #4e596b;
    font-size: 14px;
}
.vehicle-option-list .option-description {
    display: none;
    color: #4e596b;
    font-size: 12px;
    line-height: 1.6;
    word-break: keep-all;
}
.vehicle-option-list label.is-description-open .option-description {
    margin-top: 8px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 8px 20px;
    border-top: 1px solid #e4e9f0;
}
.option-description-intro,
.option-description-paragraph {
    grid-column: 1 / -1;
    display: block;
    color: #4e596b;
    font-weight: 600;
}
.option-description-paragraph { margin-top: 3px; }
.option-description-item {
    position: relative;
    display: block;
    padding-left: 15px;
    line-height: 1.55;
}
.option-description-item::before {
    content: '•';
    position: absolute;
    top: 0;
    left: 2px;
    color: var(--blue);
    font-weight: 900;
}
.option-description-note {
    grid-column: 1 / -1;
    margin-top: 3px;
    padding: 4px 6px;
    display: block;
    border-left: 2px solid #cbd6ec;
    border-radius: 0 5px 5px 0;
    color: #6f7989;
    background: #f5f7fb;
    font-size: 0.82em;
    line-height: 1.6;
}
.option-description-toggle {
    width: fit-content;
    margin: 0;
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    color: #667085;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.option-description-toggle::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: '';
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}
.option-description-toggle[aria-expanded="true"]::after { transform: rotate(225deg) translate(-1px, -1px); }
.option-description-toggle:hover {
    color: #263247;
    background: transparent;
}
.vehicle-option-list small b {
    font-size: 7px;
}
.vehicle-option-list mark {
    flex: 0 0 auto;
    color: #182033;
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.apply-options {
    margin-top: 16px;
    padding: 13px 22px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    font-weight: 700;
    cursor: pointer;
}
.option-guide {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

/* Contract and insurance controls */
.contract-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.compact .choice {
    min-width: 0;
}
.condition-description {
    margin-bottom: 14px;
}
.condition-description strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}
.condition-description p,
.choice-help {
    margin: 0;
    color: #566174;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}
.guarantee-block > h4 {
    display: flex;
    align-items: center;
    gap: 7px;
}
.help-mark {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #d8dee7;
    border-radius: 50%;
    color: #aab3c0;
    font-size: 11px;
    font-weight: 500;
}
.guarantee-panel {
    padding: 24px 30px;
    border: 1px solid #e1e5ea;
    border-radius: 15px;
    background: #f7f8fa;
}
.guarantee-panel .condition-description strong {
    font-size: 15px;
}
.guarantee-panel .condition-description p {
    color: #353b45;
    font-size: 12px;
}
.guarantee-panel .condition-description b {
    font-weight: 700;
}
.deposit-description {
    margin-top: 22px;
}
.segmented-choice {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border: 1px solid #e0e4ea;
    border-radius: 15px;
    background: #fff;
}
.segmented-choice button {
    height: 58px;
    border: 0;
    border-right: 1px solid #e0e4ea;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
}
.segmented-choice button:last-child {
    border-right: 0;
}
.segmented-choice button.is-selected {
    position: relative;
    z-index: 1;
    margin: -1px;
    border: 1px solid #17191d;
    border-radius: 14px;
    font-weight: 700;
}

[data-contract-list="deposit"] button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1.25;
}

[data-contract-list="deposit"] [data-deposit-amount] {
    color: #1751e5;
    font-size: 13px;
    font-weight: 700;
    opacity: 1;
}
[data-contract-list="deposit"] button.is-selected [data-deposit-amount] {
    color: #e5efff;
}
.selected-deposit-popover {
    display: none;
}
.period-choice {
    grid-template-columns: repeat(3, 1fr);
    background: #f7f8fa;
}
.period-choice.five-choice {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.period-choice button {
    background: #f7f8fa;
}
.period-choice button.is-selected {
    background: #fff;
}
.four-choice {
    grid-template-columns: repeat(4, 1fr);
    background: #f7f8fa;
}
.four-choice button {
    background: #f7f8fa;
}
.four-choice button.is-selected {
    background: #fff;
}
.insurance-note {
    margin: 10px 0 0;
    color: #475164;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}
.insurance-detail-list {
    overflow: hidden;
    border: 1px solid #e0e4ea;
    border-radius: 14px;
    background: #fff;
}
.insurance-detail-list div {
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e4ea;
}
.insurance-detail-list div:last-child {
    border-bottom: 0;
}
.insurance-detail-list span,
.insurance-detail-list strong {
    font-size: 14px;
}
.insurance-detail-list span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.insurance-detail-list .help-mark {
    font-style: normal;
}
.choice-help {
    margin: -5px 0 14px;
}
.insurance-panel {
    margin-top: 30px;
    padding: 24px;
    border-radius: 12px;
    background: #f4f7fb;
}
.insurance-panel > h4 {
    margin: 0 0 5px;
    font-size: 16px;
}
.insurance-panel .choice-block {
    padding-top: 18px;
}
.insurance-panel h5 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
}
.insurance-summary {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #dfe5ed;
}
.insurance-summary div {
    padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}
.insurance-summary span {
    color: var(--muted);
    font-size: 11px;
}
.insurance-summary strong {
    font-size: 12px;
}
.deposit-control {
    width: 280px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    border: 1px solid var(--line);
    border-radius: 9px;
    overflow: hidden;
}
.deposit-control button {
    border: 0;
    background: #f4f7fb;
    color: var(--blue);
    font-size: 22px;
    cursor: pointer;
}
.deposit-control strong {
    padding: 13px;
    text-align: center;
}
.contract-notes {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 10px;
    background: #f4f7fb;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}
.contract-notes p {
    margin: 2px 0;
}
.rate-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}
.rate-choice {
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
}
.rate-choice span {
    font-weight: 700;
}
.rate-choice small {
    color: var(--muted);
    font-size: 9px;
}
.rate-choice strong {
    color: var(--blue);
    font-size: 11px;
}
.rate-choice.is-selected {
    border-color: var(--blue);
    background: #f1f5ff;
    box-shadow: inset 0 0 0 1px var(--blue);
}
.included-benefits {
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.included-benefits div {
    padding: 22px 16px;
    border-radius: 10px;
    background: #f4f7fb;
    text-align: center;
}
.included-benefits strong {
    display: block;
    font-size: 14px;
}
.included-benefits span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
}

.mobile-quote-summary {
    display: none;
}
/* Sticky estimate summary */
.quote-card {
    position: sticky;
    top: 140px;
    align-self: start;
    padding: 18px;
    border: 1px solid #dce2eb;
    border-radius: 18px;
    background: white;
    box-shadow: 0 20px 50px rgba(6, 21, 45, 0.11);
}
.quote-recalculation {
    position: absolute;
    z-index: 12;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: inherit;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(3px);
}
.quote-recalculation[hidden] {
    display: none;
}
.quote-recalculation-content {
    width: min(100%, 270px);
    text-align: center;
}
.quote-recalculation-content strong {
    display: block;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
}
.quote-recalculation-bar {
    height: 5px;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 10px;
    background: #dbe4f1;
}
.quote-recalculation-bar span {
    width: 42%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #1751e5;
    animation: quote-recalculation-progress 1.05s ease-in-out infinite;
}
@keyframes quote-recalculation-progress {
    from { transform: translateX(-115%); }
    to { transform: translateX(255%); }
}
.quote-card h2 {
    margin: 10px 0 3px;
    font-size: 26px;
    font-weight: 800;
}
.quote-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}
.quote-vehicle {
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-vehicle img {
    width: 105%;
    max-width: none;
}
.quote-selections {
    margin: 0;
    padding: 22px 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.quote-selections div {
    margin: 9px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.quote-selections dt {
    color: #535e70;
    font-size: 14px;
    font-weight: 600;
}
.quote-selections dd {
    margin: 0;
    max-width: 220px;
    color: #252c38;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}
.quote-price {
    padding: 12px 0 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    text-align: left;
}
.quote-price span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.quote-price strong {
    display: block;
    margin: 1px 0;
    color: var(--blue);
    font-size: 25px;
    font-weight: 800;
}
.quote-price .quote-monthly,
.quote-price .quote-price-deposit {
    min-width: 0;
    padding: 5px 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
}
.quote-price .quote-monthly strong,
.quote-price .quote-price-deposit strong {
    text-align: right;
}
.quote-price .quote-price-deposit strong {
    color: #182230;
    font-size: 18px;
    font-weight: 700;
}
.quote-price [data-quote-feedback],
.quote-price [data-instant-quote-feedback] {
    grid-column: 1 / -1;
}
.quote-price small {
    color: #929baa;
    font-size: 11px;
}
.quote-price .quote-tax {
    margin-top: 6px;
    grid-column: 1 / -1;
    display: block;
    color: #748094;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    text-align: right;
}
.quote-tax[hidden] {
    display: none;
}
.quote-card.is-quote-muted .quote-price span,
.quote-card.is-quote-muted .quote-price strong,
.quote-card.is-quote-muted .quote-price small,
.quote-card.is-quote-muted .mobile-quote-price small,
.quote-card.is-quote-muted .mobile-quote-price strong {
    color: #9aa2af;
}
.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quote-actions .quote-action-button {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid;
    border-radius: 20px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.quote-actions .getQuote {
    border-color: #123f78;
    background: #123f78;
}
.quote-actions .getQuote:hover,
.quote-actions .getQuote:focus-visible {
    border-color: #0b2f5e;
    background: #0b2f5e;
    box-shadow: 0 7px 16px rgba(18, 63, 120, .22);
}
.quote-actions .getQuote.is-loading,
.quote-actions .getQuote.is-loading:hover,
.quote-actions .getQuote.is-loading:focus-visible {
    border-color: #e5e9ef;
    color: #7b8797;
    box-shadow: none;
}
.quote-actions .js-open-consultation {
    border-color: #1751e5;
    background: #1751e5;
}
.quote-actions .js-open-consultation:hover,
.quote-actions .js-open-consultation:focus-visible {
    border-color: #0f42c2;
    background: #0f42c2;
    box-shadow: 0 7px 16px rgba(23, 81, 229, .22);
}
.quote-actions .quote-action-button:active {
    transform: translateY(1px);
}
.quote-button {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 9px;
    color: white;
    background: var(--blue);
    font-weight: 700;
    cursor: pointer;
}
.quote-button:hover {
    background: #0c36b6;
}
.manager-link {
    margin-top: 10px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 9px;
}
.manager-link span {
    font-size: 11px;
}
.manager-link strong {
    color: var(--blue);
    font-size: 15px;
}

/* 차량 상담 신청 */
.vehicle-consult-summary {
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid #e0e7f0;
    border-radius: 14px;
    background: #fff;
}
.vehicle-consult-summary > strong {
    display: block;
    margin-bottom: 9px;
    color: #25324a;
    font-size: 15px;
    font-weight: 800;
}
.vehicle-consult-summary dl {
    margin: 0;
}
.vehicle-consult-summary dl > div {
    padding: 5px 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
}
.vehicle-consult-summary dt,
.vehicle-consult-summary dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}
.vehicle-consult-summary dt {
    color: #7b8799;
    font-weight: 500;
}
.vehicle-consult-summary dd {
    color: #26364f;
    font-weight: 650;
    text-align: right;
    word-break: keep-all;
}
.vehicle-consult-summary [data-consultation-summary="options"] span {
    display: block;
}
.vehicle-consult-summary [data-consultation-summary="options"] span + span {
    margin-top: 4px;
}
.vehicle-consult-modal .consultation-feedback.is-error {
    color: #c02b2b;
}
.vehicle-consult-modal .consultation-feedback.is-success {
    color: #08783e;
}
@media (max-width: 640px) {
    .vehicle-consult-summary {
        margin-bottom: 16px;
        padding: 14px 16px;
    }
    .vehicle-consult-summary dl > div {
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }
    .vehicle-consult-summary dt,
    .vehicle-consult-summary dd {
        font-size: 14px;
        line-height: 1.4;
    }
    .vehicle-consult-summary dd {
        max-width: none;
        overflow-wrap: break-word;
    }
}

/* Detail-page customer benefits */
.detail-benefits {
    position: relative;
    overflow: hidden;
    padding: 84px 0 78px;
    color: #fff;
    background: #07182f;
}
.detail-benefits::before {
    content: none;
}
.detail-benefits .detail-container { position: relative; z-index: 1; }
.detail-benefits-heading {
    margin-bottom: 34px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.detail-benefits-heading span {
    color: var(--lime);
    font-size: 11px;
    font-weight: 900;
}
.detail-benefits-heading h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
}
.detail-benefits-heading > p {
    margin: 0 0 4px;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    line-height: 1.75;
}
.detail-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.detail-benefit-grid article {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.detail-benefit-grid article::after {
    content: none;
}
.detail-benefit-grid article:hover {
    border-color: rgba(135,174,255,.48);
    background: rgba(255,255,255,.11);
    box-shadow: 0 22px 46px rgba(1,10,28,.26), inset 0 1px 0 rgba(255,255,255,.1);
    transform: translateY(-7px);
}
.detail-benefit-top {
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.detail-benefit-top > span {
    color: var(--lime);
    font-size: 30px;
    font-weight: 900;
}
.detail-benefit-top > small {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: rgba(255,255,255,.55);
    font-size: 8px;
    font-weight: 800;
}
.detail-benefit-grid h3 {
    margin: 0 0 18px;
    font-size: 23px;
    font-weight: 800;
}
.detail-benefit-grid article > p {
    min-height: 48px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
}
.detail-benefit-grid article > strong {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 17px;
}
.detail-benefit-grid article > strong b { color: var(--lime); }
.detail-benefit-notice {
    margin: 20px 2px 0;
    color: rgba(255,255,255,.62);
    text-align: right;
    font-size: 14px;
    font-weight: 500;
}

/* Related models and footer */
.other-models {
    padding: 100px 0;
    background: white;
}
.other-models h2 {
    margin: 0 0 35px;
    font-size: 36px;
    font-weight: 800;
}
.other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.other-vehicle-card {
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(6, 21, 45, .09);
    transition: transform .22s, box-shadow .22s;
}
.other-vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(6, 21, 45, .12);
}
.other-vehicle-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f4f6f9;
}
.other-vehicle-image img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
    transform: scale(1.035);
    transition: transform .3s;
}
.other-vehicle-card:hover .other-vehicle-image img { transform: scale(1.07); }
.other-vehicle-body { padding: 18px; }
.other-vehicle-title {
    min-height: 62px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.other-vehicle-title-copy { min-width: 0; }
.other-vehicle-title h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}
.other-vehicle-title > span {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 3px;
    white-space: nowrap;
}
.other-vehicle-title small { color: #667085; font-size: 14px; font-weight: 500; line-height: 1.3; }
.other-vehicle-title strong { color: var(--blue); font-size: 18px; line-height: 1.3; }
.other-vehicle-title-copy > p {
    margin: 10px 0 0;
    overflow: hidden;
    color: #566174;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.other-vehicle-cta {
    min-height: 40px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--blue);
    border-radius: 30px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}
.detail-footer {
    padding: 55px 0;
    color: #8791a1;
    background: #08111f;
    font-size: 12px;
}
.detail-footer .detail-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}
.detail-footer strong {
    color: white;
    font-size: 18px;
}
.detail-footer p {
    margin: 0;
}

/* Refined contract controls */
#contract {
    padding: 44px 46px;
}
#contract .choice-block {
    padding-top: 14px;
}
#contract .choice-block > h4 {
    margin-bottom: 10px;
    font-size: 15px;
}
#contract .choice-help {
    margin: 0 0 14px;
    color: #8a94a3;
}
.guarantee-panel {
    padding: 20px;
    border: 1px solid #e5e9ef;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fafc 0%, #f3f6fa 100%);
    box-shadow: 0 10px 28px rgba(6, 21, 45, 0.05);
}
.guarantee-panel .condition-description {
    margin-bottom: 16px;
}
.guarantee-panel .condition-description strong {
    margin-bottom: 8px;
    font-size: 16px;
}
.guarantee-panel .condition-description p {
    color: #566174;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}
.guarantee-panel .condition-description p b {
    color: #2e3848;
    font-size: inherit;
}
.guarantee-panel .deposit-description {
    /* margin-top: 28px; */
    /* padding-top: 27px; */
    /* border-top: 1px solid #e1e6ed; */
}
.segmented-choice {
    padding: 5px;
    gap: 5px;
    overflow: visible;
    border: 0;
    border-radius: 14px;
    background: #e9edf3;
}
.segmented-choice button {
    height: 52px;
    border: 0 !important;
    border-radius: 10px;
    color: #596577;
    background: transparent;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}
.segmented-choice button:hover {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.72);
}
.segmented-choice button.is-selected {
    margin: 0;
    color: #fff;
    border: 0 !important;
    border-radius: 10px;
    background: #123f78;
    box-shadow: 0 6px 15px rgba(11, 35, 69, 0.2);
    transform: translateY(-1px);
}
.period-choice,
.four-choice {
    background: #edf1f6;
}
.fuel-choice {
    width: 180px;
    grid-template-columns: 1fr;
}
.period-choice button,
.four-choice button {
    background: transparent;
}
.period-choice button.is-selected,
.four-choice button.is-selected {
    color: #fff;
    background: #123f78;
}
.help-mark {
    border-color: #d4dbe5;
    color: #929dad;
    background: #fff;
}
.insurance-panel {
    margin-top: 34px;
    padding: 30px;
    border: 1px solid #e5e9ef;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fafc 0%, #f3f6fa 100%);
    box-shadow: 0 10px 28px rgba(6, 21, 45, 0.05);
}
.insurance-panel > h4 {
    font-size: 18px;
}
.insurance-panel .choice-block {
    padding-top: 27px;
}
.insurance-panel .choice-block + .choice-block {
    margin-top: 4px;
    padding-top: 27px;
    border-top: 1px solid #e1e6ed;
}
.insurance-note {
    padding: 13px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}
.insurance-detail-list {
    border: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px #e0e5ec;
}
.insurance-detail-list div {
    padding: 17px 20px;
}
.contract-heading {
    padding-bottom: 10px;
    /* border-bottom: 1px solid var(--line); */
}
.contract-defer {
    padding: 9px 12px;
    border-radius: 9px;
    transition: background 0.18s ease;
}
.contract-defer:hover {
    background: #f3f6fa;
}
.contract-defer.is-selected {
    color: var(--blue);
    background: #eef3ff;
}
.contract-defer.is-selected span {
    box-shadow: 0 4px 10px rgba(18, 69, 219, 0.2);
}

/* Responsive */
@media (max-width: 640px) {
    #contract {
        padding: 24px 18px;
    }
    .guarantee-panel,
    .insurance-panel {
        padding: 22px 16px;
        border-radius: 16px;
    }
    .segmented-choice {
        gap: 3px;
        padding: 4px;
    }
    .segmented-choice button {
        height: 48px;
        font-size: 12px;
    }
}

/* Estimate guide tooltips */
.help-mark {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-flex;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 0 0 4px;
    padding: 0;
    border: 1px solid #cfd6e2;
    border-radius: 50%;
    background: #fff;
    color: #8692a5;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
    cursor: pointer;
}
.help-mark::before {
    content: "?";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    box-sizing: border-box;
    font: 600 12px/1 Arial, sans-serif;
}
.help-mark:hover,
.help-mark:focus-visible {
    border-color: #1751e5;
    color: #1751e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 81, 229, 0.12);
}
.estimate-tooltip-layer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    padding: 24px;
    background: rgba(10, 20, 38, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms ease;
}
.estimate-tooltip-layer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.estimate-tooltip-layer .tooltip-cont {
    position: relative;
    width: min(620px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow-y: auto;
    padding: 34px 36px 36px;
    border: 1px solid #e1e6ee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(11, 27, 52, 0.2);
    transform: translateY(10px) scale(.985);
    transition: transform 160ms ease;
}
.estimate-tooltip-layer.is-open .tooltip-cont {
    transform: translateY(0) scale(1);
}
.estimate-tooltip-layer .tooltip-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #172033;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.estimate-tooltip-layer h2 {
    margin: 0 46px 24px 0;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
}
.estimate-tooltip-layer h3 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 17px;
}
.estimate-tooltip-layer p,
.estimate-tooltip-layer li,
.estimate-tooltip-layer dd {
    color: #596579;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}
.estimate-tooltip-layer section {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #f6f8fb;
}
.estimate-tooltip-layer section p {
    margin: 0;
}
.estimate-tooltip-layer ul {
    margin: 18px 0 0;
    padding: 16px 18px 16px 38px;
    border-radius: 12px;
    background: #f6f8fb;
}
.guide-list {
    display: grid;
    gap: 10px;
    margin: 0;
}
.guide-list > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
}
.guide-list dt {
    color: #1751e5;
    font-size: 15px;
    font-weight: 800;
}
.guide-list dd {
    margin: 0;
}

.tooltip-warning {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff5f4;
    color: #a23b32 !important;
}
body.tooltip-open {
    overflow: hidden;
}
[data-summary="options"] {
    white-space: pre-line;
}
@media (max-width: 640px) {
    .estimate-tooltip-layer {
        align-items: flex-end;
        padding: 0;
    }
    .estimate-tooltip-layer .tooltip-cont {
        width: 100%;
        max-height: 85vh;
        padding: 28px 20px 30px;
        border-radius: 20px 20px 0 0;
    }
    .guide-list > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        padding-bottom: 0;
    }
    .hero-vehicle {
        min-height: 350px;
    }
    .estimate-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 32%);
        gap: 20px;
    }
    .quote-card {
        position: sticky;
        top: 156px;
        padding: 22px;
    }
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 720px) {
    .detail-benefits { padding: 72px 0 68px; }
    .detail-benefits-heading {
        margin-bottom: 30px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
    .detail-benefits-heading h2 { font-size: 30px; }
    .detail-benefits-heading > p br { display: none; }
    .detail-benefit-grid { grid-template-columns: 1fr; }
    .detail-benefit-grid article {
        min-height: 0;
        padding: 24px;
    }
    .detail-benefit-grid article:hover { transform: none; }
    .detail-benefit-top { margin-bottom: 24px; }
    .detail-benefit-grid article > p { min-height: 0; }
    .detail-benefit-notice {
        margin-top: 16px;
        text-align: left;
        line-height: 1.6;
    }
}
@media (max-width: 640px) {
    .detail-container {
        width: min(calc(100% - 30px), var(--max));
        font-size: 16px;
    }
    .vehicle-hero.has-video,
    .vehicle-hero.has-video .hero-grid {
        min-height: 520px;
    }
    .hero-copy {
        padding: 36px 0;
    }
    .hero-copy h1 {
        margin-top: 18px;
        font-size: 42px;
    }
    .hero-subtitle {
        margin: 12px 0 26px;
        font-size: 16px;
        line-height: 1.5;
    }
    .hero-vehicle {
        min-height: 280px;
    }
    .estimate-steps a {
        height: 52px;
        font-size: 14px;
    }
    .estimate-area {
        padding: 28px 0 72px;
    }
    .estimate-intro h2 {
        font-size: 28px;
    }
    .choice-section {
        padding: 24px 18px;
    }
    .choice-heading { padding-bottom: 14px; }
    .choice-heading h3,
    .contract-heading h3 { font-size: 24px; }
    .choice-block h4 { font-size: 16px; }
    .color-list {
        margin-right: -20px;
        padding: 2px 20px 12px 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .color-list::-webkit-scrollbar { display: none; }
    .color-choice {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        border-radius: 13px;
    }
    .color-choice i { border-radius: 12px; }
    .contract-grid {
        grid-template-columns: 1fr;
    }
    .included-benefits {
        grid-template-columns: 1fr;
    }
    .insurance-summary {
        grid-template-columns: 1fr;
    }
    .popular-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
    .vehicle-spec-table div {
        grid-template-columns: 80px 1fr;
    }
    .rate-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .deposit-control {
        width: 100%;
    }
    .guarantee-panel {
        padding: 20px 14px;
    }
    .segmented-choice button {
        height: 52px;
        font-size: 14px;
    }
    .contract-heading {
        align-items: flex-start;
        gap: 15px;
    }
    .contract-defer {
        font-size: 12px;
    }
    .other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .other-vehicle-body { padding: 13px 11px; }
    .other-vehicle-card { box-shadow: 0 6px 18px rgba(6, 21, 45, .08); }
    .other-vehicle-card:hover { transform: none; }
    .other-vehicle-title {
        min-height: 80px;
        margin-bottom: 12px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 7px;
    }
    .other-vehicle-title h3 { font-size: 17px; }
    .other-vehicle-title > span { align-items: flex-start; }
    .other-vehicle-title small { font-size: 14px; }
    .other-vehicle-title strong { font-size: 16px; }
    .other-vehicle-title-copy > p { display: none; }
    .other-vehicle-cta { min-height: 38px; }
    .detail-footer .detail-container {
        grid-template-columns: 1fr;
    }
    .breadcrumb {
        display: none;
    }
}

@media (max-width: 720px) {
    body {
        --mobile-quote-closed-height: 174px;
        padding-bottom: var(--mobile-quote-closed-height);
    }
    .estimate-layout { grid-template-columns: 1fr; }
    .instant-fixed-spec-notice {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        margin-bottom: 16px;
        padding: 16px;
        border-radius: 14px;
    }
    .instant-fixed-spec-icon { width: 42px; height: 42px; border-radius: 12px; }
    .instant-fixed-spec-icon svg { width: 24px; height: 24px; }
    .instant-fixed-spec-copy strong { font-size: 16px; }
    .instant-fixed-spec-copy > span { font-size: 14px; }
    .instant-fixed-spec-consult { grid-column: 1 / -1; width: 100%; min-height: 44px; }
    .instant-delivery-heading small {
        font-size: 13px;
        line-height: 1.5;
    }
    .instant-delivery-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px 12px;
        padding: 16px;
    }
    .instant-delivery-card > .instant-delivery-status,
    .instant-delivery-card > strong,
    .instant-delivery-card > b {
        grid-column: 1;
        grid-row: auto;
    }
    .instant-delivery-status {
        flex-wrap: nowrap;
        font-size: 13px;
        white-space: nowrap;
    }
    .instant-featured {
        flex: 0 0 auto;
        padding: 3px 7px;
        border-radius: 6px;
        white-space: nowrap;
    }
    .instant-delivery-card > strong {
        font-size: 15px;
        line-height: 1.4;
        word-break: keep-all;
    }
    .instant-delivery-card > b {
        font-size: 20px;
        line-height: 1.4;
        text-align: right;
    }
    .instant-delivery-card > small:not(.instant-price-condition),
    .instant-delivery-card > .instant-delivery-meta {
        grid-column: 1 / -1;
        font-size: 14px;
        line-height: 1.6;
    }
    .instant-delivery-options {
        gap: 6px;
    }
    .instant-delivery-options > span {
        padding: 6px 9px;
        font-size: 12px;
        line-height: 1.45;
    }
    .quote-card {
        position: fixed;
        z-index: 80;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: calc(100dvh - 8px);
        max-height: calc(100dvh - 8px);
        padding: 0 16px calc(16px + env(safe-area-inset-bottom));
        display: flex;
        box-sizing: border-box;
        overflow: hidden;
        flex-direction: column;
        border: 0;
        border-radius: 22px 22px 0 0;
        background: #fff;
        box-shadow: 0 -12px 38px rgba(9, 18, 34, .2);
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, 100%, 0);
        transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, visibility .2s ease;
        will-change: transform;
    }
    .quote-card .quote-selections {
        padding: 17px 0;
    }
    .quote-card.is-mobile-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, calc(100% - var(--mobile-quote-closed-height)), 0);
    }
    .quote-recalculation {
        position: absolute;
        inset: 0;
        min-height: 0;
        padding: 22px;
        border-radius: 22px 22px 0 0;
    }
    .quote-recalculation-content {
        width: min(100%, 300px);
    }
    .quote-card.is-mobile-open {
        overflow: hidden;
        transform: translate3d(0, 0, 0);
    }
    .quote-card.is-mobile-dragging {
        transition: none;
    }
    .mobile-quote-summary {
        position: sticky;
        z-index: 3;
        top: 0;
        order: -1;
        width: calc(100% + 32px);
        margin: 0 -16px 16px;
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        background: #fff;
    }
    .mobile-quote-toggle {
        width: 100%;
        min-height: 28px;
        margin: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 0;
        background: #fff;
        cursor: grab;
        touch-action: none;
        user-select: none;
    }
    .mobile-quote-toggle > span {
        width: 42px;
        height: 5px;
        display: block;
        border-radius: 999px;
        background: #cdd4df;
    }
    .mobile-quote-compact {
        padding: 6px 16px calc(14px + env(safe-area-inset-bottom));
        display: grid;
        gap: 9px;
    }
    .mobile-quote-price {
        display: grid;
        gap: 4px;
    }
    .mobile-quote-deposit,
    .mobile-quote-rent {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: baseline;
        gap: 12px;
    }
    .mobile-quote-rent-amount {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        gap: 2px;
    }
    .mobile-quote-price small,
    .mobile-quote-deposit b {
        color: #8a94a4;
        font-size: 14px;
        font-weight: 600;
        text-align: right;
    }
    .mobile-quote-deposit > small,
    .mobile-quote-rent > small {
        text-align: left;
    }
    .mobile-quote-price strong {
        color: var(--blue);
        font-size: 19px;
        line-height: 1.25;
        text-align: right;
    }
    .mobile-quote-price .quote-tax {
        margin: 0;
        color: #8a94a4;
        font-size: 10px;
        font-weight: 400;
        line-height: 1.35;
        white-space: nowrap;
    }
    [data-contract-list="deposit"] [data-deposit-amount] {
        display: none;
    }
    .selected-deposit-popover:not([hidden]) {
        margin-top: 10px;
        padding: 11px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border: 1px solid #d8e5f7;
        border-radius: 12px;
        color: #253248;
        background: #f4f8fe;
        font-size: 14px;
    }
    .selected-deposit-popover strong {
        color: #123f78;
        font-size: 15px;
        font-weight: 700;
    }
    .mobile-quote-confirm,
    .mobile-quote-consult {
        width: 100%;
        min-height: 46px;
        border: 1px solid transparent;
        border-radius: 20px;
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    .mobile-quote-confirm {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-color: #123f78;
        background: #123f78;
    }
    .mobile-quote-confirm:hover,
    .mobile-quote-confirm:focus-visible {
        border-color: #0b2f5e;
        background: #0b2f5e;
        box-shadow: 0 7px 16px rgba(18, 63, 120, .22);
    }
    .mobile-quote-confirm:disabled { opacity: 1; cursor: wait; }
    .mobile-quote-confirm.is-loading,
    .mobile-quote-confirm.is-loading:hover,
    .mobile-quote-confirm.is-loading:focus-visible {
        border-color: #e5e9ef;
        color: #7b8797;
        box-shadow: none;
    }
    .mobile-quote-consult {
        border-color: #1751e5;
        background: #1751e5;
    }
    .mobile-quote-consult:hover,
    .mobile-quote-consult:focus-visible {
        border-color: #0f42c2;
        background: #0f42c2;
        box-shadow: 0 7px 16px rgba(23, 81, 229, .22);
    }
    .mobile-quote-confirm:active,
    .mobile-quote-consult:active {
        transform: translateY(1px);
    }
    .quote-card.is-mobile-open .mobile-quote-compact {
        display: none;
    }
    .quote-card.is-mobile-open > h2 {
        margin: 0 0 8px;
        flex: 0 0 auto;
    }
    .quote-card.is-mobile-open > .quote-selections {
        min-height: 0;
        margin: 0;
        padding: 8px 0;
        flex: 1 1 auto;
        overflow-x: hidden;
        overflow-y: auto;
        border-top: 1px solid #e8ecf1;
        border-bottom: 1px solid #e8ecf1;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .quote-card.is-mobile-open > .quote-selections::-webkit-scrollbar {
        display: none;
    }
    .quote-card.is-mobile-open > .quote-price {
        padding: 12px 0 8px;
        flex: 0 0 auto;
    }
    .quote-card.is-mobile-open > .quote-actions {
        padding: 0;
        display: flex !important;
        flex: 0 0 auto;
        flex-direction: row !important;
        gap: 8px;
    }
    .quote-card.is-mobile-open > .quote-actions .quote-action-button {
        min-width: 0;
        margin: 0 !important;
        flex: 1 1 0;
    }
    .quote-card.is-mobile-open > .quote-actions .getQuote {
        order: 2;
    }
    .quote-card.is-mobile-open > .quote-actions .js-open-consultation {
        order: 1;
    }

}
@media (max-width: 640px) {


    .model-family-button {
        padding: 15px;
    }

    .model-variant-panel {
        padding: 12px;
    }

    .model-variant-list {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .model-variant-list .model-row {
        width: 100%;
        min-width: 0;
    }

    .model-variant-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* 즉시출고 확정 사양 */
#color.is-instant-disabled,
#options.is-instant-disabled {
    position: relative;
    border-color: #dbe2ec;
    background: #f8fafc;
    cursor: not-allowed;
}
#color.is-instant-disabled .tip-box,
#color.is-instant-disabled .choice-block,
#options.is-instant-disabled .vehicle-option-list {
    opacity: .48;
    filter: grayscale(.35);
    pointer-events: none;
    user-select: none;
}
#color.is-instant-disabled .contract-heading::after,
#options.is-instant-disabled .contract-heading::after {
    content: '즉시출고 확정 사양';
    margin-left: auto;
    padding: 7px 11px;
    border-radius: 999px;
    color: #526076;
    background: #e8edf4;
    font-size: 11px;
    font-weight: 800;
}
.instant-disabled-notice {
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 50%;
    width: min(calc(100% - 40px), 460px);
    padding: 18px 20px;
    display: grid;
    gap: 7px;
    pointer-events: none;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    color: #fff;
    background: rgba(6, 25, 62, .95);
    box-shadow: 0 18px 42px rgba(4, 19, 48, .28);
    transform: translate(-50%, calc(-50% + 8px));
    transition: opacity .18s ease, transform .18s ease;
}
.instant-disabled-notice.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.instant-disabled-notice strong {
    font-size: 15px;
    line-height: 1.5;
}
.instant-disabled-notice span {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.65;
}
@media (max-width: 640px) {
    #color.is-instant-disabled .contract-heading,
    #options.is-instant-disabled .contract-heading {
        align-items: flex-start;
        gap: 10px;
    }
    #color.is-instant-disabled .contract-heading::after,
    #options.is-instant-disabled .contract-heading::after {
        flex: 0 0 auto;
        padding: 6px 9px;
        font-size: 10px;
    }
    .instant-disabled-notice {
        width: calc(100% - 28px);
        padding: 15px 16px;
    }
    .instant-disabled-notice strong { font-size: 13px; }
    .instant-disabled-notice span { font-size: 11px; }
}

/* Contract customer service banner */
.contract-service-banner {
    position: relative;
    min-height: 104px;
    margin: -14px 0 28px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(125, 163, 255, .72);
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 15%, rgba(131, 230, 0, .2), transparent 28%),
        linear-gradient(115deg, #071a3d 0%, #103ba8 58%, #1858e8 100%);
    box-shadow: 0 16px 34px rgba(16, 59, 168, .2);
}
.contract-service-banner::after {
    content: '';
    position: absolute;
    top: -55px;
    right: 90px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}
.contract-service-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #071a3d;
    background: var(--lime);
    box-shadow: 0 7px 18px rgba(131, 230, 0, .28);
    font-size: 20px;
    font-weight: 900;
}
.contract-service-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contract-service-copy small {
    color: var(--lime);
    font-size: 9px;
    font-weight: 900;
}
.contract-service-copy strong {
    color: #fff;
    font-size: 18px;
}
.contract-service-copy em {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}
.contract-service-free {
    position: relative;
    z-index: 1;
    padding: 7px 11px;
    border-radius: 999px;
    color: #071a3d;
    background: var(--lime);
    font-size: 11px;
    font-weight: 900;
}
@media (max-width: 640px) {
    .contract-service-banner {
        min-height: 92px;
        margin: -12px 0 22px;
        padding: 17px 16px;
        grid-template-columns: 40px 1fr;
        gap: 12px;
        border-radius: 15px;
    }
    .contract-service-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 17px;
    }
    .contract-service-copy strong {
        padding-right: 0;
        font-size: clamp(13px, 3.8vw, 16px);
    }
    .contract-service-primary-line {
        display: block;
        /* font-size: 12px; */
        letter-spacing: -0.02em;
        white-space: nowrap;
    }
    .contract-service-benefit {
        line-height: 1.45;
    }
    .contract-service-copy strong > .contract-service-benefit:last-child {
        display: block;
    }
    .contract-service-mobile-break {
        display: none;
    }
    .contract-service-copy em {
        font-size: 14px;
        line-height: 1.45;
    }
    .contract-service-free {
        position: absolute;
        top: 17px;
        right: 14px;
        padding: 5px 7px;
        font-size: 9px;
    }
}
/* Vehicle selection check indicators */
.instant-delivery-card .instant-delivery-status::before,
.model-family-button > span::before {
    content: '';
    width: 19px;
    height: 19px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    color: transparent;
    background: #fff;
    font-size: 11px;
    font-weight: 900;
}
.instant-delivery-card.is-selected .instant-delivery-status::before,
.model-family-button.is-selected > span::before {
    content: '✓';
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
    box-shadow: 0 4px 10px rgba(23, 81, 229, .22);
}
.model-family-button > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.model-row.is-selected > b {
    position: relative;
    overflow: hidden;
    color: transparent;
    border-color: var(--blue);
    background: var(--blue);
}
.model-row.is-selected > b::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

/* Desktop readable typography */
@media (min-width: 981px) {
    .breadcrumb .detail-container {
        font-size: 14px;
    }

    .estimate-layout {
        grid-template-columns: minmax(0, 700px) minmax(300px, 380px);
        justify-content: center;
    }

    .estimate-content {
        width: min(700px, 100%);
    }

    .counting_num,
    .estimate-steps a,
    .segmented-choice button,
    .spec-button,
    .color-loading,
    .color-list-heading > span {
        font-size: 16px;
    }

    .counting_num strong {
        font-size: 17px;
    }

    .choice-heading h3,
    .contract-heading h3 {
        font-size: 28px;
    }

    .choice-block h4,
    #contract .choice-block > h4,
    .color-list-heading h4 {
        font-size: 18px;
    }

    .instant-delivery-heading strong {
        font-size: 19px;
    }

    .instant-delivery-heading small,
    .instant-delivery-card > small,
    .instant-delivery-card > .instant-delivery-meta,
    .instant-delivery-options > span,
    .instant-delivery-status {
        font-size: 16px;
    }

    .instant-delivery-card > strong {
        font-size: 18px;
    }

    .model-family-button span {
        font-size: 20px;
        padding-left: 16px;
    }

    .model-family-button small,
    .model-family-button em,
    .model-variant-heading strong,
    .model-variant-heading small,
    .model-variant-list .model-row span div,
    .model-variant-list .model-row em,
    .model-row small,
    .model-row .model-basic-items {
        font-size: 16px;
    }

    .vehicle-option-list label {
        min-height: 0;
        padding: 13px 15px;
    }

    .vehicle-option-list .option-name,
    .vehicle-option-list strong {
        font-size: 16px;
        font-weight: 700;
    }

    .option-description-toggle {
        font-size: 14px;
    }

    .vehicle-option-list small,
    .vehicle-option-list .option-description,
    .option-description-intro,
    .option-description-paragraph,
    .option-description-item {
        color: #4e596b;
        font-size: 15px;
        font-weight: 400;
    }

    .condition-description p,
    .choice-help,
    .insurance-note,
    .insurance-detail-list span,
    .insurance-detail-list strong {
        color: #4e596b;
        font-size: 16px;
        font-weight: 400;
    }

    .guarantee-panel .condition-description p,
    .guarantee-panel .condition-description p b {
        font-size: 15px;
        font-weight: 400;
    }

    .vehicle-option-list em {
        font-size: 13px;
    }

    .insurance-panel h5 {
        font-size: 18px;
    }

    .quote-card {
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .quote-card.is-mobile-open {
        max-height: calc(100dvh - 164px);
        padding: 16px;
    }

    .quote-card h2 {
        flex: 0 0 auto;
        margin: 8px 16px;
        font-size: 27px;
    }

    .quote-selections {
        min-height: 0;
        padding: 22px 16px;
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .quote-selections dt,
    .quote-selections dd,
    .quote-price span,
    .quote-actions .quote-action-button {
        font-size: 15px;
    }

    .quote-selections div {
        margin: 8px 0;
    }

    .quote-price,
    .quote-actions {
        flex: 0 0 auto;
    }

    .quote-price {
        padding: 16px;
    }

    .quote-price strong {
        font-size: 26px;
    }

    .contract-service-copy strong {
        font-size: 20px;
    }

    .contract-service-copy em {
        font-size: 16px;
    }

    .detail-benefit-grid article > p,
    .other-vehicle-title-copy > p,
    .other-vehicle-title small {
        font-size: 16px;
    }

    .detail-benefit-grid article > strong {
        font-size: 18px;
    }

    .detail-benefit-notice {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .vehicle-option-list label {
        min-height: 0;
        padding: 16px;
        grid-template-columns: 24px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
    }

    .vehicle-option-list > label > i {
        margin-top: 2px;
    }

    .vehicle-option-list .option-summary {
        gap: 10px;
    }

    .vehicle-option-list .option-name,
    .vehicle-option-list mark {
        min-width: 0;
        font-size: 16px;
    }

    .option-description-toggle {
        font-size: 14px;
    }

    .vehicle-option-list label.is-description-open .option-description {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Estimate typography */
.estimate-area {
    font-size: var(--detail-body-size);
}

.choice-heading h3,
.contract-heading h3,
.quote-card h2 {
    font-size: var(--detail-title-size);
}

.choice-block h4,
#contract .choice-block > h4,
.color-list-heading h4,
.insurance-panel h5 {
    font-size: var(--detail-subtitle-size);
}

.choice-heading p,
.contract-heading p,
.segmented-choice button,
.model-family-button span,
.model-variant-heading strong,
.model-variant-list .model-row span div,
.color-choice-name,
.vehicle-option-list .option-name,
.vehicle-option-list mark,
.quote-selections dt,
.quote-selections dd,
.quote-price span,
.quote-actions .quote-action-button {
    font-size: var(--detail-body-size);
}

.quote-selections dt,
.quote-selections dd {
    font-size: 13px;
}

.instant-delivery-heading small,
.instant-delivery-card > small,
.instant-delivery-card > .instant-delivery-meta,
.instant-delivery-options > span,
.instant-delivery-status,
.model-family-button small,
.model-family-button em,
.model-variant-heading small,
.model-variant-list .model-row em,
.model-row small,
.model-row .model-basic-items,
.model-row .model-basic-items-toggle,
.color-list-heading > span,
.vehicle-option-list small,
.vehicle-option-list .option-description,
.option-description-intro,
.option-description-paragraph,
.option-description-item,
.option-description-toggle,
.condition-description p,
.choice-help,
.insurance-note,
.insurance-detail-list span,
.insurance-detail-list strong,
.quote-card > p,
.quote-price small {
    font-size: var(--detail-small-size);
}

.choice-heading p,
.contract-heading p,
.instant-delivery-heading small,
.instant-delivery-card > small,
.instant-delivery-card > .instant-delivery-meta,
.model-total,
.model-family-button small,
.model-family-button em,
.model-variant-heading small,
.model-row small,
.model-row .model-basic-items,
.color-list-heading > span,
.vehicle-option-list small,
.vehicle-option-list .option-description,
.option-description-intro,
.option-description-paragraph,
.option-description-item,
.condition-description p,
.choice-help,
.insurance-note,
.quote-card > p,
.quote-price small {
    font-weight: 400;
}

/* Model selection */
.model-choice-block {
    padding-top: 34px;
}

.model-choice-block.is-kgm {
    padding-top: 0;
}

.kgm-model-title {
    margin-bottom: 24px;
}

.kgm-model-title h3 {
    margin: 0;
    color: #111827;
    font-size: var(--detail-title-size);
    font-weight: 800;
}

.model-selection-heading {
    margin-bottom: 20px;
    align-items: flex-start;
    gap: 18px;
}

.model-selection-heading h3 {
    margin: 0;
    color: #111827;
    font-size: var(--detail-title-size);
    font-weight: 800;
}

.model-total {
    margin: 12px 0 0;
    color: #4e596b;
    font-size: var(--detail-small-size);
    font-weight: 700;
}

.model-total strong {
    margin-left: 4px;
    color: var(--blue);
    font-size: var(--detail-body-size);
}

.model-selection-heading .document-links {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.model-selection-heading .spec-button {
    min-height: 40px;
    margin: 0;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    font-size: var(--detail-small-size);
}

.model-family-button > span::before {
    display: none;
}

.model-variant-panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    padding: 0 18px;
    overflow: hidden;
    opacity: 0;
    transition:
        grid-template-rows .28s ease,
        padding .28s ease,
        opacity .2s ease,
        visibility 0s linear .28s;
}

.model-variant-panel.is-active {
    grid-template-rows: 1fr;
    visibility: visible;
    padding: 0 18px 20px;
    opacity: 1;
    transition-delay: 0s;
}

.model-variant-panel .model-variant-list {
    min-height: 0;
    overflow: hidden;
}

.model-variant-list .model-row.is-selected {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px var(--blue);
}

.model-variant-list .model-row > b {
    width: 19px;
    height: 19px;
    border: 1.5px solid #cbd5e1;
    color: transparent;
    background: #fff;
    font-size: 11px;
    font-weight: 900;
}

.model-row.is-selected > b {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 4px 10px rgba(23, 81, 229, .22);
}

.model-row.is-selected > b::after {
    position: static;
    width: auto;
    height: auto;
    inset: auto;
    border-radius: 0;
    color: #fff;
    background: transparent;
    content: '✓';
    font-size: 11px;
    font-weight: 900;
    transform: none;
}

@media (max-width: 640px) {
    .model-selection-heading {
        margin-bottom: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .model-selection-heading .document-links {
        justify-content: flex-start;
    }

    .model-family-button {
        min-height: 62px;
        padding: 15px 2px;
        gap: 8px;
    }

    .model-family-button em {
        font-size: 12px;
    }

    .model-variant-panel {
        padding: 0 4px;
    }

    .model-variant-panel.is-active {
        padding: 0 8px 16px;
    }

    .model-variant-list .model-row {
        min-height: 54px;
        padding: 13px 14px;
        gap: 8px;
    }

    .model-variant-list .model-row em {
        font-size: 12px;
    }
}

/* Main page benefit section */
.detail-main-benefits {
    position: relative;
    min-height: 620px;
    padding: 112px 0;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 15, 29, .92) 0%, rgba(5, 15, 29, .68) 52%, rgba(5, 15, 29, .34) 100%),
        url('/images/kgm/benefit-bg.jpg') center / cover no-repeat;
}

.detail-main-benefits .benefit-layout {
    position: relative;
    z-index: 1;
    min-height: 400px;
    padding-right: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.detail-main-benefits .benefit-layout > h2 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: clamp(52px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    word-break: keep-all;
}

.detail-main-benefits .benefit-layout > h2 span {
    color: #7db7ff;
}

.detail-main-benefits .benefit-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .34);
}

.detail-main-benefits .benefit-list article {
    min-width: 0;
    padding: 28px 26px 0;
}

.detail-main-benefits .benefit-list article:first-child {
    padding-left: 0;
}

.detail-main-benefits .benefit-list article + article {
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.detail-main-benefits .benefit-list article strong {
    width: max-content;
    display: block;
    margin-bottom: 12px;
    padding: 1px;
    color: #fff;
    background: #1855b7;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
}

.detail-main-benefits .benefit-list article p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    word-break: keep-all;
}

.detail-main-benefits .benefit-notice {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    font-weight: 400;
}

/* Main page vehicle cards */
.detail-models-list {
    --vehicle-accent: #3182f6;
    padding: 100px 0 112px;
    background: #fff;
}

.detail-models-heading {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.detail-models-heading h2 {
    margin: 0;
    color: #172238;
    font-size: 36px;
    font-weight: 800;
}

.detail-models-controls {
    display: flex;
    gap: 8px;
}

.detail-models-controls button {
    width: 46px;
    height: 46px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce3ec;
    border-radius: 50%;
    color: #172238;
    background: #fff;
    cursor: pointer;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.detail-models-controls button:hover:not(:disabled) {
    border-color: #172238;
    color: #fff;
    background: #172238;
}

.detail-models-controls button:disabled {
    color: #b8c0cd;
    background: #f5f7fa;
    cursor: default;
}

.detail-models-controls svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-models-list .vehicle-grid {
    display: grid;
    grid-auto-columns: calc((100% - 48px) / 3);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.detail-models-list .vehicle-grid::-webkit-scrollbar {
    display: none;
}

.detail-models-list .vehicle-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e7ebf1;
    border-radius: 16px;
    color: inherit;
    background: #fff;
    box-shadow: 0 8px 24px rgba(6, 21, 45, .06);
    text-decoration: none;
    scroll-snap-align: start;
    transition: border-color .22s ease, box-shadow .18s ease, transform .14s ease;
}

.detail-models-list .vehicle-card:hover {
    border-color: #cad5e7;
    box-shadow: 0 18px 38px rgba(6, 21, 45, .1);
    transform: translateY(-4px);
}

.detail-models-list .vehicle-card:active {
    box-shadow: 0 6px 16px rgba(6, 21, 45, .08);
    transform: translateY(-1px) scale(.985);
}

.detail-models-list .vehicle-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9.5;
}

.detail-models-list .vehicle-image img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    transition: transform .35s ease;
}

.detail-models-list .vehicle-card:hover .vehicle-image img {
    transform: scale(1.04);
}

.detail-models-list .vehicle-tags {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
}

.detail-models-list .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;
}

.detail-models-list .vehicle-body {
    padding: 0 22px 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.detail-models-list .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;
}

.detail-models-list .vehicle-title-copy,
.detail-models-list .vehicle-rental-price {
    display: contents;
}

.detail-models-list .vehicle-body h2 {
    grid-area: name;
    min-width: 0;
    margin: 0;
    color: #172238;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}

.detail-models-list .vehicle-description {
    grid-area: description;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #566174;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-models-list .vehicle-rental-price small {
    grid-area: deposit;
    color: #7c8798;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-align: right;
    white-space: nowrap;
}

.detail-models-list .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;
}

.detail-models-list .vehicle-card-cta {
    min-height: 48px;
    margin-top: auto;
    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;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.detail-models-list .vehicle-card:hover .vehicle-card-cta {
    border-color: #172238;
    color: #fff;
    background: #172238;
}

@media (max-width: 980px) {
    .detail-main-benefits .benefit-layout {
        padding-right: 0;
    }

    .detail-main-benefits .benefit-list {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .detail-main-benefits .benefit-list article {
        padding: 18px 0;
        display: grid;
        grid-template-columns: 170px minmax(0, 1fr);
        align-items: center;
        gap: 22px;
    }

    .detail-main-benefits .benefit-list article + article {
        border-top: 1px solid rgba(255, 255, 255, .22);
        border-left: 0;
    }

    .detail-main-benefits .benefit-list article strong {
        margin: 0;
        font-size: 22px;
    }

    .detail-models-list .vehicle-grid {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .detail-main-benefits {
        min-height: 0;
        padding: 68px 0;
        background:
            linear-gradient(90deg, rgba(5, 15, 29, .9), rgba(5, 15, 29, .58)),
            url('/images/kgm/benefit-bg.jpg') 42% center / cover no-repeat;
    }

    .detail-main-benefits .benefit-layout {
        min-height: 0;
    }

    .detail-main-benefits .benefit-layout > h2 {
        max-width: 320px;
        font-size: 40px;
        line-height: 1.16;
    }

    .detail-main-benefits .benefit-list {
        margin-top: 44px;
    }

    .detail-main-benefits .benefit-list article {
        padding: 19px 0;
        grid-template-columns: 122px minmax(0, 1fr);
        gap: 16px;
    }

    .detail-main-benefits .benefit-list article strong {
        font-size: 20px;
    }

    .detail-main-benefits .benefit-list article p {
        font-size: 14px;
    }

    .detail-main-benefits .benefit-notice {
        margin-top: 18px;
        line-height: 1.5;
    }

    .detail-models-list {
        padding: 72px 0 78px;
    }

    .detail-models-heading {
        margin-bottom: 28px;
    }

    .detail-models-heading h2 {
        font-size: 30px;
    }

    .detail-models-controls button {
        width: 42px;
        height: 42px;
    }

    .detail-models-list .vehicle-grid {
        grid-auto-columns: 100%;
        gap: 12px;
    }

    .detail-models-list .vehicle-card {
        border-color: #dce3ec;
        border-radius: 10px;
        box-shadow: 0 5px 16px rgba(6, 21, 45, .08);
    }

    .detail-models-list .vehicle-card:hover {
        transform: none;
    }

    .detail-models-list .vehicle-card:active {
        transform: scale(.98);
    }

    .detail-models-list .vehicle-image {
        aspect-ratio: 3 / 2;
    }

    .detail-models-list .vehicle-image img {
        padding: 5px;
    }

    .detail-models-list .vehicle-tags,
    .detail-models-list .vehicle-description {
        display: none;
    }

    .detail-models-list .vehicle-body {
        min-height: 0;
        padding: 13px 12px;
    }

    .detail-models-list .vehicle-title-row {
        min-height: 0;
        margin: 0 0 12px;
        grid-template-columns: 1fr;
        grid-template-areas:
            'name'
            'deposit'
            'price';
        gap: 2px;
    }

    .detail-models-list .vehicle-body h2 {
        display: -webkit-box;
        overflow: hidden;
        font-size: 18px;
        line-height: 1.25;
        word-break: keep-all;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .detail-models-list .vehicle-rental-price small {
        margin-top: 5px;
        font-size: 13px;
        text-align: left;
    }

    .detail-models-list .vehicle-rental-price strong {
        font-size: 16px;
        text-align: left;
    }

    .detail-models-list .vehicle-card-cta {
        min-height: 40px;
        border-radius: 7px;
        font-size: 14px;
    }
}

/* 계약조건 정렬 */
#contract {
    padding: 36px 40px;
}

#contract .contract-heading {
    margin-bottom: 8px;
    padding-bottom: 0;
}

#contract > .choice-block {
    padding-top: 24px;
}

#contract > .choice-block + .choice-block {
    margin-top: 4px;
}

#contract .choice-block > h4 {
    margin: 0 0 12px;
}

#contract .segmented-choice {
    width: 100%;
    gap: 6px;
    padding: 6px;
}

#contract .segmented-choice button {
    min-width: 0;
    height: 50px;
    padding: 0 8px;
    line-height: 1;
    white-space: nowrap;
    word-break: keep-all;
}

#contract .guarantee-panel {
    padding: 22px;
}

#contract .insurance-panel {
    margin-top: 28px;
    padding: 24px;
}

#contract .insurance-panel .choice-block {
    padding-top: 22px;
}

#contract .insurance-panel .choice-block + .choice-block {
    margin-top: 0;
    padding-top: 22px;
}

#contract .insurance-detail-list div {
    min-height: 56px;
    padding: 14px 16px;
}

@media (max-width: 640px) {
    #contract {
        padding: 26px 18px 30px;
    }

    #contract .contract-heading {
        margin-bottom: 2px;
    }

    #contract > .choice-block {
        padding-top: 22px;
    }

    #contract .choice-block > h4,
    #contract .insurance-panel h5 {
        font-size: 18px;
        line-height: 1.35;
    }

    #contract .choice-help {
        margin: -2px 0 10px;
        font-size: 14px;
        line-height: 1.55;
    }

    #contract .segmented-choice {
        gap: 3px;
        padding: 4px;
        border-radius: 12px;
    }

    #contract .segmented-choice button {
        height: 46px;
        padding: 0 3px;
        font-size: 14px;
        white-space: nowrap;
        word-break: keep-all;
    }

    #contract .guarantee-panel,
    #contract .insurance-panel {
        padding: 18px 14px;
        border-radius: 14px;
    }

    #contract .guarantee-panel .condition-description {
        margin-bottom: 14px;
    }

    #contract .guarantee-panel .condition-description strong {
        font-size: 16px;
    }

    #contract .guarantee-panel .condition-description p {
        font-size: 14px;
        line-height: 1.6;
    }

    #contract .insurance-panel {
        margin-top: 24px;
    }

    #contract .insurance-panel > h4 {
        font-size: 18px;
    }

    #contract .insurance-panel .choice-block,
    #contract .insurance-panel .choice-block + .choice-block {
        padding-top: 18px;
    }

    #contract .insurance-note {
        padding: 12px;
        font-size: 14px;
        line-height: 1.55;
    }

    #contract .insurance-detail-list div {
        min-height: 52px;
        padding: 13px 12px;
    }

    #contract .insurance-detail-list span {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 360px) {
    #contract .segmented-choice button {
        padding: 0 2px;
        font-size: 13px;
    }
}

/* PC 견적 요약 */
@media (min-width: 721px) {
    .quote-card {
        max-height: calc(100dvh - 164px);
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-color: #d8dee7;
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(18, 30, 48, .08);
    }

    .quote-card > h2 {
        margin: 0;
        padding: 20px 20px 16px;
        flex: 0 0 auto;
        border-bottom: 1px solid #e8ecf1;
        font-size: 24px;
        font-weight: 700;
    }

    .quote-card > .quote-selections {
        min-height: 0;
        padding: 4px 20px 10px;
        flex: 1 1 auto;
        overflow-x: hidden;
        overflow-y: auto;
        border-top: 0;
        border-bottom: 0;
        overscroll-behavior: contain;
        scrollbar-width: none;
    }

    .quote-card > .quote-selections::-webkit-scrollbar {
        display: none;
    }

    .quote-card > .quote-selections > div {
        margin: 0;
        padding: 7px 0;
        align-items: flex-start;
        border-bottom: 1px solid #eef1f4;
    }

    .quote-card > .quote-selections > div:last-child {
        border-bottom: 0;
    }

    .quote-card > .quote-selections dt {
        color: #667085;
        font-size: 13px;
        font-weight: 500;
    }

    .quote-card > .quote-selections dd {
        max-width: 210px;
        color: #182230;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.45;
    }

    .quote-card > .quote-price {
        padding: 16px 20px;
        flex: 0 0 auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        text-align: left;
        border-top: 1px solid #dfe5ec;
        background: #f7f9fb;
    }

    .quote-card > .quote-price .quote-monthly,
    .quote-card > .quote-price .quote-price-deposit {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: baseline;
        gap: 14px;
    }

    .quote-card > .quote-price [data-quote-feedback],
    .quote-card > .quote-price [data-instant-quote-feedback] {
        grid-column: 1 / -1;
    }

    .quote-card > .quote-price span {
        color: #667085;
        font-size: 13px;
        font-weight: 500;
    }

    .quote-card > .quote-price .quote-tax {
        margin-top: 2px;
        grid-column: 1 / -1;
        color: #667085;
        font-size: 12px;
        font-weight: 400;
        text-align: right;
        white-space: nowrap;
    }

    .quote-card > .quote-price .quote-monthly > strong {
        margin: 0;
        color: #1751e5;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
        text-align: right;
    }

    .quote-card > .quote-price .quote-price-deposit > strong {
        margin: 0;
        color: #182230;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.25;
        text-align: right;
    }

    .quote-card.is-quote-muted > .quote-price .quote-monthly > strong,
    .quote-card.is-quote-muted > .quote-price .quote-price-deposit > strong {
        color: #9aa2af;
    }

    .quote-card > .quote-actions {
        padding: 14px 16px 16px;
        flex: 0 0 auto;
        background: #fff;
    }
}

/* 대여료 계산 로딩 모달 */
body.quote-loading-open {
    overflow: hidden;
}

.quote-loading-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(2px);
}

.quote-loading-modal[hidden] {
    display: none;
}

.quote-loading-panel {
    width: min(100%, 380px);
    padding: 34px 28px 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
    text-align: center;
}

.quote-loading-spinner {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border: 4px solid #dbe5ff;
    border-top-color: #1751e5;
    border-radius: 50%;
    animation: quote-loading-spin 0.8s linear infinite;
}

.quote-loading-panel strong {
    display: block;
    color: #182230;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}

.quote-loading-panel p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

@keyframes quote-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 720px) {
    .quote-loading-modal {
        padding: 20px;
    }

    .quote-loading-panel {
        width: min(100%, 328px);
        padding: 30px 22px 26px;
        border-radius: 18px;
    }

    .quote-loading-spinner {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
    }

    .quote-loading-panel strong {
        font-size: 18px;
    }

    .quote-loading-panel p {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quote-loading-spinner {
        animation-duration: 1.6s;
    }
}

/* 선택 탭과 계약조건 가독성 */
.segmented-choice button:not(.is-selected) {
    font-weight: 600;
}

.kgm-trim-rest {
    display: inline-block;
    white-space: nowrap;
}

.kgm-step-button[data-kgm-field="trim"] {
    line-height: 1.1;
}

.kgm-step-button[data-kgm-field="trim"] .kgm-trim-rest {
    margin-top: 1px;
}

@media (min-width: 721px) {
    .kgm-model-steps {
        gap: 18px;
    }

    .kgm-model-step {
        gap: 8px;
    }
}

/* 도움말 정보 아이콘 */
.help-mark::before {
    content: "";
    width: 2px;
    height: 7px;
    position: absolute;
    top: 8px;
    left: 50%;
    padding: 0;
    border-radius: 999px;
    background: currentColor;
    font: inherit;
    transform: translateX(-50%);
}

.help-mark::after {
    content: "";
    width: 2px;
    height: 2px;
    position: absolute;
    top: 4px;
    left: 50%;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

@media (min-width: 721px) {
    #contract [data-contract-list="deposit"] button {
        height: 62px;
        gap: 7px;
    }

    #contract [data-contract-list="deposit"] [data-deposit-amount] {
        margin-top: 1px;
    }
}
