﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root, .lp-wrap {
      --green: #6aebaf;
      --green-dark: #4dd494;
      --green-dim: rgba(106,235,175,0.12);
      --bg: #0a0a0a;
      --bg2: #111111;
      --bg3: #161616;
      --border: rgba(255,255,255,0.08);
      --text: #f0f0f0;
      --muted: #aaa;
      --radius: 12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── UTILS ─── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section--tight { padding: 64px 0; }
    .tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      border: 1px solid rgba(106,235,175,0.3);
      border-radius: 100px;
      padding: 4px 14px;
      margin-bottom: 20px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-header .section-title { margin-bottom: 16px; }
    .section-header .tag { margin: 0 auto 16px; }
    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 48px;
    }

    /* ─── ANIMATE ON SCROLL ─── */
    .anim {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .65s ease, transform .65s ease;
    }
    .anim.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .anim-delay-1 { transition-delay: .1s; }
    .anim-delay-2 { transition-delay: .2s; }
    .anim-delay-3 { transition-delay: .3s; }
    .anim-delay-4 { transition-delay: .4s; }

    /* ─── NAVBAR ─── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
    }
    .navbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .navbar__brand {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -.01em;
    }
    .navbar__brand span { color: var(--green); }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn--green {
      background: linear-gradient(120deg, #29c97a 0%, #6aebaf 60%, #9ef5d0 100%);
      color: #000;
      padding: 11px 22px;
      border-radius: 8px;
      box-shadow: 0 2px 16px rgba(106,235,175,0.25);
    }
    .btn--green:hover {
      background: linear-gradient(120deg, #22b06a 0%, #4dd494 60%, #7eefc0 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(106,235,175,0.4);
    }
    .btn--green-lg {
      background: linear-gradient(120deg, #29c97a 0%, #6aebaf 55%, #9ef5d0 100%);
      color: #000;
      padding: 18px 36px;
      border-radius: 10px;
      font-size: 17px;
      box-shadow: 0 4px 24px rgba(106,235,175,0.35);
    }
    .btn--green-lg:hover {
      background: linear-gradient(120deg, #22b06a 0%, #4dd494 55%, #7eefc0 100%);
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(106,235,175,0.5);
    }

    /* ─── HERO ─── */
    .hero {
      padding: 140px 0 56px;
      text-align: center;
    }
    .hero__headline {
      font-size: clamp(30px, 5.5vw, 58px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -.03em;
      max-width: 820px;
      margin: 0 auto 24px;
    }
    .hero__headline em {
      font-style: italic;
      display: inline-block;
      background: linear-gradient(120deg, #4dd494 0%, #6aebaf 45%, #a8f5d8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero__sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 44px;
      line-height: 1.6;
    }
    .hero__cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .hero__note {
      font-size: 13px;
      color: #555;
      margin-top: 14px;
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .stats-bar__inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      width: 100%;
    }
    .stat-item {
      padding: 40px 0;
      text-align: center;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item__number {
      display: block;
      font-size: clamp(22px, 3.5vw, 40px);
      font-weight: 900;
      color: var(--green);
      letter-spacing: -.03em;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .stat-item__label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ─── VSL ─── */
    .vsl { text-align: center; }
    .vsl__label {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 12px;
      font-weight: 500;
    }
    .vsl__wrapper {
      position: relative;
      max-width: 860px;
      margin: 0 auto;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg2);
    }
    .vsl__ratio {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }
    .vsl__ratio iframe,
    .vsl__placeholder {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .vsl__placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: var(--bg3);
      color: var(--muted);
      font-size: 16px;
      font-weight: 500;
    }
    .vsl__play {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .vsl__play svg { margin-left: 4px; }

    /* ─── SOBRE MIM ─── */
    .about {
      background-color: var(--bg2);
      background-image:
        linear-gradient(rgba(106,235,175,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      position: relative;
    }
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about__photo {
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg3);
      position: relative;
      border: 1px solid var(--border);
      aspect-ratio: 3/4;
    }
    .about__photo img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 38%;
      display: block;
    }
    .about__photo::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 22%;
      background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
      pointer-events: none;
    }
    .about__photo-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .about__photo-relaxed {
      margin: 20px 0 24px;
    }
    .about__photo-relaxed-placeholder {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--bg3);
      border: 1px dashed rgba(106,235,175,0.25);
      border-radius: 12px;
      padding: 20px;
      color: var(--muted);
      font-size: 13px;
    }
    .about__photo-icon {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(106,235,175,0.1);
      border: 2px dashed rgba(106,235,175,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about__text p {
      font-size: 18px;
      line-height: 1.75;
      color: #ccc;
      margin-bottom: 20px;
    }
    .about__text p strong { color: #fff; }
    .about__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .badge {
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      background: var(--green-dim);
      color: var(--green);
      border: 1px solid rgba(106,235,175,0.25);
    }

    /* ─── RESULTADOS ─── */
    .results__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .result-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }
    .result-card:hover {
      border-color: rgba(106,235,175,0.4);
      transform: translateY(-4px);
    }
    .result-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--green);
    }
    .result-card__brand {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--green);
      margin-bottom: 16px;
    }
    .result-card__result {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .result-card__desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }
    .result-card__img {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 8px;
      background: var(--bg3);
      margin-top: 20px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: #444;
    }

    /* ─── COMO FUNCIONA ─── */
    .how { background: var(--bg2); }
    .how__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }
    .how__steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(16.66% + 16px);
      right: calc(16.66% + 16px);
      height: 1px;
      background: linear-gradient(90deg, var(--green), rgba(106,235,175,0.2));
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }
    .step__num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--green);
      color: #000;
      font-size: 22px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }
    .step__title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }
    .step__desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }
    .step__time {
      font-size: 12px;
      font-weight: 600;
      color: var(--green);
      background: var(--green-dim);
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* ─── CTA SECTION ─── */
    .cta-section {
      text-align: center;
    }
    .cta-section--mid {
      background: var(--bg2);
    }
    .cta-section__title {
      font-size: clamp(24px, 4vw, 40px);
      font-weight: 900;
      line-height: 1.2;
      max-width: 640px;
      margin: 0 auto 16px;
    }
    .cta-section__sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto 36px;
    }
    .cta-section__note {
      font-size: 13px;
      color: #444;
      margin-top: 14px;
    }

    /* ─── FAQ ─── */
    .faq__list { max-width: 720px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-item__q {
      width: 100%;
      background: none;
      border: none;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      padding: 22px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: color .2s;
    }
    .faq-item__q:hover { color: var(--green); }
    .faq-item__icon {
      flex-shrink: 0;
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s, background .2s, border-color .2s;
    }
    .faq-item.open .faq-item__icon {
      transform: rotate(45deg);
      background: var(--green);
      border-color: var(--green);
    }
    .faq-item.open .faq-item__icon svg { stroke: #000; }
    .faq-item__a {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .4s ease;
    }
    .faq-item.open .faq-item__a {
      max-height: 400px;
      padding-bottom: 22px;
    }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 48px 0;
    }
    .footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer__brand {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }
    .footer__brand span { color: var(--green); }
    .footer__info {
      font-size: 13px;
      color: #444;
      margin-top: 4px;
    }
    .footer__links {
      display: flex;
      gap: 20px;
    }
    .footer__link {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }
    .footer__link:hover { color: var(--green); }

    /* ─── MODAL ─── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .modal {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      width: 100%;
      max-width: 580px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(20px) scale(.97);
      transition: transform .3s;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }
    .modal-overlay.open .modal {
      transform: translateY(0) scale(1);
    }
    .modal__header {
      padding: 28px 32px 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }
    .modal__title {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.3;
      color: #fff;
    }
    .modal__title span { color: var(--green); }
    .modal__close {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: none;
      color: var(--muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
      margin-top: 2px;
    }
    .modal__close:hover { background: rgba(255,255,255,0.08); color: #fff; }
    .modal__body { padding: 24px 32px 32px; }
    .modal__sub {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    /* ─── FORM ─── */
    .form-group { margin-bottom: 16px; }
    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #aaa;
      margin-bottom: 6px;
    }
    .form-label .req { color: var(--green); }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      padding: 12px 14px;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .form-input::placeholder,
    .form-textarea::placeholder { color: #444; }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(106,235,175,0.12);
    }
    .form-input.error,
    .form-select.error,
    .form-textarea.error {
      border-color: #e53e3e;
    }
    .form-select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }
    .form-select option { background: #1a1a1a; }
    .form-textarea { min-height: 90px; resize: vertical; line-height: 1.5; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      font-size: 13px;
      color: #888;
      line-height: 1.5;
      margin-top: 4px;
    }
    .form-checkbox input {
      width: 18px; height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
      accent-color: var(--green);
      cursor: pointer;
    }
    .form-error {
      font-size: 12px;
      color: #e53e3e;
      margin-top: 4px;
      display: none;
    }
    .form-submit {
      width: 100%;
      margin-top: 24px;
      padding: 16px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
    }

    /* ─── SUCCESS ─── */
    .modal__success {
      display: none;
      text-align: center;
      padding: 48px 32px;
    }
    .modal__success.show { display: block; }
    .modal__success-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--green-dim);
      border: 2px solid rgba(106,235,175,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .modal__success h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .modal__success p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 360px;
      margin: 0 auto;
    }

    /* ─── TRIÂNGULO DOURADO ─── */
    .triangle-section {
      text-align: center;
      position: relative;
    }
    .triangle-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: 0; right: 0;
      height: 80px;
      background-color: var(--bg2);
      background-image:
        linear-gradient(rgba(106,235,175,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.05) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
    }
    .triangle-wrap {
      position: relative;
      max-width: 560px;
      margin: 0 auto 48px;
      padding: 56px 24px 40px;
    }
    .triangle-svg-wrap {
      position: relative;
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
    }
    .triangle-svg-wrap svg { width: 100%; height: auto; display: block; }
    .triangle-labels {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .t-label {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      transform: translate(-50%, -50%);
    }
    .t-label--top    { top: 8%; left: 50%; }
    .t-label--left   { top: 85%; left: 6%; }
    .t-label--right  { top: 85%; left: 94%; }
    .t-label__icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--green-dim);
      border: 1.5px solid rgba(106,235,175,0.4);
      display: flex; align-items: center; justify-content: center;
    }
    .t-label__name {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
    }
    .t-label__sub {
      font-size: 11px;
      color: var(--muted);
      white-space: nowrap;
    }
    .triangle-center {
      position: absolute;
      top: 48%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }
    .triangle-center__label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green);
    }
    .triangle-desc {
      max-width: 600px;
      margin: 0 auto;
      font-size: 16px;
      color: #aaa;
      line-height: 1.75;
    }
    .triangle-desc strong { color: #fff; }

    /* ─── HERO QUALIFIER BADGE ─── */
    .qual-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(10,10,10,0.6);
      border-radius: 14px;
      padding: 14px 28px 14px 14px;
      margin-bottom: 28px;
      position: relative;
      max-width: 720px;
    }
    /* white border + glow */
    .qual-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 1.5px solid rgba(255,255,255,0.7);
      box-shadow: 0 0 18px rgba(255,255,255,0.12), 0 0 40px rgba(255,255,255,0.06);
      pointer-events: none;
    }
    .qual-badge__icon {
      width: 40px; height: 40px;
      background: rgba(106,235,175,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(106,235,175,0.2);
    }
    .qual-badge__text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      text-align: center;
      flex: 1;
    }
    .qual-badge__small {
      font-size: 12px;
      font-weight: 500;
      color: #bbb;
      letter-spacing: .01em;
      line-height: 1.2;
    }
    .qual-badge__text strong {
      display: block;
      font-size: 24px;
      font-weight: 900;
      background: linear-gradient(90deg, #6aebaf 0%, #8df2c3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -.02em;
      line-height: 1.1;
    }

    /* ─── STARFIELD ─── */
    #starfield {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    /* ─── IMAGE MONTAGE PLACEHOLDER ─── */
    /* ─── PROOF CARDS (floating) ─── */
    .montage__desc {
      font-size: 15px;
      color: var(--muted);
      margin: 8px 0 0;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    /* ── Marks image marquee ── */
    .marks-track-outer {
      overflow: hidden;
      position: relative;
      margin-top: 32px;
      z-index: 2;
    }
    .marks-track-outer::before,
    .marks-track-outer::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .marks-track-outer::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
    .marks-track-outer::after  { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
    .marks-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: marks-scroll 28s linear infinite;
    }
    .marks-track.paused { animation-play-state: paused; }
    @keyframes marks-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marks-img {
      height: 280px;
      width: auto;
      border-radius: 12px;
      object-fit: contain;
      flex-shrink: 0;
      cursor: pointer;
      border: 1px solid rgba(255,255,255,0.07);
      background: var(--bg3);
    }
    .montage {
      padding: 48px 0 72px;
      overflow: visible;
      background-color: var(--bg2);
      background-image:
        linear-gradient(rgba(106,235,175,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      position: relative;
    }
    .montage::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(to bottom, var(--bg2), transparent);
      pointer-events: none;
      z-index: 1;
    }
    .montage::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 80px;
      background: linear-gradient(to top, var(--bg), transparent);
      pointer-events: none;
      z-index: 1;
    }
    .montage__label {
      text-align: center;
      margin-bottom: 0;
      position: relative;
      z-index: 2;
    }
    .proof-float {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      height: 400px;
    }
    .proof-card {
      position: absolute;
      width: 260px;
      border-radius: 16px;
      background: #1c1c1c;
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(106,235,175,0.06);
      transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
      cursor: default;
    }
    .proof-card:hover {
      transform: rotate(0deg) translateY(-12px) scale(1.04) !important;
      box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(106,235,175,0.18);
      z-index: 10 !important;
    }
    .proof-card img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    .proof-card__label {
      padding: 10px 14px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    /* 7-card fan */
    .proof-card:nth-child(1) { left: 0%;   top: 80px;  transform: rotate(-9deg);                    z-index: 1; }
    .proof-card:nth-child(2) { left: 10%;  top: 35px;  transform: rotate(-5deg);                    z-index: 2; }
    .proof-card:nth-child(3) { left: 22%;  top: 10px;  transform: rotate(-2deg);                    z-index: 3; }
    .proof-card:nth-child(4) { left: 50%;  top: 0;     transform: translateX(-50%) rotate(1deg);    z-index: 5; }
    .proof-card:nth-child(5) { right: 22%; top: 15px;  transform: rotate(3deg);                     z-index: 3; }
    .proof-card:nth-child(6) { right: 10%; top: 40px;  transform: rotate(6deg);                     z-index: 2; }
    .proof-card:nth-child(7) { right: 0%;  top: 85px;  transform: rotate(9deg);                     z-index: 1; }
    /* placeholder state (no img) */
    .proof-card--placeholder {
      min-height: 180px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; color: rgba(255,255,255,0.18);
      font-size: 12px;
    }
    @media (max-width: 768px) {
      .proof-float { height: 220px; max-width: 100%; }
      .proof-card { width: 100px; border-radius: 10px; }
      .proof-card:nth-child(1) { left: 0%;   top: 65px;  transform: rotate(-9deg);                    z-index: 1; }
      .proof-card:nth-child(2) { left: 9%;   top: 30px;  transform: rotate(-5deg);                    z-index: 2; }
      .proof-card:nth-child(3) { left: 20%;  top: 8px;   transform: rotate(-2deg);                    z-index: 3; }
      .proof-card:nth-child(4) { left: 50%;  top: 0;     transform: translateX(-50%) rotate(1deg);    z-index: 5; }
      .proof-card:nth-child(5) { right: 20%; top: 12px;  transform: rotate(3deg);                     z-index: 3; }
      .proof-card:nth-child(6) { right: 9%;  top: 35px;  transform: rotate(6deg);                     z-index: 2; }
      .proof-card:nth-child(7) { right: 0%;  top: 70px;  transform: rotate(9deg);                     z-index: 1; }
      .proof-card:hover { transform: rotate(0deg) translateY(-8px) scale(1.04) !important; }
    }

    /* ─── HERO VSL ─── */
    .hero .vsl__wrapper {
      max-width: 720px;
      margin: 32px auto;
    }

    /* ─── CAROUSEL / TESTIMONIALS ─── */
    .testimonials { overflow: hidden; padding-bottom: 48px; }
    .carousel-track-outer {
      overflow: hidden;
      position: relative;
    }
    .carousel-track-outer::before,
    .carousel-track-outer::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .carousel-track-outer::before {
      left: 0;
      background: linear-gradient(to right, var(--bg), transparent);
    }
    .carousel-track-outer::after {
      right: 0;
      background: linear-gradient(to left, var(--bg), transparent);
    }
    .carousel-track {
      display: flex;
      gap: 16px;
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }
    .testimonial-card {
      flex: 0 0 300px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
    }
    .testimonial-card__img {
      width: 100%;
      border-radius: 10px;
      display: block;
      background: var(--bg3);
      min-height: 200px;
      object-fit: cover;
    }
    .testimonial-card__placeholder {
      width: 100%;
      min-height: 200px;
      background: var(--bg3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444;
      font-size: 13px;
    }
    .testimonial-card__name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-top: 14px;
    }
    .testimonial-card__meta {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }
    .carousel-controls {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 24px;
    }
    .carousel-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg2);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .2s, background .2s;
    }
    .carousel-btn:hover {
      border-color: var(--green);
      background: rgba(106,235,175,0.08);
    }

    /* ─── SPIDER CHART ─── */
    .spider-section { background: var(--bg2); }
    .spider-wrap {
      max-width: 460px;
      margin: 0 auto;
      position: relative;
    }
    .spider-wrap svg { width: 100%; height: auto; display: block; }
    .spider-legend {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px 20px;
      margin-top: 28px;
      justify-content: center;
    }
    .spider-legend__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
      white-space: nowrap;
    }
    .spider-legend__dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .spider-legend__dot--gray { background: rgba(255,255,255,0.3); }
    .spider-legend__dot--green { background: #6aebaf; }

    /* ─── LOGOS MARQUEE ─── */
    .logos-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; overflow: hidden; }
    .logos-section__label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 28px; }
    .logos-track-outer { overflow: hidden; position: relative; }
    .logos-track-outer::before, .logos-track-outer::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
    }
    .logos-track-outer::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
    .logos-track-outer::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
    .logos-track { display: flex; gap: 60px; width: max-content; animation: logos-scroll 30s linear infinite; }
    .logos-track:hover { animation-play-state: paused; }
    /* 4 sets: animate -25% = exactly 1 set width → seamless loop */
    @keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }
    .logo-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; opacity: 0.55; transition: opacity .2s; cursor: default; }
    .logo-item:hover { opacity: 1; }
    .logo-item__icon { height: 36px; min-width: 28px; display: flex; align-items: center; justify-content: center; }
    .logo-item__name { font-size: 11px; font-weight: 600; color: #ccc; letter-spacing: .04em; white-space: nowrap; }

    /* ─── COMPARAÇÃO ─── */
    .comparison-section { background: var(--bg); }
    .comparison-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
    }
    .comp-card {
      border-radius: 16px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }
    .comp-card--bad {
      background: #0e0e0e;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .comp-card--good {
      background: #071a0e;
      border: 1px solid rgba(106,235,175,0.3);
      box-shadow: 0 0 40px rgba(106,235,175,0.08);
    }
    .comp-card--good::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #6aebaf, #8df2c3);
    }
    .comp-card__label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .comp-card--bad .comp-card__label { color: #888; }
    .comp-card--good .comp-card__label { color: var(--green); }
    .comp-metric {
      margin-bottom: 16px;
    }
    .comp-metric__name {
      font-size: 10px;
      color: #777;
      font-weight: 600;
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: .07em;
    }
    .comp-metric__value {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -.03em;
      line-height: 1;
    }
    .comp-card--bad .comp-metric__value { color: #fff; }
    .comp-card--good .comp-metric__value { color: var(--green); }
    .comp-metric__delta {
      font-size: 12px;
      font-weight: 600;
      margin-left: 8px;
      vertical-align: middle;
    }
    .delta-up { color: var(--green); }
    .delta-down { color: #e53e3e; }
    .comp-result {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .comp-result__label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #777;
      margin-bottom: 6px;
    }
    .comp-result__value {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -.03em;
    }
    .comp-card--bad .comp-result__value { color: #bbb; }
    .comp-card--good .comp-result__value {
      background: linear-gradient(135deg, #6aebaf, #8df2c3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .comp-vs {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .comp-vs__inner {
      display: none;
    }
    .comparison-note {
      text-align: center;
      font-size: 14px;
      color: #444;
      margin-top: 24px;
      font-style: italic;
    }

    /* ─── DASHBOARD GALLERY ─── */
    .dashboards-section { background: var(--bg2); }
    .dash-intro {
      text-align: center;
      margin-bottom: 48px;
    }
    .dash-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .dash-card {
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color .25s, transform .25s;
    }
    .dash-card:hover {
      border-color: rgba(106,235,175,0.3);
      transform: translateY(-3px);
    }
    .dash-card__bar {
      background: #1a1a1a;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .dash-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }
    .dash-dot:nth-child(1) { background: #ff5f57; }
    .dash-dot:nth-child(2) { background: #febc2e; }
    .dash-dot:nth-child(3) { background: #28c840; }
    .dash-card__bar-label {
      font-size: 10px;
      color: #333;
      margin-left: 4px;
      font-weight: 500;
    }
    .dash-card__img {
      aspect-ratio: 16/10;
      background: #111;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }
    .dash-card__img::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(106,235,175,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.03) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    .dash-img-placeholder {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .dash-img-placeholder svg { opacity: .25; }
    .dash-img-placeholder span {
      display: block;
      font-size: 11px;
      color: #333;
      margin-top: 8px;
    }
    .dash-card__footer {
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dash-card__brand {
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .dash-card__metric {
      font-size: 14px;
      font-weight: 800;
      color: var(--green);
    }

    @media (max-width: 768px) {
      .comparison-wrap { grid-template-columns: 1fr; max-width: 420px; }
      .dash-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .dash-grid { grid-template-columns: 1fr; }
    }

    /* ─── HERO IMERSIVO ─── */
    .hero {
      position: relative;
      overflow: visible;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(106,235,175,0.22) 0%, rgba(106,235,175,0.06) 45%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(transparent, var(--bg));
      pointer-events: none;
      z-index: 0;
    }
    .hero > .container { position: relative; z-index: 1; }

    /* ─── INLINE CTA ─── */
    .inline-cta {
      text-align: center;
      padding: 0 0 56px;
      background-color: var(--bg2);
      background-image:
        linear-gradient(rgba(106,235,175,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .btn--outline {
      background: transparent;
      color: var(--green);
      border: 1.5px solid rgba(106,235,175,0.5);
      padding: 13px 28px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      transition: background .2s, border-color .2s, transform .15s;
    }
    .btn--outline:hover {
      background: rgba(106,235,175,0.08);
      border-color: var(--green);
      transform: translateY(-1px);
    }

    /* ─── SECTION GLOW ─── */
    .section-glow {
      position: relative;
      overflow: hidden;
    }
    .section-glow::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(106,235,175,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .section-glow > .container { position: relative; z-index: 1; }

    /* ─── GRID BACKGROUND PATTERN ─── */
    .grid-bg {
      background-color: var(--bg2);
      background-image:
        linear-gradient(rgba(106,235,175,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.05) 1px, transparent 1px);
      background-size: 48px 48px;
      position: relative;
    }
    .grid-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(106,235,175,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ─── GRADIENT TEXT ─── */
    .grad-text {
      background: linear-gradient(135deg, #6aebaf 0%, #8df2c3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .grad-text--subtle {
      background: linear-gradient(135deg, #6aebaf 0%, #80ffb0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── 9 PILARES ─── */
    .pillars-section {
      position: relative;
    }
    .pillars-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 0; right: 0;
      height: 80px;
      background-color: var(--bg2);
      background-image:
        linear-gradient(rgba(106,235,175,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,235,175,0.05) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      border: 1px solid rgba(106,235,175,0.15);
      border-radius: 16px;
      overflow: hidden;
    }
    .pillar-card {
      background: rgba(10,10,10,0.85);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: background .25s;
      cursor: default;
      position: relative;
      border: 1px solid rgba(106,235,175,0.08);
    }
    .pillar-card--full {
      grid-column: auto; /* normal on desktop */
    }
    .pillar-card--full .pillar-card__line { display: block; }
    .pillar-card--full .pillar-card__desc { max-width: none; }
    /* on mobile: pillar 09 spans full width */
    @media (max-width: 768px) {
      .pillar-card--full {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        padding: 28px 24px;
        justify-content: flex-start;
      }
      .pillar-card--full .pillar-card__line { display: none; }
    }

    /* ─── INSPIRAÇÕES CARROSSEL ─── */
    .inspo-carousel-outer {
      position: relative;
      overflow: hidden;
      margin-top: 48px;
    }
    .inspo-track {
      display: flex;
      transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    }
    .inspo-slide {
      flex: 0 0 calc(50% - 8px);
      margin: 0 8px;
      background: var(--bg2);
      border: 1px solid rgba(106,235,175,0.1);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color .25s;
    }
    .inspo-slide:hover { border-color: rgba(106,235,175,0.28); }
    .inspo-photo {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: var(--bg3);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .inspo-photo img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .inspo-photo-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ic1, #888), var(--ic2, #444));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
    }
    .inspo-photo-hint { font-size: 11px; color: #333; }
    .inspo-slide-body { padding: 20px 20px 24px; }
    .inspo-slide-name {
      font-weight: 700;
      font-size: 17px;
      color: #fff;
      margin-bottom: 4px;
    }
    .inspo-slide-role {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }
    .inspo-slide-desc {
      font-size: 13px;
      color: #999;
      line-height: 1.65;
      margin: 0;
    }
    .inspo-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
    }
    .inspo-nav-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(106,235,175,0.25);
      background: transparent;
      color: var(--green);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s;
    }
    .inspo-nav-btn:hover {
      background: rgba(106,235,175,0.08);
      border-color: rgba(106,235,175,0.5);
    }
    .inspo-dots { display: flex; gap: 6px; }
    .inspo-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
      transition: background .2s, transform .2s;
      cursor: pointer;
    }
    .inspo-dot--active { background: var(--green); transform: scale(1.3); }
    @media (max-width: 600px) {
      .inspo-slide { flex: 0 0 calc(100% - 16px); }
    }


    /* ─── BA SLIDER ANNOTATIONS ─── */
    .ba-callout {
      position: absolute;
      z-index: 8;
      background: rgba(8,8,8,0.88);
      border-radius: 8px;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    }
    .ba-callout--green {
      color: #6aebaf;
      border: 1px solid rgba(106,235,175,0.5);
    }
    .ba-callout--red {
      color: #f87171;
      border: 1px solid rgba(248,113,113,0.4);
    }
    .ba-callout__dot {
      width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    }
    .ba-callout--green .ba-callout__dot { background: #6aebaf; box-shadow: 0 0 6px #6aebaf; }
    .ba-callout--red   .ba-callout__dot { background: #f87171; box-shadow: 0 0 6px #f87171; }
    .ba-callout__line {
      position: absolute;
      background: currentColor;
      opacity: 0.5;
    }
    @media (max-width: 600px) { .ba-callout { font-size: 9px; padding: 3px 7px; gap: 4px; } }

    /* ─── BEFORE / AFTER SLIDER ─── */
    .ba-reveal {
      position: relative;
      overflow: hidden;
      border-radius: 0 0 16px 16px;
      cursor: ew-resize;
      user-select: none;
      touch-action: none;
      -webkit-tap-highlight-color: transparent;
      border: 1px solid rgba(255,255,255,0.07);
      --pos: 50%;
      background: var(--bg2);
    }
    .ba-reveal__layer {
      width: 100%;
    }
    .ba-reveal__layer img {
      display: block;
      width: 100%;
      height: auto;
      pointer-events: none;
      object-position: top left;
    }
    .ba-reveal__before-layer {
      position: absolute;
      inset: 0;
      clip-path: inset(0 calc(100% - var(--pos)) 0 0);
      overflow: hidden;
    }
    .ba-reveal__before-layer img {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top left;
    }
    .ba-reveal__handle {
      position: absolute;
      top: 0; bottom: 0;
      left: var(--pos);
      transform: translateX(-50%);
      width: 3px;
      background: rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: ew-resize;
      z-index: 10;
    }
    .ba-reveal__btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 16px rgba(0,0,0,0.45);
      flex-shrink: 0;
    }
    .ba-reveal__btn svg { width: 18px; height: 18px; }
    .ba-reveal-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0;
    }
    .ba-lbl {
      font-size: 13px;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 8px 8px 0 0;
      font-family: Inter, -apple-system, sans-serif;
    }
    .ba-lbl--before {
      background: rgba(248,113,113,0.12);
      border: 1px solid rgba(248,113,113,0.3);
      border-bottom: none;
      color: #f87171;
    }
    .ba-lbl--after {
      background: rgba(106,235,175,0.12);
      border: 1px solid rgba(106,235,175,0.3);
      border-bottom: none;
      color: #6aebaf;
    }
    /* BA reveal wrapper (with optional stats below) */
    .ba-reveal-wrap { max-width: 780px; margin: 40px auto 0; }
    .ba-reveal-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 14px;
    }
    .ba-reveal-stats-col { display: flex; flex-direction: column; gap: 6px; }
    .ba-reveal-stats-col li {
      list-style: none;
      padding: 7px 12px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }
    .ba-reveal-stats-col--red li {
      background: rgba(248,113,113,0.08);
      border: 1px solid rgba(248,113,113,0.22);
      color: #f87171;
    }
    .ba-reveal-stats-col--green li {
      background: rgba(106,235,175,0.08);
      border: 1px solid rgba(106,235,175,0.22);
      color: #6aebaf;
    }
    @media (max-width: 480px) {
      .ba-reveal-stats-row { grid-template-columns: 1fr; }
    }
    .ba-note {
      text-align: center;
      font-size: 12px;
      color: #444;
      margin-top: 14px;
    }

    .pillar-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(106,235,175,0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
    }
    .pillar-card:hover { background: rgba(106,235,175,0.04); }
    .pillar-card:hover::after { opacity: 1; }
    .pillar-card__num {
      font-size: 42px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.04em;
      background: linear-gradient(135deg, #6aebaf 0%, rgba(106,235,175,0.3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pillar-card__name {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }
    .pillar-card__desc {
      font-size: 13px;
      color: #999;
      line-height: 1.65;
    }
    .pillar-card__line {
      width: 24px;
      height: 2px;
      background: var(--green);
      border-radius: 1px;
      margin: 2px 0;
    }

    @media (max-width: 768px) {
      .pillars-grid { grid-template-columns: repeat(2, 1fr); }
      .t-label__name { font-size: 12px; }
      .t-label__icon { width: 36px; height: 36px; }
      .pillar-card__num { font-size: 32px; }
    }
    @media (max-width: 480px) {
      .pillars-grid { grid-template-columns: 1fr; }
    }

    /* ─── DIVIDER ─── */
    .divider {
      width: 48px;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
      margin: 0 auto 40px;
    }
    .divider--left { margin-left: 0; }

    /* ─── RESPONSIVE ─── */
    /* ══════════════ MOBILE ══════════════ */
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .section--tight { padding: 48px 0; }
      .container { padding: 0 20px; }

      /* navbar */
      .navbar__brand { font-size: 13px; }
      .btn--green { padding: 10px 16px; font-size: 14px; white-space: nowrap; }

      /* hero */
      .hero { padding: 110px 0 64px; }
      .hero__headline { font-size: clamp(28px, 8vw, 44px); letter-spacing: -.02em; }
      .hero__sub { font-size: 16px; }
      .btn--green-lg { padding: 16px 28px; font-size: 16px; width: 100%; justify-content: center; }
      .qual-badge { max-width: 100%; padding: 12px 20px 12px 12px; }
      .qual-badge__text strong { font-size: 20px; }
      .qual-badge__small { font-size: 11px; }

      /* stats */
      .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
      .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
      .stat-item { padding: 24px 16px; }
      .stat-item__number { font-size: clamp(18px, 7vw, 28px); }

      /* about */
      .about__inner { grid-template-columns: 1fr; gap: 32px; }
      .about__photo { aspect-ratio: 4/3; max-width: 100%; }
      .about__text p { font-size: 16px; }

      /* results */
      .results__grid { grid-template-columns: 1fr; }
      .result-card { padding: 24px; }
      .result-card__result { font-size: 22px; }

      /* triangle */
      .triangle-svg-wrap { max-width: 320px; }
      .t-label__name { font-size: 11px; }
      .t-label__sub { display: none; }
      .t-label__icon { width: 32px; height: 32px; }
      .triangle-desc { font-size: 15px; }

      /* pillars */
      .pillars-grid { grid-template-columns: repeat(2, 1fr); }
      .pillar-card__num { font-size: 30px; }
      .pillar-card { padding: 20px 16px; }
      .pillar-card__name { font-size: 14px; }
      .pillar-card__desc { font-size: 12px; }

      /* how */
      .how__steps { grid-template-columns: 1fr; gap: 32px; }
      .how__steps::before { display: none; }
      .step { flex-direction: row; text-align: left; align-items: flex-start; }
      .step__num { flex-shrink: 0; width: 48px; height: 48px; font-size: 18px; margin-top: 4px; }
      .step__content { display: flex; flex-direction: column; gap: 6px; }

      /* comparison — força lado a lado em mobile */
      .comparison-wrap { grid-template-columns: 1fr 1fr !important; gap: 8px; max-width: 100%; }
      .comp-card { padding: 14px 12px; border-radius: 12px; }
      .comp-card__label { font-size: 9px; margin-bottom: 12px; padding-bottom: 10px; letter-spacing: .06em; }
      .comp-metric { margin-bottom: 8px; }
      .comp-metric__name { font-size: 9px; margin-bottom: 2px; }
      .comp-metric__value { font-size: 18px; }
      .comp-metric__delta { font-size: 10px; margin-left: 3px; display: block; }
      .comp-result { margin-top: 12px; padding-top: 10px; }
      .comp-result__label { font-size: 9px; }
      .comp-result__value { font-size: 22px; }

      /* dashboards */
      .dash-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .dash-card__footer { padding: 10px 12px; }
      .dash-card__brand { font-size: 11px; }
      .dash-card__metric { font-size: 12px; }

      /* cta sections */
      .cta-section__title { font-size: 24px; }
      .cta-section__sub { font-size: 15px; }

      /* faq */
      .faq-item__q { font-size: 15px; }

      /* footer */
      .footer__inner { flex-direction: column; gap: 16px; }
      .footer__links { gap: 16px; }

      /* modal */
      .modal { border-radius: 12px; }
      .modal__header { padding: 24px 20px 0; }
      .modal__body { padding: 20px 20px 28px; }
      .modal__title { font-size: 19px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-submit { padding: 15px; }

      /* section titles */
      .section-title { font-size: clamp(24px, 6vw, 36px); }
      .section-sub { font-size: 15px; }
    }

    @media (max-width: 480px) {
      .hero::before { width: 360px; height: 360px; }
      .stats-bar__inner { grid-template-columns: 1fr 1fr; }
      .dash-grid { grid-template-columns: 1fr; }
      .step { flex-direction: column; text-align: center; align-items: center; }
    }
    /* ─── GHL OVERRIDE: força dark background mesmo com estilos externos ─── */
    .lp-wrap { background-color: #0a0a0a !important; background: #0a0a0a !important; color: #f0f0f0 !important; }
    .lp-wrap *, .lp-wrap *::before, .lp-wrap *::after { box-sizing: border-box; }
    html, body { background: #0a0a0a !important; margin: 0 !important; padding: 0 !important; }

    /* ─── CSS STARFIELD no body (funciona em GHL com múltiplos elementos) ─── */
    .css-starfield { display: none; }
    body {
      background-color: #0a0a0a !important;
      background-image:
        radial-gradient(1px 1px at 8% 12%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(1px 1px at 23% 67%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 47% 8%, rgba(255,255,255,0.85) 0%, transparent 100%),
        radial-gradient(1px 1px at 61% 43%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 79% 81%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 14% 54%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 19%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 36% 38%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 52% 73%, rgba(255,255,255,0.65) 0%, transparent 100%),
        radial-gradient(1px 1px at 71% 28%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 4% 86%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 93% 61%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 28% 19%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 84% 47%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 42% 91%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 17% 3%, rgba(106,235,175,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 66% 96%, rgba(106,235,175,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 57%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 31% 74%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 96% 33%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 7% 41%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 74% 14%, rgba(255,255,255,0.65) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 19% 88%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 48% 25%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 72%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 39% 50%, rgba(106,235,175,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 63% 83%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 11% 29%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 77% 5%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(1px 1px at 57% 62%, rgba(255,255,255,0.45) 0%, transparent 100%)
        !important;
      background-attachment: fixed !important;
      background-size: 100% 100% !important;
      background-repeat: no-repeat !important;
    }
    .lp-wrap { background: transparent !important; }

    /* ─── ABOUT PHOTO BALLOONS ─── */
    .about__photo--balloons {
      position: relative;
      overflow: visible !important;
    }
    .about-balloon {
      position: absolute;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(106,235,175,0.12);
      animation: balloon-float 4s ease-in-out infinite;
      z-index: 10;
    }
    .about-balloon img { width: 100%; display: block; }
    .about-balloon--1 {
      /* Shopify orders — topo direito, sobrepõe o teto */
      width: 150px;
      top: 8px; right: -40px;
      animation-delay: 0s;
    }
    .about-balloon--2 {
      /* Dashboard views — canto inferior direito */
      width: 130px;
      bottom: 24px; right: -35px;
      animation-delay: 1.3s;
    }
    .about-balloon--3 {
      /* Gasto diário Meta — canto inferior esquerdo */
      width: 120px;
      bottom: 10px; left: -32px;
      animation-delay: 2.6s;
    }
    @keyframes balloon-float {
      0%, 100% { transform: translateY(0px) rotate(-1deg); }
      50%       { transform: translateY(-10px) rotate(1deg); }
    }
    @media (max-width: 768px) {
      .about-balloon--1 { width: 105px; top: 6px; right: -12px; }
      .about-balloon--2 { width: 90px; bottom: 20px; right: -12px; }
      .about-balloon--3 { width: 85px; bottom: 8px; left: -12px; }
    }

    /* ─── BA STATIC (substitui slider que não funciona em GHL) ─── */
    .ba-static {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      align-items: start;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 40px; /* space for labels above images */
    }
    .ba-static__half {
      position: relative;
      border-radius: 16px;
      overflow: visible;   /* allow labels to float above */
      border: 1px solid rgba(255,255,255,0.08);
    }
    .ba-static__half img {
      width: 100%;
      display: block;
      object-fit: cover;
      border-radius: 14px;
      min-height: 200px;
    }
    @media (min-width: 769px) {
      .ba-static__half img { min-height: 300px; }
    }
    .ba-static__half--before { border-color: rgba(248,113,113,0.25); }
    .ba-static__half--after  { border-color: rgba(106,235,175,0.25); }
    /* Stats list below BA images */
    .ba-stats {
      list-style: none;
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      padding: 0;
    }
    .ba-stats li {
      padding: 7px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }
    .ba-stats--red li {
      background: rgba(248,113,113,0.08);
      border: 1px solid rgba(248,113,113,0.25);
      color: #f87171;
    }
    .ba-stats--green li {
      background: rgba(106,235,175,0.08);
      border: 1px solid rgba(106,235,175,0.25);
      color: #6aebaf;
    }
    .ba-static__divider {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      color: rgba(255,255,255,0.3);
      padding: 0 4px;
      align-self: center;
    }
    .ba-callout--static {
      font-size: 11px;
    }
    @media (min-width: 769px) {
      .ba-callout--static { font-size: 13px; }
    }
    @media (max-width: 600px) {
      .ba-static { grid-template-columns: 1fr; gap: 8px; }
      .ba-static__divider { display: none; }
      .ba-callout--static { font-size: 9px; padding: 3px 6px; }
    }

    /* ─── SPIDER LAYOUT (legenda abaixo do chart) ─── */
    .spider-layout {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      max-width: 560px;
      margin: 0 auto;
    }
    .spider-wrap { order: 1; width: 100%; max-width: 560px; }
    .spider-legend--vertical {
      order: 2;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 24px;
    }
    .spider-legend--vertical .spider-legend__item {
      font-size: 14px;
      gap: 10px;
      white-space: normal;
      line-height: 1.3;
    }
    /* Spider polygon animation from centre outward */
    .spider-poly { transform-origin: 200px 200px; }
    .spider-poly--gray  { animation: spiderGrow 0.9s cubic-bezier(.22,.68,0,1.2) 0.3s both; }
    .spider-poly--green { animation: spiderGrow 1s   cubic-bezier(.22,.68,0,1.2) 0.7s both; }
    .spider-poly--blue  { animation: spiderGrow 1s   cubic-bezier(.22,.68,0,1.2) 1.1s both; }
    @keyframes spiderGrow {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    /* ─── BA SWIPE SLIDER ─── */
    .ba-swipe {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      max-width: 700px;
      margin: 40px auto 0;
    }
    .ba-swipe__track {
      display: flex;
      transition: transform 0.42s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .ba-swipe__slide {
      flex: 0 0 100%;
      width: 100%;
      position: relative;
    }
    .ba-swipe__slide img {
      width: 100%;
      display: block;
      height: auto;
    }
    .ba-swipe__slide-stats {
      list-style: none;
      padding: 14px 16px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 7px;
      background: rgba(0,0,0,0.3);
    }
    .ba-swipe__slide-stats li {
      padding: 7px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }
    .ba-swipe__slide--before .ba-swipe__slide-stats li {
      background: rgba(248,113,113,0.08);
      border: 1px solid rgba(248,113,113,0.25);
      color: #f87171;
    }
    .ba-swipe__slide--after .ba-swipe__slide-stats li {
      background: rgba(106,235,175,0.08);
      border: 1px solid rgba(106,235,175,0.25);
      color: #6aebaf;
    }
    .ba-swipe__label {
      position: absolute;
      top: 12px;
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      z-index: 2;
    }
    .ba-swipe__label--before {
      left: 12px;
      background: rgba(248,113,113,0.15);
      color: #f87171;
      border: 1px solid rgba(248,113,113,0.4);
    }
    .ba-swipe__label--after {
      left: 12px;
      background: rgba(15,15,15,0.7);
      color: #6aebaf;
      border: 1px solid rgba(106,235,175,0.5);
    }
    .ba-swipe__btn {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(0,0,0,0.6);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s;
    }
    .ba-swipe__btn:hover { background: rgba(106,235,175,0.15); border-color: rgba(106,235,175,0.5); }
    .ba-swipe__btn--prev { left: 10px; }
    .ba-swipe__btn--next { right: 10px; }
    .ba-swipe__footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 0;
      background: rgba(0,0,0,0.3);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .ba-swipe__dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .ba-swipe__dot--active { background: #6aebaf; transform: scale(1.35); }

    /* ─── COVERFLOW CAROUSEL ─── */
    .coverflow-outer {
      padding: 12px 0 56px;
      position: relative;
    }
    .coverflow {
      position: relative;
      height: 380px;
      overflow: visible;
    }
    .coverflow__item {
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -150px;
      width: 300px;
      transition: transform 0.55s cubic-bezier(.4,0,.2,1), opacity 0.55s ease;
      cursor: pointer;
      will-change: transform;
    }
    @media (max-width: 600px) {
      .coverflow__item { margin-left: -100px; width: 200px; }
    }
    .coverflow__item img {
      width: 100%;
      display: block;
      border-radius: 16px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.75);
      pointer-events: none;
    }
    .coverflow__item.is-active img {
      box-shadow: 0 24px 64px rgba(0,0,0,0.85), 0 0 0 1.5px rgba(106,235,175,0.35);
    }
    .coverflow-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }
    .coverflow-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .coverflow-dot--active {
      background: #6aebaf;
      transform: scale(1.35);
    }
    @media (max-width: 600px) {
      .coverflow { height: 260px; }
    }

    /* ─── PROOF SLIDE (kept for compat) ─── */
    .proof-slide {
      scroll-snap-align: center;
      flex-shrink: 0;
      width: 280px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      transition: border-color .35s ease, box-shadow .35s ease, opacity .35s ease;
      opacity: 0.45;
    }
    .proof-slide.is-active {
      opacity: 1;
      border-color: rgba(106,235,175,0.4);
      box-shadow: 0 24px 64px rgba(0,0,0,0.75), 0 0 0 1px rgba(106,235,175,0.3);
    }
    .proof-slide img { width: 100%; display: block; object-fit: cover; }
    .proof-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
    }
    .proof-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      transition: background .2s, transform .2s;
      cursor: pointer;
    }
    .proof-dot--active {
      background: #6aebaf;
      transform: scale(1.4);
    }
    @media (max-width: 600px) {
      .proof-slide { width: 240px; }
    }

    /* ─── PROOF CARD EMPTY PLACEHOLDER ─── */
    .proof-card--empty {
      min-height: 160px;
      background: rgba(255,255,255,0.02);
      border: 1px dashed rgba(255,255,255,0.06);
    }