/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
    --highlight:      #6366f1;
    --highlight-soft: #818cf8;
    --highlight-dim:  rgba(99, 102, 241, 0.15);
    --dark-bg:        #0a0b14;
    --surface:        #111220;
    --surface-2:      #1a1c2e;
    --surface-3:      #21243a;
    --border:         rgba(99, 102, 241, 0.18);
    --border-dim:     rgba(255, 255, 255, 0.06);
    --fg:             #e8eaf0;
    --fg-soft:        #b0b3c8;
    --muted:          #6b6f88;
    --font-h:         'Plus Jakarta Sans', sans-serif;
    --font-b:         'DM Sans', sans-serif;
    --font-m:         'Inconsolata', monospace;
    --radius:         12px;
    --radius-sm:      8px;
    --shadow:         0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg:      0 12px 48px rgba(0, 0, 0, 0.5);
    --transition:     0.22s ease;
}

body {
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 400;
    color: var(--fg);
    background: var(--dark-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
address { font-style: normal; }

.page-wrap {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--highlight);
    color: #fff;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    line-height: 1.3;
    white-space: nowrap;
}
.btn-primary:hover { background: var(--highlight-soft); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(99,102,241,0.35); }

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-large { padding: 16px 32px; font-size: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--fg);
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-dim);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--border); background: var(--surface-2); }

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background var(--transition);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

/* ── SECTION UTILITIES ── */
.section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-label {
    display: inline-block;
    font-family: var(--font-m);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--highlight-soft);
    background: var(--highlight-dim);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--fg);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--fg-soft);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 11, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }
.logo-wordmark {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.01em;
}
.logo-wordmark em {
    font-style: normal;
    color: var(--highlight-soft);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fg-soft);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--fg); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-phone {
    font-family: var(--font-m);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--fg-soft);
    transition: color var(--transition);
}
.nav-phone:hover { color: var(--highlight-soft); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-nav {
    display: none;
    background: var(--surface);
    border-top: 1px solid var(--border-dim);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
#mobile-nav.open { max-height: 600px; }
#mobile-nav ul { padding: 16px 24px 24px; }
#mobile-nav li { border-bottom: 1px solid var(--border-dim); }
#mobile-nav li:last-child { border-bottom: none; }
#mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fg-soft);
    transition: color var(--transition);
}
#mobile-nav a:hover { color: var(--fg); }
.mob-phone { color: var(--highlight-soft) !important; font-family: var(--font-m) !important; }
.mob-cta {
    display: block !important;
    margin-top: 12px;
    text-align: center;
    padding: 12px !important;
    border-radius: var(--radius-sm);
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-m);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--highlight-soft);
    background: var(--highlight-dim);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.tag-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--highlight);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.tag-mono { line-height: 1; }

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--fg);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title em {
    font-style: normal;
    color: var(--highlight-soft);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--fg-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-item strong {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1;
}
.proof-item span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}
.proof-plus, .proof-pct {
    font-size: 1rem;
    color: var(--highlight-soft);
}
.proof-divider {
    width: 1px;
    height: 32px;
    background: var(--border-dim);
}

/* ── HERO DASHBOARD ── */
.hero-dashboard-wrap {
    position: relative;
}
.dash-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.dash-card {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dash-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-m);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--fg-soft);
}
.dash-title svg { color: var(--highlight); }
.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-m);
    font-size: 0.75rem;
    font-weight: 500;
    color: #22c55e;
    background: rgba(34,197,94,0.1);
    padding: 3px 10px;
    border-radius: 100px;
}
.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dash-label-row {
    display: grid;
    grid-template-columns: 1fr 100px 56px;
    gap: 8px;
    font-family: var(--font-m);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-dim);
    margin-bottom: 12px;
}

.dash-rows { display: flex; flex-direction: column; gap: 14px; }

.dash-row {
    display: grid;
    grid-template-columns: 1fr 100px 56px;
    align-items: center;
    gap: 8px;
}
.kw-name {
    font-size: 0.83rem;
    color: var(--fg);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kw-track {
    height: 6px;
    background: var(--surface-3);
    border-radius: 3px;
    overflow: hidden;
}
.kw-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--highlight), var(--highlight-soft));
    border-radius: 3px;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.kw-bar.animated { width: var(--target); }

.kw-rank {
    text-align: right;
    position: relative;
    height: 1.4em;
    overflow: hidden;
}
.rank-from, .rank-to {
    display: block;
    font-family: var(--font-m);
    font-size: 0.82rem;
    font-weight: 500;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    position: absolute;
    right: 0;
}
.rank-from { color: var(--muted); top: 0; }
.rank-to { color: var(--highlight-soft); top: 0; transform: translateY(100%); opacity: 0; }
.kw-rank.animated .rank-from { transform: translateY(-100%); opacity: 0; }
.kw-rank.animated .rank-to { transform: translateY(0); opacity: 1; }

.dash-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border-dim);
    font-family: var(--font-m);
    font-size: 0.7rem;
    color: var(--muted);
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    padding: 13px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
    font-family: var(--font-m);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--fg-soft);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.tick-dot { color: var(--highlight); }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── STATS ── */
.stats-strip {
    padding: 80px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-dim);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface-2);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
}
.stat-num {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--highlight-soft);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── SERVICES ── */
.services-section { background: var(--dark-bg); }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color var(--transition), transform var(--transition);
}
.svc-card:hover { border-color: var(--border); transform: translateY(-3px); }
.svc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--highlight-dim);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--highlight-soft);
}
.svc-name {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 12px;
    line-height: 1.3;
}
.svc-desc {
    font-size: 0.88rem;
    color: var(--fg-soft);
    line-height: 1.65;
    margin-bottom: 20px;
}
.svc-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--highlight-soft);
    transition: color var(--transition);
}
.svc-link:hover { color: var(--fg); }

/* ── WHY US ── */
.why-section { background: var(--surface); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.why-intro {
    font-size: 1rem;
    color: var(--fg-soft);
    margin-bottom: 36px;
    line-height: 1.7;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-points li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--highlight-dim);
    color: var(--highlight-soft);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}
.why-points li strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fg);
    display: block;
    margin-bottom: 4px;
}
.why-points li p { font-size: 0.88rem; color: var(--fg-soft); }

/* ── WHY VISUAL ── */
.why-grid-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.wv-card {
    background: var(--surface-2);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 20px;
}
.wv-card--highlight { border-color: var(--border); }
.wv-card--dark { background: var(--highlight-dim); border-color: var(--border); }
.wv-label {
    font-family: var(--font-m);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 14px;
}
.wv-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
}
.wv-bar {
    flex: 1;
    background: var(--highlight-dim);
    border-radius: 3px 3px 0 0;
    transition: height 0.6s ease;
}
.wv-bar--peak { background: var(--highlight); }

.wv-rank-list { display: flex; flex-direction: column; gap: 8px; }
.wv-rank-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--fg-soft); }
.wv-pos {
    font-family: var(--font-m);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    min-width: 28px;
    text-align: center;
}
.wv-pos--high { background: rgba(34,197,94,0.12); color: #22c55e; }
.wv-pos--med  { background: var(--highlight-dim); color: var(--highlight-soft); }

.wv-stat-big {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1;
    margin-bottom: 6px;
}
.wv-stat-sub { font-size: 0.78rem; color: #22c55e; font-weight: 500; }

.wv-badge-row { display: flex; align-items: center; gap: 10px; }
.wv-badge {
    font-family: var(--font-m);
    font-size: 1rem;
    font-weight: 700;
    color: var(--highlight-soft);
    background: var(--highlight-dim);
    padding: 4px 12px;
    border-radius: 6px;
}
.wv-badge-text { font-size: 0.82rem; color: var(--fg-soft); }

/* ── PROCESS ── */
.process-section { background: var(--dark-bg); }
.process-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--highlight), transparent);
}
.process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    font-family: var(--font-m);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--highlight-soft);
    z-index: 1;
}
.step-content { padding-top: 14px; }
.step-content h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 10px;
}
.step-content p { font-size: 0.92rem; color: var(--fg-soft); line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-section { background: var(--surface); }
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--surface-2);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border); }
.review-stars {
    color: #facc15;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review-quote {
    font-family: var(--font-b);
    font-size: 0.92rem;
    color: var(--fg);
    line-height: 1.7;
    margin-bottom: 20px;
    quotes: none;
}
.review-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 2px;
}
.review-author span { font-size: 0.8rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { background: var(--dark-bg); }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }

.faq-item {
    border-bottom: 1px solid var(--border-dim);
}
.faq-item:first-child { border-top: 1px solid var(--border-dim); }
.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--fg);
    line-height: 1.4;
    transition: color var(--transition);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--highlight-soft); }
.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--highlight-soft);
    min-width: 20px;
    text-align: center;
    transition: transform var(--transition);
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--fg-soft);
    line-height: 1.75;
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--highlight);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-copy h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}
.cta-copy p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-bg-circle {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

/* ── CONTACT ── */
.contact-section { background: var(--surface); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}
.contact-desc {
    font-size: 1rem;
    color: var(--fg-soft);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--fg-soft);
}
.contact-detail-item svg { color: var(--highlight-soft); flex-shrink: 0; }
.contact-detail-item a { color: var(--fg-soft); transition: color var(--transition); }
.contact-detail-item a:hover { color: var(--highlight-soft); }

/* ── QUOTE FORM ── */
.quote-form {
    background: var(--surface-2);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fg-soft);
    letter-spacing: 0.01em;
}
.form-group label span { color: var(--highlight-soft); }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface);
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-sm);
    color: var(--fg);
    font-family: var(--font-b);
    font-size: 0.92rem;
    padding: 11px 14px;
    width: 100%;
    transition: border-color var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--highlight); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6f88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--surface-2); }

.form-status {
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    display: none;
}
.form-status.success { display: block; background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.form-status.error { display: block; background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

.submit-btn {
    width: 100%;
    justify-content: center;
    position: relative;
    margin-bottom: 14px;
    margin-top: 8px;
}
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* ── FOOTER ── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border-dim);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 72px;
    padding-bottom: 56px;
}
.footer-logo-link { display: inline-flex; margin-bottom: 16px; }
.footer-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 280px;
}
.footer-contact-item { margin-bottom: 6px; }
.footer-contact-item a {
    font-size: 0.88rem;
    color: var(--fg-soft);
    transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--highlight-soft); }

.footer-col h4 {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--fg-soft); }
.footer-col a.btn-primary,
.footer-col a.btn-primary:hover { color: #fff; }
.footer-contact-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.footer-contact-detail svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--highlight-soft); }
.footer-contact-detail a { color: var(--muted); transition: color var(--transition); }
.footer-contact-detail a:hover { color: var(--fg-soft); }
.footer-btn { display: block; text-align: center; margin-top: 16px; }

.footer-bar {
    border-top: 1px solid var(--border-dim);
    background: var(--dark-bg);
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 0.8rem;
    color: var(--muted);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--fg-soft); }

/* ── STICKY CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--highlight);
    color: #fff;
    font-family: var(--font-b);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(99,102,241,0.4);
    transition: background var(--transition), box-shadow var(--transition);
}
.sticky-cta-btn:hover { background: var(--highlight-soft); box-shadow: 0 6px 28px rgba(99,102,241,0.5); }

/* ── SEO CONTENT ── */
#seo-content { background: var(--surface); }
.seo-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.seo-sidebar { position: sticky; top: 88px; }
.seo-sidebar-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.sidebar-heading {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 10px;
}
.sidebar-desc {
    font-size: 0.85rem;
    color: var(--fg-soft);
    line-height: 1.65;
    margin-bottom: 16px;
}
.sidebar-phone {
    display: block;
    font-family: var(--font-m);
    font-size: 1rem;
    font-weight: 500;
    color: var(--highlight-soft);
    margin-bottom: 14px;
    transition: opacity var(--transition);
}
.sidebar-phone:hover { opacity: 0.8; }
.sidebar-cta-btn { display: block; text-align: center; margin-bottom: 22px; }
.sidebar-nav {
    border-top: 1px solid var(--border-dim);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-nav a {
    font-size: 0.82rem;
    color: var(--muted);
    transition: color var(--transition);
    line-height: 1.4;
}
.sidebar-nav a:hover { color: var(--highlight-soft); }
.seo-content-body { min-width: 0; }
.seo-h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--fg);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.seo-intro-h2 {
    font-family: var(--font-h);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 14px;
    line-height: 1.35;
}
.seo-intro p {
    font-size: 0.93rem;
    color: var(--fg-soft);
    line-height: 1.75;
    margin-bottom: 14px;
}
#seo-content .faq-item { border-color: var(--border-dim); }
#seo-content .faq-summary h2 {
    font-family: var(--font-b) !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
    letter-spacing: 0 !important;
    flex: 1;
}
.seo-acc-body p {
    font-size: 0.93rem;
    color: var(--fg-soft);
    line-height: 1.75;
    margin-bottom: 14px;
}
.seo-acc-body h3 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--fg);
    margin: 22px 0 10px;
    line-height: 1.3;
}

/* ── LEGAL PAGES ── */
.legal-hero {
    padding: 80px 0 60px;
    background: var(--surface);
    border-bottom: 1px solid var(--border-dim);
}
.legal-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 12px;
}
.legal-hero p { font-size: 0.95rem; color: var(--muted); }
.legal-content {
    padding: 72px 0;
    max-width: 760px;
}
.legal-content h2 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fg);
    margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin: 24px 0 8px;
}
.legal-content p { font-size: 0.93rem; color: var(--fg-soft); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; list-style: disc; }
.legal-content ul li { font-size: 0.93rem; color: var(--fg-soft); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--highlight-soft); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-grid-visual { max-width: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .seo-layout { grid-template-columns: 1fr; }
    .seo-sidebar { position: static; }
}

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-dashboard-wrap { max-width: 500px; }
    .review-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .nav-links { display: none; }
    .nav-actions .nav-phone { display: none; }
    .hamburger { display: flex; }
    #mobile-nav { display: block; }
    .process-timeline { max-width: 100%; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding: 72px 0 60px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .svc-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
    .hero-proof { gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bar-inner { flex-direction: column; gap: 10px; text-align: center; }
    .cta-actions { width: 100%; }
    .cta-actions a { width: 100%; justify-content: center; }
    .nav-actions .btn-sm { display: none; }
    .sticky-cta-label { display: none; }
    .sticky-cta-btn { padding: 14px; border-radius: 50%; }
    .why-grid-visual { grid-template-columns: 1fr; }
    .quote-form { padding: 24px 20px; }
}
