/* ═══════════════════════════════════════════════════════════
   Quantum Compliance Design System v3.0
   TaxClue — Modern UI Revamp
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    /* Core palette — matched to taxclue.in */
    --navy-void: #05101F;
    --navy-deep: #0B1D3A;
    --navy-mid: #142A55;
    --navy-line: rgba(200,153,46,0.12);
    /* Opaque: cards must render identically over page bg, bands, and hero */
    --navy-surface: #0B1D3A;

    /* Gold — matched to taxclue.in */
    --gold: #C8992E;
    --gold-bright: #E8B84A;
    --gold-glow: rgba(232,184,74,0.45);
    --gold-soft: rgba(200,153,46,0.07);

    /* Cyan — brighter, matched to taxclue.in */
    --cyan: #5EE7FF;
    --cyan-soft: rgba(94,231,255,0.18);

    /* Neutrals — warmer cream, matched to taxclue.in */
    --bone: #F5F0E6;
    --bone-dim: rgba(245,240,230,0.75);
    --bone-faint: rgba(245,240,230,0.60);

    /* Status */
    --success: #54E0A8;
    --danger: #FF5C7A;
    --warning: #FBBF24;
    --info: #60A5FA;

    /* Radii */
    --r-xs: 6px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* Spacing scale */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 96px;

    /* Typography scale */
    --text-xs: 12px;
    --text-sm: 13px;
    --text-base: 15px;
    --text-md: 17px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 40px;
    --text-4xl: 48px;

    /* Transitions */
    --t-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-mid: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows — slightly softer spreads */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.30), 0 4px 12px rgba(0,0,0,0.18);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.40), 0 8px 20px rgba(0,0,0,0.22);
    --shadow-gold: 0 8px 32px rgba(200,153,46,0.22);
    --shadow-gold-lg: 0 16px 48px rgba(200,153,46,0.28);

    /* Z-index scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 500;
    --z-modal: 1000;
    --z-toast: 2000;
    --z-top: 10000;

    color-scheme: dark;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--hdr-h, 68px) + 16px);
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--navy-void);
    color: var(--bone);
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }

/* ── Background Canvas — matched to taxclue.in ── */
.bg-canvas {
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(94,231,255,0.10), transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 30%, rgba(232,184,74,0.08), transparent 60%),
        radial-gradient(ellipse 70% 50% at 10% 70%, rgba(232,184,74,0.06), transparent 60%),
        var(--navy-void);
}

.bg-grid { display: none; }

.orb {
    position: fixed; border-radius: 50%;
    filter: blur(80px); z-index: -1;
    opacity: 0.35; pointer-events: none;
}
.orb-1 { display: none; }
.orb-2 { width: 400px; height: 400px; background: var(--cyan); bottom: 10%; left: -150px; }

@media (prefers-reduced-motion: reduce) {
    .bg-grid, .orb, .grad-text, .float-badge, .glow-pulse,
    .tc-swiper, .reveal { animation: none !important; transition: none !important; }
}

/* ── Section Block Backgrounds ── */
section { position: relative; }

/* Hero — handled by .qhp-hero styles */

/* Compliance Intelligence — base dark */
#compliance-live { background: var(--navy-void); }

/* Services — subtle gold wash bottom glow */
#services {
    background: linear-gradient(180deg, var(--navy-void) 0%, #081525 50%, var(--navy-void) 100%);
}

/* Calculator — cyan accent glow */
#calc-teaser {
    background: var(--navy-void);
    overflow: hidden;
}
#calc-teaser::after {
    content: '';
    position: absolute; bottom: -120px; right: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(94,231,255,0.05), transparent 70%);
    pointer-events: none;
}

/* Downloads — slightly lifted navy */
#downloads-teaser { background: #081525; }

/* About — base dark + gold orb */
#about {
    background: var(--navy-void);
    overflow: hidden;
}
#about::after {
    content: '';
    position: absolute; top: -100px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,153,46,0.04), transparent 65%);
    pointer-events: none;
}

/* Video — subtle warm wash */
#video-how {
    background: linear-gradient(160deg, var(--navy-void), #0A1828);
}

/* How It Works — base dark */
#how { background: var(--navy-void); }

/* Why TaxClue — dramatic gradient */
#why {
    background: linear-gradient(145deg, rgba(5,16,31,0.95), rgba(11,29,58,0.8));
}

/* Comparison — slightly lighter */
#comparison { background: #081525; }

/* Industries — cyan tinted */
#industries {
    background: var(--navy-void);
    overflow: hidden;
}
#industries::after {
    content: '';
    position: absolute; bottom: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(94,231,255,0.04), transparent 70%);
    pointer-events: none;
}

/* Trust — gold tinted */
#trust {
    background: linear-gradient(180deg, #081525, var(--navy-void));
}

/* Reviews — base dark */
#reviews { background: var(--navy-void); }

/* Case Studies — subtle lift */
#case-studies { background: #071320; }

/* Partners — base dark */
#partners { background: var(--navy-void); }

/* Clients — subtle */
#featured-clients { background: #081525; }

/* Blog — gold wash */
#blog {
    background: var(--navy-void);
    overflow: hidden;
}
#blog::after {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,153,46,0.04), transparent 70%);
    pointer-events: none;
}

/* FAQ — base dark */
#faq { background: var(--navy-void); }

/* Lead Capture — dramatic CTA gradient + dual glow */
#lead-form {
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232,184,74,0.06), transparent 70%),
                var(--navy-void);
}

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-6); }

section { padding: 56px 0; }

@media (max-width: 768px) {
    section { padding: var(--sp-12) 0; }
    .container { padding: 0 var(--sp-4); }
}


/* ══════════════════════════════════════
   BUTTONS — Unified System
══════════════════════════════════════ */
.btn {
    padding: 13px 26px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--t-fast);
    cursor: pointer;
    border: 1.5px solid transparent;
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }

/* Primary — Gold gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy-void);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}
.btn-primary::after {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--navy-void);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost — Frosted glass */
.btn-ghost {
    background: rgba(245,240,230,0.04);
    color: var(--bone);
    border-color: rgba(245,240,230,0.12);
    backdrop-filter: blur(12px);
}
.btn-ghost::after { background: rgba(245,240,230,0.04); }
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--bone);
    transform: translateY(-1px);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--bone);
    border-color: rgba(200,153,46,0.25);
}
.btn-outline::after { background: rgba(200,153,46,0.06); }
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

/* WhatsApp */
.btn-wa {
    background: rgba(37,211,102,0.10);
    color: #25D366;
    border-color: rgba(37,211,102,0.25);
}
.btn-wa::after { background: rgba(37,211,102,0.06); }
.btn-wa:hover { background: rgba(37,211,102,0.18); color: #25D366; }

/* Cyan */
.btn-cyan {
    background: rgba(94,231,255,0.08);
    color: var(--cyan);
    border-color: var(--cyan-soft);
}
.btn-cyan::after { background: rgba(94,231,255,0.06); }
.btn-cyan:hover { background: rgba(94,231,255,0.16); color: var(--cyan); }

/* Size variants */
.btn-sm { padding: 9px 18px; font-size: 13px; gap: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; gap: 12px; }
.btn-xl { padding: 18px 40px; font-size: 17px; gap: 14px; border-radius: var(--r-lg); }

/* Icon-only */
.btn-icon {
    width: 44px; height: 44px;
    padding: 0; justify-content: center;
    border-radius: var(--r-md);
}
.btn-icon.btn-sm { width: 36px; height: 36px; }

/* Focus states */
.btn-primary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; color: var(--navy-void); }
.btn-ghost:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-wa:focus-visible { outline: 3px solid #25D366; outline-offset: 3px; }
.btn-cyan:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.btn-outline:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Disabled */
.btn:disabled, .btn[disabled] {
    opacity: 0.45; cursor: not-allowed;
    pointer-events: none; transform: none !important;
}


/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.sec-header { text-align: center; margin-bottom: 28px; }

.sec-tag {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-3);
    display: block;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: var(--sp-4);
}
.sec-title .ital { font-style: italic; color: var(--gold-bright); }

.sec-sub {
    color: var(--bone);
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}


/* ══════════════════════════════════════
   UTILITY TICKER
══════════════════════════════════════ */
.q-utility {
    background: linear-gradient(90deg, rgba(11,29,58,0.92), rgba(18,34,64,0.92));
    border-bottom: 1px solid var(--navy-line);
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}
.q-util-track {
    display: flex; gap: 48px;
    padding: 10px 0;
    animation: qScroll 30s linear infinite;
    white-space: nowrap;
}
.q-util-track span {
    font-size: 12px; color: var(--bone-dim);
    letter-spacing: 1px; text-transform: uppercase;
}
.q-util-track strong { color: var(--gold-bright); }
@keyframes qScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ══════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    position: relative;
    overflow: hidden;
    transition: all var(--t-mid);
    backdrop-filter: blur(16px);
    display: block;
    color: var(--bone);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--t-mid);
}
.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,153,46,0.30);
    box-shadow: var(--shadow-lg), 0 0 24px rgba(200,153,46,0.06);
}
.svc-card:hover::before { opacity: 1; }

.svc-card .tag {
    position: absolute; top: 16px; right: 16px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px; font-weight: 700;
    color: var(--cyan); background: var(--cyan-soft);
    padding: 4px 10px; border-radius: var(--r-xs);
    letter-spacing: 0.5px;
}
.svc-card .tag.hot { color: var(--gold-bright); background: rgba(200,153,46,0.10); }

.svc-icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(200,153,46,0.15), rgba(94,231,255,0.06));
    display: grid; place-items: center;
    font-size: 22px; color: var(--gold-bright);
    margin-bottom: var(--sp-4);
    transition: transform var(--t-mid);
}
.svc-card:hover .svc-icon { transform: scale(1.08); }

.svc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 500;
    margin-bottom: var(--sp-2);
    line-height: 1.3;
}
.svc-card p {
    color: var(--bone-dim);
    font-size: var(--text-sm);
    line-height: 1.65;
}
.svc-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ══════════════════════════════════════
   LEAD MAGNETS
══════════════════════════════════════ */
.magnet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 1024px) { .magnet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .magnet-grid { grid-template-columns: 1fr; } }

.magnet {
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    position: relative;
    overflow: hidden;
    transition: all var(--t-mid);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: block;
    color: var(--bone);
}
.magnet:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.magnet-type {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px; font-weight: 700;
    color: var(--cyan); letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
}

.magnet h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 500;
    margin-bottom: var(--sp-2);
    line-height: 1.3;
}
.magnet p {
    color: var(--bone-dim);
    font-size: var(--text-sm);
    margin-bottom: var(--sp-4);
    line-height: 1.65;
}

.magnet-meta {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: var(--sp-3);
    border-top: 1px dashed var(--navy-line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--bone-faint);
}
.magnet-meta .download { color: var(--gold-bright); }
.magnet:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ══════════════════════════════════════
   SEE ALL LINK
══════════════════════════════════════ */
.see-all { display: flex; justify-content: center; margin-top: var(--sp-8); }
.see-all a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 28px;
    border: 1.5px solid rgba(200,153,46,0.3);
    border-radius: var(--r-md);
    color: var(--gold-bright);
    font-size: 14px; font-weight: 600;
    transition: all var(--t-fast);
}
.see-all a:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    transform: translateY(-1px);
}
.see-all a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ══════════════════════════════════════
   HERO ELEMENTS
══════════════════════════════════════ */
.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    border-radius: var(--r-full);
    background: rgba(94,231,255,0.06);
    border: 1px solid var(--cyan-soft);
    font-size: 12px; color: var(--cyan);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 600; letter-spacing: 1px;
    margin-bottom: var(--sp-6);
}
.hero-pill .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    animation: pulse 2s ease-in-out infinite;
}

.hero-banners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--navy-line);
    max-width: 1080px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--navy-line);
}
.banner {
    background: var(--navy-surface);
    backdrop-filter: blur(12px);
    padding: var(--sp-6) var(--sp-4);
    text-align: center;
}
.banner-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--gold-bright);
    font-weight: 700; letter-spacing: -1px;
}
.banner-label {
    color: var(--bone-faint);
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 1.2px; margin-top: var(--sp-1);
}
@media (max-width: 768px) { .hero-banners { grid-template-columns: repeat(2, 1fr); } }


/* ══════════════════════════════════════
   PILLS / TAGS
══════════════════════════════════════ */
.pills {
    display: flex; gap: var(--sp-2);
    flex-wrap: wrap; justify-content: center;
    margin-top: var(--sp-8);
}
.pill {
    padding: 8px 16px;
    background: rgba(245,240,230,0.03);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-full);
    font-size: 13px; color: var(--bone-dim);
    transition: all var(--t-fast);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 500; letter-spacing: 0.2px;
}
.pill:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: var(--gold-soft);
    transform: translateY(-2px);
}
.pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }


/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400; line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: var(--sp-5);
}
.about h2 .ital { font-style: italic; color: var(--gold-bright); }
.about p { color: var(--bone-dim); margin-bottom: var(--sp-6); font-size: var(--text-base); }

.about-list {
    list-style: none;
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-bottom: var(--sp-6);
}
.about-list li {
    font-size: var(--text-sm); color: var(--bone-dim);
    padding-left: 24px; position: relative;
}
.about-list li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--gold-bright); font-weight: 700;
}

.about-card {
    background: linear-gradient(135deg, rgba(11,29,58,0.85), rgba(18,34,64,0.5));
    border: 1px solid var(--navy-line);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    text-align: center;
    position: relative; overflow: hidden;
}
.about-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-card .logo-mark { width: 64px; height: 64px; font-size: 30px; margin: 0 auto var(--sp-5); }
.about-card h4 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: var(--sp-3); }
.about-card .sub { font-size: var(--text-sm); color: var(--bone-dim); margin-bottom: var(--sp-5); }
.about-card .big-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px; color: var(--gold-bright);
    font-weight: 700; letter-spacing: -2px; line-height: 1;
}
.about-card .big-lbl {
    font-size: 12px; color: var(--bone-faint);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: var(--sp-2);
}

.logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: var(--r-sm);
    display: grid; place-items: center;
    color: var(--navy-void);
    font-weight: 700; font-size: 18px;
    box-shadow: 0 0 24px var(--gold-glow);
}


/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
}
.process::before {
    content: ''; position: absolute;
    top: 32px; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
}

.step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--navy-void);
    border: none;
    display: grid; place-items: center;
    margin: 0 auto var(--sp-5);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700; color: var(--gold-bright);
    font-size: 18px;
    box-shadow: 0 0 28px rgba(200,153,46,0.15);
    transition: box-shadow var(--t-mid), transform var(--t-mid);
    position: relative;
}
/* SVG circle border drawn on scroll */
.step-num svg.step-ring {
    position: absolute; inset: -2px; width: calc(100% + 4px); height: calc(100% + 4px);
    transform: rotate(-90deg); pointer-events: none;
}
.step-ring circle {
    fill: none; stroke: var(--gold, #C8992E); stroke-width: 2;
    r: 31; cx: 34; cy: 34;
    stroke-dasharray: 195; stroke-dashoffset: 195;
    stroke-linecap: round;
    transition: none;
}
.step-num.step-num--visible .step-ring circle {
    animation: stepCircleDraw .8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.step-num .step-val { opacity: 0; transition: none; }
.step-num.step-num--visible .step-val {
    animation: stepValFade .4s .5s ease forwards;
}
@keyframes stepCircleDraw {
    0%   { stroke-dashoffset: 195; }
    100% { stroke-dashoffset: 0; }
}
@keyframes stepValFade {
    0%   { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}
.step:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(200,153,46,0.25);
}
.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 500;
    margin-bottom: var(--sp-2);
}
.step p { font-size: var(--text-sm); color: var(--bone-dim); line-height: 1.65; }

@media (max-width: 768px) {
    .process { grid-template-columns: 1fr; gap: 28px; }
    .process::before { display: none; }
}


/* ══════════════════════════════════════
   WHY TAXCLUE — Icon + Text Cards
══════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(11,29,58,0.35);
    border: 1px solid rgba(200,153,46,0.08);
    border-radius: var(--r-md);
    transition: all 0.3s ease;
}
.why-card:hover {
    background: rgba(11,29,58,0.55);
    border-color: rgba(200,153,46,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,153,46,0.12), rgba(94,231,255,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-body h4 {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bone);
    margin-bottom: 4px;
}
.why-body p {
    font-size: 13.5px;
    color: var(--bone-dim);
    line-height: 1.65;
}


/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industry {
    padding: 12px 22px;
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-full);
    font-size: 14px; font-weight: 500;
    color: var(--bone-dim);
    backdrop-filter: blur(10px);
    transition: all var(--t-fast);
    display: inline-flex; align-items: center; gap: 8px;
}
.industry:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.industry .ico { font-size: 18px; }
.industry:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ══════════════════════════════════════
   TRUST GRID
══════════════════════════════════════ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust {
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-md);
    padding: var(--sp-5) var(--sp-4);
    text-align: center;
    transition: all var(--t-fast);
}
.trust:hover {
    border-color: rgba(200,153,46,0.35);
    background: var(--gold-soft);
    transform: translateY(-2px);
}
.trust .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--gold);
    letter-spacing: 1.2px; margin-bottom: var(--sp-3);
}
.trust .ico { font-size: 30px; margin-bottom: var(--sp-3); }
.trust h5 { font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--sp-1); }
.trust p { font-size: 12px; color: var(--bone-faint); }


/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-header {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
    margin-bottom: var(--sp-10);
}
.rating-big { display: flex; align-items: center; gap: 16px; }
.rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px; color: var(--gold-bright); line-height: 1;
}
.rating-stars { color: var(--gold-bright); font-size: 20px; letter-spacing: 2px; }
.rating-meta {
    font-size: var(--text-sm); color: var(--bone-dim);
    font-family: 'JetBrains Mono', monospace; margin-top: 4px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    position: relative;
    backdrop-filter: blur(12px);
    transition: all var(--t-mid);
}
.review:hover {
    border-color: rgba(200,153,46,0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.review::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 72px; color: var(--gold);
    position: absolute; top: 4px; right: 16px;
    line-height: 1; opacity: 0.3;
}
.review-stars { color: var(--gold-bright); margin-bottom: var(--sp-3); font-size: 14px; letter-spacing: 2px; }
.review p {
    font-size: 14px; color: var(--bone-dim);
    margin-bottom: var(--sp-5);
    line-height: 1.7; position: relative; z-index: 1;
}

.review-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: var(--sp-4);
    border-top: 1px solid var(--navy-line);
}
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: grid; place-items: center;
    color: var(--navy-void);
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: var(--text-sm); }
.review-meta {
    font-size: 12px; color: var(--bone-faint);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 2px;
}


/* ══════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════ */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

.case {
    background: linear-gradient(135deg, var(--navy-surface), rgba(18,34,64,0.35));
    border: 1px solid var(--navy-line);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    transition: all var(--t-mid);
    backdrop-filter: blur(12px);
}
.case:hover {
    border-color: rgba(200,153,46,0.35);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-cat {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: var(--text-xs); font-weight: 700;
    color: var(--cyan); letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
}
.case h4 {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-lg); font-weight: 500;
    margin-bottom: var(--sp-3); line-height: 1.25;
}
.case p {
    font-size: var(--text-sm); color: var(--bone-dim);
    margin-bottom: var(--sp-5); line-height: 1.7;
}
.case-result {
    padding: 10px 16px;
    background: var(--gold-soft);
    border: 1px solid rgba(200,153,46,0.18);
    border-radius: var(--r-sm);
    font-size: 12px; color: var(--gold-bright);
    font-family: 'JetBrains Mono', monospace;
}
.case-result::before { content: "✓ "; font-weight: 700; }


/* ══════════════════════════════════════
   LOGO STRIP
══════════════════════════════════════ */
.logo-strip {
    display: flex; align-items: center; gap: 48px;
    flex-wrap: wrap; justify-content: center;
    opacity: 0.6; transition: opacity var(--t-fast);
}
.logo-strip:hover { opacity: 1; }
.logo-strip span {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-sm); color: var(--bone-faint);
    letter-spacing: 1px; padding: 8px 16px;
    border: 1px solid var(--navy-line);
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}
.logo-strip span:hover { border-color: var(--gold); color: var(--gold-bright); }
.partners-label {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--bone-faint);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: var(--sp-6);
}


/* ══════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: rgba(11,29,58,0.4);
    border: 1px solid rgba(245,240,230,0.06);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    display: block;
    transition: all var(--t-mid);
    backdrop-filter: blur(12px);
    color: var(--bone);
}
.blog-card:hover {
    background: rgba(11,29,58,0.6);
    border-color: rgba(245,240,230,0.12);
    box-shadow: var(--shadow-md);
}
.blog-tag {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px; font-weight: 700;
    color: var(--cyan); background: var(--cyan-soft);
    padding: 4px 10px; border-radius: var(--r-xs);
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: var(--sp-3);
}
.blog-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 500;
    line-height: 1.35; margin-bottom: var(--sp-3);
}
.blog-card p {
    font-size: var(--text-sm); color: var(--bone-dim);
    line-height: 1.6; margin-bottom: var(--sp-3);
}
.blog-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--bone-faint);
    letter-spacing: 0.8px;
}


/* ══════════════════════════════════════
   FAQ / ACCORDION
══════════════════════════════════════ */
.faq { width: 100%; }
.faq-item {
    border: 1px solid var(--navy-line);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--navy-surface);
    backdrop-filter: blur(12px);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item[open] {
    border-color: rgba(200,153,46,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: var(--text-base);
    gap: 16px; color: var(--bone);
    transition: color var(--t-fast);
}
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px; color: var(--gold-bright);
    transition: transform var(--t-fast);
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.faq-item p {
    padding: 0 22px 18px;
    color: var(--bone-dim);
    font-size: 14px; line-height: 1.75;
}


/* ══════════════════════════════════════
   CAPTURE / LEAD FORM
══════════════════════════════════════ */
.capture-section {
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(200,153,46,0.06), transparent 70%);
}

.capture {
    background: linear-gradient(135deg, rgba(11,29,58,0.92), rgba(18,34,64,0.75));
    border: 1px solid var(--gold);
    border-radius: var(--r-xl);
    padding: 52px 44px;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
@media (max-width: 900px) { .capture { grid-template-columns: 1fr; padding: 32px 24px; } }

.capture::before, .capture::after {
    content: ''; position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%; filter: blur(100px);
    opacity: 0.2;
}
.capture::before { background: var(--gold); top: -120px; left: -120px; }
.capture::after { background: var(--cyan); bottom: -120px; right: -120px; }
.capture > * { position: relative; z-index: 1; }

.capture-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 400; line-height: 1.15;
    margin-bottom: var(--sp-3);
}
.capture-left h2 .ital { font-style: italic; color: var(--gold-bright); }
.capture-left p { color: var(--bone-dim); margin-bottom: var(--sp-6); }

.capture-trust {
    display: flex; flex-wrap: wrap;
    gap: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs); color: var(--bone-faint);
    letter-spacing: 1px;
}
.capture-trust span::before { content: "✓ "; color: var(--success); }

/* Capture form inputs */
.capture-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.capture-form input,
.capture-form select,
.capture-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: rgba(5,16,31,0.65);
    border: 1.5px solid rgba(200,153,46,0.12);
    color: var(--bone);
    font-size: 14px;
    border-radius: var(--r-md);
    font-family: inherit;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.capture-form input:focus,
.capture-form select:focus,
.capture-form textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(200,153,46,0.10);
}
.capture-form input::placeholder { color: var(--bone-faint); }

.capture-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8992E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: rgba(5,16,31,0.65);
    padding-right: 36px;
}
.capture-form select option,
.capture-form select optgroup {
    background: var(--navy-deep); color: var(--bone);
}
.capture-form textarea { resize: vertical; min-height: 80px; }
.capture-form .btn { width: 100%; justify-content: center; font-size: var(--text-base); padding: 16px; }

.capture-or {
    text-align: center; margin: 14px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs); color: var(--bone-faint);
    letter-spacing: 2px;
}


/* ══════════════════════════════════════
   VEDA CHAT WIDGET
══════════════════════════════════════ */
.veda-fab {
    position: fixed; bottom: 24px; right: 24px;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    box-shadow: var(--shadow-gold-lg);
    display: grid; place-items: center;
    z-index: var(--z-sticky);
    cursor: pointer;
    transition: transform var(--t-fast);
    border: 2px solid rgba(255,255,255,0.1);
}
.veda-fab:hover { transform: scale(1.08); }
.veda-fab::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    z-index: -1; opacity: 0;
    transition: opacity var(--t-fast);
}
.veda-fab:hover::before { animation: ringPulse 1.8s ease-in-out infinite; opacity: 0.5; }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.15); opacity: 0.1; } }
.veda-fab svg { width: 28px; height: 28px; color: var(--navy-void); }
.veda-fab .badge {
    position: absolute; top: 0; right: 0;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--success);
    border: 2px solid var(--navy-void);
}

.veda-panel {
    position: fixed; bottom: 100px; right: 24px;
    width: 390px;
    max-width: calc(100vw - 48px);
    max-height: 600px;
    background: rgba(5,16,31,0.98);
    backdrop-filter: blur(24px);
    border: 1px solid var(--gold);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-sticky);
    opacity: 0; visibility: hidden;
    transform: translateY(20px) scale(0.96);
    transition: all var(--t-mid);
    display: flex; flex-direction: column;
    overflow: hidden;
}
.veda-panel.open {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
}

.veda-head {
    padding: var(--sp-5) var(--sp-6);
    background: linear-gradient(135deg, rgba(200,153,46,0.10), rgba(94,231,255,0.04));
    border-bottom: 1px solid var(--navy-line);
    display: flex; align-items: center; gap: 14px;
}
.veda-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: grid; place-items: center;
    color: var(--navy-void); font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}
.veda-head-text h5 { font-size: var(--text-base); font-weight: 600; }
.veda-head-text .status {
    font-size: var(--text-xs); color: var(--success);
    font-family: 'JetBrains Mono', monospace;
    display: flex; align-items: center; gap: 6px;
}
.veda-head-text .status::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--success); box-shadow: 0 0 8px var(--success);
    animation: pulse 2s infinite;
}
.veda-close {
    margin-left: auto; font-size: 22px;
    color: var(--bone-dim); padding: 4px; cursor: pointer;
    transition: color var(--t-fast);
}
.veda-close:hover { color: var(--bone); }

.veda-body { padding: var(--sp-6); overflow-y: auto; flex: 1; }
.veda-msg {
    background: rgba(245,240,230,0.04);
    border-radius: 14px; padding: 14px 16px;
    margin-bottom: var(--sp-5);
    font-size: 14px; line-height: 1.55;
    border: 1px solid var(--navy-line);
}
.veda-msg strong { color: var(--gold-bright); }

.veda-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: var(--sp-5); }
.veda-action {
    padding: 12px 14px;
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-md);
    font-size: 13px; color: var(--bone);
    text-align: left;
    transition: all var(--t-fast);
    display: flex; align-items: center; gap: 8px;
    cursor: pointer;
}
.veda-action:hover { border-color: var(--gold); background: var(--gold-soft); }
.veda-action .ico { font-size: 16px; }

.veda-form input, .veda-form select {
    width: 100%; padding: 12px 14px; margin-bottom: 8px;
    background: rgba(5,16,31,0.65);
    border: 1.5px solid var(--navy-line);
    color: var(--bone); font-size: var(--text-sm);
    border-radius: var(--r-md); font-family: inherit;
}
.veda-form input:focus, .veda-form select:focus {
    outline: none; border-color: var(--gold-bright);
}
.veda-form button {
    width: 100%; padding: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy-void); border-radius: var(--r-md);
    font-weight: 600; font-size: var(--text-sm);
    margin-top: 6px; cursor: pointer;
    border: none; font-family: inherit;
    transition: all var(--t-fast);
}
.veda-form button:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.veda-trust {
    margin-top: var(--sp-3);
    font-size: 12px; color: var(--bone-faint);
    font-family: 'JetBrains Mono', monospace;
    text-align: center; letter-spacing: 0.5px;
}


/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════
   RECENT / SOCIAL PROOF
══════════════════════════════════════ */
.recent-row {
    display: flex; align-items: center;
    justify-content: center; gap: 20px;
    margin-top: var(--sp-8); flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars span {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border: 2.5px solid var(--navy-void);
    display: grid; place-items: center;
    font-weight: 700; color: var(--navy-void);
    font-size: 13px; margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }
.avatars .more {
    background: rgba(94,231,255,0.12);
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs);
    border: 2.5px solid var(--navy-deep);
}
.recent-text { color: var(--bone-dim); font-size: var(--text-sm); }


/* ══════════════════════════════════════
   CALCULATOR TEASER
══════════════════════════════════════ */
.calc-teaser {
    background: linear-gradient(135deg, rgba(11,29,58,0.75), rgba(18,34,64,0.5));
    border: 1px solid var(--navy-line);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--sp-10); align-items: center;
}
.calc-teaser::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
@media (max-width: 768px) { .calc-teaser { grid-template-columns: 1fr; padding: var(--sp-6); } }

.calc-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl); font-weight: 400;
    line-height: 1.18; margin-bottom: var(--sp-3);
}
.calc-intro p { color: var(--bone-dim); font-size: 14px; margin-bottom: var(--sp-6); }
.calc-list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px 16px; margin-bottom: var(--sp-6);
}
.calc-list li {
    font-size: var(--text-sm); color: var(--bone-dim);
    padding: 6px 0; border-top: 1px dashed var(--navy-line);
    list-style: none;
}
.calc-list li::before { content: "▸ "; color: var(--gold); }

.calc-mini {
    background: rgba(5,16,31,0.55);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
}
.calc-mini-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: var(--cyan);
    letter-spacing: 2px; margin-bottom: var(--sp-3);
}
.calc-mini input, .calc-mini select {
    width: 100%; padding: 12px 14px; margin-bottom: 10px;
    background: rgba(5,16,31,0.55);
    border: 1.5px solid var(--navy-line);
    color: var(--bone); font-size: 14px;
    border-radius: var(--r-md);
    font-family: 'JetBrains Mono', monospace;
}
.calc-mini input:focus, .calc-mini select:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,153,46,0.08);
}
.calc-mini label {
    font-size: var(--text-xs); color: var(--bone-faint);
    text-transform: uppercase; letter-spacing: 1.5px;
    display: block; margin-bottom: 6px;
}

.calc-mini-result {
    margin-top: var(--sp-4);
    padding: var(--sp-4);
    background: var(--gold-soft);
    border: 1px solid rgba(200,153,46,0.18);
    border-radius: var(--r-md);
    text-align: center;
}
.calc-mini-result-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-2xl); color: var(--gold-bright);
    font-weight: 700; letter-spacing: -1px;
}
.calc-mini-result-lbl {
    font-size: var(--text-xs); color: var(--bone-faint);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-top: var(--sp-1);
}


/* ══════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════ */
#tc-progress {
    position: fixed; top: 3px; left: 0;
    height: 2px; width: 0%;
    z-index: var(--z-top);
    pointer-events: none;
    background: linear-gradient(90deg, #FF9933, #FF9933 30%, #FFFFFF 50%, #138808 70%, #138808);
    box-shadow: 0 0 8px rgba(255,153,51,0.35);
    transition: width 0.06s linear;
}


/* ══════════════════════════════════════
   DASHBOARD MOCKUP
══════════════════════════════════════ */
.qhp-dash { margin: 60px auto 0; max-width: 1100px; }
.qhp-dash-win {
    background: rgba(5,16,31,0.88);
    border: 1px solid rgba(200,153,46,0.18);
    border-radius: var(--r-xl);
    overflow: hidden;
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(200,153,46,0.05);
}
.qhp-dash-chrome {
    background: rgba(11,29,58,0.92);
    border-bottom: 1px solid var(--navy-line);
    padding: 12px 20px;
    display: flex; align-items: center; gap: 14px;
}
.qhp-dash-dots { display: flex; gap: 6px; flex-shrink: 0; }
.qhp-dash-dots span { width: 12px; height: 12px; border-radius: 50%; display: block; }
.qhp-dash-dots span:nth-child(1) { background: #FF5F56; }
.qhp-dash-dots span:nth-child(2) { background: #FFBD2E; }
.qhp-dash-dots span:nth-child(3) { background: #27C93F; }
.qhp-dash-url {
    flex: 1;
    background: rgba(5,16,31,0.55);
    border: 1px solid var(--navy-line);
    border-radius: 6px; padding: 5px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs); color: var(--bone-faint);
    text-align: center;
}
.qhp-dash-live {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: var(--success);
    display: flex; align-items: center; gap: 5px;
    flex-shrink: 0;
}
.qhp-dash-live::before {
    content: ''; width: 6px; height: 6px;
    background: var(--success); border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.qhp-dash-body {
    display: grid; grid-template-columns: 220px 1fr;
    min-height: 360px;
}
@media (max-width: 768px) {
    .qhp-dash-body { grid-template-columns: 1fr; }
    .qhp-dash-sidebar { display: none; }
}
.qhp-dash-sidebar {
    border-right: 1px solid var(--navy-line);
    padding: 20px 0;
}
.qhp-dash-nav-item {
    padding: 10px 20px; font-size: 12px;
    color: var(--bone-dim);
    display: flex; align-items: center; gap: 10px;
    transition: all 0.2s; cursor: default;
    font-family: 'JetBrains Mono', monospace;
}
.qhp-dash-nav-item.active {
    background: var(--gold-soft);
    color: var(--gold-bright);
    border-right: 2px solid var(--gold);
}
.qhp-dash-nav-item span.dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--navy-line); flex-shrink: 0;
}
.qhp-dash-nav-item.active span.dot {
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
}
.qhp-dash-main { padding: var(--sp-6); }

.qhp-dash-kpis {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: var(--sp-6);
}
@media (max-width: 900px) { .qhp-dash-kpis { grid-template-columns: repeat(2, 1fr); } }

.qhp-kpi {
    background: var(--navy-surface);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-md);
    padding: var(--sp-4);
    position: relative; overflow: hidden;
}
.qhp-kpi::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.qhp-kpi-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs); color: var(--bone-faint);
    text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: var(--sp-2);
}
.qhp-kpi-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px; font-weight: 700;
    color: var(--bone); letter-spacing: -1px;
}
.qhp-kpi-delta { font-size: 10px; margin-top: 4px; font-family: 'JetBrains Mono', monospace; }
.qhp-kpi-delta.up { color: var(--success); }
.qhp-kpi-delta.down { color: var(--danger); }

.qhp-dash-bars { display: flex; flex-direction: column; gap: 12px; }
.qhp-bar-row {
    display: grid; grid-template-columns: 140px 1fr 44px;
    align-items: center; gap: 12px; font-size: 12px;
}
.qhp-bar-lbl {
    color: var(--bone-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.qhp-bar-track {
    height: 6px; background: rgba(245,240,230,0.05);
    border-radius: 3px; overflow: hidden;
}
.qhp-bar-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    animation: barGrow 1.4s ease both;
}
.qhp-bar-fill.cyan { background: linear-gradient(90deg, var(--cyan), rgba(94,231,255,0.5)); }
.qhp-bar-fill.green { background: linear-gradient(90deg, var(--success), rgba(94,231,255,0.5)); }
.qhp-bar-pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-xs); color: var(--bone-faint);
    text-align: right;
}
@keyframes barGrow { from { width: 0 !important; } to {} }


/* ══════════════════════════════════════
   SWIPER OVERRIDES
══════════════════════════════════════ */
.tc-swiper { padding-bottom: 48px !important; }
.tc-swiper .swiper-slide { height: auto; }
.swiper-pagination-bullet { background: var(--bone-faint) !important; opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    transform: scaleX(2.4); border-radius: 3px !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    width: 42px !important; height: 42px !important;
    background: rgba(11,29,58,0.75);
    border: 1px solid var(--navy-line);
    border-radius: var(--r-md);
    backdrop-filter: blur(8px);
    transition: all var(--t-fast);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: 700; }
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(200,153,46,0.10);
    border-color: var(--gold);
}


/* ══════════════════════════════════════
   ANIMATIONS & EFFECTS
══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.grad-text {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--cyan), var(--gold-bright));
    background-size: 300% 300%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    background-position: 0% 50%;
}
.grad-text:hover { animation: gradShift 4s ease infinite; }
@keyframes gradShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-badge { animation: none; }
.float-badge:hover { animation: floatBadge 1.8s ease-in-out infinite; }

@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 20px var(--gold-glow); } 50% { box-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(200,153,46,0.15); } }
.glow-pulse { box-shadow: 0 0 20px var(--gold-glow); }
.glow-pulse:hover { animation: glowPulse 2s ease-in-out infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.cursor {
    display: inline-block; width: 2px; height: 1em;
    background: var(--gold-bright); margin-left: 2px;
    vertical-align: middle; animation: blink 1s step-end infinite;
}
