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

:root {
  --navy:    #0A0E1A;
  --navy2:   #0F1423;
  --navy3:   #141929;
  --navy4:   #1A2035;
  --orange:  #FF6B35;
  --orange2: #FF8C5A;
  --teal:    #00D4FF;
  --teal2:   #00AACC;
  --white:   #FFFFFF;
  --gray:    #A0AABB;
  --gray2:   #6B7585;
  --gold:    #FFD700;
  --green:   #00E676;
  --red:     #FF4757;
  --font-h:  'Poppins', sans-serif;
  --font-b:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font-family: var(--font-b); }

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label--teal  { color: var(--teal); }
.section-label--orange { color: var(--orange); }

.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-teal {
  background: linear-gradient(135deg, var(--teal), #00FF88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade-in scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PULSING GLOW BUTTON
============================================================ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,53,0.5), 0 0 40px rgba(255,107,53,0.2); }
  50%       { box-shadow: 0 0 35px rgba(255,107,53,0.85), 0 0 70px rgba(255,107,53,0.4); }
}
.btn-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #FF4500);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  padding: 18px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: 50px;
}
.btn-pulse:hover { transform: scale(1.04); }
.btn-pulse:hover::after { background: rgba(255,255,255,0.06); }
.btn-pulse--lg { font-size: 20px; padding: 22px 48px; width: 100%; max-width: 560px; }
.btn-pulse--full { width: 100%; max-width: none; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,53,0.15);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), #FF4500);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 16px rgba(255,107,53,0.5);
}
.nav__center {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav__cta {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--orange2); transform: translateY(-1px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  background: rgba(0,212,255,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0,212,255,0.2);
}
.hero__headline {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero__subheadline {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--orange), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.hero__body {
  font-size: 17px;
  color: #C0C8D8;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero__social-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__sp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #C0C8D8;
}
.hero__sp-stars {
  color: var(--gold);
  font-size: 12px;
  white-space: nowrap;
}
.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero__cta-sub {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__cta-sub span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero__cta-sub span::before {
  content: '·';
  margin: 0 2px;
}
.hero__cta-sub span:first-child::before { display: none; }

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__phone-wrapper {
  position: relative;
  width: 280px;
  height: 500px;
  margin: 0 auto;
}
.hero__phone {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1A2035, #0F1423);
  border-radius: 40px;
  border: 2px solid rgba(255,107,53,0.3);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,107,53,0.2), 0 0 120px rgba(0,212,255,0.1);
  position: relative;
}
.hero__phone-screen {
  padding: 30px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phone-time {
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  letter-spacing: -2px;
}
.phone-time span {
  color: var(--orange);
}
.phone-time__ampm {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.55) !important;
  letter-spacing: 0 !important;
  vertical-align: middle;
  margin-left: 4px;
}
.phone-notif {
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.4);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-notif-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), #FF4500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,107,53,0.6);
}
.phone-notif-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.phone-notif-text p {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.4;
}
.phone-gauge {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px;
  padding: 14px;
}
.phone-gauge-label {
  font-size: 10px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.phone-gauge-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.phone-gauge-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 4px;
  animation: gauge-pulse 3s ease-in-out infinite;
}
@keyframes gauge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.phone-gauge-stats {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray);
}
.phone-gauge-stats span { color: var(--teal); font-weight: 700; }
.phone-swaps {
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 14px;
  padding: 12px 14px;
}
.phone-swaps-title {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phone-swap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #C0C8D8;
  margin-bottom: 6px;
}
.phone-swap-item i { color: var(--green); font-size: 10px; }

/* Monster silhouette */
.monster-wrap {
  position: absolute;
  right: -30px;
  bottom: 60px;
  width: 120px;
  height: 200px;
  pointer-events: none;
}
.monster-silhouette {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255,100,50,0.2) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  animation: monster-float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,107,53,0.4));
}
@keyframes monster-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}
.shield-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--teal), #006688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 30px rgba(0,212,255,0.6);
  animation: shield-glow 2.5s ease-in-out infinite;
}
@keyframes shield-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(0,212,255,0.6); transform: scale(1); }
  50%       { box-shadow: 0 0 50px rgba(0,212,255,0.9); transform: scale(1.08); }
}

/* ============================================================
   SECTION: PROBLEM
============================================================ */
.section-problem {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
}
.section-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.04) 0%, transparent 70%);
}
.problem__header {
  text-align: center;
  margin-bottom: 56px;
}
.section-headline {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--navy3);
  border: 1px solid rgba(255,107,53,0.15);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: rgba(255,107,53,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.problem-card__icon { font-size: 36px; margin-bottom: 14px; }
.problem-card__title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.problem-card__text { font-size: 15px; color: #A0AABB; line-height: 1.7; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  background: var(--navy4);
  border: 1px solid rgba(255,107,53,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.3s;
}
.stat-item:hover { border-color: rgba(255,107,53,0.3); transform: translateY(-3px); }
.stat-item__number {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   SECTION: QUIZ INTRO / MONSTER TYPES
============================================================ */
.section-quiz-intro {
  padding: 90px 0;
  background: var(--navy2);
}
.quiz-intro__header { text-align: center; margin-bottom: 20px; }
.quiz-intro__sub {
  text-align: center;
  font-size: 18px;
  color: #C0C8D8;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.monster-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.monster-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s;
}
.monster-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-color, var(--orange));
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px var(--card-glow, rgba(255,107,53,0.2));
}
.monster-card--red   { --card-color: #FF4757; --card-glow: rgba(255,71,87,0.2); }
.monster-card--gold  { --card-color: var(--gold); --card-glow: rgba(255,215,0,0.2); }
.monster-card--green { --card-color: var(--green); --card-glow: rgba(0,230,118,0.2); }
.monster-card--blue  { --card-color: #4DC6FF; --card-glow: rgba(77,198,255,0.2); }
.monster-card--purple { --card-color: #BD93F9; --card-glow: rgba(189,147,249,0.2); }
.monster-card__emoji { font-size: 44px; margin-bottom: 12px; display: block; }
.monster-card__badge {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.monster-card--red   .monster-card__badge { background: #FF4757; box-shadow: 0 0 8px #FF4757; }
.monster-card--gold  .monster-card__badge { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.monster-card--green .monster-card__badge { background: var(--green); box-shadow: 0 0 8px var(--green); }
.monster-card--blue  .monster-card__badge { background: #4DC6FF; box-shadow: 0 0 8px #4DC6FF; }
.monster-card--purple .monster-card__badge { background: #BD93F9; box-shadow: 0 0 8px #BD93F9; }
.monster-card__title {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.monster-card__desc { font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.monster-card__blur {
  background: var(--navy4);
  border-radius: 8px;
  padding: 10px;
  font-size: 11px;
  color: var(--gray2);
  position: relative;
  overflow: hidden;
}
.monster-card__blur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(4px);
}
.monster-card__blur-text { position: relative; z-index: 1; }
.quiz-intro__cta { text-align: center; margin-top: 16px; }
.quiz-intro__curiosity { font-size: 18px; color: #C0C8D8; margin-bottom: 28px; font-style: italic; }

/* ============================================================
   SECTION: HOW IT WORKS
============================================================ */
.section-how {
  padding: 90px 0;
  background: var(--navy);
}
.how__header { text-align: center; margin-bottom: 56px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.step { text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: 24px;
  color: var(--orange);
  opacity: 0.5;
}
.step__number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), #FF4500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(255,107,53,0.4);
}
.step__title { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.step__text { font-size: 15px; color: var(--gray); line-height: 1.7; }
.what-you-get {
  background: var(--navy3);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.what-you-get::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}
.what-you-get__title { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 20px; text-align: center; }
.what-you-get__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.what-you-get__list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #C0C8D8; }
.what-you-get__list li i { color: var(--teal); font-size: 16px; flex-shrink: 0; }
.what-you-get__value { text-align: center; font-family: var(--font-h); font-size: 14px; color: var(--gray); }
.what-you-get__value s { color: var(--gray2); }
.what-you-get__value strong { color: var(--green); font-size: 18px; }

/* ============================================================
   SECTION: TESTIMONIALS
============================================================ */
.section-testimonials { padding: 90px 0; background: var(--navy2); }
.testi__header { text-align: center; margin-bottom: 56px; }
.testi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.testi-stat {
  text-align: center;
  background: var(--navy4);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 14px;
  padding: 24px 16px;
  transition: all 0.3s;
}
.testi-stat:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); }
.testi-stat__num { font-family: var(--font-h); font-size: 40px; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.testi-stat__label { font-size: 13px; color: var(--gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(255,107,53,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.testi-card__stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-card__quote { font-size: 16px; color: #C0C8D8; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-card__quote::before { content: '"'; font-size: 28px; color: var(--orange); line-height: 0; vertical-align: -8px; margin-right: 4px; }
.testi-card__quote::after  { content: '"'; font-size: 28px; color: var(--orange); line-height: 0; vertical-align: -8px; margin-left: 4px; }
.testi-card__person { display: flex; align-items: center; gap: 14px; }
.testi-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy4), var(--navy3));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 2px solid rgba(255,107,53,0.3);
  flex-shrink: 0;
}
.testi-card__info strong { display: block; font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--white); }
.testi-card__info span { font-size: 13px; color: var(--gray); }
.testi-card__result {
  display: inline-block;
  margin-top: 4px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================================
   SECTION: LEAD CAPTURE FORM
============================================================ */
.section-form {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-form::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.form__header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.form__headline {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.form__sub { font-size: 17px; color: #A0AABB; max-width: 560px; margin: 0 auto; }
.form-card {
  background: var(--navy3);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 24px;
  padding: 48px;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 80px rgba(255,107,53,0.1);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF9500, var(--teal));
  border-radius: 24px 24px 0 0;
}
.form-card__title { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--white); text-align: center; margin-bottom: 8px; }
.form-card__subtitle { font-size: 14px; color: var(--gray); text-align: center; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--navy4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: all 0.2s;
}
.form-group select option { background: var(--navy4); color: var(--white); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: var(--navy3);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.form-group input::placeholder { color: var(--gray2); }
.phone-input-wrap { display: flex; gap: 0; }
.phone-flag {
  background: var(--navy4);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 14px 14px;
  font-size: 20px;
  display: flex;
  align-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.phone-input-wrap input { border-radius: 0 12px 12px 0; border-left: none; }
.phone-input-wrap input:focus { box-shadow: none; border-color: var(--orange); }
.form-submit-wrap { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.form-privacy {
  font-size: 12px; color: var(--gray2); text-align: center;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.form-privacy i { color: var(--teal); }
.trust-badges { display: flex; justify-content: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--gray);
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 14px; border-radius: 50px;
}
.trust-badge i { color: var(--teal); }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success__icon { font-size: 64px; margin-bottom: 16px; animation: bounce 0.6s ease; }
@keyframes bounce {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success__title { font-family: var(--font-h); font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.form-success__text { font-size: 16px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   SECTION: PLATFORM PREVIEW
============================================================ */
.section-platform { padding: 90px 0; background: var(--navy2); }
.platform__header { text-align: center; margin-bottom: 56px; }
.platform__sub { font-size: 18px; color: #C0C8D8; max-width: 580px; margin: 10px auto 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.feature-card__icon { font-size: 36px; margin-bottom: 14px; }
.feature-card__title { font-family: var(--font-h); font-size: 16px; font-weight: 800; color: var(--teal); margin-bottom: 8px; }
.feature-card__text { font-size: 14px; color: var(--gray); line-height: 1.7; }
.pricing-callout {
  background: var(--navy3);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.pricing-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.06) 0%, transparent 70%);
}
.pricing-callout__free { font-family: var(--font-h); font-size: 24px; font-weight: 900; color: var(--green); margin-bottom: 6px; position: relative; }
.pricing-callout__then { font-size: 15px; color: var(--gray); margin-bottom: 16px; position: relative; }
.pricing-callout__then strong { color: var(--white); font-size: 20px; }
.pricing-callout__guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  color: var(--green);
  font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 50px;
  position: relative;
}

/* ============================================================
   SECTION: FAQ
============================================================ */
.section-faq { padding: 90px 0; background: var(--navy); }
.faq__header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(255,107,53,0.3); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--white);
  user-select: none;
}
.faq-item__q i { font-size: 14px; color: var(--orange); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-item__q i { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding: 0 24px 20px; font-size: 15px; color: #A0AABB; line-height: 1.75; }

/* ============================================================
   SECTION: FINAL CTA
============================================================ */
.section-final-cta {
  padding: 100px 0;
  background: var(--navy2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(255,107,53,0.1) 0%, transparent 60%);
}
.clock-visual {
  font-size: 80px; margin-bottom: 20px; display: block;
  animation: clock-pulse 3s ease-in-out infinite;
}
@keyframes clock-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,107,53,0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(255,107,53,0.7)); }
}
.final-cta__headline {
  font-family: var(--font-h);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -1px;
  position: relative;
}
.final-cta__sub { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--orange); margin-bottom: 20px; position: relative; }
.final-cta__body { font-size: 17px; color: #A0AABB; max-width: 520px; margin: 0 auto 40px; position: relative; }
.final-cta__wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; }
.final-cta__join { font-size: 14px; color: var(--gray); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0 24px;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-weight: 800; font-size: 20px; color: var(--white); }
.footer__logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange), #FF4500);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.footer__links a:hover { color: var(--orange); }
.footer__copy { font-size: 13px; color: var(--gray2); line-height: 1.6; }
.footer__heart { color: var(--orange); }
.footer__flag { display: inline; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__headline { font-size: 42px; }
  .hero__cta-wrap { align-items: center; }
  .hero__body { text-align: center; max-width: 100%; }
  .hero__social-proof { align-items: center; }
  .hero { text-align: center; }
  .monster-types { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav__center { display: none; }
  .problem__cards { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .testi-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .monster-types { grid-template-columns: repeat(2, 1fr); }
  .btn-pulse { font-size: 16px; padding: 16px 28px; }
  .btn-pulse--lg { font-size: 17px; padding: 18px 32px; }
  .what-you-get { padding: 28px 24px; }
  .form-card { padding: 32px 24px; }
  .hero__headline { font-size: 34px; }
}
@media (max-width: 480px) {
  .monster-types { grid-template-columns: 1fr 1fr; }
  .testi-stats { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .trust-badges { gap: 10px; }
  .trust-badge { font-size: 11px; padding: 6px 10px; }
  .hero__headline { font-size: 28px; }
  .hero__subheadline { font-size: 18px; }
}
