/* ── Landing: Nav, Hero, Features, Regions, CTA, Footer ─────────────── */

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,12,18,.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .4s, border-color .4s, box-shadow .4s;
}
.landing-nav.scrolled {
    background: rgba(10,12,18,.95);
    border-bottom-color: rgba(255,255,255,.06);
    box-shadow: 0 1px 30px rgba(0,0,0,.5);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link { text-decoration: none; }
.logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.5px;
    background: linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-accent { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-btn {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .25s;
}
.nav-btn:hover { color: #fff; background: rgba(255,255,255,.06); }
.btn-icon { vertical-align: middle; margin-right: 6px; width: 16px; height: 16px; object-fit: contain; }
.badge-icon { width: 14px; height: 14px; object-fit: contain; }
.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 2px 16px rgba(59,130,246,.25);
}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59,130,246,.4);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 48px 190px;
}

/* Background image + parallax */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("/assets/badges/pokedc.webp");
    /* WebP 75% quality, ~176KB */
    background-size: cover;
    background-position: center calc(50% + var(--hero-parallax, 0px));
    background-repeat: no-repeat;
    opacity: .55;
    z-index: 0;
    transform: translateZ(0);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,12,18,.2) 0%,
        rgba(10,12,18,.45) 40%,
        rgba(10,12,18,.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
/* Animated gradient overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(59,130,246,.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(250,204,21,.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(239,68,68,.08) 0%, transparent 40%);
    animation: heroAtmosphere 10s ease-in-out infinite alternate;
}
@keyframes heroAtmosphere {
    0%   { opacity: .6; transform: scale(1); }
    50%  { opacity: 1; transform: scale(1.03); }
    100% { opacity: .7; transform: scale(0.97); }
}

/* Particle canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Glass card backdrop */
.hero-card {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1060px, calc(100vw - 48px));
    bottom: 80px;
    padding: 56px 56px;
    border-radius: 20px;
    background: rgba(10,12,18,.55);
    border: 1px solid rgba(255,255,255,.05);
    box-shadow:
        0 8px 40px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.04);
    z-index: 3;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
}

/* Hero content */
.hero-content {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 24px;
    z-index: 4;
    animation: heroEntrance 1.2s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroEntrance {
    0%   { opacity: 0; transform: translateY(40px) scale(.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: #000;
    padding: 6px 18px 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(250,204,21,.2);
    animation: badgeGlow 2.5s ease-in-out infinite;
}
.badge-icon { width: 14px; height: 14px; }
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 16px rgba(250,204,21,.15); }
    50% { box-shadow: 0 0 32px rgba(250,204,21,.35); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 0 80px rgba(250,204,21,.15);
    background: linear-gradient(135deg, #fff 30%, var(--accent) 70%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleShimmer 4s ease-in-out infinite;
}
@keyframes heroTitleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
.hero-accent {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(250,204,21,.25);
    display: inline-block;
    animation: heroAccentPulse 3s ease-in-out infinite;
}
@keyframes heroAccentPulse {
    0%, 100% { text-shadow: 0 0 30px rgba(250,204,21,.2), 0 0 60px rgba(250,204,21,0); }
    50% { text-shadow: 0 0 40px rgba(250,204,21,.4), 0 0 80px rgba(250,204,21,.2); }
}
.hero-sub {
    font-size: 1.3rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 36px;
    background: linear-gradient(90deg, #7b42d6 0%, #c084fc 30%, #e8eaed 60%, #7b42d6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: masterBallShimmer 4s linear infinite;
}

@keyframes masterBallShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), #eab308);
    color: #000;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 4px 24px rgba(250,204,21,.3);
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(250,204,21,.4);
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.12);
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s;
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(250,204,21,.06);
    transform: translateY(-2px);
}
.btn-hero-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Hero stats */
.hero-stats {
    position: relative;
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: statFadeIn .6s ease-out forwards;
}
.hero-stat:nth-child(1) { animation-delay: .4s; }
.hero-stat:nth-child(2) { animation-delay: .5s; }
.hero-stat:nth-child(3) { animation-delay: .6s; }
.hero-stat:nth-child(4) { animation-delay: .7s; }
@keyframes statFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(.9rem, 2.8vw, 2.8rem);
    display: block;
    color: var(--accent);
    letter-spacing: .8px;
    text-shadow: 0 0 30px rgba(250,204,21,.15);
}
.hero-stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════ */
.section {
    padding: 120px 24px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.section-dark {
    max-width: none;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(17,20,30,.8) 50%, var(--bg) 100%);
    padding: 120px 24px;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 14px auto 0;
    border-radius: 2px;
}
.section-desc {
    color: var(--text2);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1),
                transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Features Grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}
.feature-card {
    background: rgba(17,20,30,.5);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 14px;
    padding: 32px;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(250,204,21,.5), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(250,204,21,.04), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}
.feature-card:hover {
    border-color: rgba(250,204,21,.15);
    transform: translateY(-8px);
    box-shadow: 0 16px 60px rgba(0,0,0,.5);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.04);
    transition: all .4s;
}
.feature-card:hover .feature-icon {
    background: rgba(250,204,21,.06);
    border-color: rgba(250,204,21,.1);
}
.feature-icon img {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    transition: transform .4s, filter .4s;
}
.feature-card:hover .feature-icon img {
    transform: scale(1.2) rotate(-8deg);
    filter: brightness(1.3);
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   REGIONS SHOWCASE
   ═══════════════════════════════════════════════════════════════════════ */
.regions-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.region-card {
    background: rgba(17,20,30,.4);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    overflow: hidden;
}
.region-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--region-color, #3b82f6), transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}
.region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    border-color: rgba(255,255,255,.1);
}
.region-card:hover::before { opacity: .08; }
.region-badge {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    transition: all .4s;
    padding: 8px;
}
.region-card:hover .region-badge {
    background: var(--region-color);
    border-color: var(--region-color);
    box-shadow: 0 0 24px rgba(59,130,246,.2);
    transform: scale(1.1);
}
.region-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
}
.region-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
}
.region-card p {
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.5;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.section-cta {
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250,204,21,.04) 0%, transparent 60%);
    animation: ctaPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(.8); opacity: .5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
.section-cta h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
}
.section-cta p {
    color: var(--text2);
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
}
.section-cta code {
    background: rgba(255,255,255,.06);
    padding: 2px 10px;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-size: .9rem;
    color: var(--accent);
}
.section-cta .btn-hero {
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.landing-footer {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid rgba(255,255,255,.03);
    background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.footer-copy {
    font-size: .85rem;
    color: var(--text2);
    margin-bottom: 6px;
}
.footer-disclaimer {
    font-size: .75rem;
    color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 5 breakpoints
   ├─ ≤1024px  : tablet grande / laptop pequeno
   ├─ ≤768px   : tablet retrato
   ├─ ≤640px   : smartphone grande
   ├─ ≤480px   : smartphone comum
   └─ ≤360px   : smartphone pequeno
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Tablet grande / laptop pequeno (769px – 1024px) ─────────────────── */
@media (max-width: 1024px) {
    .hero { padding: 110px 20px 70px; }
    .hero-card {
        width: calc(100% - 40px);
        max-width: calc(100vw - 40px);
        padding: 40px 28px;
        top: 32px;
        bottom: 32px;
    }
    .hero-content { max-width: 600px; }
    .hero-sub { font-size: 1.05rem; }
    .hero-stats { gap: 24px; }
    .section { padding: 80px 32px; }
    .section-dark { padding: 80px 32px; }
    .section-cta { padding: 80px 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-showcase { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

/* ── Tablet retrato (≤768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        padding: 96px 16px 64px;
    }
    .hero-card {
        width: calc(100% - 24px);
        max-width: calc(100vw - 24px);
        padding: 32px 20px;
        top: 24px;
        bottom: 24px;
        background: rgba(10,12,18,.75);
    }
    .hero-content {
        max-width: 100%;
        padding: 0 12px;
    }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .hero-sub {
        font-size: .98rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }
    .hide-mobile { display: none; }
    .hero-actions {
        gap: 10px;
        margin-bottom: 28px;
    }
    .btn-hero,
    .btn-hero-outline {
        padding: 12px 22px;
        font-size: .9rem;
    }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: clamp(.85rem, 2.5vw, 1.4rem); }
    .hero-stat-label { font-size: .62rem; }
    .nav-btn { display: none; }
    .section { padding: 60px 20px; }
    .section-dark { padding: 60px 20px; }
    .section-cta { padding: 60px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .regions-showcase { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* ── Smartphone grande (≤640px) ─────────────────────────────────────── */
@media (max-width: 640px) {
    .hero {
        min-height: 100svh;
        padding: 88px 12px 56px;
    }
    .hero-card {
        width: calc(100% - 16px);
        max-width: calc(100vw - 16px);
        padding: 28px 16px;
        top: 20px;
        bottom: 20px;
    }
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 12px;
    }
    .hero-sub {
        font-size: .92rem;
        margin-bottom: 18px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
    }
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 13px 20px;
    }
    .hero-stats {
        gap: 14px;
        flex-wrap: wrap;
    }
    .hero-stat-num { font-size: .95rem; }
    .hero-stat-label { font-size: .58rem; }
    .features-grid { gap: 14px; }
    .feature-card { padding: 24px; }
    .regions-showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .region-card { padding: 20px 14px; }
}

/* ── Smartphone comum (≤480px) ──────────────────────────────────────── */
@media (max-width: 480px) {
    .hero {
        min-height: 100svh;
        padding: 80px 10px 52px;
    }
    .hero-card {
        width: calc(100% - 12px);
        max-width: calc(100vw - 12px);
        padding: 24px 14px;
        top: 16px;
        bottom: 16px;
        border-radius: 12px;
    }
    .hero-content { padding: 0 4px; }
    .hero-badge {
        font-size: .63rem;
        padding: 5px 12px 5px 10px;
        gap: 6px;
        margin-bottom: 12px;
    }
    .badge-icon { width: 12px; height: 12px; }
    .hero-title {
        font-size: clamp(1.4rem, 8.5vw, 1.9rem);
        line-height: 1.15;
        margin-bottom: 10px;
    }
    .hero-sub {
        font-size: .88rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 20px;
    }
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: none;
        padding: 13px 16px;
        font-size: .88rem;
        border-radius: 9px;
    }
    .hero-stats {
        gap: 10px 16px;
        justify-content: space-around;
    }
    .hero-stat-num { font-size: .85rem; }
    .hero-stat-label { font-size: .54rem; letter-spacing: 1px; }
    .features-grid { gap: 10px; }
    .feature-card { padding: 20px 16px; }
    .regions-showcase { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .region-card { padding: 16px 12px; }
    .section { padding: 48px 16px; }
    .section-dark { padding: 48px 16px; }
    .section-cta { padding: 48px 16px; }
}

/* ── Smartphone pequeno (≤360px) ────────────────────────────────────── */
@media (max-width: 360px) {
    .hero { padding: 72px 8px 48px; }
    .hero-card {
        width: calc(100% - 10px);
        max-width: calc(100vw - 10px);
        padding: 20px 12px;
        top: 12px;
        bottom: 12px;
        border-radius: 10px;
    }
    .hero-title {
        font-size: clamp(1.2rem, 9vw, 1.6rem);
        margin-bottom: 8px;
    }
    .hero-sub { font-size: .82rem; margin-bottom: 14px; }
    .hero-badge { font-size: .58rem; }
    .btn-hero,
    .btn-hero-outline { font-size: .84rem; padding: 11px 14px; border-radius: 8px; }
    .hero-stats { gap: 8px 12px; }
    .hero-stat-num { font-size: .78rem; }
    .hero-stat-label { font-size: .5rem; letter-spacing: .8px; }
    .regions-showcase { grid-template-columns: 1fr 1fr; gap: 8px; }
    .section { padding: 40px 14px; }
    .section-dark { padding: 40px 14px; }
    .section-cta { padding: 40px 14px; }
}
