/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111827;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: linear-gradient(135deg, #2B579A 0%, #34C759 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.green { color: #34C759 !important; }

/* ===== Animations ===== */
[data-animate] { opacity: 1; transform: translateY(0); }
[data-animate].hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate].visible { opacity: 1 !important; transform: translateY(0) !important; transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes slideSwipe { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(20px); } 75% { transform: translateX(-20px); } }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; border-radius: 12px; transition: all 0.25s ease;
    text-align: center; justify-content: center;
}
.btn-sm { padding: 8px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; padding: 14px 24px; font-size: 15px; }
.btn-primary { background: #2B579A; color: white; }
.btn-primary:hover { background: #1e4078; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(43,87,154,0.3); }
.btn-accent { background: #34C759; color: white; }
.btn-accent:hover { background: #2db84e; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(52,199,89,0.35); }
.btn-ghost { color: white; border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.btn-outline { color: #2B579A; border: 1.5px solid #e5e7eb; background: white; }
.btn-outline:hover { border-color: #2B579A; background: #f8fafc; }
.btn-white { background: white; color: #111827; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ===== Nav ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0; transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06); padding: 10px 0;
    box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}
.nav.scrolled .logo-text, .nav.scrolled .nav-links a { color: #111827; }
.nav.scrolled .nav-links a:hover { color: #2B579A; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
.logo-text { font-size: 18px; font-weight: 700; color: white; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; }
.mobile-toggle span { display: block; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .mobile-toggle span { background: #111827; }

/* ===== Hero ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 0; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #162a50 40%, #1a3d6d 70%, #0f2440 100%);
}
.hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-glow {
    position: absolute; top: -200px; right: -200px; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(52,199,89,0.12) 0%, transparent 65%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; max-width: 600px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(52,199,89,0.12); border: 1px solid rgba(52,199,89,0.2);
    padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; color: #34C759;
    margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #34C759; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 900; line-height: 1.08; color: white; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 32px; max-width: 520px; }
.hero-subtitle strong { color: #34C759; font-weight: 700; }
.hero-cta { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stars { display: flex; align-items: center; gap: 3px; }
.hero-stars span { font-size: 14px; font-weight: 700; color: #FBBF24; margin-left: 6px; }
.hero-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }
.hero-store, .hero-savings { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Phone mockup */
.hero-phone { flex-shrink: 0; position: relative; animation: float 6s ease-in-out infinite; }
.phone-frame {
    width: 280px; height: 580px; background: #000;
    border-radius: 40px; padding: 12px; position: relative; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
}
.phone-notch {
    width: 120px; height: 28px; background: #000; border-radius: 0 0 16px 16px;
    position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 10;
}
.phone-screen {
    width: 100%; height: 100%; background: #f8f9fa; border-radius: 30px;
    overflow: hidden; padding: 44px 16px 16px;
}
.phone-glow {
    position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 120px;
    background: radial-gradient(ellipse, rgba(52,199,89,0.2) 0%, transparent 70%);
}
.screen-status { display: flex; justify-content: space-between; align-items: center; padding: 4px 8px 8px; font-size: 12px; font-weight: 600; color: #333; }
.status-icons { display: flex; gap: 4px; }
.status-icons svg { opacity: 0.4; }
.screen-header { font-size: 22px; font-weight: 800; color: #111; padding: 0 4px 12px; }
.screen-savings-card {
    background: white; border-radius: 16px; padding: 16px; margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.screen-label { font-size: 11px; color: #888; font-weight: 500; }
.screen-amount { display: flex; align-items: baseline; gap: 1px; margin: 4px 0; }
.screen-dollar { font-size: 16px; font-weight: 700; color: #34C759; }
.screen-number { font-size: 32px; font-weight: 800; color: #34C759; }
.screen-cents { font-size: 16px; font-weight: 700; color: #34C759; }
.screen-progress { height: 4px; background: #e5e7eb; border-radius: 4px; margin: 6px 0 4px; overflow: hidden; }
.screen-progress-bar { height: 100%; width: 62%; background: #34C759; border-radius: 4px; }
.screen-projection { font-size: 10px; color: #aaa; }
.screen-detection {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px; margin-bottom: 10px;
    background: white; border-radius: 12px; font-size: 11px; font-weight: 600; color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.screen-detection-dot { width: 8px; height: 8px; border-radius: 50%; background: #34C759; animation: pulse 2s infinite; }
.screen-on { margin-left: auto; color: #34C759; font-weight: 700; }
.screen-stats { display: flex; gap: 8px; margin-bottom: 10px; }
.screen-stat {
    flex: 1; background: white; border-radius: 12px; padding: 10px 8px;
    text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.stat-value { display: block; font-size: 15px; font-weight: 800; color: #111; }
.stat-label { font-size: 9px; color: #999; font-weight: 500; }
.screen-trip-card {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    background: white; border-radius: 12px; margin-bottom: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.screen-trip-icon { font-size: 18px; }
.screen-trip-info { flex: 1; }
.screen-trip-name { display: block; font-size: 11px; font-weight: 600; color: #111; }
.screen-trip-detail { font-size: 9px; color: #999; }
.screen-trip-badge {
    font-size: 8px; font-weight: 700; color: white; background: #2B579A;
    padding: 3px 8px; border-radius: 6px;
}
.screen-trip-badge.personal { background: #F59E0B; }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; }
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ===== Logos ===== */
.logos { padding: 48px 0; background: white; }
.logos-label { text-align: center; font-size: 13px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
.logos-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logo-item { font-size: 15px; font-weight: 600; color: #6b7280; display: flex; align-items: center; gap: 8px; }

/* ===== Stats Banner ===== */
.stats-banner { padding: 64px 0; background: #f8f9fa; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number { font-size: 42px; font-weight: 900; color: #2B579A; display: block; letter-spacing: -0.02em; }
.stat-desc { font-size: 14px; color: #6b7280; font-weight: 500; }

/* ===== Section Headers ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; font-size: 13px; font-weight: 700; color: #2B579A;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
    background: rgba(43,87,154,0.08); padding: 4px 14px; border-radius: 100px;
}
.section-header h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: #6b7280; line-height: 1.7; }

/* ===== Features ===== */
.features { padding: 100px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    padding: 32px; border-radius: 20px; background: #f8f9fa; border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: #e5e7eb; }
.feature-hero-card { grid-column: span 3; display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto auto; gap: 8px 20px; align-items: start; background: linear-gradient(135deg, #f0f4ff 0%, #f5fff5 100%); border-color: rgba(43,87,154,0.1); }
.feature-hero-card .feature-icon-lg { grid-row: 1 / 3; }
.feature-hero-card h3 { grid-column: 2; margin-bottom: 0; }
.feature-hero-card p { grid-column: 2; }
.feature-hero-card .feature-highlights { grid-column: 1 / -1; margin-top: 8px; }
.feature-icon { margin-bottom: 16px; }
.feature-icon-lg { margin: 0; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #6b7280; line-height: 1.65; }
.feature-highlights { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.feature-highlights span { font-size: 13px; color: #2B579A; font-weight: 600; }

/* ===== How It Works ===== */
.how-it-works { padding: 100px 0; background: #f8f9fa; }
.steps { max-width: 800px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; gap: 32px; }
.step-number {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
    background: #2B579A; color: white; font-size: 20px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.step-content { flex: 1; padding-top: 4px; }
.step-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: #6b7280; line-height: 1.65; }
.step-visual { flex-shrink: 0; width: 220px; }
.step-connector { display: flex; justify-content: center; padding: 8px 0 8px 24px; }

/* Step visuals */
.step-phone-mini, .step-swipe-demo, .step-report-preview {
    background: white; border-radius: 16px; padding: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.mini-notification { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #333; }
.mini-dot { width: 8px; height: 8px; border-radius: 50%; }
.mini-dot.green { background: #34C759; animation: pulse 2s infinite; }
.swipe-card {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 12px; background: #f8f9fa; border-radius: 12px; animation: slideSwipe 4s ease-in-out infinite;
}
.swipe-left-label, .swipe-right-label { font-size: 9px; font-weight: 700; color: #9ca3af; white-space: nowrap; }
.swipe-trip { text-align: center; }
.swipe-trip strong { display: block; font-size: 11px; }
.swipe-trip span { font-size: 10px; color: #888; }
.report-header-mini { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.report-header-mini span:first-child { font-size: 12px; font-weight: 700; }
.report-badge-mini { font-size: 9px; font-weight: 700; color: #34C759; background: rgba(52,199,89,0.1); padding: 2px 8px; border-radius: 6px; }
.report-row-mini { display: flex; justify-content: space-between; font-size: 11px; padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.report-row-mini.total { border-bottom: none; font-weight: 700; font-size: 13px; padding-top: 8px; }

/* ===== Comparison ===== */
.comparison { padding: 100px 0; background: white; }
.comparison-table { max-width: 700px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid #e5e7eb; }
.comp-header, .comp-row { display: grid; grid-template-columns: 2fr 1fr 1fr; }
.comp-header {
    background: #2B579A; color: white; font-size: 14px; font-weight: 700; padding: 16px 24px;
}
.comp-row { padding: 14px 24px; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.comp-row:last-child { border-bottom: none; }
.comp-row.highlight { background: #f0fff4; }
.comp-feature { color: #4b5563; }
.comp-us, .comp-them { text-align: center; }
.check { color: #34C759; font-weight: 700; font-size: 16px; }
.x { color: #ef4444; font-weight: 700; font-size: 16px; }
.partial { color: #F59E0B; font-weight: 700; font-size: 16px; }
.comp-us strong { color: #2B579A; }

/* ===== Pricing ===== */
.pricing { padding: 100px 0; background: #f8f9fa; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.toggle-label { font-size: 14px; font-weight: 600; color: #9ca3af; transition: color 0.3s; }
.toggle-label.active { color: #111827; }
.toggle-switch {
    width: 52px; height: 28px; background: #2B579A; border-radius: 100px;
    padding: 3px; display: flex; align-items: center; transition: background 0.3s;
}
.toggle-switch.monthly { background: #9ca3af; }
.toggle-thumb {
    width: 22px; height: 22px; background: white; border-radius: 50%;
    transition: transform 0.3s ease; transform: translateX(24px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch.monthly .toggle-thumb { transform: translateX(0); }
.save-badge { font-size: 11px; color: white; background: #34C759; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card {
    background: white; border-radius: 20px; padding: 36px 28px; border: 1.5px solid #e5e7eb;
    display: flex; flex-direction: column; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.pricing-card.popular {
    border-color: #2B579A; position: relative;
    box-shadow: 0 8px 40px rgba(43,87,154,0.12);
    transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #2B579A; color: white; font-size: 12px; font-weight: 700;
    padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount { font-size: 40px; font-weight: 900; letter-spacing: -0.02em; }
.price-period { font-size: 15px; color: #9ca3af; font-weight: 500; }
.pricing-desc { font-size: 13px; color: #9ca3af; margin-top: 4px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.pricing-features li.disabled { color: #d1d5db; }
.pf-check { color: #34C759; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.pf-x { color: #d1d5db; font-size: 14px; flex-shrink: 0; }

/* ===== Reviews ===== */
.reviews { padding: 100px 0; background: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: #f8f9fa; border-radius: 20px; padding: 32px; border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.review-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: #2B579A;
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
}
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: #9ca3af; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: #f8f9fa; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-size: 16px; font-weight: 600; color: #111827;
    text-align: left;
}
.faq-chevron { transition: transform 0.3s; color: #9ca3af; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: #6b7280; line-height: 1.7; }

/* ===== Final CTA ===== */
.final-cta { padding: 80px 0 100px; background: white; }
.cta-card {
    position: relative; text-align: center; padding: 80px 40px; border-radius: 28px;
    background: linear-gradient(135deg, #0a1628 0%, #1a3d6d 100%);
    overflow: hidden;
}
.cta-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.8) 1px, transparent 1px),
                       radial-gradient(circle at 80% 20%, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cta-card h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: white; margin-bottom: 16px; position: relative; }
.cta-card p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; position: relative; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; position: relative; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.4); position: relative; }

/* ===== Footer ===== */
.footer { padding: 64px 0 32px; background: #f8f9fa; border-top: 1px solid #e5e7eb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: #9ca3af; margin-top: 12px; line-height: 1.6; max-width: 280px; }
.footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9ca3af; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: #6b7280; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: #2B579A; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid #e5e7eb;
}
.footer-bottom p { font-size: 13px; color: #9ca3af; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 14px; font-weight: 700; color: #9ca3af; transition: color 0.2s; }
.footer-social a:hover { color: #2B579A; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { max-width: 100%; align-items: center; display: flex; flex-direction: column; }
    .hero-subtitle { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-proof { justify-content: center; }
    .hero-phone { margin-top: 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-hero-card { grid-column: span 2; grid-template-columns: 56px 1fr; }
    .step { flex-direction: column; gap: 16px; }
    .step-visual { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: white;
        padding: 20px 24px; gap: 16px; border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open a { color: #111827; font-size: 16px; }
    .hero { padding-top: 100px; min-height: auto; }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; }
    .phone-frame { width: 240px; height: 500px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-hero-card { grid-column: span 1; grid-template-columns: 56px 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .reviews-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 13px; }
    .comp-header, .comp-row { padding: 12px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-card { padding: 48px 24px; }
}
