/* ===== Variables ===== */
:root {
    /* Brand colors - matching the app */
    --brand-50: #eff6ff;
    --brand-100: #dbeafe;
    --brand-200: #bfdbfe;
    --brand-300: #93c5fd;
    --brand-400: #60a5fa;
    --brand-500: #3b82f6;
    --brand-600: #2563eb;
    --brand-700: #1d4ed8;
    --brand-800: #1e40af;
    --brand-900: #1e3a8a;
    
    /* Light mode (default) */
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-faint: #94a3b8;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --gradient: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
    --gradient-hero: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-800) 100%);
    
    --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-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: 0.2s ease;
}

/* Dark mode */
[data-theme="dark"] {
    --bg: #0f172a;
    --bg-alt: #1e293b;
    --bg-card: #1e293b;
    --bg-elevated: #334155;
    
    --text: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-faint: #64748b;
    
    --border: #334155;
    --border-light: #1e293b;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--brand-500);
    color: var(--brand-600);
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--brand-600);
}

.btn-xl {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .nav.scrolled {
    background: rgba(15, 23, 42, 0.9);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--brand-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--brand-500);
}

.theme-icon-light,
.theme-icon-dark {
    position: absolute;
    transition: opacity var(--transition), transform var(--transition);
}

.theme-icon-dark {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .theme-icon-light {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-icon-dark {
    opacity: 1;
    transform: rotate(0);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { 
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        flex-direction: column;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-links.mobile-open,
    .nav-actions.mobile-open {
        display: flex;
    }
    
    .nav-actions {
        top: auto;
        border-top: 1px solid var(--border);
        border-bottom: none;
    }
    
    .nav-links.mobile-open + .nav-actions.mobile-open {
        top: calc(72px + 132px);
    }
    
    .nav-links a {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .nav-actions .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .nav-actions .theme-toggle {
        display: none;
    }
    
    .nav-mobile-toggle { 
        display: flex;
        z-index: 1001;
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-mobile-toggle span {
        transition: all 0.3s ease;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--brand-50) 0%, var(--bg) 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, var(--brand-900) 0%, var(--bg) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-200);
    top: -200px;
    right: -100px;
}

[data-theme="dark"] .hero-orb-1 {
    background: var(--brand-800);
    opacity: 0.3;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--brand-100);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

[data-theme="dark"] .hero-orb-2 {
    background: var(--brand-700);
    opacity: 0.2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-700);
    margin-bottom: 24px;
}

[data-theme="dark"] .hero-eyebrow {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--brand-400);
}

.eyebrow-icon {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}

.title-line {
    display: block;
}

.title-gradient, .text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.separator {
    opacity: 0.3;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: cardFloat 6s ease-in-out infinite;
}

.visual-card-1 {
    top: 20px;
    left: 0;
    width: 280px;
    padding: 20px;
}

.visual-card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 24px;
    animation-delay: -2s;
}

.visual-card-3 {
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    animation-delay: -4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.visual-card-2 { animation-name: cardFloat2; }
@keyframes cardFloat2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 15px)); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.card-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-500);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.card-vehicle {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.card-progress {
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    width: var(--progress);
    background: var(--gradient);
    border-radius: 10px;
}

.card-status {
    font-size: 13px;
    color: var(--text-muted);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.card-text {
    font-size: 14px;
    font-weight: 500;
    color: #16a34a;
}

.visual-card-3 .card-icon {
    width: 24px;
    height: 24px;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta { align-items: center; }
    .hero-visual { display: none; }
}

/* ===== Pain Points ===== */
.pain-points {
    padding: 100px 0;
    background: var(--bg-alt);
}

.pain-header {
    text-align: center;
    margin-bottom: 60px;
}

.pain-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-600);
    margin-bottom: 16px;
}

[data-theme="dark"] .pain-label {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--brand-400);
}

.pain-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pain-item {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.pain-item:hover {
    border-color: var(--brand-300);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.pain-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.pain-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pain-grid { grid-template-columns: 1fr; }
}

/* ===== Solution ===== */
.solution {
    padding: 100px 0;
    background: var(--bg);
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.solution-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.step-visual {
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.mini-form .form-field {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.field-label { color: var(--text-muted); }
.field-value { color: var(--text); font-weight: 500; }

.form-btn {
    margin-top: 16px;
    padding: 10px;
    background: var(--gradient);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.sync-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
}

.sync-item {
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
}

.sync-arrow {
    color: var(--brand-500);
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.invoice-preview {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.invoice-header {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.invoice-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.invoice-status {
    font-size: 13px;
    color: #16a34a;
    font-weight: 600;
}

@media (max-width: 900px) {
    .solution-steps { grid-template-columns: 1fr; }
}

/* ===== Features ===== */
.features {
    padding: 100px 0;
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-600);
    margin-bottom: 16px;
}

[data-theme="dark"] .section-eyebrow {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--brand-400);
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--brand-300);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: var(--bg);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.pricing-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 32px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text);
}

.price-amount {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 16px;
}

.pricing-beta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.pricing-list {
    margin-bottom: 40px;
}

.pricing-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-list li:last-child {
    border: none;
}

.pricing-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(60px);
    opacity: 0.2;
    animation: blob 10s ease-in-out infinite;
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.guarantee-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 32px;
}

.badge-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text);
}

.badge-text span {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-price { justify-content: center; }
    .pricing-visual { display: none; }
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--bg);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-800) 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    opacity: 0.9;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.cta-form input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: white;
    font-size: 15px;
    transition: all var(--transition);
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.cta-form .btn-primary {
    background: white;
    color: var(--brand-700);
    box-shadow: none;
}

.cta-form .btn-primary:hover {
    background: var(--brand-50);
}

.form-note {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
    }
    
    .form-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--brand-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--brand-600);
}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; }
    .footer-links { flex-wrap: wrap; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.legal-update {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.legal-section h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--text-secondary);
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: -16px;
    color: var(--brand-500);
}

.legal-section a {
    color: var(--brand-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    color: var(--brand-700);
}

.legal-section strong {
    color: var(--text);
}

/* ===== Animations ===== */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
