/* =====================================================
   Kora Hub — Estilos principais
   Gerado por Kora Hub / Claude
   ===================================================== */

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

    :root {
      --bg-base:       #0B0A17;
      --bg-surface:    #111026;
      --bg-card:       #161430;
      --bg-card-hover: #1C1A38;
      --green:         #C8F435;
      --green-dim:     rgba(200,244,53,.12);
      --green-glow:    rgba(200,244,53,.35);
      --purple:        #6B21E8;
      --purple-mid:    #8B3FFF;
      --purple-dim:    rgba(107,33,232,.15);
      --white:         #FFFFFF;
      --gray-1:        #E8E8F0;
      --gray-2:        #9898B0;
      --gray-3:        #5A5A72;
      --border:        rgba(255,255,255,.07);
      --border-green:  rgba(200,244,53,.22);
      --font:          'Montserrat', sans-serif;
      --max-w:         1180px;
      --r:             14px;
      --r-lg:          22px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg-base);
      color: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* =========================================
       LAYOUT
    ========================================= */
    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    .section { padding: 108px 0; }
    .section--alt { background: var(--bg-surface); }

    /* =========================================
       TYPOGRAPHY HELPERS
    ========================================= */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      border-radius: 100px;
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 26px;
    }
    .eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
    }

    h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }

    .title-xl { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.025em; }
    .title-lg { font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -.02em; }
    .title-md { font-size: clamp(1.3rem, 2vw, 1.65rem); }

    .hl { color: var(--green); }

    .lead {
      font-size: 1.1rem;
      color: var(--gray-2);
      line-height: 1.75;
      max-width: 560px;
      margin-bottom: 52px;
    }

    .center { text-align: center; }
    .center .lead { margin-left: auto; margin-right: auto; }

    /* =========================================
       BUTTONS
    ========================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 34px;
      border-radius: 100px;
      font-family: var(--font);
      font-weight: 700;
      font-size: .92rem;
      letter-spacing: .02em;
      cursor: pointer;
      border: none;
      transition: all .25s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--green);
      color: var(--bg-base);
    }
    .btn-primary:hover {
      background: #d6ff44;
      transform: translateY(-2px);
      box-shadow: 0 10px 36px var(--green-glow);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--border);
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,.25);
      background: rgba(255,255,255,.04);
    }
    .btn svg { transition: transform .2s; }
    .btn:hover svg { transform: translateX(4px); }

    /* =========================================
       NAVIGATION
    ========================================= */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 22px 0;
      transition: all .3s ease;
    }
    .nav.stuck {
      background: rgba(11,10,23,.94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .nav__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav__brand {
      display: flex;
      align-items: center;
      line-height: 1;
    }
    .nav__brand-logo {
      height: 30px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 34px;
    }
    .nav__links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--gray-2);
      transition: color .2s;
    }
    .nav__links a:hover { color: var(--white); }
    .nav__actions { display: flex; align-items: center; gap: 14px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all .3s;
      display: block;
    }

    /* =========================================
       HERO
    ========================================= */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 90px;
      padding-bottom: 60px;
    }

    /* Atmospheric blobs */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(130px);
      pointer-events: none;
    }
    .blob-purple {
      width: 700px; height: 700px;
      background: var(--purple);
      opacity: .18;
      bottom: -260px; left: -180px;
    }
    .blob-green {
      width: 500px; height: 500px;
      background: var(--green);
      opacity: .08;
      top: -180px; right: -120px;
    }
    .blob-purple-2 {
      width: 400px; height: 400px;
      background: var(--purple-mid);
      opacity: .12;
      top: 20%; right: 10%;
    }

    /* Subtle grid overlay */
    .grid-overlay {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }

    .hero__title { margin-bottom: 22px; }

    .hero__sub {
      font-size: 1.15rem;
      color: var(--gray-2);
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }

    .hero__bar {
      display: flex;
      align-items: center;
      gap: 44px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .metric { flex-shrink: 0; }
    .metric__val {
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
      letter-spacing: -.02em;
    }
    .metric__lbl {
      font-size: .72rem;
      font-weight: 600;
      color: var(--gray-3);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-top: 5px;
    }
    .vline { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }

    /* =========================================
       PROBLEM
    ========================================= */
    .problem__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .prob-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
    .prob-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .93rem;
      color: var(--gray-2);
      line-height: 1.6;
    }
    .prob-list li .icon-x {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(255,70,70,.1);
      border: 1px solid rgba(255,70,70,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem;
      color: #ff5050;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .prob-cards { display: flex; flex-direction: column; gap: 14px; }
    .pcard {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 22px 24px;
      transition: border-color .3s, transform .3s;
    }
    .pcard:hover {
      border-color: rgba(200,244,53,.18);
      transform: translateX(4px);
    }
    .pcard--solution {
      border-color: var(--border-green);
      background: rgba(200,244,53,.03);
    }
    .pcard__ico {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(255,255,255,.05);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .pcard__ico--green { background: var(--green-dim); }
    .pcard__title {
      font-size: .9rem; font-weight: 700; margin-bottom: 4px;
    }
    .pcard__title--green { color: var(--green); }
    .pcard__text { font-size: .82rem; color: var(--gray-2); line-height: 1.5; }

    /* =========================================
       ABOUT / SOLUTION
    ========================================= */
    .about__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about__text p {
      font-size: .97rem;
      color: var(--gray-2);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .about__text strong { color: var(--white); }

    /* Hub card visual */
    .hub-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 38px 32px;
      position: relative;
      overflow: hidden;
    }
    .hub-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--purple-mid));
    }
    .hub-card__logo {
      text-align: center;
      margin-bottom: 30px;
    }
    .hub-card__name {
      font-size: 1.6rem; font-weight: 900; letter-spacing: .06em;
    }
    .hub-card__name span { color: var(--green); }
    .hub-card__tag {
      font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gray-3); margin-top: 4px;
    }
    .hub-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .hub-pillar {
      background: rgba(255,255,255,.03);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 16px 10px;
      text-align: center;
      transition: border-color .3s, background .3s;
    }
    .hub-pillar:hover {
      border-color: var(--border-green);
      background: var(--green-dim);
    }
    .hub-pillar__ico { font-size: 1.4rem; display: block; margin-bottom: 8px; }
    .hub-pillar__lbl {
      font-size: .7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .06em; color: var(--gray-2);
    }

    /* =========================================
       SERVICES
    ========================================= */
    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .svc {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 30px 28px;
      transition: border-color .3s, transform .3s, background .3s;
      position: relative;
      overflow: hidden;
    }
    .svc::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 0;
      background: linear-gradient(to top, rgba(200,244,53,.04), transparent);
      transition: height .4s;
    }
    .svc:hover {
      border-color: var(--border-green);
      transform: translateY(-5px);
    }
    .svc:hover::after { height: 100%; }

    .svc__ico {
      width: 50px; height: 50px;
      border-radius: 12px;
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 18px;
    }
    .svc__title {
      font-size: .95rem; font-weight: 700; margin-bottom: 10px;
    }
    .svc__text {
      font-size: .83rem; color: var(--gray-2); line-height: 1.65;
    }

    /* Wide card (last service) */
    .svc--wide {
      grid-column: span 3;
      background: linear-gradient(120deg, rgba(200,244,53,.06), var(--bg-card) 60%);
    }
    .svc--wide .svc__inner {
      display: flex; align-items: flex-start; gap: 22px;
    }
    .svc--wide .svc__ico { flex-shrink: 0; }
    .svc--wide .svc__text { max-width: 640px; }

    /* =========================================
       DIFFERENTIALS
    ========================================= */
    .diff__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .diff {
      display: flex;
      gap: 20px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 30px 28px;
      transition: border-color .3s;
    }
    .diff:hover { border-color: var(--border-green); }

    .diff__num {
      font-size: 3.5rem; font-weight: 900;
      color: rgba(200,244,53,.1);
      line-height: 1; flex-shrink: 0;
      letter-spacing: -.04em;
      user-select: none;
    }
    .diff__title {
      font-size: 1rem; font-weight: 700; margin-bottom: 10px;
    }
    .diff__text { font-size: .84rem; color: var(--gray-2); line-height: 1.65; }

    /* =========================================
       PROCESS
    ========================================= */
    .process__steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      position: relative;
    }
    .process__steps::before {
      content: '';
      position: absolute;
      top: 35px; left: 12%; right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-green) 30%, var(--border-green) 70%, transparent);
    }

    .step { text-align: center; position: relative; z-index: 1; }
    .step__circle {
      width: 70px; height: 70px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1px solid var(--border-green);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; font-weight: 900;
      color: var(--green);
      margin: 0 auto 20px;
    }
    .step__title { font-size: .93rem; font-weight: 700; margin-bottom: 10px; }
    .step__text { font-size: .8rem; color: var(--gray-2); line-height: 1.65; }

    /* =========================================
       SOCIAL PROOF / RESULTS
    ========================================= */
    .stats-band {
      background: linear-gradient(135deg, rgba(107,33,232,.12), rgba(200,244,53,.04));
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 50px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
      margin-bottom: 56px;
    }
    .stat__ico {
      font-size: 1.6rem;
      margin-bottom: 10px;
      display: block;
    }
    .stat__val-qual {
      font-size: 1.05rem; font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .stat__lbl {
      font-size: .78rem; font-weight: 500;
      color: var(--gray-2);
      line-height: 1.5;
    }

    .proof__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testi {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 30px 28px;
      transition: border-color .3s;
    }
    .testi:hover { border-color: var(--border-green); }
    .testi__stars { color: var(--green); font-size: .85rem; letter-spacing: 2px; margin-bottom: 16px; }
    .testi__quote {
      font-size: .87rem; color: var(--gray-2); line-height: 1.75;
      font-style: italic; margin-bottom: 22px;
    }
    .testi__author { display: flex; align-items: center; gap: 12px; }
    .testi__avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--purple-mid), var(--green));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .85rem; flex-shrink: 0;
      color: var(--bg-base);
    }
    .testi__name { font-size: .88rem; font-weight: 700; }
    .testi__role { font-size: .75rem; color: var(--gray-3); }

    /* =========================================
       OFFER / FREE DIAGNOSIS
    ========================================= */
    .offer-box {
      background: linear-gradient(135deg, rgba(107,33,232,.15), rgba(200,244,53,.04));
      border: 1px solid rgba(107,33,232,.3);
      border-radius: var(--r-lg);
      padding: 70px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .offer-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--purple-mid), var(--green));
    }
    .offer-box h2 { margin-bottom: 16px; }
    .offer-box .lead { color: var(--gray-2); margin: 0 auto 36px; max-width: 520px; text-align: center; }

    .checks {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      margin: 0 auto 38px;
      max-width: 420px;
      width: 100%;
    }
    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .95rem;
      color: var(--gray-2);
      line-height: 1.4;
      text-align: left;
      width: 100%;
      max-width: 340px;
    }
    .check-item::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      font-size: .85rem;
      flex-shrink: 0;
      min-width: 22px;
      height: 22px;
      background: var(--green-dim);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .offer-note {
      margin-top: 14px; font-size: .78rem; color: var(--gray-3);
    }

    /* Scarcity counter */
    .scarcity-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,80,80,.2);
      border-radius: var(--r);
      padding: 14px 28px;
      margin: 0 auto 20px;
      width: fit-content;
    }
    .scarcity-slots { display: flex; gap: 8px; align-items: center; }
    .scarcity-dot {
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--green);
      display: inline-block;
      transition: background .4s, transform .4s;
    }
    .scarcity-dot.taken {
      background: rgba(255,255,255,.15);
      transform: scale(.8);
    }
    .scarcity-text {
      font-size: .82rem; color: var(--gray-2); margin: 0;
    }
    .scarcity-text strong { color: var(--green); }

    /* FAQ section */
    .faq__list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color .3s;
    }
    .faq-item.open { border-color: var(--border-green); }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 28px;
      background: none;
      border: none;
      color: var(--white);
      font-family: var(--font);
      font-size: .97rem;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--green); }
    .faq-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem;
      color: var(--gray-2);
      transition: transform .3s, background .3s, color .3s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--green-dim);
      color: var(--green);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      padding: 0 28px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }
    .faq-a p {
      font-size: .88rem; color: var(--gray-2); line-height: 1.75;
    }
    .faq-a strong { color: var(--white); }

    /* Objection breaker before final CTA */
    .objection-bar {
      background: rgba(200,244,53,.05);
      border: 1px solid var(--border-green);
      border-radius: var(--r-lg);
      padding: 28px 36px;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 80px;
    }
    .objection-bar__ico {
      font-size: 2rem; flex-shrink: 0;
    }
    .objection-bar__title {
      font-size: .9rem; font-weight: 700; margin-bottom: 5px;
      color: var(--green);
    }
    .objection-bar__text {
      font-size: .84rem; color: var(--gray-2); line-height: 1.6;
      margin: 0;
    }
    @media (max-width: 768px) {
      .objection-bar { flex-direction: column; text-align: center; padding: 24px 20px; }
      .faq-q { padding: 18px 20px; font-size: .9rem; }
      .faq-a { padding: 0 20px; }
      .faq-item.open .faq-a { padding: 0 20px 18px; }
    }

    /* Exit intent popup */
    .popup-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.7);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .35s ease;
      padding: 20px;
    }
    .popup-overlay.visible { opacity: 1; pointer-events: all; }
    .popup-box {
      background: var(--bg-card);
      border: 1px solid var(--border-green);
      border-radius: var(--r-lg);
      padding: 48px 44px;
      max-width: 520px;
      width: 100%;
      text-align: center;
      position: relative;
      transform: scale(.92) translateY(16px);
      transition: transform .35s ease;
    }
    .popup-overlay.visible .popup-box { transform: scale(1) translateY(0); }
    .popup-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple-mid), var(--green));
      border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .popup-close {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--border);
      color: var(--gray-2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; cursor: pointer; line-height: 1;
      transition: all .2s;
    }
    .popup-close:hover { background: rgba(255,255,255,.12); color: var(--white); }
    .popup-eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,80,80,.1); border: 1px solid rgba(255,80,80,.2);
      border-radius: 100px; padding: 5px 14px;
      font-size: 11px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: #ff7070;
      margin-bottom: 20px;
    }
    .popup-eyebrow::before {
      content:''; width:6px; height:6px; border-radius:50%; background:#ff7070;
    }
    .popup-box h3 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.25; }
    .popup-box p { font-size: .9rem; color: var(--gray-2); line-height: 1.7; margin-bottom: 28px; }
    .popup-cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--green); color: var(--bg-base);
      padding: 15px 32px; border-radius: 100px;
      font-family: var(--font); font-size: .92rem; font-weight: 700;
      cursor: pointer; border: none; transition: all .25s;
      text-decoration: none;
    }
    .popup-cta:hover { background: #d6ff44; transform: translateY(-2px); box-shadow: 0 8px 28px var(--green-glow); }
    .popup-dismiss {
      display: block; margin-top: 14px;
      font-size: .78rem; color: var(--gray-3);
      cursor: pointer; transition: color .2s;
      background: none; border: none; font-family: var(--font);
    }
    .popup-dismiss:hover { color: var(--gray-2); }

    /* =========================================
       FINAL CTA BAND
    ========================================= */
    .cta-band {
      text-align: center;
      padding: 130px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-band__glow {
      position: absolute;
      width: 900px; height: 900px;
      border-radius: 50%;
      background: var(--purple);
      opacity: .08;
      filter: blur(200px);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .cta-band__inner { position: relative; z-index: 1; }
    .cta-band h2 { max-width: 680px; margin: 0 auto 18px; }
    .cta-band p { color: var(--gray-2); font-size: 1.05rem; margin-bottom: 40px; }
    .cta-band__btns {
      display: flex; justify-content: center;
      gap: 14px; flex-wrap: wrap;
    }

    /* =========================================
       FOOTER
    ========================================= */
    .footer {
      border-top: 1px solid var(--border);
      padding: 64px 0 32px;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }
    .footer__brand p {
      font-size: .85rem; color: var(--gray-3); line-height: 1.75;
      margin-top: 16px; max-width: 280px;
    }
    .footer__col h4 {
      font-size: .72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .1em;
      color: var(--gray-3); margin-bottom: 16px;
    }
    .footer__col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__col a {
      font-size: .85rem; color: var(--gray-2); transition: color .2s;
    }
    .footer__col a:hover { color: var(--green); }

    .footer__bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 26px;
      border-top: 1px solid var(--border);
    }
    .footer__copy { font-size: .78rem; color: var(--gray-3); }
    .socials { display: flex; gap: 10px; }
    .soc-btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-2); font-size: .9rem;
      transition: all .2s;
    }
    .soc-btn:hover {
      background: var(--green-dim); border-color: var(--border-green); color: var(--green);
    }

    /* =========================================
       SCROLL ANIMATIONS
    ========================================= */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 1024px) {
      .services__grid { grid-template-columns: repeat(2, 1fr); }
      .svc--wide { grid-column: span 2; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .section { padding: 72px 0; }

      .nav__links, .nav__actions .btn-outline { display: none; }
      .hamburger { display: flex; }

      .hero__bar { gap: 24px; flex-wrap: wrap; }
      .vline { display: none; }

      .problem__grid,
      .about__grid { grid-template-columns: 1fr; gap: 44px; }

      .services__grid { grid-template-columns: 1fr; }
      .svc--wide { grid-column: span 1; }
      .svc--wide .svc__inner { flex-direction: column; }

      .diff__grid,
      .proof__grid { grid-template-columns: 1fr; }

      .process__steps { grid-template-columns: repeat(2, 1fr); }
      .process__steps::before { display: none; }

      .stats-band {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px; gap: 24px;
      }

      .offer-box { padding: 44px 24px; }
      .cta-band { padding: 80px 0; }
      .cta-band__btns { flex-direction: column; align-items: center; }

      .footer__grid { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero__actions { flex-direction: column; align-items: flex-start; }
      .process__steps { grid-template-columns: 1fr; }
      .stats-band { grid-template-columns: 1fr; }
      .title-xl { font-size: 2.1rem; }
    }
