:root {
  --green: #00e676;
  --green-dark: #00b84c;
  --green-glow: #00e67655;
  --dark: #060d0a;
  --dark2: #0c1a12;
  --dark3: #112219;
  --text: #e8f5ec;
  --muted: #7aad8a;
  --accent: #ffe600;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ───── NAV ───── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(to bottom, rgba(6,13,10,0.95), transparent);
  backdrop-filter: blur(2px);
}

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,230,118,0.5));
}

nav a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  transition: all 0.25s;
}

nav a:hover {
  background: var(--green);
  color: var(--dark);
}

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark2) 50%, #0a2016 50%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #00e67622 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  animation: pulse 4s ease-in-out infinite;
}

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

.hero-left {
  position: relative;
  z-index: 2;
  padding: 0 64px 0 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,0.12);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeDown 0.7s 0.1s ease both;
}

h1 .highlight {
  color: var(--green);
  text-shadow: 0 0 40px var(--green-glow), 0 0 80px rgba(0,230,118,0.2);
}

h1 .line2 {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255,230,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 24px 0 40px;
  max-width: 460px;
  font-weight: 300;
  animation: fadeDown 0.7s 0.2s ease both;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--green-glow); }
  50% { box-shadow: 0 0 50px var(--green-glow), 0 0 80px rgba(0,230,118,0.15); }
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,230,118,0.4);
}

.btn-primary svg { width: 20px; height: 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 17px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  background: none;
  font-family: 'Outfit', sans-serif;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeDown 0.7s 0.4s ease both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px var(--green-glow);
}

.trust-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.energy-visual {
  position: relative;
  width: 380px; height: 380px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,230,118,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow linear infinite;
}

.orbit-ring:nth-child(1) { width: 100%; height: 100%; animation-duration: 20s; }
.orbit-ring:nth-child(2) { width: 75%; height: 75%; animation-duration: 15s; animation-direction: reverse; border-color: rgba(0,230,118,0.25); }
.orbit-ring:nth-child(3) { width: 50%; height: 50%; animation-duration: 10s; border-color: rgba(0,230,118,0.35); }

@keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }

.orbit-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--green);
  top: -6px; left: 50%;
  transform: translateX(-50%);
}

.energy-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,230,118,0.15) 0%, transparent 70%);
  border: 2px solid rgba(0,230,118,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--green);
  text-shadow: 0 0 30px var(--green);
  flex-direction: column;
  line-height: 1;
}

.energy-center small {
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
}

.float-card {
  position: absolute;
  background: rgba(12,26,18,0.9);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 16px;
  padding: 14px 20px;
  backdrop-filter: blur(20px);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.float-card:nth-child(5) { top: 5%; left: -20%; animation-delay: 0s; }
.float-card:nth-child(6) { bottom: 8%; right: -15%; animation-delay: 1.2s; }
.float-card:nth-child(7) { top: 35%; right: -25%; animation-delay: 0.6s; }

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

.float-card .fc-icon { font-size: 1.2rem; margin-right: 8px; }
.float-card .fc-val { color: var(--green); font-weight: 700; }

/* ───── SECTIONS ───── */
.section {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

/* ───── STEPS ───── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: 24px;
  overflow: hidden;
}

.step {
  padding: 48px 40px;
  position: relative;
  background: var(--dark2);
  transition: background 0.3s;
}

.step:hover { background: var(--dark3); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0,230,118,0.08);
  margin-bottom: -8px;
  transition: color 0.3s;
}

.step:hover .step-num { color: rgba(0,230,118,0.15); }

.step-icon { font-size: 2.5rem; margin-bottom: 16px; }

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

.step-arrow {
  position: absolute;
  top: 50%; right: -2px;
  transform: translateY(-50%);
  width: 4px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  z-index: 2;
}

/* ───── BENEFITS ───── */
.benefits-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  top: -100px; left: -100px;
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
  position: relative;
}

.benefit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  cursor: default;
}

.benefit-card:hover {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: rgba(0,230,118,0.18);
  box-shadow: 0 0 20px rgba(0,230,118,0.2);
}

.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.benefit-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ───── EMBAIXADOR ───── */
.ambassador-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  position: relative;
  overflow: hidden;
}

.ambassador-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.05) 0%, transparent 70%);
  right: -150px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.ambassador-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ambassador-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.amb-badge {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
}

.ambassador-video {
  position: relative;
}

/* ───── VIDEO ───── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 64px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.12) 0%, transparent 70%);
  border-radius: 40px;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
  overflow: hidden;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(0,230,118,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,230,118,0.08);
  background: var(--dark2);
}

.video-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 24px;
  object-fit: cover;
}

.video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.video-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ───── TESTIMONIALS ───── */
.testimonials {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testi-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(0,230,118,0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.testi-quote {
  font-size: 4rem;
  color: var(--green);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0.7;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 24px;
}

.testi-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.testi-loc { font-size: 0.78rem; color: var(--muted); }

/* ───── LEGAL ───── */
.legal-section {
  padding: 80px;
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 24px;
}

.legal-badge-icon { font-size: 2rem; }
.legal-badge-text { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }
.legal-badge-sub { font-size: 0.75rem; color: var(--muted); }

.legal-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.legal-section p { color: var(--muted); line-height: 1.8; font-weight: 300; font-size: 0.95rem; }
.legal-section p strong { color: var(--green); font-weight: 600; }

.law-pill {
  display: inline-block;
  background: rgba(255,230,0,0.1);
  border: 1px solid rgba(255,230,0,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.faq-box {
  background: var(--dark);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 24px;
  padding: 40px;
}

.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
}

.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.faq-item span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ───── FORM ───── */
.form-section {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,230,118,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(0,230,118,0.04) 0%, transparent 60%);
}

.form-section-header { text-align: center; position: relative; }
.form-section-header .section-sub { margin: 0 auto; }

.form-wrapper {
  position: relative;
  max-width: 560px;
  margin: 60px auto 0;
  background: rgba(12,26,18,0.8);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 28px;
  padding: 52px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
  border-radius: 100px;
}

.form-header { text-align: center; margin-bottom: 40px; }

.form-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-header p { color: var(--muted); font-size: 0.9rem; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.25s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(0,230,118,0.04);
  box-shadow: 0 0 0 4px rgba(0,230,118,0.08);
}

.form-group input::placeholder { color: rgba(255,255,255,0.2); }

.form-group select option {
  background: var(--dark2);
  color: var(--text);
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(0,230,118,0.3);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.form-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(0,230,118,0.4);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
  line-height: 1.6;
}

.form-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.form-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-badge::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* ───── SUPORTE ───── */
.support-section {
  padding: 80px;
  background: linear-gradient(135deg, #0a1f0f, var(--dark2));
  border-top: 1px solid rgba(0,230,118,0.1);
  border-bottom: 1px solid rgba(0,230,118,0.1);
}

.support-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.support-wpp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

.support-wpp svg { width: 26px; height: 26px; flex-shrink: 0; }

.support-wpp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(37,211,102,0.5);
}

/* ───── FOOTER ───── */
footer {
  padding: 40px 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .logo img { height: 36px; flex-shrink: 0; }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  text-align: left;
}

footer .footer-dev { font-size: 0.72rem; }

/* ───── ANIMATIONS ───── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── SCROLL REVEAL ───── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ───── STICKY CTA ───── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: none;
}

.sticky-cta.show { display: block; }

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0,230,118,0.5);
  transition: all 0.3s;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.sticky-cta a:hover { background: white; transform: scale(1.04); }

@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}

/* ───── HAMBURGER ───── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 70%; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───── MOBILE DRAWER ───── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100dvh;
  background: rgba(6,13,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a:active { color: var(--green); }

.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--green);
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 18px 40px;
  border-radius: 100px;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.mobile-menu .mobile-cta:hover { background: var(--white); color: var(--dark); }

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  /* NAV */
  nav { padding: 16px 20px; }
  nav > a { display: none; }
  .hamburger { display: flex; }

  /* HERO */
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-left { padding: 0; }
  .hero-right { display: none; }
  h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { max-width: 100%; font-size: 1rem; }
  .cta-group { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }

  /* TRUST BAR */
  .trust-bar { flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }

  /* SECTIONS */
  .section { padding: 60px 24px; }
  .benefits-section { padding: 60px 24px; }
  .testimonials { padding: 60px 24px; }
  .form-section { padding: 60px 24px; }
  footer { padding: 40px 24px; }

  /* STEPS */
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .step-arrow { display: none; }
  .step { padding: 32px 24px; }

  /* BENEFITS */
  .benefits-grid { grid-template-columns: 1fr; }

  /* AMBASSADOR */
  .ambassador-section { padding: 60px 24px; }
  .ambassador-inner { grid-template-columns: 1fr; gap: 32px; }

  /* VIDEOS */
  .videos-grid { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  .testi-grid { grid-template-columns: 1fr; }

  /* LEGAL / FAQ */
  .legal-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }

  /* LEGAL */
  .faq-box { padding: 24px 20px; }
  .legal-badge { padding: 16px 20px; }

  /* FORM */
  .form-wrapper { padding: 32px 20px; }
  .form-section-header .section-sub { max-width: 100%; }
  .form-submit { font-size: 1rem; padding: 18px; }

  /* SUPPORT */
  .support-section { padding: 60px 24px; }
  .support-inner { flex-direction: column; align-items: stretch; }
  .support-wpp { width: 100%; justify-content: center; }

  /* FOOTER */
  footer { flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding-bottom: 90px; }
  footer p { text-align: center; }

  /* STICKY CTA */
  .sticky-cta { left: 16px; right: 16px; transform: none; bottom: 16px; }
  .sticky-cta a { width: 100%; font-size: 0.95rem; padding: 16px 24px; }
}
