/* Design system da landing/blog/changelog da plataforma.
   Extraído do template pra ser cacheado entre as páginas. */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Azul da marca — mesmos tons do logo (#0164F4 → #3084FF) ── */
      --b-50:  #eff6ff;
      --b-100: #dbeafe;
      --b-200: #bfdbfe;
      --b-300: #93c5fd;
      --b-400: #60a5fa;
      --b-500: #3084FF;
      --b-600: #0164F4;
      --b-700: #0150c8;
      --b-800: #013e9c;

      /* ── Neutros (tema claro) ── */
      --g-50:  #f8fafc;
      --g-100: #f1f5f9;
      --g-200: #e2e8f0;
      --g-300: #cbd5e1;
      --g-400: #94a3b8;
      --g-500: #64748b;
      --g-600: #475569;
      --g-700: #334155;
      --g-800: #1e293b;
      --g-900: #0f172a;

      /* ── Superfícies que trocam com o tema ── */
      --bg:      #ffffff;   /* fundo da página */
      --surface: #ffffff;   /* fundo de card */
      --badge-ink: var(--b-700);  /* texto sobre tint azul (só o badge) */

      /* ── Escuros de marca (hero, planos, CTA, footer) — iguais nos dois temas ── */
      --dark:    #070c16;
      --dark-2:  #0b1220;
      --dark-3:  #111c30;
      --dark-br: rgba(255,255,255,.08);

      --radius:   16px;
      --radius-l: 22px;
      --ease:     cubic-bezier(.22,1,.36,1);

      color-scheme: light;
    }

    /* ── Tema escuro ──
       As seções de marca já são escuras nos dois temas; aqui invertemos a escala
       de cinzas e as superfícies, então as seções claras acompanham. */
    html.dark {
      --g-50:  #0f1728;
      --g-100: #16203a;
      --g-200: #202c48;
      --g-300: #2d3c5e;
      --g-400: #7e8da8;
      --g-500: #9aa8bf;
      --g-600: #b8c4d6;
      --g-700: #cfd8e6;
      --g-800: #e4eaf3;
      --g-900: #f2f6fc;

      --bg:      #080e1a;
      --surface: #0d1524;

      /* Tints azuis viram véus translúcidos — os pastéis do tema claro estouram no escuro.
         --b-500/600/700 ficam intactos: são cor de marca em gradientes e botões. */
      --b-50:  rgba(48,132,255,.12);
      --b-100: rgba(48,132,255,.18);
      --b-200: rgba(48,132,255,.3);
      --badge-ink: #93c5fd;

      color-scheme: dark;
    }

    /* Fallback: se o Lenis não carregar, o scroll dos âncoras segue suave no nativo. */
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    /* ── Lenis ──
       A classe .lenis só existe depois que a lib inicializa; assim o
       scroll-behavior nativo acima continua valendo se o CDN cair. */
    html.lenis, html.lenis body { height: auto; }
    html.lenis { scroll-behavior: auto; }
    .lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
    .lenis [data-lenis-prevent] { overscroll-behavior: contain; }
    .lenis.lenis-smooth iframe { pointer-events: none; }

    body {
      font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--g-900);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; }

    /* ═══════════════════════════════════════════════════════
       UTILITÁRIOS
       ═══════════════════════════════════════════════════════ */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .container-sm { max-width: 980px; margin: 0 auto; padding: 0 24px; }

    /* Sobrou só no chip de dado do painel (+18,4%) — os rótulos de seção saíram. */
    .badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--b-50); color: var(--badge-ink);
      font-size: .72rem; font-weight: 700; padding: 5px 14px;
      border-radius: 99px; border: 1px solid var(--b-200);
      letter-spacing: .06em; text-transform: uppercase;
    }

    /* ── Animações de entrada (scroll reveal) ──
       Só escondem quando há JS (classe .js na raiz) — senão a página ficaria em branco. */
    .js .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
      will-change: opacity, transform;
    }
    .js .reveal.in { opacity: 1; transform: none; }
    .js .reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .js .reveal-l.in { opacity: 1; transform: none; }
    .js .reveal-r { opacity: 0; transform: translateX(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .js .reveal-r.in { opacity: 1; transform: none; }
    .js .reveal-s { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .js .reveal-s.in { opacity: 1; transform: none; }

    .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
    .d5 { transition-delay: .40s; } .d6 { transition-delay: .48s; }
    .d7 { transition-delay: .56s; } .d8 { transition-delay: .64s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal, .reveal-l, .reveal-r, .reveal-s { opacity: 1 !important; transform: none !important; }
      html { scroll-behavior: auto; }
    }

    /* ═══════════════════════════════════════════════════════
       NAVBAR
       ═══════════════════════════════════════════════════════ */
    nav.navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 14px 24px;
      transition: padding .4s var(--ease);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; height: 58px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 10px 0 18px;
      border-radius: 99px;
      border: 1px solid transparent;
      transition: background .4s var(--ease), border-color .4s var(--ease),
                  box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
    }
    .navbar.scrolled .nav-inner {
      background: rgba(9,14,26,.72);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      border-color: rgba(255,255,255,.09);
      box-shadow: 0 8px 32px rgba(0,0,0,.35);
    }
    /* A navbar é vidro escuro nos dois temas (ela flutua sobre o hero, que é
       sempre escuro), então o wordmark branco serve sempre. */
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo .logo-wide { height: 26px; width: auto; }
    .nav-logo .logo-mark { height: 28px; width: auto; display: none; }
    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links a {
      color: rgba(255,255,255,.62); font-size: .875rem; font-weight: 500;
      position: relative; transition: color .25s;
    }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -5px;
      width: 100%; height: 1.5px; background: var(--b-400);
      transform: scaleX(0); transform-origin: right;
      transition: transform .35s var(--ease);
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
    .nav-actions { display: flex; align-items: center; gap: 8px; }
    .nav-signin {
      color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600;
      padding: 9px 18px; border-radius: 99px; white-space: nowrap;
      transition: background .25s, color .25s;
    }
    .nav-signin:hover { background: rgba(255,255,255,.08); color: #fff; }
    .nav-signup {
      background: var(--b-600); color: #fff;
      font-size: .85rem; font-weight: 700;
      padding: 10px 22px; border-radius: 99px; white-space: nowrap;
      box-shadow: 0 4px 16px rgba(1,100,244,.4);
      transition: background .25s, transform .25s var(--ease), box-shadow .25s;
    }
    .nav-signup:hover {
      background: var(--b-500); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(1,100,244,.55);
    }
    .nav-burger {
      display: none; width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,.08); border: none; cursor: pointer;
      place-items: center; flex-shrink: 0;
    }
    .nav-burger svg { width: 18px; height: 18px; stroke: #fff; }

    /* ── Troca de tema ── */
    .theme-btn {
      width: 38px; height: 38px; border-radius: 99px; flex-shrink: 0;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      cursor: pointer; display: grid; place-items: center;
      transition: background .25s, border-color .25s, transform .25s var(--ease);
    }
    .theme-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); transform: translateY(-1px); }
    .theme-btn svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; }
    /* Mostra o ícone do tema que o clique vai aplicar. */
    .theme-btn .ic-moon { display: none; }
    html.dark .theme-btn .ic-moon { display: block; }
    html.dark .theme-btn .ic-sun  { display: none; }

    /* ── Menu mobile ── */
    .nav-menu {
      position: absolute; top: calc(100% + 8px); left: 24px; right: 24px;
      background: rgba(11,18,32,.96);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px; padding: 10px;
      box-shadow: 0 20px 50px rgba(0,0,0,.5);
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    }
    .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
    .nav-menu a {
      display: block; padding: 12px 14px; border-radius: 11px;
      color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 600;
      transition: background .2s, color .2s;
    }
    .nav-menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
    .nav-menu hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 8px 6px; }

    /* ═══════════════════════════════════════════════════════
       HERO (escuro)
       ═══════════════════════════════════════════════════════ */
    .hero {
      position: relative; overflow: hidden;
      background: var(--dark);
      padding: 150px 24px 120px;
      text-align: center;
    }
    /* grade de quadradinhos que "acendem" em azul */
    .hero-squares {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 54px 54px;
      -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, #000 20%, transparent 78%);
      mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, #000 20%, transparent 78%);
    }
    .hero-tiles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
    .tile {
      position: absolute; width: 54px; height: 54px;
      background: linear-gradient(140deg, rgba(59,130,246,.5), rgba(1,100,244,.05));
      opacity: 0; animation: tileGlow 7s ease-in-out infinite;
      border-radius: 2px;
    }
    @keyframes tileGlow {
      0%, 100% { opacity: 0; }
      40%      { opacity: .5; }
      60%      { opacity: .28; }
    }
    /* auroras de fundo que se movem */
    .hero-aura {
      position: absolute; z-index: 0; border-radius: 50%;
      filter: blur(90px); pointer-events: none;
    }
    .aura-1 {
      width: 620px; height: 420px; top: -160px; left: 50%;
      margin-left: -310px; background: rgba(1,100,244,.34);
      animation: drift1 18s ease-in-out infinite alternate;
    }
    .aura-2 {
      width: 420px; height: 320px; top: 120px; left: 4%;
      background: rgba(96,165,250,.16);
      animation: drift2 22s ease-in-out infinite alternate;
    }
    .aura-3 {
      width: 460px; height: 340px; top: 180px; right: 2%;
      background: rgba(29,78,216,.22);
      animation: drift3 20s ease-in-out infinite alternate;
    }
    @keyframes drift1 { from { transform: translate(-40px, -18px) scale(1); } to { transform: translate(50px, 30px) scale(1.14); } }
    @keyframes drift2 { from { transform: translate(0, 0) scale(1); }        to { transform: translate(70px, -50px) scale(1.2); } }
    @keyframes drift3 { from { transform: translate(0, 0) scale(1.1); }      to { transform: translate(-60px, 44px) scale(1); } }

    .hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
    /* Leva ao changelog: precisa parecer clicável, não um rótulo solto. */
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: 99px; padding: 5px 14px 5px 5px; margin-bottom: 26px;
      backdrop-filter: blur(10px);
      transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
    }
    .hero-badge:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(48,132,255,.5);
      transform: translateY(-2px);
    }
    .hero-badge-tag {
      background: var(--b-500); color: #fff; font-size: .68rem; font-weight: 800;
      padding: 3px 10px; border-radius: 99px; letter-spacing: .04em;
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(48,132,255,.5);
      animation: badgePing 3s var(--ease) infinite;
    }
    /* Pulso discreto: sinaliza "saiu coisa nova" sem virar banner piscando. */
    @keyframes badgePing {
      0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(48,132,255,.5); }
      35%           { box-shadow: 0 0 0 6px rgba(48,132,255,0); }
    }
    .hero-badge-txt { color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 500; white-space: nowrap; }
    .hero-badge:hover .hero-badge-txt { color: #fff; }
    .hero-badge-arrow {
      width: 13px; height: 13px; flex-shrink: 0;
      color: rgba(255,255,255,.4);
      transition: transform .3s var(--ease), color .3s var(--ease);
    }
    .hero-badge:hover .hero-badge-arrow { transform: translateX(3px); color: var(--b-400); }

    .hero h1 {
      font-size: clamp(2.5rem, 6.2vw, 4.4rem);
      font-weight: 800; line-height: 1.06; letter-spacing: -.02em;
      color: #fff; margin-bottom: 22px;
      position: relative;
    }
    /* Halo difuso atrás do título, pra ele descolar do fundo escuro. */
    .hero h1::before {
      content: ''; position: absolute; z-index: -1;
      left: 50%; top: 50%; transform: translate(-50%, -50%);
      width: 115%; height: 165%;
      background: radial-gradient(ellipse at center, rgba(48,132,255,.28), transparent 62%);
      filter: blur(38px); pointer-events: none;
    }
    .hero h1 em {
      font-style: normal; display: inline-block;
      background: linear-gradient(120deg, #fff 10%, var(--b-300) 55%, var(--b-500) 95%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      /* drop-shadow segue o contorno das letras — text-shadow vazaria por dentro
         do glifo, já que o preenchimento aqui é transparente. */
      filter: drop-shadow(0 0 26px rgba(48,132,255,.5));
      animation: titleGlow 4.5s ease-in-out infinite;
    }
    @keyframes titleGlow {
      0%, 100% { filter: drop-shadow(0 0 18px rgba(48,132,255,.35)); }
      50%      { filter: drop-shadow(0 0 40px rgba(48,132,255,.65)); }
    }
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,.55);
      max-width: 500px; margin: 0 auto 34px; line-height: 1.7;
    }
    .hero-ctas { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .btn-fill {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--b-600); color: #fff;
      font-size: .925rem; font-weight: 700; padding: 14px 28px;
      border-radius: 99px; border: none; cursor: pointer;
      box-shadow: 0 6px 24px rgba(1,100,244,.45);
      transition: background .25s, transform .25s var(--ease), box-shadow .25s;
    }
    .btn-fill:hover {
      background: var(--b-500); transform: translateY(-3px);
      box-shadow: 0 12px 34px rgba(1,100,244,.6);
    }
    .btn-fill svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
    .btn-fill:hover svg { transform: translateX(4px); }
    .btn-glass {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,.06); color: #fff;
      border: 1px solid rgba(255,255,255,.14);
      font-size: .925rem; font-weight: 600; padding: 14px 26px;
      border-radius: 99px; backdrop-filter: blur(10px);
      transition: background .25s, border-color .25s, transform .25s var(--ease);
    }
    .btn-glass:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); transform: translateY(-3px); }
    .btn-glass svg { width: 16px; height: 16px; }

    /* ── Palco de cards flutuantes do hero ── */
    .hero-stage {
      position: relative; z-index: 2;
      max-width: 1000px; margin: 76px auto 0; height: 400px;
    }
    .float { position: absolute; will-change: transform; }

    /* card central */
    .stage-main {
      left: 50%; top: 34px; transform: translateX(-50%);
      width: 400px;
      background: linear-gradient(165deg, #131e33, #0a1120);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-l);
      padding: 22px; text-align: left;
      box-shadow: 0 40px 90px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.07);
    }
    .sm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
    .sm-title { color: #fff; font-size: .875rem; font-weight: 700; }
    .sm-sub { color: rgba(255,255,255,.35); font-size: .7rem; }
    .sm-row {
      display: flex; align-items: center; gap: 11px;
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px; padding: 11px 13px; margin-bottom: 8px;
      transition: background .25s, border-color .25s;
    }
    .sm-row:hover { background: rgba(59,130,246,.09); border-color: rgba(59,130,246,.3); }
    .sm-thumb {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      display: grid; place-items: center; font-size: 1rem;
      background: rgba(255,255,255,.06);
    }
    .sm-info { flex: 1; min-width: 0; }
    .sm-name { color: #fff; font-size: .78rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sm-meta { color: rgba(255,255,255,.35); font-size: .68rem; }
    .sm-val { color: #fff; font-size: .78rem; font-weight: 700; }
    .sm-tag {
      font-size: .62rem; font-weight: 700; padding: 2px 7px; border-radius: 5px;
      background: rgba(59,130,246,.18); color: var(--b-300);
    }
    .sm-cta {
      margin-top: 14px; width: 100%; text-align: center;
      background: var(--b-600); color: #fff; font-size: .8rem; font-weight: 700;
      padding: 11px; border-radius: 12px; display: block;
      box-shadow: 0 4px 16px rgba(1,100,244,.4);
      transition: background .25s;
    }
    .sm-cta:hover { background: var(--b-500); }

    /* cards satélite */
    .chip {
      background: rgba(16,25,42,.86);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px; padding: 12px 15px;
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 44px rgba(0,0,0,.5);
      text-align: left;
    }
    .chip-label { color: rgba(255,255,255,.4); font-size: .64rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
    .chip-val { color: #fff; font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; }
    .chip-up {
      display: inline-flex; align-items: center; gap: 3px;
      color: #4ade80; font-size: .66rem; font-weight: 700; margin-top: 3px;
    }
    .chip-1 { left: 0;   top: 74px;  animation: bob 7s ease-in-out infinite; }
    .chip-2 { right: 6px; top: 40px;  animation: bob 8s ease-in-out .6s infinite; }
    .chip-3 { left: 30px; bottom: 30px; animation: bob 6.4s ease-in-out .3s infinite; }
    .chip-4 { right: 18px; bottom: 44px; animation: bob 7.6s ease-in-out .9s infinite; }
    @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

    .chip-avatars { display: flex; align-items: center; gap: 10px; }
    .av-stack { display: flex; }
    .av {
      width: 26px; height: 26px; border-radius: 50%;
      border: 2px solid #101a2c; margin-left: -8px;
      display: grid; place-items: center;
      font-size: .6rem; font-weight: 800; color: #fff;
    }
    .av:first-child { margin-left: 0; }

    .stage-glow {
      position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
      width: 70%; height: 90px;
      background: radial-gradient(ellipse at center, rgba(1,100,244,.35), transparent 70%);
      filter: blur(24px);
    }

    /* ═══════════════════════════════════════════════════════
       PARCEIROS
       ═══════════════════════════════════════════════════════ */
    .partners { padding: 76px 24px 60px; background: var(--bg); }
    .partners h2 {
      text-align: center; font-size: 1.35rem; font-weight: 700;
      letter-spacing: -.02em; color: var(--g-900); margin-bottom: 40px;
    }
    .partners-grid {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 18px 48px; max-width: 960px; margin: 0 auto;
    }
    .partner {
      display: flex; align-items: center; gap: 9px;
      color: var(--g-500); font-size: .95rem; font-weight: 600;
      letter-spacing: -.01em; opacity: .62;
      transition: opacity .3s, color .3s, transform .3s var(--ease);
    }
    .partner:hover { opacity: 1; color: var(--g-900); transform: translateY(-2px); }
    .partner-mark {
      width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
      background: var(--b-600); display: grid; place-items: center;
    }
    .partner-mark svg { width: 12px; height: 12px; }
    .partners-note {
      text-align: center; margin-top: 40px;
      color: var(--g-400); font-size: .85rem;
    }
    .partners-note strong { color: var(--g-700); font-weight: 700; }

    /* ═══════════════════════════════════════════════════════
       SEÇÕES — base
       ═══════════════════════════════════════════════════════ */
    /* Desconta a navbar fixa nos âncoras. Vale nos dois caminhos: o scrollIntoView
       nativo e o Lenis respeitam scroll-margin — por isso o scrollTo não passa offset. */
    section[id] { scroll-margin-top: 80px; }

    section { padding: 96px 24px; }
    .sec-head { text-align: center; margin-bottom: 54px; }
    .sec-title {
      font-size: clamp(1.9rem, 3.8vw, 2.7rem);
      font-weight: 800; letter-spacing: -.015em; line-height: 1.15;
      color: var(--g-900); margin-bottom: 16px;
    }
    .sec-sub {
      color: var(--g-500); font-size: .95rem; line-height: 1.75;
      max-width: 560px; margin: 0 auto;
    }

    /* ═══════════════════════════════════════════════════════
       RECURSOS (6 cards)
       ═══════════════════════════════════════════════════════ */
    .features { background: var(--bg); position: relative; }
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
      max-width: 1080px; margin: 0 auto;
    }
    .f-card {
      background: var(--g-50);
      border: 1px solid var(--g-200);
      border-radius: var(--radius);
      padding: 26px 24px 28px;
      text-align: center;
      position: relative; overflow: hidden;
      transition: border-color .35s, box-shadow .35s, transform .35s var(--ease), background .35s;
    }
    .f-card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(59,130,246,.09), transparent 70%);
      opacity: 0; transition: opacity .4s;
    }
    .f-card:hover {
      background: var(--surface); border-color: var(--b-300);
      box-shadow: 0 18px 44px rgba(1,100,244,.12);
      transform: translateY(-5px);
    }
    .f-card:hover::before { opacity: 1; }
    .f-icon {
      width: 46px; height: 46px; border-radius: 13px;
      background: linear-gradient(150deg, var(--b-500), var(--b-700));
      display: grid; place-items: center; margin: 0 auto 16px;
      position: relative;
      box-shadow: 0 6px 18px rgba(1,100,244,.32);
      transition: transform .4s var(--ease);
    }
    .f-card:hover .f-icon { transform: scale(1.08) rotate(-4deg); }
    .f-icon svg { width: 21px; height: 21px; stroke: #fff; }
    .f-card h3 { font-size: .95rem; font-weight: 700; color: var(--g-900); margin-bottom: 7px; position: relative; }
    .f-card p { font-size: .82rem; color: var(--g-500); line-height: 1.65; position: relative; }

    /* ═══════════════════════════════════════════════════════
       SPLIT (texto + visual)
       ═══════════════════════════════════════════════════════ */
    .split {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto;
    }
    .split-title {
      font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800;
      letter-spacing: -.015em; line-height: 1.16; color: var(--g-900);
      margin: 0 0 16px;  /* sem margem no topo: o badge que ela separava saiu */
    }
    .split-txt { color: var(--g-500); font-size: .92rem; line-height: 1.75; margin-bottom: 22px; }
    .check-list { list-style: none; margin-bottom: 28px; }
    .check-list li {
      display: flex; align-items: flex-start; gap: 11px;
      font-size: .875rem; color: var(--g-700); font-weight: 500;
      padding: 7px 0;
    }
    .check-ic {
      width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0;
      background: var(--b-600); display: grid; place-items: center; margin-top: 2px;
    }
    .check-ic svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3.5; }
    .btn-blue {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--b-600); color: #fff;
      font-size: .875rem; font-weight: 700; padding: 12px 24px;
      border-radius: 99px;
      box-shadow: 0 6px 20px rgba(1,100,244,.35);
      transition: background .25s, transform .25s var(--ease), box-shadow .25s;
    }
    .btn-blue:hover { background: var(--b-500); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(1,100,244,.5); }
    .btn-blue svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
    .btn-blue:hover svg { transform: translateX(3px); }

    /* card "painel" claro */
    .panel {
      background: var(--surface); border: 1px solid var(--g-200);
      border-radius: var(--radius-l); padding: 20px;
      box-shadow: 0 26px 60px rgba(15,23,42,.1);
    }
    .panel-row {
      display: flex; align-items: center; gap: 12px;
      padding: 13px; border-radius: 13px;
      border: 1px solid var(--g-100); margin-bottom: 8px;
      transition: border-color .3s, background .3s, transform .3s var(--ease);
    }
    .panel-row:hover { border-color: var(--b-300); background: var(--b-50); transform: translateX(4px); }
    .panel-flag {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      display: grid; place-items: center; font-size: 1rem;
      background: var(--g-100);
    }
    .panel-info { flex: 1; min-width: 0; }
    .panel-name { font-size: .82rem; font-weight: 700; color: var(--g-900); }
    .panel-meta { font-size: .7rem; color: var(--g-400); }
    .panel-val { text-align: right; }
    .panel-num { font-size: .82rem; font-weight: 800; color: var(--g-900); }
    .panel-delta { font-size: .68rem; font-weight: 700; color: #16a34a; }
    .panel-foot {
      display: flex; align-items: center; justify-content: space-between;
      background: var(--g-50); border-radius: 13px; padding: 13px; margin-top: 12px;
    }
    .panel-foot-l { font-size: .7rem; color: var(--g-400); }
    .panel-foot-v { font-size: .95rem; font-weight: 800; color: var(--g-900); }

    /* ── Placeholder de imagem ── */
    .img-slot {
      border: 2px dashed var(--g-300); border-radius: var(--radius-l);
      background:
        repeating-linear-gradient(45deg, var(--g-50) 0 12px, var(--surface) 12px 24px);
      min-height: 380px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; text-align: center; padding: 32px;
      transition: border-color .3s, background .3s;
    }
    .img-slot:hover { border-color: var(--b-400); }
    .img-slot-ic {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--b-50); border: 1px solid var(--b-200);
      display: grid; place-items: center;
    }
    .img-slot-ic svg { width: 24px; height: 24px; stroke: var(--b-600); }
    .img-slot-t { font-size: .875rem; font-weight: 700; color: var(--g-700); }
    .img-slot-d { font-size: .78rem; color: var(--g-400); max-width: 260px; line-height: 1.6; }
    .img-slot-dim {
      font-size: .68rem; font-weight: 700; color: var(--b-600);
      background: var(--b-50); border: 1px solid var(--b-200);
      padding: 3px 10px; border-radius: 99px; margin-top: 4px;
    }

    /* grid 2x2 de vantagens */
    .mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
    .mini {
      display: flex; align-items: flex-start; gap: 9px;
      background: var(--g-50); border: 1px solid var(--g-200);
      border-radius: 11px; padding: 12px;
      font-size: .78rem; font-weight: 600; color: var(--g-700); line-height: 1.5;
      transition: border-color .3s, background .3s, transform .3s var(--ease);
    }
    .mini:hover { border-color: var(--b-300); background: var(--surface); transform: translateY(-2px); }
    .mini .check-ic { width: 17px; height: 17px; }

    /* ═══════════════════════════════════════════════════════
       STATS
       ═══════════════════════════════════════════════════════ */
    .stats { padding: 40px 24px 96px; background: var(--bg); }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
      max-width: 1080px; margin: 0 auto;
    }
    .stat {
      background: var(--g-50); border: 1px solid var(--g-200);
      border-radius: var(--radius); padding: 28px 22px;
      transition: transform .35s var(--ease), box-shadow .35s;
    }
    .stat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,.08); }
    .stat-num {
      font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em;
      color: var(--g-900); line-height: 1;
    }
    .stat-num small { font-size: 1.3rem; font-weight: 700; }
    .stat-label { font-size: .78rem; color: var(--g-500); margin-top: 10px; line-height: 1.55; }
    .stat.hl {
      background: var(--b-600); border-color: var(--b-600);
      box-shadow: 0 18px 44px rgba(1,100,244,.4);
    }
    .stat.hl:hover { box-shadow: 0 24px 54px rgba(1,100,244,.5); }
    .stat.hl .stat-num { color: #fff; }
    .stat.hl .stat-label { color: rgba(255,255,255,.75); }

    /* ═══════════════════════════════════════════════════════
       PLANOS (escuro)
       ═══════════════════════════════════════════════════════ */
    .pricing {
      background: var(--dark-2); position: relative; overflow: hidden;
      padding: 96px 24px 104px;
    }
    .pricing-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 54px 54px;
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 10%, transparent 76%);
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 10%, transparent 76%);
    }
    .pricing-aura {
      position: absolute; width: 700px; height: 460px; border-radius: 50%;
      top: -100px; left: 50%; margin-left: -350px;
      background: rgba(1,100,244,.2); filter: blur(100px); z-index: 0;
      animation: drift1 20s ease-in-out infinite alternate;
    }
    .pricing .container { position: relative; z-index: 1; }
    .pricing .sec-title { color: #fff; }
    .pricing .sec-sub { color: rgba(255,255,255,.45); }

    .toggle {
      display: inline-flex; align-items: center; gap: 4px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 99px; padding: 4px; margin-top: 26px;
    }
    .toggle button {
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 700;
      font-family: inherit; padding: 8px 22px; border-radius: 99px;
      transition: background .3s var(--ease), color .3s;
    }
    .toggle button.on { background: var(--b-600); color: #fff; box-shadow: 0 4px 14px rgba(1,100,244,.45); }
    .toggle-save {
      font-size: .62rem; font-weight: 800; color: #4ade80;
      background: rgba(74,222,128,.14); padding: 2px 7px; border-radius: 5px; margin-left: 6px;
    }

    .plans {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
      max-width: 980px; margin: 0 auto; align-items: start;
    }
    .plan {
      background: linear-gradient(170deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-l); padding: 28px 26px 30px;
      backdrop-filter: blur(10px);
      transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
    }
    .plan:hover { border-color: rgba(59,130,246,.5); transform: translateY(-5px); box-shadow: 0 22px 54px rgba(0,0,0,.5); }
    .plan.pop {
      border-color: var(--b-500);
      box-shadow: 0 0 0 1px var(--b-500), 0 26px 64px rgba(1,100,244,.3);
      background: linear-gradient(170deg, rgba(59,130,246,.14), rgba(255,255,255,.02));
    }
    .plan-tag {
      display: inline-block; background: var(--b-600); color: #fff;
      font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
      padding: 4px 11px; border-radius: 99px; margin-bottom: 14px;
    }
    .plan-name { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .plan-desc { color: rgba(255,255,255,.4); font-size: .76rem; line-height: 1.6; margin-bottom: 20px; min-height: 38px; }
    .plan-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 22px; }
    .plan-val { color: #fff; font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
    .plan-per { color: rgba(255,255,255,.4); font-size: .78rem; font-weight: 500; }
    .plan-sep { border: none; border-top: 1px solid rgba(255,255,255,.09); margin-bottom: 20px; }
    .plan-list { list-style: none; margin-bottom: 24px; }
    .plan-list li {
      display: flex; align-items: flex-start; gap: 9px;
      color: rgba(255,255,255,.72); font-size: .8rem; padding: 6px 0;
    }
    .plan-list li svg { width: 15px; height: 15px; stroke: var(--b-400); stroke-width: 3; flex-shrink: 0; margin-top: 3px; }
    .plan-btn {
      display: block; text-align: center; padding: 12px;
      border-radius: 99px; font-size: .84rem; font-weight: 700;
      transition: background .25s, border-color .25s, transform .25s var(--ease);
    }
    .plan-btn-out {
      background: rgba(255,255,255,.06); color: #fff;
      border: 1px solid rgba(255,255,255,.16);
    }
    .plan-btn-out:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
    .plan-btn-fill { background: var(--b-600); color: #fff; box-shadow: 0 6px 20px rgba(1,100,244,.45); }
    .plan-btn-fill:hover { background: var(--b-500); transform: translateY(-2px); }

    /* ═══════════════════════════════════════════════════════
       FERRAMENTAS + ACCORDION
       ═══════════════════════════════════════════════════════ */
    .tools { background: var(--g-50); }

    /* card de review/analytics */
    .rev-card {
      background: var(--surface); border: 1px solid var(--g-200);
      border-radius: var(--radius-l); padding: 22px;
      box-shadow: 0 26px 60px rgba(15,23,42,.1);
    }
    .rev-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 8px; }
    .rev-stars svg { width: 17px; height: 17px; fill: #fbbf24; }
    .rev-avatars { display: flex; justify-content: center; margin-bottom: 6px; }
    .rev-avatars .av { width: 30px; height: 30px; border-color: var(--surface); }
    .rev-caption { text-align: center; font-size: .72rem; color: var(--g-400); margin-bottom: 20px; }
    .rev-caption strong { color: var(--g-900); font-weight: 800; }
    .rev-block { border-top: 1px solid var(--g-100); padding-top: 16px; }
    .rev-block-t { font-size: .7rem; font-weight: 700; color: var(--g-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
    .bar-row { margin-bottom: 12px; }
    .bar-head { display: flex; justify-content: space-between; font-size: .72rem; margin-bottom: 5px; }
    .bar-head span:first-child { color: var(--g-700); font-weight: 600; }
    .bar-head span:last-child { color: var(--g-400); font-weight: 700; }
    .bar-track { height: 7px; border-radius: 99px; background: var(--g-100); overflow: hidden; }
    .bar-fill {
      height: 100%; border-radius: 99px;
      background: linear-gradient(90deg, var(--b-500), var(--b-700));
      transition: width 1.4s var(--ease);
    }

    .acc { display: flex; flex-direction: column; gap: 10px; }
    .acc-item {
      background: var(--surface); border: 1px solid var(--g-200);
      border-radius: 13px; overflow: hidden;
      transition: border-color .3s, box-shadow .3s;
    }
    .acc-item.open { border-color: var(--b-400); box-shadow: 0 10px 32px rgba(1,100,244,.1); }
    .acc-btn {
      width: 100%; display: flex; align-items: center; gap: 12px;
      background: none; border: none; cursor: pointer; font-family: inherit;
      padding: 16px 18px; text-align: left;
      font-size: .86rem; font-weight: 700; color: var(--g-900);
    }
    .acc-ic {
      width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
      background: var(--b-50); border: 1px solid var(--b-200);
      display: grid; place-items: center;
    }
    .acc-ic svg { width: 13px; height: 13px; stroke: var(--b-600); }
    .acc-txt { flex: 1; }
    .acc-arrow { width: 15px; height: 15px; stroke: var(--g-400); flex-shrink: 0; transition: transform .35s var(--ease); }
    .acc-item.open .acc-arrow { transform: rotate(180deg); stroke: var(--b-600); }
    /* Sem JS o accordion não abre, então só colapsa quando há JS pra controlar. */
    .js .acc-body {
      max-height: 0; overflow: hidden;
      transition: max-height .45s var(--ease);
    }
    .acc-body p {
      padding: 0 18px 16px 56px;
      font-size: .8rem; color: var(--g-500); line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════════
       DEPOIMENTOS
       ═══════════════════════════════════════════════════════ */
    .testi { background: var(--bg); position: relative; overflow: hidden; }
    .testi-wrap { position: relative; max-width: 1180px; margin: 0 auto; }
    .testi-wrap::before, .testi-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 3; pointer-events: none;
    }
    .testi-wrap::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
    .testi-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
    .testi-row { display: flex; gap: 16px; margin-bottom: 16px; }
    .testi-row.shift { margin-left: -90px; margin-right: -90px; }
    .t-card {
      flex: 1; min-width: 0;
      background: var(--surface); border: 1px solid var(--g-200);
      border-radius: var(--radius); padding: 20px;
      transition: border-color .35s, box-shadow .35s, transform .35s var(--ease);
    }
    .t-card:hover { border-color: var(--b-300); box-shadow: 0 16px 40px rgba(1,100,244,.1); transform: translateY(-4px); }
    .t-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .t-av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; font-weight: 800; color: #fff; flex-shrink: 0; }
    .t-name { font-size: .8rem; font-weight: 700; color: var(--g-900); }
    .t-role { font-size: .68rem; color: var(--g-400); }
    .t-txt { font-size: .8rem; color: var(--g-500); line-height: 1.7; margin-bottom: 12px; }
    .t-stars { display: flex; gap: 2px; }
    .t-stars svg { width: 13px; height: 13px; fill: #fbbf24; }

    /* ═══════════════════════════════════════════════════════
       CTA FINAL
       ═══════════════════════════════════════════════════════ */
    .cta-outer { padding: 40px 24px 96px; background: var(--bg); }
    .cta-box {
      max-width: 1080px; margin: 0 auto;
      background: var(--dark-2); border-radius: 30px;
      padding: 76px 40px 80px; text-align: center;
      position: relative; overflow: hidden;
      border: 1px solid rgba(255,255,255,.07);
    }
    .cta-box-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 46px 46px;
      -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 10%, transparent 72%);
      mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 10%, transparent 72%);
    }
    .cta-box-aura {
      position: absolute; width: 620px; height: 400px; border-radius: 50%;
      bottom: -180px; left: 50%; margin-left: -310px;
      background: rgba(1,100,244,.35); filter: blur(90px); z-index: 0;
      animation: drift1 16s ease-in-out infinite alternate;
    }
    .cta-in { position: relative; z-index: 1; }
    .cta-stars { display: flex; justify-content: center; align-items: center; gap: 4px; margin-bottom: 16px; }
    .cta-stars svg { width: 15px; height: 15px; fill: #fbbf24; }
    .cta-stars b { color: #fff; font-size: .78rem; margin-left: 5px; }
    .cta-avatars { display: flex; justify-content: center; margin-bottom: 10px; }
    .cta-avatars .av { width: 32px; height: 32px; border-color: var(--dark-2); }
    .cta-note { color: rgba(255,255,255,.4); font-size: .76rem; margin-bottom: 26px; }
    .cta-note strong { color: #fff; font-weight: 700; }
    .cta-box h2 {
      font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800;
      letter-spacing: -.02em; line-height: 1.1; color: #fff;
      max-width: 620px; margin: 0 auto 18px;
    }
    .cta-box h2 em {
      font-style: normal;
      background: linear-gradient(120deg, var(--b-300), var(--b-500));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .cta-box p { color: rgba(255,255,255,.5); font-size: .92rem; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

    /* ═══════════════════════════════════════════════════════
       FOOTER
       ═══════════════════════════════════════════════════════ */
    footer { background: var(--dark); padding: 68px 24px 28px; }
    .f-inner { max-width: 1180px; margin: 0 auto; }
    .f-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .f-logo { display: inline-flex; align-items: center; margin-bottom: 14px; }
    .f-logo img { height: 28px; width: auto; }
    .f-brand p { color: rgba(255,255,255,.35); font-size: .78rem; line-height: 1.75; max-width: 250px; }
    .f-col h5 {
      color: #fff; font-size: .75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
    }
    .f-col a {
      display: block; color: rgba(255,255,255,.35); font-size: .8rem;
      margin-bottom: 11px; transition: color .25s, transform .25s var(--ease);
    }
    .f-col a:hover { color: #fff; transform: translateX(3px); }
    .f-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 24px; gap: 16px; flex-wrap: wrap;
    }
    .f-copy { color: rgba(255,255,255,.25); font-size: .75rem; }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVO
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 1000px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
      .plans { grid-template-columns: 1fr; max-width: 420px; }
      .f-top { grid-template-columns: 1fr 1fr 1fr; }
      .f-brand { grid-column: 1 / -1; }
      .testi-row.shift { margin-left: 0; margin-right: 0; }
    }
    @media (max-width: 880px) {
      .split { grid-template-columns: 1fr; gap: 40px; }
      .split-visual { order: -1; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .nav-burger { display: grid; }
      .nav-signin { display: none; }
      .hero-stage { height: 520px; }
      .stage-main { width: min(360px, 90%); top: 90px; }
      .chip-1 { left: 0; top: 0; }
      .chip-2 { right: 0; top: 8px; }
      .chip-3 { left: 0; bottom: 40px; }
      .chip-4 { right: 0; bottom: 10px; }
      .testi-row { flex-direction: column; }
      .t-card:nth-child(n+3) { display: none; }
    }
    @media (max-width: 620px) {
      section { padding: 72px 20px; }
      .hero { padding: 120px 20px 90px; }
      /* Espaço apertado: só o mark do logo, pra o CTA e o burger caberem sem quebrar linha */
      nav.navbar { padding: 10px 12px; }
      .nav-inner { padding: 0 8px 0 12px; }
      .nav-logo .logo-wide { display: none; }
      .nav-logo .logo-mark { display: block; height: 26px; }
      .nav-signup { font-size: .78rem; padding: 9px 14px; }
      .theme-btn { width: 34px; height: 34px; }
      .theme-btn svg { width: 15px; height: 15px; }
      .nav-menu { left: 12px; right: 12px; }
      .features-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .mini-grid { grid-template-columns: 1fr; }
      .f-top { grid-template-columns: 1fr 1fr; }
      .cta-box { padding: 56px 24px 60px; border-radius: 22px; }
      .hero-ctas .btn-fill, .hero-ctas .btn-glass { width: 100%; justify-content: center; }
      .partners-grid { gap: 14px 28px; }
      .f-bottom { flex-direction: column; align-items: flex-start; }
    }
