@import url('common.css');

html {
    scroll-padding-top: 88px;
}

.header_wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 20px;
    background-color: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* —— KV (히어로) —— */
.kv {
    position: relative;
    isolation: isolate;
    z-index: 0;
    min-height: min(92vh, 900px);
    background-color: #0a0e14;
    overflow: hidden;
}

.kv_media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kv_media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.kv_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.kv_overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(6, 10, 18, 0.88) 0%,
        rgba(6, 10, 18, 0.45) 42%,
        rgba(6, 10, 18, 0.2) 72%,
        rgba(6, 10, 18, 0.35) 100%
    );
}

.kv_inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(72px, 14vw, 120px) 24px clamp(56px, 10vw, 96px);
    min-height: min(92vh, 900px);
    display: flex;
    align-items: center;
}

.kv_copy {
    max-width: 34rem;
}

.kv_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.kv_eyebrow_line {
    display: inline-block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4d9fff, #0054ff);
}

.kv_title {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.75rem, 4.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}

.kv_title_em {
    display: inline-block;
    margin-top: 4px;
    color: #eaf2ff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .kv_title_em {
        background: linear-gradient(120deg, #fff 0%, #b8d7ff 55%, #7eb6ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.kv_desc {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.kv_desc strong {
    font-weight: 700;
    color: #fff;
}

.kv_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.kv_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.kv_btn .ph {
    font-size: 18px;
}

.kv_btn--primary {
    background-color: #0054ff;
    color: #fff;
    border: 1px solid transparent;
}

.kv_btn--primary:hover,
.kv_btn--primary:focus-visible {
    background-color: #0046d4;
}

.kv_btn--ghost {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.kv_btn--ghost:hover,
.kv_btn--ghost:focus-visible {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
}

.kv_btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .kv {
        min-height: min(88dvh, 820px);
    }

    .kv_inner {
        min-height: min(88dvh, 820px);
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 8px;
        align-items: flex-end;
        padding-bottom: clamp(48px, 12vw, 72px);
    }

    .kv_copy {
        max-width: none;
    }

    .kv_overlay {
        background: linear-gradient(
            180deg,
            rgba(6, 10, 18, 0.25) 0%,
            rgba(6, 10, 18, 0.55) 38%,
            rgba(6, 10, 18, 0.88) 100%
        );
    }

    .kv_title {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
    }

    .kv_actions {
        flex-direction: column;
        align-items: stretch;
    }

    .kv_btn {
        width: 100%;
    }
}

.logo-link {
    display: inline-block;
}

/* —— 모바일 햄버거 —— */
.menu_toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #111;
    flex-shrink: 0;
}

.menu_toggle:hover,
.menu_toggle:focus-visible {
    background-color: rgba(0, 0, 0, 0.06);
}

.menu_toggle:focus-visible {
    outline: 2px solid #0054ff;
    outline-offset: 2px;
}

.menu_toggle .ph {
    font-size: 26px;
    line-height: 1;
}

.menu_toggle .icon-menu-close {
    display: none;
}

body.menu-open .menu_toggle .icon-menu-open {
    display: none;
}

body.menu-open .menu_toggle .icon-menu-close {
    display: block;
}

/* —— GNB: PC 가로 / 모바일 슬라이드 패널 —— */
.gnb {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gnb_head {
    display: none;
}

.navi {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 24px;
}

.navi a {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 4px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.navi a:hover,
.navi a:focus-visible {
    color: #0054ff;
}

.direct {
    flex-shrink: 0;
}

.gnb_direct {
    display: none;
}

.direct_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    background-color: #0054ff;
    color: #fff;
    padding: 12px 18px;
    border-radius: 100px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.direct_btn:hover,
.direct_btn:focus-visible {
    background-color: #0046d4;
}

.direct_btn:active {
    transform: scale(0.98);
}

.direct_btn span {
    margin-right: 10px;
}

.direct_btn .ph {
    font-size: 18px;
    line-height: 1;
}

.nav_backdrop {
    display: none;
}

/* —— 태블릿 이하: 햄버거 + 오버레이 패널 —— */
@media (max-width: 991px) {
    body.menu-open .header_wrap {
        z-index: 160;
    }

    .menu_toggle {
        display: inline-flex;
        order: 1;
        margin-left: auto;
    }

    .new_logo {
        order: 0;
    }

    .direct--desktop {
        display: none;
    }

    .gnb_direct {
        display: block;
        margin-top: auto;
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        flex-shrink: 0;
    }

    .gnb_direct .direct_btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        min-height: 48px;
    }

    .gnb_direct .direct_btn span {
        display: inline;
    }

    .nav {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .gnb {
        order: 3;
        flex: 1 1 100%;
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 320px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        background-color: #fff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 200;
    }

    body.menu-open .gnb {
        transform: translateX(0);
        visibility: visible;
    }

    .gnb_head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
        font-family: 'Pretendard', sans-serif;
        font-weight: 700;
        font-size: 16px;
    }

    .menu_close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        color: #111;
    }

    .menu_close .ph {
        font-size: 24px;
    }

    .navi {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        flex: 1 1 auto;
        min-height: 0;
        padding: 12px 0 0;
    }

    .navi li {
        border-bottom: 1px solid #f0f0f0;
    }

    .navi a {
        display: block;
        padding: 16px 20px;
        font-size: 17px;
    }

    .nav_backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 150;
    }

    body.menu-open .nav_backdrop {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 16px;
    }

    .header_wrap {
        padding: 12px 16px;
    }
}

/* —— 차량 요약 (model_spec) —— */
.model_spec {
    padding: 0 20px 64px;
    background-color: #fff;
}

.model_spec_title {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.125rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.model_spec_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.model_spec_card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.model_spec_card--highlight {
    border-color: rgba(0, 84, 255, 0.35);
    background: rgba(0, 84, 255, 0.04);
}

.model_spec_label {
    font-family: 'Pretendard', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.model_spec_value {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    word-break: keep-all;
}

.model_spec_card--highlight .model_spec_value {
    color: #0054ff;
}

.model_spec_note {
    margin-top: 14px;
    font-family: 'Pretendard', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .model_spec_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .model_spec_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 400px) {
    .model_spec_grid {
        grid-template-columns: 1fr;
    }
}

/* —— 간편 견적 (estimate) —— */
.estimate {
    padding: 56px 20px 72px;
    background-color: #fff;
}

.estimate_inner,
.section_inner {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
}

.estimate_header {
    text-align: center;
    margin-bottom: 40px;
}

.estimate_title {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 10px;
}

.estimate_lead {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto;
}

.estimate_grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    width: 100%;
}

.estimate_visual {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

.estimate_visual_frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #e8eef5;
    aspect-ratio: 16 / 9;
    min-height: 240px;
}

@media (max-width: 768px) {
    .estimate_visual_frame {
        aspect-ratio: 16 / 10;
        min-height: 200px;
    }
}

.estimate_visual_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.estimate_visual_caption {
    margin-top: 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    width: 100%;
    text-align: left;
}

.estimate_form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

.est_block {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 18px 20px;
    background: #fff;
}

.est_legend {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    padding: 0 4px;
    margin-bottom: 12px;
}

.est_segment {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.est_segment_item {
    position: relative;
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.est_segment_item:has(input:checked),
.est_segment_item.is-selected {
    border-color: #0054ff;
    background: rgba(0, 84, 255, 0.06);
    color: #0054ff;
}

.est_segment_item input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.est_segment_item:focus-within {
    outline: 2px solid #0054ff;
    outline-offset: 2px;
}

.est_model_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.est_model_card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.est_model_card:has(input:checked),
.est_model_card.is-selected {
    border-color: #0054ff;
    box-shadow: 0 0 0 1px #0054ff;
}

.est_model_card input {
    grid-column: 1;
}

.est_model_name {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
}

.est_model_price {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0054ff;
    white-space: nowrap;
}

.est_options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.est_check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    line-height: 1.45;
}

.est_check input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #0054ff;
}

.est_check em {
    font-style: normal;
    font-weight: 600;
    color: #64748b;
}

.est_colors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.est_color {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: center;
}

.est_color input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.est_color:focus-within .est_color_sw {
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(0, 84, 255, 0.45);
}

.est_color_sw {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.est_color:has(input:checked) .est_color_sw,
.est_color.is-selected .est_color_sw {
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px #0054ff;
    transform: scale(1.05);
}

.est_color_sw--stealth {
    background: linear-gradient(145deg, #6b7280, #374151);
}

.est_color_sw--pearl {
    background: linear-gradient(145deg, #fff, #e8eef5);
}

.est_color_sw--ultra {
    background: linear-gradient(145deg, #ef4444, #991b1b);
}

.est_color_sw--diamond {
    background: linear-gradient(145deg, #1e293b, #020617);
}

.est_color_sw--glacier {
    background: linear-gradient(145deg, #7dd3fc, #2563eb);
}

.est_color_sw--quicksilver {
    background: linear-gradient(145deg, #cbd5e1, #64748b);
}

.est_color_label {
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.25;
}

.est_row {
    display: grid;
    gap: 14px;
}

.est_row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.est_select_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.est_label {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.est_select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    background-color: #fff;
    cursor: pointer;
}

.est_select:focus-visible {
    outline: 2px solid #0054ff;
    outline-offset: 2px;
}

.estimate_result {
    border-radius: 14px;
    padding: 20px 20px 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.estimate_result_label {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.estimate_result_price {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.estimate_result_note {
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.estimate_result_actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
}

.estimate_consult_hint {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.estimate_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 100px;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.estimate_btn--primary {
    background: #0054ff;
    color: #fff;
}

.estimate_btn--primary:hover,
.estimate_btn--primary:focus-visible {
    background: #0046d4;
}

.estimate_btn--cta {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 84, 255, 0.35);
}

.estimate_btn--cta .ph {
    font-size: 20px;
}

.estimate_btn--ghost {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.estimate_btn--ghost:hover,
.estimate_btn--ghost:focus-visible {
    border-color: #cbd5e1;
}

.estimate_btn:active {
    transform: scale(0.98);
}

@media (max-width: 520px) {
    .est_row--2 {
        grid-template-columns: 1fr;
    }

    .est_colors {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .est_model_card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .est_model_price {
        grid-column: 2 / -1;
        justify-self: end;
    }
}

/* —— 고객 후기 (review) —— */
.review {
    padding: 52px 20px 76px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    overflow-x: clip;
}

.review_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.review_title {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.125rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.review_lead {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.review_swiper {
    width: 100%;
    overflow: hidden;
}

.review_card {
    height: auto;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.review_card_media {
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.review_card_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review_card_body {
    padding: 14px 14px 16px;
}

.review_badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 84, 255, 0.08);
    color: #0054ff;
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.review_card_title {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 8px;
}

.review_card_text {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.review_nav {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review_nav_btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #dbe2ea;
    background-color: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review_nav_btn .ph {
    font-size: 18px;
}

.review_pagination {
    position: static !important;
    width: auto !important;
}

.review_pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
}

.review_pagination .swiper-pagination-bullet-active {
    background: #0054ff;
}

@media (max-width: 900px) {
    .review_header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* —— 월 납입 비교 (price_compare) —— */
.price_compare {
    padding: 52px 20px 56px;
    background: linear-gradient(180deg, #e8eef5 0%, #f1f5f9 38%, #f4f7fb 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid #cbd5e1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 16px 40px -28px rgba(15, 23, 42, 0.14);
}

.price_compare_header {
    text-align: center;
    margin-bottom: 24px;
}

.price_compare_title {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 10px;
}

.price_compare_lead {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 28rem;
    margin: 0 auto;
}

.price_compare_lead strong {
    color: #0f172a;
    font-weight: 700;
}

.price_compare_highlight {
    max-width: 560px;
    margin: 0 auto 28px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 84, 255, 0.22);
    background: linear-gradient(135deg, rgba(0, 84, 255, 0.06) 0%, rgba(0, 84, 255, 0.02) 100%);
}

.price_compare_highlight_label {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0054ff;
    margin-bottom: 6px;
}

.price_compare_highlight_text {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #334155;
    margin: 0;
}

.price_compare_highlight_text strong {
    color: #0f172a;
    font-weight: 700;
}

.price_compare_chart {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price_compare_row {
    display: grid;
    grid-template-columns: minmax(72px, 88px) 1fr minmax(100px, 120px);
    align-items: center;
    gap: 12px 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.price_compare_row--highlight {
    border-color: rgba(0, 84, 255, 0.45);
    background: linear-gradient(180deg, #fff 0%, rgba(0, 84, 255, 0.04) 100%);
    box-shadow: 0 8px 24px rgba(0, 84, 255, 0.1);
}

.price_compare_name {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price_compare_row--highlight .price_compare_name {
    color: #0f172a;
}

.price_compare_badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: #0054ff;
    color: #fff;
}

.price_compare_track {
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.price_compare_fill {
    display: block;
    height: 100%;
    width: var(--bar, 100%);
    border-radius: inherit;
    background: linear-gradient(90deg, #94a3b8 0%, #cbd5e1 100%);
}

.price_compare_fill--brand {
    background: linear-gradient(90deg, #0054ff 0%, #3b82f6 100%);
}

.price_compare_value {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-align: right;
    white-space: nowrap;
}

.price_compare_value em {
    font-style: normal;
    font-weight: 800;
    font-size: 1.05em;
    color: #334155;
}

.price_compare_value--brand {
    color: #0054ff;
    font-weight: 700;
}

.price_compare_value--brand em {
    color: #0054ff;
    font-size: 1.15em;
}

.price_compare_note {
    margin-top: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    line-height: 1.65;
    color: #94a3b8;
    text-align: center;
}

.price_compare_note strong {
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 560px) {
    .price_compare_row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price_compare_name {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .price_compare_value {
        text-align: left;
    }
}

/* 제목·레전드·표시 강조: Paperozi (본문은 Pretendard 상속) */
.kv_title,
.kv_title_em,
.estimate_title,
.model_spec_title,
.review_title,
.review_card_title,
.price_compare_title,
.est_legend,
.est_model_name,
.estimate_result_price,
.estimate_result_label,
.price_compare_highlight_label,
.price_compare_badge {
    font-family: 'Paperozi', sans-serif;
}

/* —— Skip Link (접근성 + SEO) —— */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: #0054ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
}

.skip-link:focus {
    top: 12px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* —— 사이트 푸터 (상단 약관 / 하단 로고·정보) —— */
.site_footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.78);
    padding: 22px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site_footer_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.site_footer_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
}

.site_footer_top_sep {
    color: rgba(255, 255, 255, 0.22);
    user-select: none;
}

.site_footer_bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px 40px;
}

.site_footer_logo {
    font-family: 'Paperozi', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.site_footer_info {
    flex: 1 1 240px;
    max-width: 28rem;
    margin-left: auto;
    text-align: right;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.site_footer_line {
    margin: 0;
}

.site_footer_line + .site_footer_line {
    margin-top: 4px;
}

.site_footer_line strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.site_footer_link {
    color: #93c5fd;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site_footer_link[aria-current='page'] {
    color: #e0f2fe;
    font-weight: 600;
}

.site_footer_link:hover,
.site_footer_link:focus-visible {
    color: #bfdbfe;
}

.site_footer_copy {
    margin: 0;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 640px) {
    .site_footer_top {
        justify-content: center;
    }

    .site_footer_bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site_footer_info {
        margin-left: 0;
        max-width: none;
        text-align: left;
    }
}

/* —— 약관·정책 하위 페이지 —— */
.legal_header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.legal_header_inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal_brand {
    font-family: 'Paperozi', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.legal_back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0054ff;
}

.legal_back:hover,
.legal_back:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal_back .ph {
    font-size: 18px;
}

.legal_main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 56px;
}

.legal_main h1 {
    font-family: 'Paperozi', sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 8px;
}

.legal_meta {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 28px;
}

.legal_section {
    margin-bottom: 28px;
}

.legal_section h2 {
    font-family: 'Paperozi', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.legal_section p,
.legal_section li {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #334155;
}

.legal_section ul {
    padding-left: 1.1em;
    margin: 8px 0 0;
    list-style: disc;
}

.legal_section li + li {
    margin-top: 6px;
}

/* —— 상담 신청 모달 —— */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal[aria-hidden='false'] {
    opacity: 1;
    visibility: visible;
}

.modal_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal_container {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.22);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.3s ease;
}

.modal[aria-hidden='false'] .modal_container {
    transform: translateY(0) scale(1);
}

.modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.modal_title {
    font-family: 'Paperozi', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.modal_close {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #64748b;
    transition: background 0.15s ease, color 0.15s ease;
}

.modal_close:hover,
.modal_close:focus-visible {
    background: #f1f5f9;
    color: #0f172a;
}

.modal_close .ph {
    font-size: 22px;
}

.modal_form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal_field--hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.modal_label {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.modal_required {
    color: #ef4444;
    font-weight: 700;
}

.modal_input,
.modal_select,
.modal_textarea {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.modal_input::placeholder,
.modal_textarea::placeholder {
    color: #94a3b8;
}

.modal_input:focus,
.modal_select:focus,
.modal_textarea:focus {
    outline: none;
    border-color: #0054ff;
    box-shadow: 0 0 0 3px rgba(0, 84, 255, 0.12);
}

.modal_textarea {
    resize: vertical;
    min-height: 80px;
}

.modal_field--agree {
    margin-top: 4px;
}

.modal_checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    line-height: 1.5;
}

.modal_checkbox input[type='checkbox'] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0054ff;
    cursor: pointer;
}

.modal_checkbox a {
    color: #0054ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal_checkbox a:hover {
    color: #0046d4;
}

.modal_actions {
    margin-top: 8px;
}

.modal_btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    transition: background 0.15s ease, transform 0.1s ease;
}

.modal_btn--primary {
    background: #0054ff;
    color: #fff;
}

.modal_btn--primary:hover,
.modal_btn--primary:focus-visible {
    background: #0046d4;
}

.modal_btn--primary:active {
    transform: scale(0.98);
}

.modal_btn .ph {
    font-size: 20px;
}

body.modal-open {
    overflow: hidden;
}

