/* ===== FONTS ===== */
/* Removed @import - it creates a blocking render chain. Fonts are now loaded async via <link> in HTML */

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

:root {
  /* -- Reference palette -- */
  --clr-bg: #01100f;
  --clr-bg-mid: #021a18;
  --clr-bg-light: #f5f5f0;
  --clr-bg-card: rgba(255,255,255,0.04);
  --clr-bg-card-border: rgba(255,255,255,0.08);
  --clr-white: #ffffff;
  --clr-text: #e0e0e0;
  --clr-text-muted: #8a9a97;
  --clr-text-dark: #111111;
  --clr-accent: #ff9900;
  --clr-accent-hover: #e68a00;
  --clr-cta: #99cc33;
  --clr-cta-hover: #88b82e;
  --clr-cta-glow: rgba(153,204,51,0.35);
  --clr-urgency: #a00000;
  --clr-urgency-light: #c41a1a;
  --clr-red: #ff4757;
  --clr-neon-dim: rgba(153,204,51,0.08);
  --clr-card-highlight: rgba(153,204,51,0.06);
  /* System font stack — renders instantly, no network requests */
  /* Priority: modern OS fonts (Geist on macOS, Segoe on Windows, Roboto on Android) */
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', system-ui, sans-serif;
  --max-w: 680px;
  --px: 20px;
  --radius: 16px;
  --radius-sm: 8px;
  --urgency-h: 42px;
  --navbar-h: 52px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* grid overlay */
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ===== URGENCY BAR ===== */
/* Initially hidden so it doesn't become the LCP candidate before fonts load */
#urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--clr-urgency) 0%, var(--clr-urgency-light) 50%, var(--clr-urgency) 100%);
  height: var(--urgency-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Start invisible — will be revealed by JS after first paint */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#urgency-bar.is-visible {
  visibility: visible;
  opacity: 1;
}

.urgency-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px;
}

.urgency-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 3px;
}

.cd-block {
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  padding: 3px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}

.cd-block span:first-child {
  font-size: 14px;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-block small {
  font-size: 8px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cd-sep {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: var(--urgency-h);
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(1, 16, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(153,204,51,0.12);
  padding: 10px var(--px);
  height: var(--navbar-h);
  transition: background 0.3s;
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.navbar-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-cta);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.navbar-links {
  display: flex;
  gap: 2px;
  list-style: none;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.navbar-links::-webkit-scrollbar { display: none; }

.navbar-links a {
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
  padding: 5px 10px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.navbar-links a:hover {
  color: var(--clr-cta);
  background: var(--clr-neon-dim);
}

.navbar-cta {
  color: var(--clr-cta) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(153,204,51,0.3) !important;
}

/* ===== SECTION SPACING ===== */
section { padding: 60px 0; }
section:first-of-type {
  padding-top: calc(var(--urgency-h) + var(--navbar-h) + 32px);
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--clr-white);
  letter-spacing: -0.5px;
}

.section-title em {
  font-style: normal;
  color: var(--clr-accent);
}

.section-subtitle {
  font-size: 15px;
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 18px 32px;
  background: var(--clr-cta);
  color: var(--clr-text-dark);
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 1px;
  box-shadow: 0 0 24px var(--clr-cta-glow);
}

.cta-btn:hover {
  background: var(--clr-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(153,204,51,0.55);
}

.cta-btn:active { transform: translateY(0); }

.cta-subtext {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-urgency-light);
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== HERO ===== */
#hero {
  padding-top: calc(var(--urgency-h) + var(--navbar-h) + 24px);
  padding-bottom: 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(153,204,51,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,153,0,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
  width: 100%;
}

.hero-headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--clr-white);
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: normal;
  color: var(--clr-accent);
}

/* Promise items */
.hero-promises {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.hero-promises li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-text);
  padding: 12px 16px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-bg-card-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.hero-promises li:hover {
  border-color: rgba(153,204,51,0.25);
}

.hero-promises .promise-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-cta);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-promises .promise-icon::after {
  content: '✓';
  font-size: 11px;
  font-weight: 800;
  color: #000;
}

.hero-promises li strong {
  color: var(--clr-accent);
  font-weight: 700;
}

.hero-scroll-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
  text-align: center;
}

/* Hero image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-expert-img {
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  /* Removed drop-shadow to eliminate massive 1.89s Render Delay on mobile GPUs */
}

/* ===== FORM (inside hero) ===== */
.form-wrapper {
  max-width: 100%;
  margin: 0;
  scroll-margin-top: calc(var(--urgency-h) + var(--navbar-h) + 20px);
}

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

.form-header-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.form-header-sub {
  font-size: 13px;
  color: var(--clr-text-muted);
}

#lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#lead-form input[type="text"],
#lead-form input[type="email"],
#lead-form input[type="tel"] {
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
  font-family: var(--font-main);
  background: rgba(255,255,255,0.07);
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

#lead-form input:focus {
  border-color: var(--clr-cta);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px var(--clr-neon-dim);
}

#lead-form input::placeholder {
  color: var(--clr-text-muted);
}

.form-error {
  color: var(--clr-red);
  font-size: 13px;
  margin-top: -4px;
  display: none;
}

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

#lead-form .cta-btn {
  margin-top: 6px;
  max-width: 100%;
}

.iti { width: 100%; }
.iti__selected-dial-code { color: var(--clr-white); }
.iti__flag-container { background: transparent; }
.iti input { background: rgba(255,255,255,0.07) !important; color: var(--clr-white) !important; border-color: rgba(255,255,255,0.14) !important; }
.iti input:focus { border-color: var(--clr-cta) !important; }

/* ===== SCROLLING RIBBON ===== */
.scroll-ribbon {
  background: var(--clr-urgency);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ribbon-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ribbon-scroll 25s linear infinite;
  width: max-content;
  will-change: transform;
}

.ribbon-item {
  font-size: 14px;
  font-weight: 800;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 40px;
  flex-shrink: 0;
}

@keyframes ribbon-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--clr-bg);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}

.testimonial-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 250px;
  margin: 0 auto;
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.testimonial-card:hover .play-overlay {
  background: rgba(0,0,0,0.2);
}

.play-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,153,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-white);
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(255,153,0,0.4);
  transition: transform 0.3s;
}

.testimonial-card:hover .play-icon {
  transform: scale(1.15);
}

/* ===== TIMELINE (LEVELS) ===== */
#levels {
  background: var(--clr-bg-mid);
  overflow: hidden;
  position: relative;
}

#levels::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(153,204,51,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.timeline {
  position: relative;
  padding: 0;
  margin-bottom: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-cta), rgba(153,204,51,0.1));
}

.timeline-item {
  position: relative;
  padding-left: 68px;
  padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--clr-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  box-shadow: 0 0 16px var(--clr-cta-glow);
  z-index: 1;
}

.timeline-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-bg-card-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, background 0.2s;
}

.timeline-card:hover {
  border-color: rgba(153,204,51,0.25);
  background: rgba(153,204,51,0.04);
}

.timeline-level-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-accent);
  margin-bottom: 4px;
}

.timeline-level-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.timeline-level-desc {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-level-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-cta);
  background: var(--clr-neon-dim);
  padding: 4px 12px;
  border-radius: 20px;
}

.levels-note {
  text-align: center;
  font-size: 15px;
  color: var(--clr-text-muted);
  font-style: italic;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: var(--clr-card-highlight);
  border: 1px solid rgba(153,204,51,0.12);
  border-radius: var(--radius-sm);
}

/* ===== BENEFITS ===== */
#benefits {
  background: var(--clr-bg-light);
}

#benefits .section-title {
  color: var(--clr-text-dark);
}

#benefits .section-subtitle {
  color: #555;
}

.benefit-card {
  background: var(--clr-white);
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 16px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.benefit-card img {
  max-width: 240px;
  margin: 0 auto 20px;
}

.benefit-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--clr-bg);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.benefit-text strong {
  color: var(--clr-accent);
  font-weight: 700;
}

.benefit-note {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

.bonus-list {
  list-style: none;
  text-align: left;
  max-width: 340px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-list li {
  padding: 10px 14px 10px 34px;
  font-size: 14px;
  color: #333;
  position: relative;
  background: #f8f8f5;
  border-radius: 8px;
  border: 1px solid #ebebeb;
}

.bonus-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--clr-cta);
  font-weight: 800;
  font-size: 14px;
}

#benefits .cta-btn {
  background: var(--clr-cta);
  color: var(--clr-text-dark);
  margin-top: 24px;
}

/* ===== OFFER ===== */
#offer {
  background: var(--clr-bg-mid);
  text-align: center;
  position: relative;
}

#offer::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(153,204,51,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.offer-image {
  max-width: 100%;
  margin: 0 auto 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.offer-list {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-list li {
  padding: 12px 16px 12px 42px;
  font-size: 15px;
  position: relative;
  color: var(--clr-text);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-bg-card-border);
  border-radius: var(--radius-sm);
}

.offer-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-cta);
  font-weight: 800;
  font-size: 14px;
}

.offer-urgency {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== GUARANTEE ===== */
#guarantee {
  background: var(--clr-bg);
  text-align: center;
}

.guarantee-wrapper {
  background: linear-gradient(135deg, rgba(153,204,51,0.08) 0%, rgba(255,153,0,0.04) 100%);
  border: 1px solid rgba(153,204,51,0.2);
  border-radius: var(--radius);
  padding: 40px 24px;
}

.guarantee-badge-area {
  margin-bottom: 24px;
}

.guarantee-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.guarantee-badge {
  max-width: 90px;
  filter: drop-shadow(0 0 20px rgba(153,204,51,0.5));
}

.guarantee-stars {
  font-size: 22px;
  color: var(--clr-accent);
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(255,153,0,0.4);
}

.guarantee-months {
  font-size: 28px;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(153,204,51,0.3);
}

.guarantee-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.guarantee-text {
  font-size: 15px;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.guarantee-text strong {
  color: var(--clr-accent);
}

/* ===== INSTRUCTOR ===== */
#instructor {
  background: var(--clr-bg-mid);
  text-align: center;
}

.instructor-image {
  max-width: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid rgba(153,204,51,0.3);
  box-shadow: 0 0 32px rgba(153,204,51,0.15);
}

.instructor-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-accent);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.instructor-role {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.instructor-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-bg-card-border);
  border-radius: var(--radius-sm);
  min-width: 95px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.instructor-text {
  font-size: 15px;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.instructor-text strong {
  color: var(--clr-accent);
}

/* ===== FOOTER ===== */
footer {
  padding: 32px 0;
  background: #000;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--clr-cta); }

.footer-info {
  font-size: 12px;
  color: rgba(128,128,128,0.6);
  line-height: 2;
}

/* ===== STICKY CTA BAR ===== */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 10px var(--px);
  background: rgba(1,16,15,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(153,204,51,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#sticky-cta.visible {
  transform: translateY(0);
}

.sticky-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.sticky-urgency {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-urgency-light);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

#sticky-cta .cta-btn {
  padding: 14px 24px;
  font-size: 15px;
  max-width: 500px;
  animation: none;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 30px; }
  :root { --px: 24px; }
}

@media (min-width: 768px) {
  .hero-headline { font-size: 34px; }
  .section-title { font-size: 34px; }
  section { padding: 72px 0; }
  :root { --px: 32px; }
  .cta-btn { font-size: 18px; padding: 20px 36px; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card:nth-child(4) { grid-column: 1 / 2; }
  .testimonial-card:nth-child(5) { grid-column: 2 / 3; max-width: none; }
}

@media (min-width: 1024px) {
  :root { --max-w: 760px; }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    max-width: 1100px;
    padding: 0 40px;
    gap: 48px;
  }

  .hero-content {
    flex: 1;
    max-width: 520px;
  }

  .hero-image-wrapper {
    flex: 0 0 auto;
    max-width: 380px;
  }

  .hero-expert-img {
    max-width: 380px;
  }

  .hero-headline { font-size: 38px; }

  .urgency-text { font-size: 13px; }
}

@media (max-width: 480px) {
  .urgency-text { font-size: 10px; }
  .cd-block { min-width: 30px; padding: 2px 4px; }
  .cd-block span:first-child { font-size: 12px; }
  .ribbon-item { font-size: 12px; padding: 0 24px; }
  .hero-expert-img { max-width: 240px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px var(--clr-cta-glow); }
  50%       { box-shadow: 0 0 40px rgba(153,204,51,0.55); }
}

/* Hero animations triggered by JS after load — not at paint time */
.hero-headline.animated { animation: fadeUp 0.7s ease both; }
.hero-promises.animated { animation: fadeUp 0.7s 0.1s ease both; }
.form-wrapper.animated  { animation: fadeUp 0.7s 0.2s ease both; }
/* CTA pulse only starts after page is interactive */
.cta-btn.interactive { animation: pulse-glow 2.5s ease-in-out infinite; }
.cta-btn.interactive:hover { animation: none; }

/* Scroll reveal via intersection observer */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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