/* =====================================================================
   jennysoft 마케팅 사이트 공용 스타일 (랜딩 / 회사소개 / 견적문의)
   대시보드(관리자)용 default 레이아웃과는 분리된 독립 디자인 시스템.
   ===================================================================== */

:root {
    --ink: #0a0f1f;
    --ink-2: #111733;
    --indigo: #4f6bff;
    --indigo-2: #7a5cff;
    --cyan: #22d3ee;
    --accent: #ff5d8f;
    --paper: #f6f8ff;
    --muted: #6b7394;
    --line: rgba(255, 255, 255, 0.10);
    --radius: 20px;
    --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Pretendard", "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
    background: var(--ink);
    color: #e7ebff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

/* ============ NAVBAR ============ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease;
    padding: 20px 0;
}
.nav.scrolled {
    background: rgba(10, 15, 31, 0.78);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 12px 40px rgba(0,0,0,.35);
    padding: 13px 0;
}
.nav .inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: #fff; }
.brand .mark {
    width: 38px; height: 38px; border-radius: 11px;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-2));
    display: grid; place-items: center; color: #fff; font-size: 19px; font-weight: 800;
    box-shadow: 0 8px 24px rgba(79,107,255,.45);
}
.brand b { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { font-size: 15px; color: #c4cbf0; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a.link::after {
    content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
    background: var(--cyan); transition: width .3s ease;
}
.nav-links a.link:hover { color: #fff; }
.nav-links a.link:hover::after { width: 100%; }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px;
    background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 999px; }
.lang-switch a { font-size: 12px; font-weight: 700; color: #aab1d6; text-decoration: none;
    padding: 4px 10px; border-radius: 999px; transition: background .2s, color .2s; }
.lang-switch a:hover { color: #fff; }
.lang-switch a.on { background: linear-gradient(135deg, var(--indigo), var(--indigo-2)); color: #fff; }

.nav-backdrop {
    position: fixed; inset: 0; z-index: 80;
    background: rgba(5, 7, 20, 0.6); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: 15px; border: 0; cursor: pointer; font-family: inherit;
    padding: 12px 22px; border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease, background .2s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-2));
    color: #fff; box-shadow: 0 10px 30px rgba(79,107,255,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(79,107,255,.55); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; padding: 130px 0 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb.o1 { width: 520px; height: 520px; background: radial-gradient(circle, #4f6bff, transparent 70%); top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.orb.o2 { width: 460px; height: 460px; background: radial-gradient(circle, #7a5cff, transparent 70%); bottom: -140px; left: -100px; animation: float2 18s ease-in-out infinite; }
.orb.o3 { width: 360px; height: 360px; background: radial-gradient(circle, #22d3ee, transparent 70%); top: 30%; left: 40%; opacity: .30; animation: float1 22s ease-in-out infinite; }
.grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }

.hero .wrap { position: relative; z-index: 2; }
.pill {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
    padding: 8px 16px; border-radius: 999px; color: #bcd3ff;
    background: rgba(79,107,255,.12); border: 1px solid rgba(124,150,255,.3);
    margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { font-size: clamp(38px, 6vw, 72px); line-height: 1.05; font-weight: 800; letter-spacing: -.03em; max-width: 18ch; }
.hero h1 .grad {
    background: linear-gradient(110deg, var(--cyan), var(--indigo) 45%, var(--indigo-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(16px, 2vw, 20px); color: #b9c0e4; max-width: 58ch; margin: 24px 0 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-ind {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
    color: #8b93bd; font-size: 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; letter-spacing: .12em;
}
.mouse { width: 26px; height: 42px; border: 2px solid #5b639a; border-radius: 14px; position: relative; }
.mouse::before { content:""; position:absolute; top:8px; left:50%; transform:translateX(-50%); width:4px; height:8px; border-radius:2px; background:#9aa3d6; animation: scroll 1.8s infinite; }
@keyframes scroll { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 60%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ============ SECTIONS ============ */
section { position: relative; }
.band { padding: 104px 0; }
.band.light { background: var(--paper); color: var(--ink); }
.band.darker { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }

.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--indigo); margin-bottom: 14px; }
.sec-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.14; }
.sec-sub { font-size: 17px; color: var(--muted); max-width: 64ch; margin-top: 16px; }
.light .sec-sub { color: #5a6178; }
.center { text-align: center; margin: 0 auto; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ============ STATS ============ */
.stats {
    margin-top: -68px; position: relative; z-index: 5;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    border: 1px solid var(--line); border-radius: var(--radius);
    backdrop-filter: blur(16px);
    display: grid; grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.stat { padding: 36px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num { font-size: 46px; font-weight: 800; letter-spacing: -.03em;
    background: linear-gradient(135deg, #fff, #aebbff);
    -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lab { color: #aab1d6; font-size: 14.5px; margin-top: 6px; }

/* ============ GRID + CARDS ============ */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border-radius: var(--radius); padding: 34px 30px;
    border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative; overflow: hidden;
}
.card::after { content:""; position:absolute; left:0; top:0; height:4px; width:0; background:linear-gradient(90deg,var(--indigo),var(--cyan)); transition:width .4s ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,.4); border-color: rgba(124,150,255,.4); }
.card:hover::after { width: 100%; }
.card .ico {
    width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
    font-size: 27px; color: #fff; margin-bottom: 22px;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-2));
    box-shadow: 0 12px 26px rgba(79,107,255,.35);
}
.card.c1 .ico { background: linear-gradient(135deg,#4f6bff,#7a5cff); }
.card.c2 .ico { background: linear-gradient(135deg,#22d3ee,#1597d6); box-shadow:0 12px 26px rgba(34,211,238,.35); }
.card.c3 .ico { background: linear-gradient(135deg,#ff7a59,#ff5d8f); box-shadow:0 12px 26px rgba(255,93,143,.35); }
/* 링크형 카드 */
a.card, a.qcard { display: block; color: inherit; text-decoration: none; }
.card .go { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: #c4cbf0; font-weight: 600; font-size: 14px; }
.card:hover .go { color: #fff; }
.card .go i { transition: transform .25s; }
.card:hover .go i { transform: translateX(5px); }
.card h3 { font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 10px; }
.card p { color: #aab1d6; font-size: 15px; }
.card ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.card ul li { color: #c4cbf0; font-size: 14px; display: flex; gap: 9px; align-items: flex-start; }
.card ul li i { color: var(--cyan); margin-top: 3px; }

/* tag/badge */
.tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.04em; padding:5px 11px; border-radius:999px;
    background: rgba(34,211,238,.13); color: #8ff0fb; border: 1px solid rgba(34,211,238,.3); }

/* ============ Q SERIES ============ */
.qgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 50px; }
.qcard {
    background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 18px;
    padding: 26px 20px; text-align: center; transition: transform .35s, background .35s, border-color .35s;
}
.qcard:hover { transform: translateY(-7px); background: rgba(79,107,255,.10); border-color: rgba(124,150,255,.4); }
.qcard .qico { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; color: #fff; }
.qcard h4 { font-size: 17px; color: #fff; font-weight: 700; margin-bottom: 6px; }
.qcard p { font-size: 13px; color: #9aa2c8; line-height: 1.5; }
.qcard .feat { margin-top: 8px; display:inline-block; font-size: 11px; color: #8ff0fb; }

/* ============ ABOUT split ============ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about-list { margin-top: 28px; display: grid; gap: 16px; }
.about-list li { list-style: none; display: flex; gap: 14px; align-items: flex-start; }
.about-list .ck { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: rgba(79,107,255,.16); color: #aebbff; display: grid; place-items: center; font-size: 14px; margin-top: 2px; }
.about-list strong { display:block; color: #fff; font-size: 16.5px; }
.about-list span { color: #9aa2c8; font-size: 14.5px; }
.visual {
    border-radius: 24px; aspect-ratio: 4/3.4; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1b2150, #2a2170);
    border: 1px solid rgba(255,255,255,.08); box-shadow: 0 30px 70px rgba(10,14,39,.5);
    display: grid; place-items: center;
}
.visual .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.12); }
.visual .ring.r1 { inset: 14%; }
.visual .ring.r2 { inset: 26%; border-color: rgba(124,150,255,.25); }
.visual .ring.r3 { inset: 38%; }
.visual .core {
    width: 110px; height: 110px; border-radius: 28px;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-2)); display: grid; place-items: center;
    color: #fff; font-size: 30px; font-weight: 800; letter-spacing: -.02em; box-shadow: 0 0 60px rgba(79,107,255,.6); animation: bob 4s ease-in-out infinite; z-index: 2;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ============ CTA ============ */
.cta-band { padding: 100px 0; }
.cta-box {
    position: relative; overflow: hidden; border-radius: 28px; padding: 62px 56px; text-align: center;
    background: linear-gradient(135deg, #2a2170, #4f6bff);
    box-shadow: 0 40px 90px rgba(79,107,255,.35);
}
.cta-box .orb { opacity: .4; }
.cta-box h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; letter-spacing: -.02em; position: relative; z-index: 2; color:#fff; }
.cta-box p { color: #d9e0ff; font-size: 18px; margin: 16px auto 32px; max-width: 56ch; position: relative; z-index: 2; }
.cta-box .hero-cta { justify-content: center; position: relative; z-index: 2; }

/* ============ FOOTER ============ */
footer.ft { background: #060916; padding: 58px 0 34px; border-top: 1px solid var(--line); }
.ft-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.ft .brand { margin-bottom: 12px; }
.ft p.desc { color: #8189b3; font-size: 14.5px; max-width: 42ch; }
.ft-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.ft-col h4 { font-size: 14px; color: #fff; margin-bottom: 16px; letter-spacing: .04em; }
.ft-col a { display: block; color: #8189b3; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.ft-col a:hover { color: #fff; }
.ft-biz { margin-top: 34px; color: #767ea6; font-size: 13px; line-height: 1.9; }
.ft-biz .sep { margin: 0 10px; opacity: .4; }
.ft-biz b { color: #aab1d6; font-weight: 700; margin-right: 5px; font-size: 12.5px; }
@media (max-width: 560px) { .ft-biz .sep { display: none; } .ft-biz span.line { display: block; } }
.ft-bottom { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: #6b7394; font-size: 13px; }
.ft-bottom .to-top {
    display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: #aab1d6;
    padding: 7px 16px 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.05);
    transition: background .2s, color .2s, transform .2s;
}
.ft-bottom .to-top i { font-size: 19px; }
.ft-bottom .to-top:hover { color: #fff; background: rgba(79,107,255,.18); border-color: rgba(124,150,255,.4); transform: translateY(-2px); }

/* 떠 있는 '맨 위로' 버튼 (스크롤 시 노출) */
#toTopBtn {
    position: fixed; right: 24px; bottom: 24px; z-index: 90;
    width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
    display: grid; place-items: center; font-size: 24px; color: #fff;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-2));
    box-shadow: 0 12px 30px rgba(79,107,255,.5);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, box-shadow .2s ease;
}
#toTopBtn.show { opacity: 1; visibility: visible; transform: translateY(0); }
#toTopBtn:hover { box-shadow: 0 16px 38px rgba(79,107,255,.7); transform: translateY(-3px); }
@media (max-width: 560px) { #toTopBtn { right: 16px; bottom: 16px; width: 46px; height: 46px; } }

/* ============ FORM (견적문의) ============ */
.page-hero { padding: 140px 0 50px; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 50px); font-weight: 800; letter-spacing: -.025em; }
.page-hero p { color: #b9c0e4; font-size: 17px; margin-top: 14px; max-width: 60ch; }
.breadcrumbs { font-size: 13.5px; color: #8b93bd; margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.breadcrumbs a:hover { color: #fff; }

.form-wrap { padding: 10px 0 110px; }
.form-card {
    max-width: 760px; margin: 0 auto;
    background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid var(--line); border-radius: 22px; padding: 40px 38px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; color: #d7ddff; margin-bottom: 9px; }
.form-row label .req { color: var(--accent); margin-left: 3px; }
.form-control {
    width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
    color: #eef1ff; transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-control::placeholder { color: #717aa3; }
.form-control:focus { outline: none; border-color: var(--indigo); background: rgba(79,107,255,.08); box-shadow: 0 0 0 3px rgba(79,107,255,.18); }
textarea.form-control { resize: vertical; min-height: 150px; line-height: 1.6; }
select.form-control { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='%23aab1d6'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
select.form-control option { background: #161c33; color: #eef1ff; }

/* 선택형 칩 (서비스 유형) */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-opt { position: relative; }
.chip-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip-opt > span {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px;
    font-size: 14px; font-weight: 600; color: #c4cbf0; cursor: pointer;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); transition: all .2s;
    white-space: nowrap;
}
.chip-opt > span i { font-size: 16px; line-height: 1; }
.chip-opt input:checked + span { background: linear-gradient(135deg, var(--indigo), var(--indigo-2)); color: #fff; border-color: transparent; box-shadow: 0 8px 22px rgba(79,107,255,.4); }
.chip-opt:hover > span { border-color: rgba(124,150,255,.5); color: #fff; }

.form-actions { display: flex; gap: 12px; margin-top: 30px; }
.form-actions .btn { flex: 1; }

.alert-box {
    display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: 12px; margin-bottom: 26px;
    font-size: 14.5px;
}
.alert-box.err { background: rgba(255,93,143,.12); border: 1px solid rgba(255,93,143,.4); color: #ffc2d6; }
.alert-box i { font-size: 18px; margin-top: 1px; }

/* 완료 페이지 */
.complete-wrap { min-height: 86vh; display: grid; place-items: center; padding: 130px 0 70px; text-align: center; }
.complete-card { max-width: 560px; }
.complete-icon {
    width: 96px; height: 96px; margin: 0 auto 28px; border-radius: 28px; display: grid; place-items: center;
    font-size: 46px; color: #fff; background: linear-gradient(135deg, #28c76f, #1ba94c);
    box-shadow: 0 18px 44px rgba(40,199,111,.45); animation: bob 4s ease-in-out infinite;
}
.complete-card h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.complete-card p { color: #b9c0e4; font-size: 17px; margin: 16px auto 32px; max-width: 46ch; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
/* 애니메이션 종료 후에는 transform 을 제거(none)해 GPU 합성 레이어를 해제한다.
   translateY(0) 을 남겨두면 전체화면 전환·창 크기 변경 시 레이어가 재래스터화되며 글자가 흐려진다. */
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .orb, .core, .complete-icon, .mouse::before, .pill .dot { animation: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .nav, .nav.scrolled { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(8, 11, 30, 0.96) !important; }
    .nav-links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start;
        background: #0b1030; padding: 96px 30px 40px; gap: 22px;
        transform: translateX(100%); transition: transform .35s ease; box-shadow: -24px 0 70px rgba(0,0,0,.6);
        z-index: 105; overflow-y: auto; border-left: 1px solid var(--line); }
    .nav-links.open { transform: translateX(0); }
    .nav-links .btn-primary { width: 100%; }
    .nav-toggle { display: block; z-index: 120; position: relative; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(1),.stat:nth-child(2) { border-bottom: 1px solid var(--line); }
    .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; }
    .qgrid { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .band { padding: 76px 0; }
    .cta-box { padding: 46px 24px; }
    .form-card { padding: 30px 22px; }
    .form-row.two { grid-template-columns: 1fr; }
    .qgrid { grid-template-columns: 1fr; }
    .form-actions { flex-direction: column; }
}
