/* ═══════════════════════════════════════════════════
   AI Financial Diagnostic System
   Professional UI/UX Design — Slate & Orange
   ═══════════════════════════════════════════════════ */

/* ── Foundations ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand */
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --orange-700: #C2410C;

    /* Slate Scale */
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #020617;

    /* Semantic */
    --bg: var(--slate-50);
    --surface: #FFFFFF;
    --text: var(--slate-900);
    --text-mute: var(--slate-500);
    --accent: var(--orange-600);
    --accent-light: #FFF7ED;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}


/* ═══════════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════════ */
.nav-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-scrolled {
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: 1400px;
    width: 100%;
    padding: 0 clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.02em;
}

.brand-icon {
    color: var(--orange-500);
    font-size: 14px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-400);
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff;
}

.nav-btn {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: var(--orange-500);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}


/* ═══════════════════════════════════════════════════
   Hero: Dark Section — Split Layout
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--slate-950);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px clamp(24px, 4vw, 60px) 0;
    overflow: hidden;
}

.hero-split {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    flex: 1;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
}

/* Animated Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    animation: float 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.5) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    bottom: 0;
    left: -5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }

    100% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-visual {
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    align-self: stretch;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: -20px;
    right: 80px;
}

/* Phone Mockup */
.phone-mockup {
    width: 380px;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.phone-glow {
    position: absolute;
    inset: -30px;
    border-radius: 60px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.25), transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-500);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}

.mobile-break {
    display: none !important;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.hero-highlight {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 900;
    color: var(--orange-500);
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 2px 14px;
    border-radius: 8px;
    margin-right: 8px;
    letter-spacing: -0.02em;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.gradient-text {
    display: block;
    font-size: 1.1em;
    background: linear-gradient(135deg, var(--orange-500) 0%, #FBBF24 50%, var(--orange-500) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-400);
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--orange-500);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.4);
}

.btn-primary svg {
    transition: transform 0.2s;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    font-size: 15px;
    font-weight: 500;
    color: var(--slate-400);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-700);
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: #fff;
    border-color: var(--slate-500);
    background: rgba(255, 255, 255, 0.03);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* Hero Device */
.hero-device {
    position: relative;
    z-index: 10;
    margin-top: 60px;
    max-width: 900px;
    width: 100%;
}

.device-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.device-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(249, 115, 22, 0.08);
}


/* ═══════════════════════════════════════════════════
   Hero Stats Bar (integrated into hero)
   ═══════════════════════════════════════════════════ */
.hero-stats {
    position: relative;
    z-index: 10;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 24px;
}

.hero-stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-stat-item {
    text-align: center;
    flex: 1;
}

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-400);
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}


/* ═══════════════════════════════════════════════════
   Features: Bento Grid
   ═══════════════════════════════════════════════════ */
.features {
    padding: 120px clamp(24px, 4vw, 60px);
    background: #f8fafc;
}

.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-heading {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--slate-950);
}

.section-desc {
    font-size: 17px;
    color: var(--text-mute);
    line-height: 1.7;
}

/* ═══ Feature Grid — Wealthfront-style 2×2 split cards ═══ */

.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── individual feat card ── */
.feat-card {
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 280px;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.10);
}

/* ── left: text column ── */
.feat-text {
    flex: 0 0 46%;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.feat-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.feat-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: background 0.3s, color 0.3s;
}

.feat-card:hover .feat-icon-wrap {
    background: var(--accent);
    color: #fff;
}

.feat-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 10px;
}

.feat-desc {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feat-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feat-bullets li {
    font-size: 13px;
    color: var(--text-mute);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.feat-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    top: 2px;
}

/* ── right: visual panel ── */
.feat-visual {
    flex: 0 0 55%;
    background: linear-gradient(145deg, #fff7ed 0%, #fff3e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border-left: 1px solid rgba(249, 115, 22, 0.08);
    min-width: 0;
}

/* ── diag-card inner box ── */
.diag-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    font-size: 12px;
}




/* ═══ Diagnostic Card Previews ═══ */



/* --- Card A: Traffic Light Rows --- */
.diag-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--slate-100);
}

.diag-row:last-of-type {
    border-bottom: none;
}

.diag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.diag-dot.red {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}

.diag-dot.yellow {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

.diag-dot.green {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.diag-label {
    flex: 1;
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 500;
}

.diag-value {
    font-size: 15px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    min-width: 44px;
    text-align: right;
}

.diag-value.red {
    color: #ef4444;
}

.diag-value.yellow {
    color: #f59e0b;
}

.diag-value.green {
    color: #22c55e;
}

.diag-status {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 5px;
    min-width: 50px;
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
}

.diag-status.red-tag {
    color: #ef4444;
    background: #fef2f2;
}

.diag-status.yellow-tag {
    color: #d97706;
    background: #fffbeb;
}

.diag-status.green-tag {
    color: #16a34a;
    background: #f0fdf4;
}

.diag-footnote {
    font-size: 11px;
    color: var(--slate-400);
    margin-top: 10px;
    line-height: 1.4;
}

/* --- Card B: Emergency Fund Progress Bar --- */
.fund-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.fund-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mute);
}

.fund-val {
    font-size: 15px;
    font-weight: 800;
}

.fund-val.red {
    color: #ef4444;
}

.fund-track {
    position: relative;
    height: 10px;
    background: var(--slate-100);
    border-radius: 99px;
    overflow: visible;
}

.fund-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    border-radius: 99px;
    transition: width 0.6s ease;
}

.fund-target-line {
    position: absolute;
    top: -4px;
    width: 2px;
    height: 18px;
    background: var(--slate-300);
    transform: translateX(-50%);
    border-radius: 2px;
}

.fund-scale {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: var(--slate-400);
}

.fund-gap-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mute);
    margin-top: 14px;
    font-weight: 500;
}

.fund-gap-msg strong {
    color: #ef4444;
}

/* --- Card C: Sparkline --- */
.sparkline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sparkline-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mute);
}

.sparkline-end {
    font-size: 13px;
    font-weight: 700;
}

.sparkline-end.green {
    color: #22c55e;
}

.sparkline {
    width: 100%;
    height: 80px;
    display: block;
}

/* --- Card D: Debt Zone Gauge --- */
.wide-preview {
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.debt-gauge-wrap {
    width: 100%;
}

.debt-gauge-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mute);
    margin-bottom: 10px;
}

.debt-gauge-track {
    position: relative;
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: visible;
    isolation: isolate;
}

.debt-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

.green-zone {
    background: #22c55e;
    border-radius: 8px 0 0 8px;
}

.yellow-zone {
    background: #f59e0b;
}

.red-zone {
    background: #ef4444;
    border-radius: 0 8px 8px 0;
}

.debt-needle {
    position: absolute;
    top: -6px;
    bottom: -6px;
    width: 4px;
    background: #1e293b;
    border-radius: 2px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.debt-gauge-current {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-mute);
}

.debt-gauge-current strong.red {
    color: #ef4444;
}

/* --- Colour utility for inline red --- */
.red {
    color: #ef4444;
}


/* ═══════════════════════════════════════════════════
   Final CTA
   ═══════════════════════════════════════════════════ */
.final-cta {
    position: relative;
    background: var(--slate-950);
    padding: 160px clamp(24px, 4vw, 60px);
    text-align: center;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.5), transparent 70%);
    bottom: -20%;
    right: 10%;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    top: -10%;
    left: 15%;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-heading {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 17px;
    color: var(--slate-400);
    margin-bottom: 40px;
}


/* ═══════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--slate-950);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 24px 36px;
    color: var(--slate-500);
    font-size: 13px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-brand {
    font-weight: 800;
    font-size: 16px;
    color: var(--slate-300);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-tagline {
    font-size: 12px;
    font-weight: 400;
    color: var(--slate-600);
    margin-top: 4px;
}

.footer-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--slate-500);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange-500);
}

.footer-copy {
    color: var(--slate-700);
}

.footer-disclaimer {
    color: var(--slate-700);
    font-size: 11px;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
}


/* ═══════════════════════════════════════════════════
   Scroll Reveal Animations
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* ═══════════════════════════════════════════════════
   Hero Checklist (Trust Elements)
   ═══════════════════════════════════════════════════ */
.hero-checklist {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-300);
}

.hero-checklist li svg {
    flex-shrink: 0;
    color: #22C55E;
}

.hero-checklist li em {
    font-style: normal;
    color: var(--slate-500);
    font-weight: 400;
}


/* ═══════════════════════════════════════════════════
   Button Pulse Animation
   ═══════════════════════════════════════════════════ */
.btn-pulse {
    position: relative;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--orange-500);
    opacity: 0;
    animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}


/* ═══════════════════════════════════════════════════
   How It Works: 3 Steps
   ═══════════════════════════════════════════════════ */
.how-it-works {
    padding: 120px clamp(24px, 4vw, 60px);
    background: var(--surface);
    border-top: 1px solid var(--slate-100);
}

/* Step Row — alternating layout */
.step-row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
}

.step-row+.step-row {
    border-top: 1px solid var(--slate-100);
}

.step-row.reversed {
    flex-direction: row-reverse;
}

/* Step Visual — phone mockup area */
.step-visual {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}

.step-visual img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Step Info — text content */
.step-info {
    flex: 1;
    position: relative;
}

.step-num {
    font-size: 140px;
    font-weight: 900;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(249, 115, 22, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.05em;
    position: absolute;
    top: -50px;
    left: -10px;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.step-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.step-text {
    font-size: 16px;
    color: var(--text-mute);
    line-height: 1.8;
}


/* ═══════════════════════════════════════════════════
   Testimonials
   ═══════════════════════════════════════════════════ */
.testimonials {
    padding: 120px clamp(24px, 4vw, 60px);
    background: var(--slate-950);
    color: #fff;
}

.testimonials .section-tag {
    color: var(--orange-500);
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.testimonials .section-heading {
    color: #fff;
}

.testimonials .section-desc {
    color: var(--slate-400);
}

/* Stats pills */
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 64px;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-pill-value {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--orange-500), #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-pill-label {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 500;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(249, 115, 22, 0.2);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate-400);
    flex: 1;
}

.testimonial-quote strong {
    color: #fff;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 12px;
    color: var(--slate-500);
}


/* ═══════════════════════════════════════════════════
   CTA Trust Row
   ═══════════════════════════════════════════════════ */
.cta-trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.cta-trust-item {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 500;
}


/* ═══════════════════════════════════════════════════
   Sticky CTA Bar
   ═══════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.sticky-visible {
    transform: translateY(0);
}

.sticky-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-text {
    color: var(--slate-300);
    font-size: 14px;
}

.sticky-text strong {
    color: #fff;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}


/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-split {
        gap: 32px;
    }

    .phone-mockup {
        width: 300px;
    }

    .section-heading {
        font-size: 36px;
    }

    .cta-heading {
        font-size: 40px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 140px 20px 80px;
        min-height: auto;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .phone-mockup {
        width: 260px;
        margin: 0 auto;
    }

    .mobile-break {
        display: block !important;
    }

    .desktop-break {
        display: none !important;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-checklist {
        align-items: center;
    }

    .hero-checklist li {
        font-size: 13px;
    }

    .hero-stats-inner {
        flex-wrap: wrap;
        gap: 24px;
        padding: 40px 24px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .hero-stat-number {
        font-size: 32px;
    }

    .step-row,
    .step-row.reversed {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }

    .step-visual {
        flex: auto;
    }

    .step-num {
        left: 50%;
        transform: translateX(-50%);
    }

    .features {
        padding: 80px 20px;
    }

    .section-heading {
        font-size: 32px;
    }

    .feat-card {
        flex-direction: column;
    }

    .feat-text,
    .feat-visual {
        flex: none;
        width: 100%;
        height: auto;
    }

    .feat-text {
        padding: 32px 24px 24px;
        text-align: center;
    }

    .feat-icon-wrap {
        margin: 0 auto 20px;
    }

    .feat-bullets {
        padding-left: 0;
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }

    .feat-visual {
        padding: 32px 20px;
        border-left: none;
        border-top: 1px solid rgba(249, 115, 22, 0.08);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: span 1;
    }

    .final-cta {
        padding: 100px 20px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-meta {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .sticky-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .sticky-text {
        font-size: 12px;
    }

    .btn-sm {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Extra bottom padding for sticky bar */
    .footer {
        padding-bottom: 80px;
    }
}