/* ═══════════════════════════════════════
   VeoTV Streaming — Landing Page Styles
   Propuesta: Cinematic Dark
   ═══════════════════════════════════════ */
/* Master sync: docs/propuesta/landing.css — si el cliente actualiza el master,
   re-sincronizar este archivo (mantener al ras byte-a-byte). */

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

:root {
    --bg-deep: #06060e;
    --bg-primary: #0a0a14;
    --bg-card: #0f0f1c;
    --bg-card-hover: #14142a;
    --bg-surface: #1a1a2e;
    --red-primary: #e63946;
    --red-light: #ff6b6b;
    --red-glow: rgba(230, 57, 70, 0.15);
    --orange-accent: #ff6b35;
    --gold-accent: #f4a261;
    --text-white: #f1f1f3;
    --text-muted: #8a8a9a;
    --text-dim: #55556a;
    --border-subtle: rgba(255,255,255,0.04);
    --border-light: rgba(255,255,255,0.08);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
    50% { box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(230,57,70,0.08); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 32px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
    background: rgba(6,6,14,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red-primary), var(--orange-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}
.nav-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}
.nav-logo-text span { color: var(--red-primary); }
.nav-logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--text-white); }
.nav-cta {
    background: var(--red-primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
    display: inline-block;
}
.nav-cta:hover {
    background: #d32f3f;
    transform: translateY(-1px);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}
.hero-glow {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--red-light);
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeIn 0.8s ease 0.2s both;
}
.hero-tag i { font-size: 14px; }
.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: slideRight 0.8s ease 0.4s both;
}
.hero h1 .accent {
    color: var(--red-primary);
    position: relative;
}
.hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 3px;
    background: var(--red-primary);
    opacity: 0.3;
    border-radius: 2px;
}
.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeUp 0.8s ease 0.6s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease 0.8s both;
}
.btn-primary {
    background: var(--red-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-display);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover {
    background: #d32f3f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}
.btn-secondary {
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-muted);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-white);
    background: rgba(255,255,255,0.03);
}
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeUp 0.8s ease 1s both;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
}
.hero-stat-num .unit {
    font-size: 14px;
    color: var(--red-primary);
    margin-left: 2px;
}
.hero-stat-label {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease 0.6s both;
}
.hero-device {
    width: 380px;
    height: 240px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}
.hero-device-screen {
    position: absolute;
    inset: 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f0f2a 0%, #1a0a20 40%, #0a0a1e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-device-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 3s ease-in-out infinite;
    cursor: pointer;
}
.hero-device-play i { font-size: 24px; color: #fff; margin-left: 3px; }
.hero-device-bar {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}
.hero-device-bar-fill {
    width: 35%;
    height: 100%;
    background: var(--red-primary);
    border-radius: 2px;
}
.hero-device-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--red-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
}
.hero-float-card.card-1 {
    top: -20px;
    right: -30px;
    animation: float 5s ease-in-out 1s infinite;
}
.hero-float-card.card-2 {
    bottom: -20px;
    left: -20px;
    animation: float 4s ease-in-out 0.5s infinite;
}
.float-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.float-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.float-card-label { font-size: 10px; color: var(--text-dim); }
.float-card-value { font-family: var(--font-display); font-size: 15px; font-weight: 600; }

/* ─── TICKER ─── */
.ticker-wrap {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    padding: 16px 0;
    background: var(--bg-primary);
}
.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 1px;
}
.ticker-item i { color: var(--red-primary); font-size: 16px; }
.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--text-dim);
    border-radius: 50%;
    opacity: 0.3;
}

/* ─── FEATURES ─── */
.section-features { padding: var(--section-padding); position: relative; }
.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 60px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--orange-accent));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.feature-icon.red { background: rgba(230,57,70,0.1); color: var(--red-primary); }
.feature-icon.orange { background: rgba(255,107,53,0.1); color: var(--orange-accent); }
.feature-icon.gold { background: rgba(244,162,97,0.1); color: var(--gold-accent); }
.feature-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── COMPENSATION PLAN ─── */
.section-plan {
    padding: var(--section-padding);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.plan-header { text-align: center; margin-bottom: 60px; }
.plan-header .section-subtitle { margin: 0 auto; }
.plan-levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.plan-level-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.plan-level-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-primary);
    box-shadow: 0 8px 40px var(--red-glow);
}
.plan-level-number {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.plan-level-amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}
.plan-level-amount .decimal { font-size: 24px; color: var(--text-muted); }
.plan-level-currency { font-size: 14px; color: var(--red-primary); font-weight: 500; margin-top: 8px; }
.plan-level-desc { font-size: 12px; color: var(--text-dim); margin-top: 12px; line-height: 1.5; }
.plan-director {
    background: var(--bg-card);
    border: 1px solid rgba(230,57,70,0.2);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.plan-director-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--red-primary);
    flex-shrink: 0;
}
.plan-director h4 { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.plan-director p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── PRICING ─── */
.section-pricing { padding: var(--section-padding); }
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--orange-accent), var(--gold-accent));
}
.pricing-popular {
    display: inline-block;
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.2);
    color: var(--red-light);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.pricing-amount { font-family: var(--font-display); font-size: 64px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.pricing-amount .sup { font-size: 28px; vertical-align: super; color: var(--text-muted); }
.pricing-currency { font-size: 18px; color: var(--red-primary); font-weight: 500; margin-bottom: 8px; }
.pricing-period { font-size: 14px; color: var(--text-dim); margin-bottom: 32px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 36px; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--red-primary); font-size: 18px; flex-shrink: 0; }

/* ─── DEVICES ─── */
.section-devices {
    padding: var(--section-padding);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 48px;
}
.device-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}
.device-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.device-card i { font-size: 32px; color: var(--red-primary); margin-bottom: 12px; display: block; }
.device-card span { font-size: 13px; color: var(--text-muted); }

/* ─── CRYPTO ─── */
.section-crypto { padding: var(--section-padding); border-top: 1px solid var(--border-subtle); }
.crypto-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.crypto-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.crypto-feature { display: flex; gap: 16px; align-items: flex-start; }
.crypto-feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(230,57,70,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--red-primary); flex-shrink: 0;
}
.crypto-feature h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.crypto-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.crypto-visual { display: flex; flex-direction: column; gap: 16px; }
.crypto-network {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}
.crypto-network:hover { border-color: var(--border-light); }
.crypto-network-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.crypto-network-dot.polygon { background: #8247e5; }
.crypto-network-dot.bep20 { background: #f3ba2f; }
.crypto-network-dot.trc20 { background: #ef0027; }
.crypto-network h4 { font-size: 15px; font-weight: 500; flex: 1; }
.crypto-network span { font-size: 12px; color: var(--text-dim); }
.crypto-network .badge-primary {
    background: rgba(230,57,70,0.1);
    color: var(--red-light);
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── CTA ─── */
.section-cta { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.section-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cta-title { font-size: 40px; font-weight: 700; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-top: 16px; max-width: 280px; }
.footer-col h5 {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 500;
    letter-spacing: 1px; margin-bottom: 16px;
    color: var(--text-muted);
}
.footer-col a { display: block; font-size: 13px; color: var(--text-dim); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-white); }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 40px; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-levels { grid-template-columns: repeat(2, 1fr); }
    .crypto-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    :root { --section-padding: 64px 0; }
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(6,6,14,0.95);
        backdrop-filter: blur(20px);
        padding: 24px 32px;
        gap: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-hamburger { display: flex; }
    .hero { min-height: auto; padding: 120px 0 64px; }
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .section-title { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .plan-levels { grid-template-columns: 1fr; }
    .plan-director { flex-direction: column; text-align: center; }
    .pricing-card { padding: 32px 24px; }
    .pricing-amount { font-size: 48px; }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-title { font-size: 28px; }
}
