/* === Variables === */
:root {
    --navy: #0f1d3a;
    --navy-light: #1a2d52;
    --navy-mid: #243b6a;
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --gold: #c9973f;
    --gold-light: #d4a94e;
    --gold-dark: #b8862e;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green: #059669;
    --green-light: #d1fae5;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: 0.3s ease;
}

/* === Reset === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
    color: var(--navy);
}

img { max-width: 100%; display: block; }

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* === Animations === */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }
.animate-in:nth-child(5) { transition-delay: 0.35s; }
.animate-in:nth-child(6) { transition-delay: 0.4s; }

/* === Buttons (mobile-first) === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    gap: 8px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-nav {
    background: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-nav:hover { background: var(--gold-dark); }

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-full { width: 100%; }

/* === Navbar (mobile-first) === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all var(--transition);
    background: rgba(15, 29, 58, 0.95);
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-icon { display: flex; color: var(--gold); }

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-accent { color: var(--gold); }

/* Mobile nav */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 999;
}

.nav-links.active { right: 0; }

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === Hero (mobile-first) === */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    padding: 110px 0 60px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 151, 63, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(201, 151, 63, 0.04) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 151, 63, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(201, 151, 63, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #e6c67a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-cta .btn {
    width: 100%;
    text-align: center;
}

/* Hero cards - hidden on mobile */
.hero-visual { display: none; }

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
    min-width: 280px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-lead { background: rgba(37, 99, 235, 0.2); color: #60a5fa; }
.card-icon-doc { background: rgba(201, 151, 63, 0.2); color: var(--gold-light); }
.card-icon-check { background: rgba(5, 150, 105, 0.2); color: #34d399; }

.card-label { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.card-detail { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 2px; }

.card-1 { top: 20px; left: 0; animation-delay: 0s; }
.card-2 { top: 140px; left: 60px; animation-delay: -2s; }
.card-3 { top: 260px; left: 20px; animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* === Section shared (mobile-first) === */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-500);
}

/* === Pain Points (mobile-first) === */
.pain-points {
    padding: 64px 0;
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pain-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.pain-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pain-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(201, 151, 63, 0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.pain-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* === How It Works (mobile-first) === */
.how-it-works {
    padding: 64px 0;
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 28px 20px;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 12px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.65;
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    flex-shrink: 0;
    transform: rotate(90deg);
}

/* === Stats Banner (mobile-first) === */
.stats-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Features (mobile-first) === */
.features {
    padding: 64px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(201, 151, 63, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* === AI Section (mobile-first) === */
.ai-section {
    padding: 64px 0;
    background: var(--gray-50);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.ai-text h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.ai-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.ai-text > p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ai-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700);
}

.ai-list svg { color: var(--green); flex-shrink: 0; }

/* AI Flow Visual */
.ai-visual { display: flex; justify-content: center; }

.ai-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
}

.flow-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-200);
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.flow-node:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.flow-node-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-node-ai .flow-node-icon { background: rgba(37, 99, 235, 0.1); color: var(--blue); }
.flow-node-verify .flow-node-icon { background: rgba(201, 151, 63, 0.1); color: var(--gold); }
.flow-node-doc .flow-node-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.flow-node-attorney .flow-node-icon { background: rgba(5, 150, 105, 0.1); color: var(--green); }
.flow-node-attorney { border-color: var(--green); background: var(--green-light); }

.flow-node span { font-weight: 600; font-size: 0.88rem; color: var(--gray-700); }

.flow-arrow { color: var(--gray-300); font-size: 1.2rem; line-height: 1; }
.flow-arrow-highlight { color: var(--green); font-weight: bold; }

/* === Security (mobile-first) === */
.security {
    padding: 64px 0;
    background: var(--white);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.security-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition);
}

.security-card:hover {
    border-color: var(--navy-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 29, 58, 0.06);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.security-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.security-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* === CTA Section (mobile-first) === */
.cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.cta-text h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-benefits li {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    padding-left: 24px;
    position: relative;
}

.cta-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.cta-form-wrapper { display: flex; justify-content: center; }

.cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.cta-form h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.optional { color: var(--gray-400); font-weight: 400; }

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* prevents iOS zoom */
    color: var(--gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder { color: var(--gray-400); }

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 151, 63, 0.15);
}

.cta-form .btn { margin-top: 8px; }

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 12px;
}

/* === Footer (mobile-first) === */
.footer {
    background: var(--gray-900);
    padding: 48px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 12px; }

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-links { display: flex; gap: 48px; }

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--gray-500);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p { color: var(--gray-600); font-size: 0.78rem; }

.footer-legal { display: flex; gap: 20px; justify-content: center; }

.footer-legal a { color: var(--gray-600); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--gold); }

/* ========================================
   TABLET (min-width: 768px)
   ======================================== */
@media (min-width: 768px) {
    .container { padding: 0 24px; }

    /* Nav - show links inline */
    .mobile-toggle { display: none; }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 28px;
        box-shadow: none;
    }

    .nav-links a { font-size: 0.9rem; }

    .navbar {
        background: transparent;
    }

    .navbar.scrolled {
        background: rgba(15, 29, 58, 0.97);
        backdrop-filter: blur(12px);
    }

    /* Hero */
    .hero { padding: 130px 0 80px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .hero-cta {
        flex-direction: row;
        gap: 16px;
    }

    .hero-cta .btn { width: auto; }

    /* Grids */
    .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .step-connector { transform: none; padding-top: 52px; }

    .stats-grid { grid-template-columns: repeat(3, 1fr); }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .ai-content { grid-template-columns: 1.2fr 0.8fr; gap: 60px; }

    .security-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .cta-content { grid-template-columns: 1fr 1fr; gap: 60px; }
    .cta-form { padding: 36px 32px; }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-links { gap: 60px; }

    /* Section spacing */
    .pain-points,
    .how-it-works,
    .features,
    .ai-section,
    .security,
    .cta-section {
        padding: 80px 0;
    }

    .section-header { margin-bottom: 48px; }
    .section-header h2 { font-size: 2rem; }
}

/* ========================================
   DESKTOP (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
    .nav-links { gap: 32px; }
    .logo-text { font-size: 1.35rem; }

    /* Hero */
    .hero {
        padding: 140px 0 100px;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .hero h1 { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.15rem; max-width: 520px; }
    .hero-badge { font-size: 0.8rem; margin-bottom: 24px; }

    .hero-visual {
        display: block;
        position: relative;
        height: 400px;
    }

    .btn-lg { padding: 16px 36px; font-size: 1.05rem; }

    /* Grids */
    .pain-grid { gap: 32px; }
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .security-grid { gap: 32px; }

    .ai-content { gap: 80px; }
    .ai-text h2 { font-size: 2.25rem; }

    .cta-content { gap: 80px; }
    .cta-text h2 { font-size: 2.25rem; }
    .cta-form { padding: 40px 36px; }

    /* Pain/feature cards larger */
    .pain-card { padding: 36px 32px; }
    .feature-card { padding: 36px 32px; }
    .security-card { padding: 36px 32px; }

    /* Stats */
    .stat-number { font-size: 2.5rem; }
    .stats-banner { padding: 60px 0; }

    /* Sections */
    .pain-points,
    .how-it-works,
    .features,
    .ai-section,
    .security,
    .cta-section {
        padding: 100px 0;
    }

    .section-header { margin-bottom: 60px; }
    .section-header h2 { font-size: 2.25rem; }

    .step-number { font-size: 3rem; }

    .footer-links { gap: 80px; }
    .footer { padding: 60px 0 0; }
}
