/* ============================================
   MEI Tranquilo — Landing Page CSS
   Aligned with documento-frontend-fase1.docx
   Design System: Emerald fiscal + Wise structure
   Typography: Inter Variable 900 display / 500 body
   ============================================ */

/* ---------- DESIGN TOKENS (from documento-frontend-fase1) ---------- */
:root {
  /* BRAND */
  --brand-primary:      #00A886;
  --brand-primary-text: #063A2B;
  --brand-primary-hover:#00C99F;
  --brand-primary-soft: #DFF6EE;
  --brand-primary-dark: #063A2B;

  /* NEUTRALS */
  --neutral-ink:        #0B0F0E;
  --neutral-ink-70:     #2E3431;
  --neutral-ink-50:     #5A605D;
  --neutral-ink-30:     #9AA09D;
  --neutral-line:       #E5E8E4;
  --neutral-surface:    #F4F6F2;
  --neutral-canvas:     #FAFBF8;
  --neutral-white:      #FFFFFF;

  /* SEMANTIC */
  --semantic-success:      #00A886;
  --semantic-success-soft: #DFF6EE;
  --semantic-warning:      #F5B100;
  --semantic-warning-soft: #FFF4D1;
  --semantic-danger:       #D03238;
  --semantic-danger-soft:  #FDE7E8;
  --semantic-info:         #2D7DD2;
  --semantic-info-soft:    #E0EEFB;

  /* LEGACY ALIASES (used throughout) */
  --bg-canvas:      var(--neutral-canvas);
  --bg-panel:       var(--neutral-surface);
  --bg-surface-1:   #EDECE7;
  --bg-surface-2:   var(--neutral-line);
  --bg-surface-3:   #D8D7D1;

  --text-primary:   var(--neutral-ink);
  --text-secondary: var(--neutral-ink-70);
  --text-tertiary:  var(--neutral-ink-50);
  --text-quaternary:var(--neutral-ink-30);

  --brand-primary-alias: var(--brand-primary);
  --brand-soft:     var(--brand-primary-soft);
  --brand-border:   rgba(0,168,134,0.22);

  --success:        var(--semantic-success);
  --success-soft:   var(--semantic-success-soft);
  --danger:         var(--semantic-danger);
  --danger-soft:    var(--semantic-danger-soft);

  /* BORDERS — doc says ring: 0 0 0 1px rgba(11,15,14,0.08) */
  --border-subtle:  rgba(11,15,14,0.06);
  --border-std:     rgba(11,15,14,0.10);
  --border-strong:  rgba(11,15,14,0.16);

  /* RADIUS (from documento-frontend-fase1 section 6) */
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-2xl:     32px;
  --radius-pill:    9999px;
  --radius-full:    50%;

  /* ELEVATION (from section 7: minimal shadows) */
  --shadow-ring:    0 0 0 1px rgba(11,15,14,0.08);
  --shadow-sm:      0 1px 2px rgba(11,15,14,0.06), 0 1px 3px rgba(11,15,14,0.04);
  --shadow-md:      0 4px 6px rgba(11,15,14,0.07), 0 2px 4px rgba(11,15,14,0.04);
  --shadow-lg:      0 10px 15px rgba(11,15,14,0.08), 0 4px 6px rgba(11,15,14,0.05);
  --shadow-xl:      0 20px 25px rgba(11,15,14,0.10), 0 10px 10px rgba(11,15,14,0.04);
  --shadow-focus:   0 0 0 4px rgba(0,168,134,0.25);

  /* SPACING (4px system from section 5) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
}

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

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "calt", "cv11", "ss01";
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-primary);
  background: var(--bg-canvas);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* ---------- CONTAINER (section 5.2: max 1200px, px-6 desktop) ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ---------- TYPOGRAPHY (section 4.3 exact specs) ---------- */
/* Display Mega: 72px / 900 / 0.92 — hero da landing; único por página */
.display-xl {
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 0.92;
  color: var(--text-primary);
}



/* Display Hero: 56px / 900 / 0.95 */
.display-lg {
  font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  color: var(--text-primary);
}

/* H1: 40px / 800 / 1.05 */
.display {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--text-primary);
}

/* H2: 28px / 700 / 1.15 */
.h1 { font-size: 28px; font-weight: 700; letter-spacing: -0.6px; line-height: 1.15; }
.h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.4px; line-height: 1.15; }

/* H3: 22px / 700 / 1.25 */
.h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.25; }

/* H4: 18px / 600 / 1.3 */
.h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; line-height: 1.3; }

/* Body Large: 18px / 500 / 1.55 */
.body-lg {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Body: 16px / 500 / 1.55 (base) */
.body-emph { font-size: 16px; font-weight: 600; }

/* Caption: 12px / 600 / 1.4 */
.caption { font-size: 12px; font-weight: 600; line-height: 1.4; }

/* Body Small: 14px / 500 / 1.5 */
.body-sm { font-size: 14px; font-weight: 500; line-height: 1.5; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(250,251,248,0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--neutral-line);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.navbar__logo-icon {
  width: 30px;
  height: 30px;
  background: var(--brand-primary);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 15px;
}

.navbar__logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 2px 6px rgba(0, 168, 134, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 3px 10px rgba(0, 168, 134, 0.45));
}

/* MEI logo-letter: replaces "M" in "MEI" with the SVG logo */
.mei-logo-word {
  white-space: nowrap;
}

.mei-logo-letter {
  display: inline-block;
  height: 1.3em;
  width: auto;
  vertical-align: middle;
  margin-right: -0.06em;
  position: relative;
  top: -0.06em;
  filter: drop-shadow(0 2px 8px rgba(0, 168, 134, 0.35));
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(0, 168, 134, 0.35)); transform: scale(1); }
  50% { filter: drop-shadow(0 4px 16px rgba(0, 201, 159, 0.55)); transform: scale(1.06); }
}

/* Final CTA banner logo */
.final-cta-banner__logo {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
  filter: drop-shadow(0 4px 20px rgba(0, 168, 134, 0.4)) brightness(1.1);
  animation: logoPulse 3s ease-in-out infinite;
}

/* Footer brand */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
}

.footer__logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0, 168, 134, 0.25));
}

.footer__brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color 120ms ease-out;
}

.navbar__links a:hover { color: var(--brand-primary); }

/* Doc: "Todo botão primário é pill brand.primary com scale hover" */
.navbar__cta {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--brand-primary);
  color: var(--brand-primary-text);
  cursor: pointer;
  transition: all 120ms ease-out;
}

.navbar__cta:hover {
  background: var(--brand-primary-hover);
  transform: scale(1.02);
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-canvas);
  z-index: 999;
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-drawer.active { display: flex; }

.mobile-drawer a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--neutral-line);
}

/* ---------- HERO ---------- */
.hero {
  padding: 140px 0 100px;
  background: var(--bg-canvas);
  position: relative;
  overflow: hidden;
}

.hero-lux {
  background: radial-gradient(100% 100% at 50% 0%, rgba(0, 168, 134, 0.08) 0%, var(--neutral-canvas) 100%);
  color: var(--text-primary);
}

/* Ambient glow orbs — subtle depth */
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,168,134,0.07) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
  animation: float-slow 20s ease-in-out infinite;
}

.hero-lux::before {
  background: radial-gradient(circle, rgba(0,168,134,0.09) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,168,134,0.04) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.hero-lux::after {
  background: radial-gradient(circle, rgba(0,168,134,0.05) 0%, transparent 70%);
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-top: 0;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero__title {
  margin-bottom: var(--space-6);
}

.hero__title .highlight {
  color: var(--brand-primary);
  -webkit-text-fill-color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

/* Animated underline on highlight */
.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: -2%;
  width: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--brand-primary-soft), rgba(0, 168, 134, 0.18));
  border-radius: var(--radius-pill);
  z-index: -1;
  animation: highlight-draw 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes highlight-draw {
  to { width: 104%; }
}

.hero__sub {
  max-width: 540px;
  margin-bottom: var(--space-4); /* Reduzindo espaço entre parágrafos */
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  letter-spacing: -0.2px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero__sub:last-of-type {
  margin-bottom: var(--space-10); /* Mantendo a margem do formulário */
}

.hero__sub strong {
  font-weight: 700;
  background: linear-gradient(90deg, var(--brand-primary-dark), var(--brand-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.1px;
}



/* ---------- MACBOOK MOCKUP & HERO CARD ---------- */
.macbook-mockup {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(20px);
  animation: macbook-enter 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes macbook-enter {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to   { opacity: 1; transform: translateY(20px) scale(1); }
}

.macbook-screen {
  background: var(--neutral-white);
  border: 12px solid #1C1E21; /* Dark sleek bezel */
  border-bottom-width: 16px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  aspect-ratio: 16/10;
  min-height: 380px;
  width: 100%;
}

/* The Notch */
.macbook-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 22px;
  background: #1C1E21;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}
.macbook-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #080808;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}

.macbook-base {
  height: 14px;
  background: linear-gradient(to bottom, #d1d5db 0%, #9ca3af 100%);
  border-radius: 0 0 16px 16px;
  width: calc(100% + 40px);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.6), 0 16px 40px rgba(0,0,0,0.12);
  display: flex;
  justify-content: center;
}

.macbook-base-lip {
  width: 140px;
  height: 8px;
  background: #9CA3AF;
  border-radius: 0 0 8px 8px;
}

/* Hero card (IA chat demo inside screen) */
.hero__card {
  background: var(--neutral-white);
  padding: 36px 24px 20px; /* Extra top padding for the notch */
  position: relative;
  flex: 1;
}

@keyframes card-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__card--lux {
  /* No outer shadow needed, MacBook handles it */
}

.hero__card::before {
  display: none;
}

.hero__card::after {
  display: none;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--neutral-line);
  line-height: 1.4;
}

.hero__card-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--semantic-success);
  animation: pulse 2s infinite;
}

/* ---------- IA BUBBLES ---------- */
.ia-bubble {
  background: var(--neutral-surface);
  border: none;
  border-left: 2px solid var(--brand-primary);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__card--lux .ia-bubble {
  background: var(--neutral-surface);
  border-left: 2px solid var(--brand-primary);
  box-shadow: none;
}

.ia-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.ia-bubble__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.3;
}

.ia-bubble__dot {
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--semantic-success);
  animation: pulse 2s infinite;
}

.ia-bubble__msg {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 500;
}

/* Typing indicator — 3 bouncing dots */
.ia-bubble--typing .ia-bubble__msg {
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 18px;
}

.ia-bubble--typing .ia-bubble__msg::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-primary);
  opacity: 0.5;
  animation: bounce-dot 1.4s ease-in-out infinite;
}

.ia-bubble--typing .ia-bubble__msg::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-primary);
  opacity: 0.5;
  box-shadow: 9px 0 0 var(--brand-primary);
  animation: bounce-dot-double 1.4s 0.2s ease-in-out infinite;
}

@keyframes bounce-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-3px); opacity: 0.8; }
}

@keyframes bounce-dot-double {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; box-shadow: 9px 0 0 var(--brand-primary); }
  30% { transform: translateY(-3px); opacity: 0.8; box-shadow: 9px -3px 0 var(--brand-primary); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- FORM — Modernized ---------- */
.hero-form {
  margin-top: var(--space-8);
  width: 100%;
  max-width: 520px;
}

/* Form card container */
.hero-form__card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 168, 134, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 168, 134, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(16px);
  transition: box-shadow 300ms ease-out, border-color 300ms ease-out;
}

.hero-form__card .cta-primary {
  width: 100%;
  height: 50px;
  margin-top: var(--space-2);
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 168, 134, 0.25);
  transition: all 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-form__card .cta-primary:hover {
  background: var(--brand-primary-hover);
  box-shadow: 0 6px 24px rgba(0, 168, 134, 0.35);
  transform: translateY(-1px);
}

.hero-form__card .cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 168, 134, 0.2);
}

.hero-form__card .cta-arrow {
  transition: transform 200ms ease;
}

.hero-form__card .cta-primary:hover .cta-arrow {
  transform: translateX(3px);
}

.hero-form__card--dark {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-form__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-6);
  right: var(--space-6);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  border-radius: var(--radius-pill);
  opacity: 0.5;
}

.hero-form__card:focus-within {
  border-color: rgba(0, 168, 134, 0.12);
}

/* Form fields stack */
.hero-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-form__fields .form-group--float {
  width: 100%;
}

/* Side-by-side optional fields */
.hero-form__row {
  display: flex;
  gap: var(--space-3);
}

.hero-form__row .form-group--float {
  flex: 1;
  min-width: 0;
}

/* "opcional" tag inside labels */
.form-optional {
  font-weight: 400;
  font-size: 10px;
  color: var(--text-quaternary);
  letter-spacing: 0;
  text-transform: none;
}

/* Floating label group */
.form-group { position: relative; }

.form-group--float { position: relative; }

/* Input */
.form-input--float {
  width: 100%;
  height: 48px;
  background: var(--neutral-surface);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 0 16px 0 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  outline: none;
  transition: border-color 120ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out;
}

.form-input--float:hover {
  background: var(--neutral-white);
  border-color: var(--neutral-line);
}

.form-input--float:focus {
  background: var(--neutral-white);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 134, 0.08);
}

.form-input--float.error {
  border-color: var(--semantic-danger);
  background: var(--semantic-danger-soft);
}

/* Label — sits above the input, not inside */
.form-label--float {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-quaternary);
  pointer-events: none;
  transition: all 150ms ease-out;
  transform-origin: left top;
  background: transparent;
  padding: 0 4px;
}

.form-label--float svg {
  flex-shrink: 0;
  opacity: 0.5;
  width: 14px;
  height: 14px;
  transition: opacity 150ms ease-out, color 150ms ease-out;
}

.dark-form .form-label--float {
  color: rgba(255, 255, 255, 0.6);
}

.dark-form .form-input--float:focus ~ .form-label--float,
.dark-form .form-input--float:not(:placeholder-shown) ~ .form-label--float {
  color: var(--neutral-white);
}

/* Float: label jumps above the input border */
.form-input--float:focus ~ .form-label--float,
.form-input--float:not(:placeholder-shown) ~ .form-label--float {
  top: 0;
  transform: translateY(-50%) scale(0.8);
  color: var(--brand-primary);
  font-weight: 600;
  background: var(--neutral-white);
}

/* Hide icon and "opcional" when floated */
.form-input--float:focus ~ .form-label--float svg,
.form-input--float:not(:placeholder-shown) ~ .form-label--float svg {
  display: none;
}

.form-input--float:focus ~ .form-label--float .form-optional,
.form-input--float:not(:placeholder-shown) ~ .form-label--float .form-optional {
  display: none;
}

.form-error {
  font-size: 13px;
  color: var(--semantic-danger);
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

/* ---------- FINAL CTA BANNER (Modern Full-Width) ---------- */
.final-cta-banner {
  background: radial-gradient(120% 120% at 50% 100%, var(--brand-primary-dark) 0%, var(--neutral-ink) 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--neutral-white);
}

.final-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.5;
}

/* Subtle glow orb behind the text */
.final-cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,168,134,0.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.final-cta-banner__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-banner__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.final-cta-banner__title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: var(--space-6);
  color: var(--neutral-white);
  /* Text gradient for extra flair */
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-banner__subtitle {
  font-size: 20px;
  color: var(--neutral-ink-30);
  line-height: 1.5;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto var(--space-10);
}

.final-cta-banner__subtitle strong {
  color: var(--neutral-white);
  font-weight: 600;
}

.final-cta-banner__form.eb-form {
  max-width: 480px;
  margin: 0 auto;
}

.final-cta-banner__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-ink-30);
}

.final-cta-banner__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.final-cta-banner__trust svg {
  color: var(--brand-primary);
}

.final-cta-banner__trust .dot {
  color: rgba(255,255,255,0.1);
}

.form-error.visible { display: block; }

/* Legacy form inputs (for any non-float forms) */
.form-input {
  width: 100%;
  height: 52px;
  background: var(--neutral-white);
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  outline: none;
  transition: border-color 120ms ease-out, box-shadow 120ms ease-out;
}

.form-input::placeholder { color: var(--text-quaternary); font-weight: 400; }

.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-focus);
}

.form-input.error { border-color: var(--semantic-danger); }

/* ---------- CTA BUTTONS ---------- */
/* Doc: "Todo botão primário é pill brand.primary com scale hover" */
.cta-primary {
  width: 100%;
  height: 56px;
  background: var(--brand-primary);
  color: var(--brand-primary-text);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 120ms ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Inline variant — sits next to the email input */
.cta-primary--inline {
  width: auto;
  min-width: 170px;
  flex-shrink: 0;
  height: 54px;
  font-size: 15px;
  padding: 0 24px;
}

.cta-primary--inline .cta-arrow {
  transition: transform 120ms ease-out;
}

.cta-primary--inline:hover .cta-arrow {
  transform: translateX(3px);
}

.cta-primary:hover {
  background: var(--brand-primary-hover);
  transform: scale(1.02);
}

.cta-primary--inline:hover {
  transform: scale(1.03);
}

.cta-primary:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: none;
}

.cta-primary.loading { pointer-events: none; opacity: 0.8; }
.cta-primary.loading .cta-text { display: none; }
.cta-primary.loading .cta-arrow { display: none; }
.cta-primary.success { 
  background: var(--semantic-success); 
  pointer-events: none; 
}

.cta-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(6,58,43,0.3);
  border-top-color: var(--brand-primary-text);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}

.cta-primary.loading .cta-spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  margin-top: var(--space-4);
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(0, 168, 134, 0.06);
  border: 1px solid rgba(0, 168, 134, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
  line-height: 1.4;
  transition: all 200ms ease;
}

.trust-badge:hover {
  background: var(--brand-primary-soft);
  border-color: rgba(0, 168, 134, 0.2);
}

.trust-badge svg {
  flex-shrink: 0;
  color: var(--brand-primary);
}



/* Legacy trust line (keep for backwards compat) */
.trust-line {
  margin-top: var(--space-3);
  font-size: 14px;
  color: var(--text-tertiary);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.5;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- SECTIONS (doc: space-12 mobile, space-20 desktop) ---------- */
.section {
  padding: var(--space-20) 0;
}

.section--alt {
  background: var(--bg-panel);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0,168,134,0.1);
}

.section__title {
  margin-bottom: var(--space-5);
  background: linear-gradient(110deg, var(--neutral-ink) 0%, var(--neutral-ink-50) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  letter-spacing: -0.2px;
  font-weight: 500;
  line-height: 1.55;
}

/* ========== WORKFLOW JOURNEY — ZIGZAG S-CURVE ========== */

.canvas-workspace {
  position: relative;
  margin-top: var(--space-16);
}

.canvas-workspace::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: radial-gradient(rgba(0, 168, 134, 0.04) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: grid-shift 60s linear infinite;
}

@keyframes grid-shift {
  0% { background-position: 0 0; }
  100% { background-position: 24px 24px; }
}

/* Zigzag 2-column grid */
.workflow-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 56px;
  column-gap: 80px;
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 0 24px;
}

.wf-step--1 { grid-column: 1; grid-row: 1; }
.wf-step--2 { grid-column: 2; grid-row: 2; }
.wf-step--3 { grid-column: 1; grid-row: 3; }

.wf-step {
  opacity: 0;
  transform: translateY(20px);
  animation: wf-entry 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.wf-step--2 { animation-delay: 0.2s; }
.wf-step--3 { animation-delay: 0.4s; }

@keyframes wf-entry {
  to { opacity: 1; transform: translateY(0); }
}

/* Card */
.node-card {
  background: var(--neutral-white);
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 2;
  transition: all 400ms cubic-bezier(0.2, 0, 0.2, 1);
  height: 100%;
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.node-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 134, 0) 0%, rgba(0, 168, 134, 0.03) 100%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.node-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 168, 134, 0.12), 0 4px 12px rgba(0, 168, 134, 0.06);
  border-color: rgba(0, 168, 134, 0.2);
}

.node-card:hover::before { opacity: 1; }

/* Active card glow when cursor is near */
.wf-step.wf-active .node-card {
  border-color: rgba(0, 168, 134, 0.3);
  box-shadow: 0 0 40px rgba(0, 168, 134, 0.08), 0 8px 24px rgba(0, 168, 134, 0.12);
}

.wf-step.wf-active .wf-icon-box {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
  color: var(--neutral-white);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 16px rgba(0, 168, 134, 0.3);
}

/* Icon box */
.wf-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand-primary-soft) 0%, rgba(0, 168, 134, 0.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 168, 134, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: var(--space-6);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.node-card:hover .wf-icon-box {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
  color: var(--neutral-white);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(0, 168, 134, 0.3);
}

.wf-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.wf-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

/* SVG path overlay */
.wf-svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

#wf-track, .wf-track-seg {
  stroke: var(--brand-primary-soft);
  stroke-width: 2;
  stroke-dasharray: 8 5;
  opacity: 0.5;
  fill: none;
}

#wf-path, .wf-path-seg {
  stroke: var(--brand-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

.wf-node {
  fill: var(--neutral-white);
  stroke: var(--brand-primary);
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 168, 134, 0.2));
}

/* Animated cursor */
.wf-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wf-cursor-dot {
  width: 16px;
  height: 16px;
  background: var(--brand-primary);
  border: 3px solid var(--neutral-white);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 168, 134, 0.5), 0 0 32px rgba(0, 168, 134, 0.2);
  flex-shrink: 0;
}

.wf-cursor-label {
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
  color: white;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 168, 134, 0.3);
  transition: opacity 0.3s ease;
}

.wf-label-1 { opacity: 1; }
.wf-label-2 { position: absolute; left: 26px; opacity: 0; }
.wf-label-3 { position: absolute; left: 26px; opacity: 0; }

/* Badge */
.canvas-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--neutral-white);
  border: 1px solid var(--brand-primary-soft);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
  box-shadow: 0 2px 8px rgba(0, 168, 134, 0.1);
  z-index: 20;
  transform: translateY(-50%);
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 4px)); }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse-beat 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-beat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .workflow-journey {
    column-gap: 48px;
    row-gap: 40px;
  }
  .node-card { padding: 28px; }
  .wf-title { font-size: 18px; }
  .wf-desc { font-size: 14px; }
}

@media (max-width: 768px) {
  .canvas-workspace::before { opacity: 0.35; }
  .canvas-workspace { margin-top: var(--space-8); }

  .workflow-journey {
    grid-template-columns: 1fr;
    row-gap: 64px;
    column-gap: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0 20px;
  }

  .wf-step--1, .wf-step--2, .wf-step--3 {
    grid-column: 1;
    grid-row: auto;
  }

  /* Staggered entry animation on mobile too */
  .wf-step {
    opacity: 0;
    transform: translateY(24px);
    animation: wf-entry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  .wf-step--2 { animation-delay: 0.15s; }
  .wf-step--3 { animation-delay: 0.3s; }

  .node-card {
    padding: 22px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  .wf-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: var(--space-4);
  }
  .wf-icon-box svg { width: 20px; height: 20px; }

  .wf-title { font-size: 17px; }
  .wf-desc { font-size: 13.5px; line-height: 1.55; }

  /* Cursor — punchy on mobile */
  .wf-cursor {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .wf-cursor-dot {
    width: 14px;
    height: 14px;
    border-width: 2.5px;
    box-shadow: 0 0 12px rgba(0, 168, 134, 0.5), 0 0 24px rgba(0, 168, 134, 0.15);
  }

  .wf-cursor-label {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 168, 134, 0.25);
  }

  .wf-label-2 { left: 22px; top: auto; }
  .wf-label-3 { left: 22px; top: auto; }

  .wf-node { r: 5; }

  /* Path line slightly thicker on mobile for visibility */
  .wf-path-seg { stroke-width: 2.5; }
  .wf-track-seg { stroke-width: 1.5; }

  .canvas-badge {
    position: static;
    transform: none;
    animation: none;
    margin-bottom: 16px;
    font-size: 10px;
    padding: 6px 12px;
  }

  /* Active card pop on mobile */
  .wf-step.wf-active .node-card {
    transform: scale(1.03);
    box-shadow: 0 0 32px rgba(0, 168, 134, 0.1), 0 8px 20px rgba(0, 168, 134, 0.14);
  }

  .wf-step .node-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
  }

  /* Disable hover lift on touch */
  .node-card:hover {
    transform: none;
  }
}

/* ---------- FEATURE CARDS — Hero + 2×2 grid ---------- */
/* ---------- SUPERPODERES SECTION BACKGROUND ---------- */
#superpoderes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(0, 168, 134, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(0, 168, 134, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(6, 58, 43, 0.03) 0%, transparent 70%),
    linear-gradient(175deg, #FAFBF8 0%, #F0F7F4 35%, #E8F4EF 60%, #F4F6F2 100%);
}

#superpoderes::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 168, 134, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: superpoderes-float 20s ease-in-out infinite;
}

#superpoderes::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 58, 43, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: superpoderes-float 25s ease-in-out infinite reverse;
}

@keyframes superpoderes-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

#superpoderes .container {
  position: relative;
  z-index: 1;
}

/* ---------- SPARKLE PARTICLES ---------- */
#superpoderes-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  contain: layout style paint;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

/* Card 1: hero feature — tall, spans 2 rows on the left */
.feature-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #063A2B 0%, #0A5740 45%, #074734 100%);
  backdrop-filter: none;
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(6, 58, 43, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:nth-child(1) .feature-card__icon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:nth-child(1) .feature-card__icon svg {
  stroke: white;
}

.feature-card:nth-child(1) .feature-card__title {
  color: white;
  font-size: 22px;
}

.feature-card:nth-child(1) .feature-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.feature-card:nth-child(1):hover {
  background: linear-gradient(160deg, #074734 0%, #0B6B50 45%, #085C42 100%);
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(6, 58, 43, 0.35), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Cards 2-5: regular 2×2 grid */
.feature-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.feature-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.feature-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.feature-card:nth-child(5) { grid-column: 3; grid-row: 2; }

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 3px rgba(11, 15, 14, 0.04), 0 0 0 1px rgba(0, 168, 134, 0.04);
  border-radius: 16px;
  padding: var(--space-6);
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(16px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 60ms; }
.feature-card:nth-child(3) { transition-delay: 120ms; }
.feature-card:nth-child(4) { transition-delay: 180ms; }
.feature-card:nth-child(5) { transition-delay: 240ms; }

/* Hover */
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 168, 134, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 168, 134, 0.18);
}

/* Icon */
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--brand-primary);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: var(--space-5);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.feature-card__icon svg {
  stroke: white;
  width: 22px;
  height: 22px;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 16px rgba(0, 168, 134, 0.3);
}

/* Title */
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Description */
.feature-card__desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.55;
  font-weight: 500;
}

/* ---------- SCORE GAUGE ---------- */
.score-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
}

.score-gauge {
  position: relative;
  width: 280px;
  text-align: center;
  filter: drop-shadow(0 0 30px rgba(0,168,134,0.12));
}

.score-gauge svg { width: 100%; }

.score-value {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.score-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--semantic-success);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.score-info { max-width: 480px; }

.score-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.score-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.55;
}

.score-info__check {
  color: var(--semantic-success);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 600;
}

/* ---------- COMPARATIVE UI: Two-Panel Side-by-Side ---------- */
.compare-table {
  margin-top: var(--space-12);
  max-width: 960px;
  margin-inline: auto;
}

.compare-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.compare-panel {
  position: relative;
  display: flex;
  flex-direction: column;
}

.compare-panel__header {
  padding: var(--space-8) var(--space-8) var(--space-6);
  text-align: center;
}

.compare-panel__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.compare-panel__desc {
  font-size: 14px;
  margin-top: var(--space-1);
  line-height: 1.4;
}

.compare-panel__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}

.compare-panel__list {
  list-style: none;
  padding: 0 var(--space-6) var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.compare-panel__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-4);
  border-radius: var(--radius-md);
  transition: background 250ms ease;
  animation: cmp-fade-in 0.5s cubic-bezier(0.2, 0, 0, 1) both;
}

.compare-panel__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.compare-panel__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.compare-panel__feature {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.compare-panel__detail {
  font-size: 14px;
  line-height: 1.5;
}

/* --- MEI Panel (Winner — dark emerald) --- */
.compare-panel--mei {
  background: linear-gradient(170deg, #052E22 0%, #074734 50%, #0A5740 100%);
  border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
  z-index: 2;
  box-shadow: 0 24px 80px rgba(5, 46, 34, 0.3), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.compare-panel--mei .compare-panel__header {
  border-bottom: 1px solid rgba(0, 201, 159, 0.12);
}

.compare-panel--mei .compare-panel__title {
  color: #FFFFFF;
}

.compare-panel--mei .compare-panel__desc {
  color: rgba(255, 255, 255, 0.5);
}

.compare-panel--mei .compare-panel__badge {
  background: rgba(0, 201, 159, 0.15);
  color: #00C99F;
  border: 1px solid rgba(0, 201, 159, 0.25);
}

.compare-panel--mei .compare-panel__feature {
  color: #FFFFFF;
}

.compare-panel--mei .compare-panel__detail {
  color: rgba(255, 255, 255, 0.6);
}

.compare-panel--mei .compare-panel__item:hover {
  background: rgba(0, 201, 159, 0.08);
}

.compare-panel--mei .compare-panel__icon--check {
  background: rgba(0, 201, 159, 0.15);
  color: #00C99F;
  box-shadow: 0 0 0 1px rgba(0, 201, 159, 0.2);
}

/* --- Sem Panel (Loser — light muted) --- */
.compare-panel--sem {
  background: var(--neutral-white);
  border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
  border: 1px solid var(--neutral-line);
  border-left: none;
}

.compare-panel--sem .compare-panel__header {
  border-bottom: 1px solid var(--neutral-line);
  padding-top: calc(var(--space-8) + 28px);
}

.compare-panel--sem .compare-panel__title {
  color: var(--text-tertiary);
  font-weight: 600;
}

.compare-panel--sem .compare-panel__desc {
  color: var(--text-quaternary);
}

.compare-panel--sem .compare-panel__feature {
  color: var(--text-tertiary);
  font-weight: 600;
}

.compare-panel--sem .compare-panel__detail {
  color: var(--text-quaternary);
}

.compare-panel--sem .compare-panel__item:hover {
  background: var(--neutral-surface);
}

.compare-panel--sem .compare-panel__icon--x {
  background: rgba(208, 50, 56, 0.06);
  color: var(--semantic-danger);
  opacity: 0.5;
}

@keyframes cmp-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Compare: Mobile --- */
@media (max-width: 768px) {
  .compare-table {
    margin-top: var(--space-8);
  }
  .compare-panels {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .compare-panel--mei {
    border-radius: var(--radius-2xl);
  }
  .compare-panel--sem {
    border-radius: var(--radius-2xl);
    border: 1px solid var(--neutral-line);
  }
  .compare-panel__header {
    padding: var(--space-6) var(--space-6) var(--space-5);
  }
  .compare-panel--sem .compare-panel__header {
    padding-top: var(--space-6);
  }
  .compare-panel__list {
    padding: 0 var(--space-4) var(--space-6);
  }
  .compare-panel__item {
    padding: var(--space-4) var(--space-3);
  }
}


/* ---------- EARLY-BIRD ---------- */
.early-bird {
  background: linear-gradient(160deg, #052E22 0%, #063A2B 30%, #0A5740 70%, #074734 100%);
  border: 1px solid rgba(0, 201, 159, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-10);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(6, 58, 43, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Ambient glow orbs */
.eb-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.eb-orb--1 {
  width: 300px; height: 300px;
  top: -80px; right: -60px;
  background: rgba(0, 201, 159, 0.15);
}
.eb-orb--2 {
  width: 250px; height: 250px;
  bottom: -60px; left: -40px;
  background: rgba(0, 168, 134, 0.1);
}

/* Eyebrow */
.eb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #00C99F;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}
.eb-eyebrow svg { stroke: #00C99F; }

/* Title */
.eb-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.eb-highlight {
  background: linear-gradient(135deg, #00C99F, #80ffd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.eb-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto var(--space-8);
  position: relative;
  z-index: 1;
}
.eb-subtitle strong {
  color: #fff;
  font-weight: 700;
}

/* Perks grid */
.eb-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.eb-perk {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: var(--space-5) var(--space-6);
  backdrop-filter: blur(8px);
  flex: 1;
  max-width: 220px;
}

.eb-perk__icon {
  width: 44px; height: 44px;
  background: rgba(0, 201, 159, 0.15);
  border: 1px solid rgba(0, 201, 159, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-3);
}
.eb-perk__icon svg { stroke: #00C99F; }
.eb-perk__icon--gold {
  background: rgba(245, 177, 0, 0.12);
  border-color: rgba(245, 177, 0, 0.25);
}
.eb-perk__icon--gold svg { stroke: #F5B100; }

.eb-perk__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.eb-perk__value {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.2;
}
.eb-perk__value--glow {
  color: #F5B100;
  text-shadow: 0 0 20px rgba(245, 177, 0, 0.3);
}

.eb-perk__detail {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 2px;
}

/* Divider between perks */
.eb-perk-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.2);
}
.eb-perk-divider span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.eb-perk-divider svg {
  stroke: rgba(255,255,255,0.2);
  width: 14px; height: 14px;
  transform: rotate(-90deg);
}

/* Divider between perks and form */
.eb-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 480px;
  margin: 0 auto var(--space-8);
  position: relative;
  z-index: 1;
}
.eb-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 159, 0.3), transparent);
}
.eb-divider__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 201, 159, 0.08);
  border: 1px solid rgba(0, 201, 159, 0.2);
  color: #00C99F;
  flex-shrink: 0;
}
.eb-divider__icon svg {
  stroke: #00C99F;
  opacity: 0.7;
}

/* Form area */
.eb-form {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.eb-form .hero-form__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.eb-form .form-input--float {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.eb-form .form-input--float:focus {
  border-color: #00C99F;
  background: rgba(255,255,255,0.12);
}
.eb-form .form-label--float {
  color: rgba(255,255,255,0.45);
}
.eb-form .form-label--float svg {
  stroke: rgba(255,255,255,0.35);
}
.eb-form .form-optional {
  color: rgba(255,255,255,0.25);
}

/* CTA on dark */
.eb-cta {
  background: linear-gradient(135deg, #00C99F, #00A886) !important;
  box-shadow: 0 4px 20px rgba(0, 201, 159, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.eb-cta:hover {
  box-shadow: 0 8px 32px rgba(0, 201, 159, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* Footer */
.eb-footer {
  margin-top: var(--space-5);
  position: relative;
  z-index: 1;
}
.eb-footer .live-counter {
  color: rgba(255,255,255,0.6);
}
.eb-footer .live-counter__number {
  color: #fff;
}
.eb-fine {
  margin-top: var(--space-3);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Legacy counters — keep for other uses */
.early-bird__counter {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.early-bird__counter strong {
  color: var(--text-primary);
  font-weight: 700;
}

.progress {
  height: 8px;
  background: var(--neutral-line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: var(--space-5) auto;
  max-width: 400px;
}

.progress__bar {
  height: 100%;
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.progress__bar.animated { width: 68%; }

.early-bird__price {
  font-size: 18px;
  color: var(--text-secondary);
  margin: var(--space-5) 0;
  font-weight: 500;
}

.early-bird__price strong {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -1.2px;
}

.early-bird__price s {
  color: var(--text-quaternary);
  text-decoration: line-through;
}

.cta-primary--lg {
  display: inline-flex;
  width: auto;
  padding: 0 40px;
}

/* ---------- PRICING TOGGLE (Mensal / Anual) ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-6);
}

.pricing-toggle__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: color 200ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-toggle__label--active {
  color: var(--text-primary);
}

.pricing-toggle__badge {
  display: inline-block;
  background: linear-gradient(135deg, #064e3b, #047857);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.pricing-toggle__switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--neutral-line);
  border: none;
  border-radius: 13px;
  cursor: pointer;
  transition: background 250ms ease;
  padding: 0;
}

.pricing-toggle__switch[data-active="annual"] {
  background: var(--brand-primary);
}

.pricing-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.pricing-toggle__switch[data-active="annual"] .pricing-toggle__thumb {
  transform: translateX(22px);
}

/* Annual note under price */
.pricing-card__annual-note {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: -2px;
  margin-bottom: 2px;
  min-height: 18px;
}

/* ---------- PRICING SLIDER WRAPPER ---------- */
.pricing-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-slider__viewport {
  overflow-x: clip;
  overflow-y: visible;
}

.pricing-grid {
  display: flex;
  gap: var(--space-4);
  align-items: stretch;
  transition: transform 420ms cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: visible;
  will-change: transform;
}

.pricing-grid > .pricing-card {
  flex: 0 0 calc((100% - 3 * var(--space-4)) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

/* Arrow buttons */
.pricing-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--neutral-line);
  background: var(--neutral-white);
  color: var(--neutral-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 200ms ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing-slider__arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 168, 134, 0.3);
}

.pricing-slider__arrow:active {
  transform: translateY(-50%) scale(0.93);
}

.pricing-slider__arrow--left {
  left: -22px;
}

.pricing-slider__arrow--right {
  right: -22px;
}

.pricing-slider__arrow[disabled] {
  opacity: 0;
  pointer-events: none;
}

.pricing-slider__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Dots indicator */
.pricing-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-4);
}

.pricing-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 250ms ease;
}

.pricing-slider__dot--active {
  background: var(--brand-primary);
  width: 24px;
  border-radius: 4px;
}

/* Desktop: hide dots, show arrows */
@media (min-width: 1025px) {
  .pricing-slider__dots { display: none; }
}

.pricing-card {
  background: var(--neutral-white);
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  position: relative;
  transition: all 240ms cubic-bezier(0.2, 0, 0.2, 1);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 168, 134, 0.15);
  z-index: 10;
}

.pricing-card--featured {
  border: 2px solid var(--brand-primary);
  box-shadow: 0 12px 32px rgba(0, 168, 134, 0.1);
  background: linear-gradient(170deg, #f0faf6 0%, #f8fdfb 40%, #edf8f3 100%);
}

.pricing-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}

.pricing-sparkle {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
}

.pricing-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 168, 134, 0.15);
}

.pricing-card--featured .pricing-card__header,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__credits,
.pricing-card--featured .pricing-card__founder-price,
.pricing-card--featured .pricing-card__features,
.pricing-card--featured .cta-primary,
.pricing-card--featured .pricing-card__note {
  position: relative;
  z-index: 1;
}

.pricing-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--brand-primary);
  color: white;
  letter-spacing: 0.3px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 168, 134, 0.3);
}

.pricing-card__badge--soon {
  background: var(--neutral-surface);
  color: var(--text-tertiary);
  font-weight: 600;
}

.pricing-card__header {
  margin-bottom: var(--space-4);
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.25;
}

.pricing-card__tagline {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.45;
  font-weight: 500;
  min-height: 38px;
}

.pricing-card__price {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.pricing-card__old-price {
  font-size: 14px;
  color: var(--text-quaternary);
  text-decoration: line-through;
  margin-right: 4px;
}

.pricing-card__amount-old {
  font-size: 14px;
  color: var(--text-quaternary);
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1;
}

.pricing-card__amount {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.pricing-card__credits {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: var(--space-1);
  line-height: 1.4;
}

.pricing-card__founder-price {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  line-height: 1.4;
  font-weight: 500;
}

.pricing-card__founder-price strong {
  color: var(--brand-primary);
  font-weight: 700;
}

.pricing-card__founder-price--disabled {
  color: var(--text-quaternary);
  font-style: italic;
}

/* Founder bonus (amplified limits on renewal) */
.pricing-card__founder-bonus {
  margin-top: auto;
  margin-bottom: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px dashed rgba(0, 168, 134, 0.2);
}

.pricing-card__founder-bonus .wa-tooltip-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-primary);
}

/* Founder footnote */
.pricing-founder-footnote {
  font-size: 11px;
  color: var(--text-quaternary);
  text-align: center;
  margin-top: var(--space-4);
  font-weight: 500;
  line-height: 1.5;
}

.pricing-card__annual {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-5);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--neutral-line);
  flex-grow: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 500;
}

.pricing-card__feature--inherit {
  font-weight: 600;
  color: var(--brand-primary);
  background: linear-gradient(135deg, rgba(0, 168, 134, 0.06), rgba(0, 168, 134, 0.02));
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 12.5px;
}

.pricing-card__check {
  color: var(--semantic-success);
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__note {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: var(--space-2);
  font-weight: 500;
  line-height: 1.4;
}

.pricing-card__upgrade-note {
  font-size: 12px;
  color: var(--brand-primary);
  text-align: center;
  margin-top: var(--space-2);
  font-weight: 600;
}

/* ---------- CREDIT TOOLTIP ---------- */
.credit-tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1;
}

.credit-tooltip-trigger:hover {
  z-index: 9999;
}

.credit-tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
  opacity: 0.5;
  transition: opacity 200ms ease, transform 200ms ease;
  flex-shrink: 0;
}

.credit-tooltip-trigger:hover .credit-tooltip-icon {
  opacity: 1;
  transform: scale(1.1);
}

.credit-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  background: var(--brand-primary-dark);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 168, 134, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: 99999;
  box-shadow: 0 12px 32px rgba(6, 58, 43, 0.35), 0 0 0 1px rgba(0, 168, 134, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credit-tooltip-trigger:hover .credit-tooltip,
.credit-tooltip-trigger:focus-within .credit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.credit-tooltip__arrow {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--brand-primary-dark);
  border-right: 1px solid rgba(0, 168, 134, 0.3);
  border-bottom: 1px solid rgba(0, 168, 134, 0.3);
}

.credit-tooltip__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary-hover);
  letter-spacing: -0.1px;
  line-height: 1.2;
}

.credit-tooltip__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.credit-tooltip__item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.credit-tooltip__item strong {
  color: #fff;
  font-weight: 700;
}

.credit-tooltip__emoji {
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1.3;
}

.credit-tooltip__footer {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
  line-height: 1.4;
}

/* Tooltip position fix for cards near edges */
.pricing-card:first-child .credit-tooltip {
  left: 0;
  transform: translateX(0) translateY(4px);
}
.pricing-card:first-child .credit-tooltip-trigger:hover .credit-tooltip,
.pricing-card:first-child .credit-tooltip-trigger:focus-within .credit-tooltip {
  transform: translateX(0) translateY(0);
}
.pricing-card:first-child .credit-tooltip__arrow {
  left: 20px;
}

.pricing-card:last-child .credit-tooltip {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(4px);
}
.pricing-card:last-child .credit-tooltip-trigger:hover .credit-tooltip,
.pricing-card:last-child .credit-tooltip-trigger:focus-within .credit-tooltip {
  transform: translateX(0) translateY(0);
}
.pricing-card:last-child .credit-tooltip__arrow {
  left: auto;
  right: 20px;
}

/* Pulse animation on icon for first-time attention */
@keyframes credit-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.credit-tooltip-icon {
  animation: credit-pulse 2.5s ease-in-out 3;
  animation-delay: 1.5s;
}

.credit-tooltip-trigger:hover .credit-tooltip-icon {
  animation: none;
}

/* Mobile: tap to toggle */
.credit-tooltip--open .credit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.pricing-card:first-child .credit-tooltip--open .credit-tooltip {
  transform: translateX(0) translateY(0);
}
.pricing-card:last-child .credit-tooltip--open .credit-tooltip {
  transform: translateX(0) translateY(0);
}

@media (max-width: 768px) {
  .credit-tooltip {
    width: 240px;
    left: 0;
    transform: translateX(0) translateY(4px);
  }
  .credit-tooltip-trigger:hover .credit-tooltip,
  .credit-tooltip-trigger:focus-within .credit-tooltip {
    transform: translateX(0) translateY(0);
  }
  .credit-tooltip__arrow {
    left: 20px;
  }
}

/* ---------- FEATURE TOOLTIP (inside feature list items) ---------- */
.feature-tooltip-trigger {
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.feature-tooltip-trigger:hover {
  z-index: 9999;
}

.feature-tooltip-text {
  display: inline;
  line-height: 1.45;
}

.feature-tooltip-info {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  color: var(--brand-primary);
  opacity: 0.5;
  transition: opacity 200ms ease;
}

.feature-tooltip-trigger:hover .feature-tooltip-info {
  opacity: 1;
}

.feature-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  transform: translateX(0) translateY(4px);
  z-index: 9999;
}

.feature-tooltip-trigger:hover .feature-tooltip,
.feature-tooltip-trigger:focus-within .feature-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
  pointer-events: auto;
}

.feature-tooltip .credit-tooltip__arrow {
  left: 20px;
}

/* ---------- WHATSAPP TOOLTIP (emerald, z-9999) ---------- */
.wa-tooltip-wrap {
  position: relative;
  display: inline;
  cursor: pointer;
}

.wa-tooltip-wrap:hover,
.wa-tooltip-wrap.wa-tooltip--open {
  z-index: 9999;
  position: relative;
}

.wa-tooltip-label {
  display: inline;
  line-height: 1.45;
  border-bottom: 1px dashed var(--brand-primary);
}

.wa-tooltip-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 15px;
  opacity: 0.55;
  transition: opacity 200ms ease, transform 200ms ease;
  flex-shrink: 0;
}

.wa-tooltip-wrap:hover .wa-tooltip-icon {
  opacity: 1;
  transform: scale(1.15);
}

.wa-tooltip-box {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 220ms cubic-bezier(0.2, 0, 0.2, 1);
  z-index: 9999;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(16, 185, 129, 0.15);
}

.wa-tooltip-wrap:hover .wa-tooltip-box,
.wa-tooltip-wrap:focus-within .wa-tooltip-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.wa-tooltip-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #047857;
  border-right: 1px solid rgba(16, 185, 129, 0.4);
  border-bottom: 1px solid rgba(16, 185, 129, 0.4);
}

.wa-tooltip-title {
  font-size: 12px;
  font-weight: 700;
  color: #6ee7b7;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-tooltip-title svg {
  width: 14px;
  height: 14px;
  fill: #25d366;
}

.wa-tooltip-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  font-weight: 400;
}

.wa-tooltip-desc strong {
  color: #fff;
  font-weight: 600;
}

/* Mobile: tap to toggle */
.wa-tooltip-wrap.wa-tooltip--open .wa-tooltip-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .wa-tooltip-box {
    width: 220px;
    left: 0;
    transform: translateX(0) translateY(4px);
  }
  .wa-tooltip-wrap:hover .wa-tooltip-box,
  .wa-tooltip-wrap:focus-within .wa-tooltip-box,
  .wa-tooltip-wrap.wa-tooltip--open .wa-tooltip-box {
    transform: translateX(0) translateY(0);
  }
  .wa-tooltip-box::after {
    left: 24px;
    transform: rotate(45deg);
  }
}

/* CTA and secondary buttons inside cards */
.pricing-card .cta-primary,
.pricing-card .cta-secondary {
  margin-top: auto;
}

.cta-secondary {
  width: 100%;
  height: 44px;
  background: var(--neutral-surface);
  color: var(--text-tertiary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-md);
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-secondary--active {
  cursor: pointer;
  color: var(--text-secondary);
  border-color: var(--neutral-line);
  transition: all 200ms ease;
}

.cta-secondary--active:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
}

/* ========== FOUNDER BANNER — Full-width exclusive ========== */
.founder-banner {
  background: var(--brand-primary-dark);
  color: var(--neutral-white);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.founder-banner__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 168, 134, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.founder-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.founder-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-primary-hover);
  margin-bottom: var(--space-5);
  background: rgba(0, 168, 134, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 168, 134, 0.2);
}

.founder-banner__icon {
  font-size: 16px;
}

.founder-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: var(--space-10);
  color: var(--neutral-white);
}

.founder-banner__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-8);
  max-width: 700px;
  margin: 0 auto;
}

.founder-banner__perk {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  text-align: left;
  flex: 1;
}

.founder-banner__perk-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.founder-banner__perk-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: 4px;
}

.founder-banner__perk-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-weight: 500;
}

.founder-banner__perk-desc strong {
  color: var(--brand-primary-hover);
  font-weight: 700;
}

.founder-banner__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.founder-banner__fine {
  margin-top: var(--space-8);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .founder-banner { padding: var(--space-10) 0; }

  .founder-banner__grid {
    flex-direction: column;
    gap: var(--space-6);
  }

  .founder-banner__divider {
    width: 100%;
    height: 1px;
  }
}

/* Live counter */
/* Live counter */
.live-counter {
  font-size: 14px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-5);
  font-weight: 500;
  line-height: 1.5;
}

.live-counter__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--semantic-success);
  animation: pulse 2s infinite;
}

.live-counter__number {
  color: var(--text-primary);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ---------- FAQ ---------- */
/* FAQ header with mascot */
.section__header--faq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-6);
}

.faq-header-content {
  text-align: center;
}

.faq-mascot {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  animation: mascotFloat 4s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .section__header--faq {
    flex-direction: column;
    align-items: center;
  }
  .faq-mascot {
    width: 140px;
    order: -1;
  }
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 120ms ease-out;
  min-height: 44px; /* doc: min 44px touch target */
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-quaternary);
  transition: transform 200ms ease-out;
}

.faq-item[open] summary::after { content: '×'; }
.faq-item summary:hover { color: var(--brand-primary); }

.faq-item__answer {
  padding: 0 0 var(--space-5);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
  animation: fadeIn 200ms ease-out;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: var(--space-24) 0;
  background: var(--bg-panel);
}

.final-cta .hero-form {
  margin: var(--space-12) auto 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--neutral-line);
  padding: var(--space-20) var(--space-6) var(--space-12);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__col-links a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 120ms ease-out;
  font-weight: 500;
}

.footer__col-links a:hover { color: var(--brand-primary); }

.footer__disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  padding-top: var(--space-6);
  border-top: 1px solid var(--neutral-line);
  line-height: 1.55;
  font-weight: 500;
}

/* ---------- SCROLL REVEAL (doc: 200ms ease-out for medium motion) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms cubic-bezier(0.2,0,0.2,1), transform 500ms cubic-bezier(0.2,0,0.2,1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section headers get a slight scale entrance */
.section__header.reveal.revealed {
  animation: none;
}

/* Smooth nav shadow on scroll */
.navbar--scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

/* ---------- CTA PULSE — removed per doc: "nada pulsa, nada chama atenção sem motivo" ---------- */

/* ---------- FOCUS VISIBLE ---------- */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- RESPONSIVE ---------- */
/* ========== TABLET (1024px) ========== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) { grid-column: auto; grid-row: auto; }
  .pricing-grid > .pricing-card { flex: 0 0 calc((100% - var(--space-4)) / 2); min-width: 0; }
  .pricing-card--featured { order: -1; }
  .pricing-slider__arrow { width: 38px; height: 38px; }
  .pricing-slider__arrow--left { left: -12px; }
  .pricing-slider__arrow--right { right: -12px; }
  .pricing-slider__dots { display: flex; }
  .early-bird { padding: var(--space-12) var(--space-6); }
  .eb-perks { flex-direction: column; gap: var(--space-3); }
  .eb-perk { max-width: 100%; }
  .eb-perk-divider { flex-direction: row; }
  .eb-perk-divider svg { transform: rotate(0deg); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* ========== MOBILE (768px) ========== */
@media (max-width: 768px) {

  /* --- Global --- */
  .container { padding: 0 var(--space-5); }
  .section { padding: var(--space-10) 0; }
  .section__header { margin-bottom: var(--space-10); }
  .section__subtitle { font-size: 15px; }
  .section__eyebrow { font-size: 11px; padding: 5px 12px; }

  /* --- Typography scale-down --- */
  .display-xl { letter-spacing: -1.5px; line-height: 0.95; }
  .body-lg { font-size: 16px; line-height: 1.5; }

  /* --- Navbar --- */
  .navbar__links { display: none; }
  .navbar__cta.desktop-only { display: none; }
  .navbar__hamburger { display: block; }

  /* --- Hero --- */
  .hero {
    padding-top: calc(64px + var(--space-6));
    min-height: auto;
    padding-bottom: var(--space-6);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__content {
    padding-top: 0;
    text-align: center;
  }

  .hero__eyebrow {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hero__title { margin-bottom: var(--space-4); }

  .hero__sub {
    max-width: 100%;
    margin-bottom: var(--space-6);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    text-indent: 0 !important;
    font-size: 16px;
  }

  .hero-form {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* MacBook mockup mobile fixes */
  .macbook-mockup {
    max-width: 100%;
    transform: none;
  }

  .macbook-screen {
    min-height: auto;
    border-width: 8px;
    border-bottom-width: 10px;
    border-radius: 14px 14px 0 0;
    aspect-ratio: 16/10;
  }

  .macbook-notch {
    width: 100px;
    height: 16px;
    border-radius: 0 0 8px 8px;
  }
  .macbook-notch::after {
    top: 5px;
    width: 5px;
    height: 5px;
  }

  .macbook-base {
    height: 10px;
    width: calc(100% + 24px);
    border-radius: 0 0 10px 10px;
  }

  .macbook-base-lip {
    width: 80px;
    height: 5px;
    border-radius: 0 0 5px 5px;
  }

  .hero-form__card .cta-primary {
    height: 48px;
  }

  .hero-form__card {
    border-radius: var(--radius-lg);
    padding: var(--space-4);
  }

  .hero-form__row {
    flex-direction: column;
  }

  .trust-badges {
    justify-content: center;
  }

  /* --- Hero Chat Card (mobile) --- */
  .hero__card {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
    max-width: 100%;
  }

  .hero__card-header {
    font-size: 11px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .ia-bubble {
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .ia-bubble__meta {
    font-size: 10px;
    margin-bottom: 4px;
    gap: 5px;
  }

  .ia-bubble__msg { font-size: 13px; line-height: 1.45; }

  /* --- Features --- */
  .features-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) { grid-column: 1; grid-row: auto; }
  .feature-card { padding: var(--space-5); border-radius: 14px; }
  .feature-card__icon { width: 42px; height: 42px; border-radius: 12px; }
  .feature-card__title { font-size: 16px; }
  .feature-card:nth-child(1) .feature-card__title { font-size: 18px; }
  .feature-card__desc { font-size: 13px; }
  .feature-card:nth-child(1) .feature-card__desc { font-size: 14px; }

  /* --- Score --- */
  .score-section {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }

  .score-gauge { width: 220px; margin: 0 auto; }

  /* --- Comparison (handled by component media query) --- */

  /* --- Early Bird --- */
  .early-bird {
    padding: var(--space-8) var(--space-5);
    border-radius: var(--radius-xl);
  }

  .early-bird__price strong { font-size: 32px; }

  /* --- Pricing: arrow slider on mobile --- */
  .pricing-grid > .pricing-card {
    flex: 0 0 100%;
    max-width: none;
    padding: var(--space-5);
  }

  .pricing-slider__arrow { width: 36px; height: 36px; }
  .pricing-slider__arrow--left { left: 4px; }
  .pricing-slider__arrow--right { right: 4px; }
  .pricing-slider__dots { display: flex; }

  .pricing-card--featured {
    border-width: 2px;
  }

  .pricing-card:hover { transform: none; }
  .pricing-card__amount { font-size: 28px; }

  /* --- FAQ --- */
  .faq-item summary {
    padding: var(--space-4) 0;
    font-size: 15px;
  }

  /* --- Final CTA --- */
  .final-cta-banner {
    padding: var(--space-12) 0;
  }

  .final-cta-banner::after {
    width: 100%;
    height: 300px;
  }

  .final-cta-banner__subtitle {
    font-size: 16px;
  }

  .final-cta-banner__form.eb-form,
  .eb-form {
    max-width: 100%;
  }

  .eb-divider {
    max-width: 100%;
  }

  /* --- Footer --- */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  /* --- Live counter --- */
  .live-counter { font-size: 13px; }
}

/* ========== SMALL PHONES (480px) ========== */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero__content { text-align: left; }
  .trust-badges { justify-content: flex-start; }

  .trust-badges { flex-direction: column; gap: var(--space-2); }
  .trust-badges .trust-badge { align-self: flex-start; }
  .trust-line { flex-direction: column; gap: var(--space-2); }
  .footer__grid { grid-template-columns: 1fr; }

  .pricing-grid { max-width: 100%; }

  /* Hero form tighter padding */
  .hero-form__card {
    padding: var(--space-3);
  }

  /* MacBook extra small */
  .macbook-screen {
    border-width: 6px;
    border-bottom-width: 8px;
    border-radius: 10px 10px 0 0;
  }
  .macbook-notch {
    width: 70px;
    height: 12px;
    border-radius: 0 0 6px 6px;
  }
  .macbook-notch::after {
    top: 3px;
    width: 4px;
    height: 4px;
  }
  .macbook-base {
    height: 8px;
    width: calc(100% + 16px);
    border-radius: 0 0 8px 8px;
  }
  .macbook-base-lip {
    width: 50px;
    height: 4px;
    border-radius: 0 0 4px 4px;
  }

  /* Hero card (chat) inside macbook */
  .hero__card {
    padding: 12px 10px;
  }
  .ia-bubble {
    padding: 8px 10px;
    margin-bottom: 6px;
  }
  .ia-bubble__msg { font-size: 12px; }

  /* Score info */
  .score-info { max-width: 100%; }

  /* Early bird section */
  .early-bird {
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-lg);
  }
  .eb-title { letter-spacing: -1px; }
  .eb-subtitle { font-size: 15px; }
  .eb-perk {
    padding: var(--space-4);
  }
  .eb-perk__value { font-size: 18px; }

  /* Comparison table (handled by component media query) */

  /* Final CTA */
  .final-cta-banner__title {
    letter-spacing: -1.5px;
  }

  .final-cta-banner__trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    font-size: 12px;
  }

  .final-cta-banner__trust .dot {
    display: none;
  }

  /* Pricing cards small phone */
  .pricing-grid > .pricing-card {
    flex: 0 0 100%;
    padding: var(--space-4);
  }
  .pricing-card__amount { font-size: 24px; }

  /* Feature cards */
  .feature-card {
    padding: var(--space-4);
  }

  /* Display text */
  .display-xl {
    font-size: clamp(2rem, 8vw, 2.5rem);
    letter-spacing: -1px;
  }

  .display {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }
}

/* ---------- CONFETTI ---------- */
.confetti-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}
