:root {
    --ink: #07111f;
    --ink-soft: #101d31;
    --surface: #ffffff;
    --surface-muted: #f3f6fb;
    --line: #dce4ef;
    --text: #101828;
    --muted: #5e6c80;
    --blue: #2f6df6;
    --blue-dark: #174fc9;
    --cyan: #64d6ff;
    --yellow: #ffd400;
    --danger: #ff5d66;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(7, 17, 31, .13);
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
    line-height: 1.6;
    letter-spacing: -.02em;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

h1, h2, h3, summary,
.hero-lead, .section-head p, .location-card p,
.hero-proof-copy, .call-urgency, .btn,
.portal-card p, .benefit-card p, .channel-card p,
.case-card p, .review-card blockquote {
    word-break: keep-all;
    overflow-wrap: break-word;
}

:focus-visible {
    outline: 3px solid #0759db;
    outline-offset: 3px;
    box-shadow: 0 0 0 2px #fff;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.preview-banner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    background: #fff2b8;
    color: #5d4500;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.preview-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f29d00;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 228, 239, .9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.05em;
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--blue);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 25px;
    box-shadow: 0 8px 18px rgba(47, 109, 246, .28);
}

.brand-domain { color: #4898cf; }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 750;
}

.desktop-nav > a:not(.nav-cta) {
    color: #263247;
    transition: color .2s ease;
}

.desktop-nav > a:not(.nav-cta):hover,
.desktop-nav > a[aria-current="page"] { color: var(--blue); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 13px;
    background: var(--ink);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-muted);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--ink);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.page-home .hero,
.page-accident .hero { background-image: url('/assets/images/hero-accident-real.jpg'); }
.page-wrap .hero { background-image: url('/assets/images/hero-wrap-real.jpg'); }
.page-detail .hero { background-image: url('/assets/images/hero-detail-real.jpg'); }

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 11, 22, .96) 0%, rgba(4, 11, 22, .83) 38%, rgba(4, 11, 22, .30) 64%, rgba(4, 11, 22, .08) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 88px 0 104px;
}

.hero-copy { max-width: 680px; }

.hero-proof {
    position: absolute;
    top: 22px;
    left: max(20px, calc((100vw - var(--container)) / 2));
    z-index: 4;
    width: min(690px, calc(100% - 40px));
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 17px;
    background: rgba(5, 11, 20, .78);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.hero-proof-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #f02626;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(240, 38, 38, .34);
}

.hero-proof-copy { min-width: 0; }
.hero-proof strong { display: block; font-size: 17px; line-height: 1.25; letter-spacing: -.035em; }
.hero-proof small { display: block; margin-top: 2px; color: #cbd8ea; font-size: 12px; }
.hero-proof-action { color: var(--cyan); font-size: 13px; font-weight: 850; white-space: nowrap; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(7, 17, 31, .44);
    color: #dbe9ff;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(100, 214, 255, .12);
}

.hero h1 {
    margin: 0;
    font-size: clamp(52px, 5.4vw, 76px);
    line-height: 1.08;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.hero h1 em {
    color: var(--cyan);
    font-style: normal;
}

.hero-lead {
    max-width: 600px;
    margin: 24px 0 0;
    color: #c8d5e9;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-actions .btn-primary[data-track-action="phone"]::before,
.sticky-lead .btn-primary[data-track-action="phone"]::before {
    content: "☎";
    font-size: 18px;
}

.call-urgency {
    margin: 12px 0 0;
    color: #d9e7f8;
    font-size: 13px;
    font-weight: 700;
}

.call-urgency strong { color: var(--yellow); }

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 16px 34px rgba(47, 109, 246, .30);
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-kakao {
    background: var(--yellow);
    color: #191600;
    box-shadow: 0 16px 34px rgba(255, 212, 0, .18);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); }

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 28px 0 0;
    padding: 0;
    color: #b9c7db;
    font-size: 14px;
    list-style: none;
}

.hero-note li::before {
    content: "✓";
    margin-right: 7px;
    color: var(--cyan);
    font-weight: 900;
}

.section { padding: 110px 0; }
.section-sm { padding: 78px 0; }
section[id] { scroll-margin-top: 88px; }
.section-muted { background: var(--surface-muted); }
.section-dark { background: var(--ink); color: #fff; }

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-dark .section-kicker { color: var(--cyan); }

.section h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.16;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.section-head p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.section-dark .section-head p { color: #aebdd2; }

.portal-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 18px;
}

.portal-card {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 26px;
    background-position: center;
    background-size: cover;
    color: #fff;
    box-shadow: var(--shadow);
}

.portal-card.featured { grid-row: 1 / 3; min-height: 580px; }
.portal-card.accident { background-image: url('/assets/images/hero-accident-real.jpg'); background-position: 67% center; }
.portal-card.wrap { background-image: url('/assets/images/hero-wrap-real.jpg'); background-position: 72% center; }
.portal-card.detail { background-image: url('/assets/images/hero-detail-real.jpg'); background-position: 72% center; }

.portal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 12, 24, .96) 0%, rgba(5, 12, 24, .10) 74%);
}

.portal-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 28px;
}

.portal-card.featured .portal-card-content { padding: 38px; }

.portal-card-label {
    display: block;
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
}

.portal-card h3 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -.045em;
}

.portal-card.featured h3 { font-size: 38px; }
.portal-card p { margin: 10px 0 18px; color: #c9d5e7; }
.portal-link { font-weight: 850; color: #fff; }
.portal-link::after { content: " →"; color: var(--cyan); }

.benefit-grid,
.service-grid,
.process-grid,
.location-grid,
.trust-grid {
    display: grid;
    gap: 18px;
}

.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.location-grid { grid-template-columns: repeat(3, 1fr); }
.trust-grid { grid-template-columns: repeat(3, 1fr); }

.benefit-card,
.service-tile,
.process-step,
.location-card,
.trust-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.benefit-card {
    min-height: 290px;
    padding: 28px;
    border-color: rgba(255, 255, 255, .12);
    background: var(--ink-soft);
    color: #fff;
}

.benefit-index,
.step-index {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(100, 214, 255, .13);
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
}

.benefit-card h3,
.service-tile h3,
.process-step h3,
.location-card h3,
.trust-card h3 {
    margin: 24px 0 10px;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -.04em;
}

.benefit-card p { margin: 0; color: #aebdd2; font-size: 15px; }

.compliance-box {
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid rgba(100, 214, 255, .22);
    border-radius: 16px;
    background: rgba(100, 214, 255, .07);
    color: #becce0;
    font-size: 13px;
}

.compliance-box strong { color: #fff; }

.service-tile { overflow: hidden; }

.service-tile-image {
    min-height: 210px;
    background-position: center;
    background-size: cover;
}

.service-tile-body { padding: 26px; }
.service-tile h3 { margin-top: 0; }
.service-tile p { margin: 0; color: var(--muted); }

.process-step {
    position: relative;
    min-height: 230px;
    padding: 26px;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44px;
    right: -19px;
    width: 20px;
    height: 2px;
    background: var(--blue);
}

.process-step p { margin: 0; color: var(--muted); font-size: 15px; }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.video-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 46px rgba(7, 17, 31, .08);
}

.video-frame { position: relative; aspect-ratio: 16 / 9; background: #0b1322; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    display: grid;
    place-items: center;
    border: 0;
    background-position: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}
.video-placeholder::before { content: ""; position: absolute; inset: 0; background: rgba(4, 11, 22, .32); }
.video-play {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #e62117;
    font-size: 25px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .30);
}
.video-meta { padding: 20px 22px; }
.video-meta strong { display: block; font-size: 18px; }
.video-meta span { color: var(--muted); font-size: 14px; }

.evidence-gate {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: stretch;
    padding: 34px;
    border: 1px dashed #a9b8cc;
    border-radius: var(--radius);
    background: #fff;
}

.evidence-gate h3 { margin: 0 0 9px; font-size: 26px; }
.evidence-gate p { margin: 0; color: var(--muted); }
.evidence-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.evidence-list li { padding: 10px 12px; border-radius: 10px; background: var(--surface-muted); font-size: 14px; font-weight: 750; }

.review-wrap {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

.source-notice {
    display: block;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #edf5ff;
    color: #17365f;
    font-size: 14px;
    font-weight: 700;
}

.review-grid,
.case-grid,
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.review-card,
.case-card,
.channel-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.source-label {
    align-self: flex-start;
    padding: 5px 9px;
    border-radius: 999px;
    background: #e8f1ff;
    color: #174fc9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
}

.review-card blockquote {
    margin: 18px 0;
    font-size: 17px;
    font-weight: 720;
    line-height: 1.75;
}

.review-meta,
.case-meta,
.channel-meta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.review-meta strong,
.case-meta strong,
.channel-meta strong { display: block; color: var(--text); font-size: 14px; }

.case-card h3,
.channel-card h3 { margin: 18px 0 8px; font-size: 21px; line-height: 1.35; }
.case-card p,
.channel-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.source-link { color: var(--blue-dark); font-weight: 850; }
.source-link::after { content: " ↗"; }

.rating-strip {
    display: grid;
    grid-template-columns: 1.2fr repeat(2, .8fr);
    gap: 12px;
    margin: 34px 0 20px;
}

.rating-stat {
    padding: 21px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}
.rating-stat strong { display: block; color: var(--blue-dark); font-size: 26px; line-height: 1.1; }
.rating-stat span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }

.channel-grid { grid-template-columns: repeat(3, 1fr); }
.channel-card { min-height: 230px; padding: 22px; }
.channel-card h3 { font-size: 19px; }

.location-card { padding: 28px; }
.location-card .location-type { color: var(--blue); font-size: 13px; font-weight: 900; }
.location-card h3 { margin-top: 12px; }
.location-card p { color: var(--muted); min-height: 50px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.location-actions .btn { min-height: 44px; padding: 0 14px; font-size: 14px; }

.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 0 22px;
}

.faq-list summary {
    position: relative;
    padding: 21px 38px 21px 0;
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--blue); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 0 22px; color: var(--muted); }

.final-cta {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--blue);
    color: #fff;
    padding: 58px;
    box-shadow: 0 28px 70px rgba(47, 109, 246, .28);
}

.final-cta::after {
    content: "010";
    position: absolute;
    right: -14px;
    bottom: -68px;
    color: rgba(255, 255, 255, .08);
    font-size: 200px;
    font-weight: 950;
    line-height: 1;
}

.final-cta-content { position: relative; z-index: 1; max-width: 720px; }
.final-cta h2 { font-size: clamp(36px, 4vw, 56px); }
.final-cta p { color: #dce7ff; font-size: 18px; }
.final-cta .hero-actions { margin-top: 26px; }

.site-footer { padding: 52px 0 96px; background: #050b14; color: #fff; }

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-copy { margin: 14px 0 0; color: #8fa0b8; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 20px; color: #c6d2e3; font-size: 14px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); color: #7788a0; font-size: 12px; }

.sticky-lead {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 70;
    width: min(calc(100% - 30px), 630px);
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(7, 17, 31, .94);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .34);
    backdrop-filter: blur(16px);
    transform: translate(-50%, calc(100% + 40px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
}

.sticky-lead.visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
.sticky-lead .btn { min-height: 50px; flex: 1; padding: 0 15px; font-size: 14px; }

.source-search .hero-actions .btn-primary { order: -1; }
.source-meta .hero-actions .btn-kakao { order: -1; }
.source-search .sticky-lead .btn-primary { order: -1; flex-grow: 1.5; }
.source-meta .sticky-lead .btn-kakao { order: -1; flex-grow: 1.5; }
.source-search .hero-actions .btn-primary,
.source-meta .hero-actions .btn-kakao { flex-grow: 1.5; }
.source-search .hero-actions .btn-kakao,
.source-meta .hero-actions .btn-primary { box-shadow: none; }

@media (max-width: 1020px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: grid;
        align-content: start;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: max(20px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
        background: rgba(5, 11, 20, .98);
        color: #fff;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .24s ease, visibility .24s ease;
    }

    .mobile-menu.open { transform: translateX(0); visibility: visible; }
    .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
    .mobile-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; color: #fff; font-size: 25px; }
    .mobile-menu nav { display: grid; gap: 2px; margin-top: 40px; }
    .mobile-menu nav a { padding: 17px 4px; border-bottom: 1px solid rgba(255,255,255,.10); font-size: 20px; font-weight: 800; }
    .mobile-menu-actions { display: grid; gap: 10px; margin-top: 30px; }

    .benefit-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid, .case-grid { grid-template-columns: 1fr; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2)::after { display: none; }
    .location-grid, .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
    .container { width: min(calc(100% - 30px), var(--container)); }
    .preview-banner { min-height: 34px; font-size: 12px; }
    .header-inner { min-height: 66px; }
    .brand { font-size: 21px; }
    .brand-mark { width: 34px; height: 34px; font-size: 22px; }

    .hero {
        min-height: 0;
        display: block;
        padding-top: clamp(220px, 35svh, 320px);
        background-color: var(--ink);
        background-position: 76% top;
        background-repeat: no-repeat;
        background-size: auto clamp(255px, 42svh, 380px);
    }

    .page-wrap .hero { background-position: 77% top; }
    .page-detail .hero { background-position: 76% top; }

    .hero::before {
        background: linear-gradient(180deg, rgba(4, 11, 22, .04) 0%, rgba(4, 11, 22, .04) 24%, rgba(4, 11, 22, .78) 36%, #07111f 44%, #07111f 100%);
    }

    .hero-inner { padding: 0 0 28px; }
    .hero-proof {
        top: 12px;
        left: 15px;
        width: calc(100% - 30px);
        min-height: 58px;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 14px;
        background: rgba(5, 11, 20, .80);
    }
    .hero-proof-icon { width: 34px; height: 34px; border-radius: 10px; }
    .hero-proof strong { font-size: 14px; }
    .hero-proof small { font-size: 10px; }
    .hero-proof-action { font-size: 11px; }
    .eyebrow { margin-bottom: 12px; padding: 6px 10px; font-size: 11px; }
    .hero h1 { font-size: clamp(33px, 9.2vw, 42px); line-height: 1.07; }
    .hero-lead { margin-top: 14px; font-size: 14px; line-height: 1.55; }
    .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }
    .hero-actions .btn { width: 100%; }
    .hero-actions .btn-primary { order: -1 !important; min-height: 56px; font-size: 16px; }
    .hero-actions .btn-kakao { order: 0 !important; min-height: 46px; box-shadow: none; }
    .hero-note { display: flex; gap: 5px 12px; margin-top: 13px; font-size: 12px; }
    .call-urgency { margin-top: 10px; font-size: 12px; text-align: center; }

    .hero .btn { min-height: 49px; padding: 0 15px; font-size: 14px; }
    .hero .btn-primary[data-track-action="phone"] {
        min-height: 58px;
        font-size: 16px;
        animation: callGlow 2s ease-in-out infinite;
    }
    .mobile-menu-actions .btn-primary { order: -1; min-height: 56px; font-size: 16px; }
    .final-cta .hero-actions .btn[data-track-action="phone"] {
        order: -1 !important;
        min-height: 56px;
        border-color: var(--blue);
        background: var(--blue);
        color: #fff;
        box-shadow: 0 14px 30px rgba(47, 109, 246, .32);
        font-size: 15px;
    }

    .section { padding: 56px 0; }
    .section-sm { padding: 46px 0; }
    .section-head { margin-bottom: 30px; }
    .section h2 { font-size: clamp(28px, 8.5vw, 34px); }
    .section-head p { font-size: 16px; }

    .portal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .portal-card, .portal-card.featured { grid-row: auto; min-height: 250px; }
    .portal-card.featured { min-height: 310px; }
    .portal-card.featured .portal-card-content, .portal-card-content { padding: 26px; }
    .portal-card.featured h3, .portal-card h3 { font-size: 28px; }

    .benefit-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .video-grid { grid-template-columns: 1fr; }
    .benefit-card, .service-tile-body { min-height: auto; padding: 18px 15px; }
    .benefit-card h3, .service-tile h3 { margin: 13px 0 7px; font-size: 17px; }
    .benefit-card p, .service-tile p { font-size: 13px; }
    .process-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 0; }
    .process-step { min-height: auto; margin-left: 17px; padding: 16px 18px 20px 38px; border: 0; border-left: 2px solid #d9e5f7; border-radius: 0; }
    .process-step::after { display: none !important; }
    .process-step .step-index { position: absolute; left: -19px; top: 13px; background: var(--blue); color: #fff; }
    .process-step h3 { margin: 0 0 5px; font-size: 18px; }

    .evidence-gate { grid-template-columns: 1fr; padding: 24px; }
    .final-cta { padding: 36px 24px; border-radius: 22px; }
    .final-cta::after { font-size: 130px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .site-footer { padding-bottom: 40px; }

    .review-wrap { padding: 18px 0 18px 15px; overflow: hidden; }
    .source-notice { margin-right: 15px; }
    .review-grid, .case-grid { display: flex; gap: 12px; overflow-x: auto; padding: 0 15px 8px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .review-grid::-webkit-scrollbar, .case-grid::-webkit-scrollbar { display: none; }
    .review-card, .case-card { flex: 0 0 min(82vw, 320px); min-width: 0; min-height: 235px; scroll-snap-align: start; }
    .rating-strip { grid-template-columns: 1fr 1fr; }
    .rating-stat:first-child { grid-column: 1 / -1; }
    .rating-stat strong { font-size: 23px; }
    .channel-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .channel-card { min-height: 190px; padding: 17px; }
    .channel-card h3 { font-size: 17px; }

    .sticky-lead { bottom: calc(10px + env(safe-area-inset-bottom)); width: calc(100% - 20px); }
    .sticky-lead .btn { min-height: 48px; padding: 0 10px; font-size: 13px; }
    .sticky-lead .btn-primary { order: -1 !important; flex-grow: 1.55 !important; min-height: 54px; font-size: 15px; }
    .sticky-lead .btn-kakao { order: 0 !important; flex-grow: .85 !important; box-shadow: none; }
}

@keyframes callGlow {
    0%, 100% { box-shadow: 0 12px 26px rgba(47, 109, 246, .28); }
    50% { box-shadow: 0 16px 38px rgba(47, 109, 246, .58), 0 0 0 4px rgba(100, 214, 255, .10); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
