/* ===== AISpeechScan by EIAIX — Global Styles ===== */
:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eef2ff;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --text: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0b1120;
    --bg-dark-card: #131c31;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 40px rgba(15,23,42,0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0b1120 0%, #1e1b4b 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Language blocks (used by legal pages) ===== */
[data-lang-block] { display: none; }
html[data-lang="es"] [data-lang-block="es"],
html[data-lang="en"] [data-lang-block="en"] { display: block; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.section-title { text-align: center; margin-bottom: 16px; }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 48px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 16px rgba(79,70,229,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.4); }

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(15,23,42,0.06);
    padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 40px; height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text-block { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.logo-byline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    -webkit-text-fill-color: var(--text-muted);
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
}
.nav-links > a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-links > a:not(.btn):hover::after { width: 100%; }

.nav-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-alt);
    border-radius: 50px;
    padding: 4px;
}
.nav-lang button {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
}
.nav-lang button.active { background: var(--primary); color: #fff; }

.btn-signin {
    padding: 9px 22px;
    background: var(--gradient);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.btn-signin:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(79,70,229,0.4); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(170deg, #eef2ff 0%, #ffffff 45%, #ecfeff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(ellipse, rgba(79,70,229,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; color: var(--text); }
.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.hero-stat { text-align: center; }
.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* Hero live-captions window mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.app-window {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,23,42,0.04);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.app-window:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }
.app-window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-dark);
}
/* Chrome estilo Mac (usado solo si se descomenta en el HTML) */
.app-window-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.app-window-bar .dot.red { background: #ff5f57; }
.app-window-bar .dot.yellow { background: #febc2e; }
.app-window-bar .dot.green { background: #28c840; }
/* Chrome estilo Windows (activo) */
.win-controls { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.win-btn {
    width: 30px; height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1;
    border-radius: 4px;
}
.win-btn.close { font-size: 0.85rem; }
.app-window-title {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 600;
}
.rec-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.app-window-lang {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.15);
    padding: 3px 10px;
    border-radius: 50px;
}
.app-window-body { padding: 20px 18px 22px; background: linear-gradient(180deg, #fff 0%, #fbfcff 100%); }
.caption-row { margin-bottom: 16px; }
.caption-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.caption-tag.accent { color: var(--accent-dark); background: #ecfeff; }
.caption-original { font-size: 0.95rem; color: var(--text-light); }
.caption-translated { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.ai-suggestion {
    margin-top: 18px;
    padding: 12px 14px;
    background: var(--primary-light);
    border: 1px solid #e0e7ff;
    border-radius: 12px;
}
.ai-suggestion-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 6px;
}
.ai-suggestion-text { font-size: 0.92rem; color: var(--text); font-style: italic; }
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 32px;
    margin-top: 18px;
}
.waveform span {
    width: 4px;
    border-radius: 4px;
    background: var(--gradient);
    animation: wave 1.1s ease-in-out infinite;
}
.waveform span:nth-child(odd) { animation-delay: 0.15s; }
.waveform span:nth-child(3n) { animation-delay: 0.3s; }
.waveform span:nth-child(4n) { animation-delay: 0.45s; }
@keyframes wave { 0%,100% { height: 8px; } 50% { height: 28px; } }

/* Floating cards */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}
.floating-card.card-1 { top: 8%; right: -6%; animation-delay: 0s; }
.floating-card.card-2 { bottom: 12%; left: -6%; animation-delay: 1s; }
.floating-card .card-icon { font-size: 1.3rem; margin-bottom: 4px; }
.floating-card .card-value { font-weight: 800; color: var(--accent-dark); font-size: 1rem; }
.floating-card .card-label { color: var(--text-muted); font-size: 0.75rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Features ===== */
.features { padding: 100px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: var(--primary-light);
}
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ===== How It Works ===== */
.how-it-works { padding: 100px 0; background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.step { text-align: center; position: relative; }
.step::after {
    content: '';
    position: absolute;
    top: 35px; right: -16px;
    width: 32px; height: 2px;
    background: var(--border);
}
.step:last-child::after { display: none; }
.step-number {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(79,70,229,0.25);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 0.9rem; }

/* ===== Use Cases ===== */
.use-cases { padding: 100px 0; background: var(--bg); }
.use-cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.use-case {
    text-align: center;
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--primary-light) 0%, #fff 60%);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.use-case:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.use-case-icon { font-size: 2.4rem; margin-bottom: 16px; }
.use-case h3 { font-size: 1.1rem; margin-bottom: 10px; }
.use-case p { color: var(--text-light); font-size: 0.9rem; }

/* ===== Pricing ===== */
.pricing { padding: 100px 0; background: var(--bg-alt); }
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}
.pricing-card {
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 2px solid var(--border);
    background: #fff;
    transition: all var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-light) 0%, #fff 28%);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; margin: 12px 0 2px; }
.pricing-price span:last-child { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-annual { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { margin: 20px 0 30px; }
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.92rem;
    color: var(--text-light);
}
.pricing-features li::before {
    content: '✓';
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.pricing-features li.disabled { opacity: 0.45; text-decoration: line-through; }
.pricing-features li.disabled::before { content: '✕'; color: var(--text-muted); }
.pricing-card .btn { width: 100%; }

/* ===== Enterprise callout ===== */
.enterprise { padding: 0 0 100px; background: var(--bg-alt); }
.enterprise-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--gradient-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}
.enterprise-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at right, rgba(6,182,212,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.enterprise-icon { font-size: 3.5rem; flex-shrink: 0; }
.enterprise-text h2 { color: #fff; margin-bottom: 12px; }
.enterprise-text p { color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 640px; }

/* ===== CTA / Download ===== */
.cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 12px 20px;
    color: #fff;
    transition: all var(--transition);
    cursor: pointer;
    min-width: 190px;
}
.store-badge:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.store-badge.disabled { opacity: 0.55; cursor: default; }
.store-badge.disabled:hover { background: rgba(255,255,255,0.1); transform: none; }
.store-badge-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
}
.store-badge-text { text-align: left; }
.store-badge-label { font-size: 0.7rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.store-badge-store { font-size: 1.15rem; font-weight: 700; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; background: none; -webkit-text-fill-color: #fff; }
.footer-brand .logo-byline { color: rgba(255,255,255,0.5); -webkit-text-fill-color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1rem; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== Legal Pages (Privacy / Terms) ===== */
.legal-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(15,23,42,0.06);
}
.legal-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-page { padding-top: 56px; padding-bottom: 80px; min-height: 70vh; background: var(--bg); }
.legal-page .container { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 28px; }
.legal-back:hover { color: var(--primary-dark); }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; color: var(--text); }
.legal-page h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; color: var(--text); }
.legal-page p, .legal-page li { color: var(--text-light); font-size: 0.97rem; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-page ul li { margin-bottom: 6px; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-lang-toggle { display: flex; justify-content: flex-end; }

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 600; }
.mobile-menu-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text);
}

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .hero-content { order: 1; }
    .hero-visual { order: 0; }
    .hero-description { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .app-window { transform: none; }
    .floating-card { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 460px; }
    .enterprise-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .hero-stats { gap: 24px; }
    .features, .how-it-works, .use-cases, .pricing, .cta { padding: 60px 0; }
    .enterprise { padding-bottom: 60px; }
    .fade-in { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .store-badge { width: 100%; max-width: 280px; }
    .enterprise-inner { padding: 32px 24px; }
}
