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

:root {
  --bg: #0a0c10;
  --bg2: #0e1118;
  --bg3: #12151f;
  --gold: #f0b429;
  --gold2: #ffd166;
  --gold-dim: rgba(240,180,41,0.12);
  --blue: #1a8fff;
  --red: #e63946;
  --text: #e8ecf4;
  --muted: #7a8499;
  --border: rgba(240,180,41,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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: 0;
  opacity: 0.35;
}

section, header, footer { position: relative; z-index: 1; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,180,41,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(26,143,255,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #0e1118 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* diagonal lines bg */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(240,180,41,0.025) 60px,
    rgba(240,180,41,0.025) 61px
  );
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}

.badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: block; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 20px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}

.hero h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #a0aabb;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp 0.9s 0.25s ease both;
}

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

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0b429 0%, #ffd166 50%, #f0b429 100%);
  color: #0a0c10;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(240,180,41,0.35), 0 4px 20px rgba(0,0,0,0.4);
  animation: fadeUp 0.9s 0.4s ease both;
}

.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(240,180,41,0.5), 0 8px 30px rgba(0,0,0,0.5); }
.cta-primary:hover::before { transform: translateX(100%); }

.cta-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; animation: fadeUp 0.9s 0.5s ease both; }

/* ─── PAIN SECTION ─── */
.pain {
  padding: 80px 20px;
  background: var(--bg2);
  position: relative;
}

.pain::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  display: none;
}

.container { max-width: 960px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }

.section-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }

.section-h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-h2 em { font-style: normal; color: var(--gold); }

.pain-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.2);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}

.pain-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.pain-item p { color: #c8cdd8; font-weight: 500; font-size: 0.97rem; }
.pain-item strong { color: var(--text); }

.pain-cta {
  margin-top: 36px;
  padding: 22px 28px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
}

.pain-cta strong { color: var(--gold); }

/* ─── ABOUT ─── */
.about {
  padding: 80px 20px;
  background:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(26,143,255,0.07) 0%, transparent 60%),
    var(--bg3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media(max-width:680px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }

.pilot-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.pilot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.pilot-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #12151f, #0a0c10);
  overflow: hidden;
  position: relative;
}

.pilot-info { padding: 20px 24px; border-top: 1px solid var(--border); }
.pilot-name { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.pilot-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.about-text .section-h2 { margin-bottom: 20px; }
.about-text p { color: #a0aabb; margin-bottom: 16px; font-size: 0.97rem; }
.about-text p strong { color: var(--text); }

/* ─── WHAT YOU GET ─── */
.benefits {
  padding: 80px 20px;
  background: var(--bg2);
}

.benefits-header { text-align: center; margin-bottom: 52px; }

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

@media(max-width:580px){
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.benefit-card:hover { transform: translateY(-4px); border-color: rgba(240,180,41,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.benefit-card:hover::after { transform: scaleX(1); }

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-card h3 { font-size: 1rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.benefit-card p { font-size: 0.9rem; color: #8a94a8; line-height: 1.65; }

.benefit-list { margin-top: 10px; padding: 0; list-style: none; }
.benefit-list li { font-size: 0.88rem; color: #8a94a8; padding: 3px 0; display: flex; align-items: flex-start; gap: 8px; }
.benefit-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ─── HOW IT WORKS ─── */
.how {
  padding: 80px 20px;
  background: var(--bg3);
}

.how-header { text-align: center; margin-bottom: 52px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

@media(max-width:600px){ .steps::before{display:none;} .steps{gap:24px;} }

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), #f5a623);
  color: #0a0c10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(240,180,41,0.3);
}

.step h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--muted); }

/* extras row */
.extras {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

@media(max-width:640px){ .extras{grid-template-columns:1fr;} }

.extra-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.extra-icon { font-size: 1.6rem; flex-shrink: 0; }
.extra-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.extra-card p { font-size: 0.82rem; color: var(--muted); }

/* ─── FOR WHOM ─── */
.for-whom {
  padding: 80px 20px;
  background: var(--bg2);
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media(max-width:640px){ .for-grid{grid-template-columns:1fr;} }

.for-card {
  border-radius: 6px;
  padding: 28px 24px;
}

.for-yes {
  background: rgba(240,180,41,0.06);
  border: 1px solid rgba(240,180,41,0.25);
}

.for-no {
  background: rgba(230,57,70,0.05);
  border: 1px solid rgba(230,57,70,0.2);
}

.for-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.for-yes h3 { color: var(--gold); }
.for-no h3 { color: var(--red); }

.for-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.for-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: #a0aabb; }
.for-yes .for-items li::before { content: '✔'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.for-no .for-items li::before { content: '✕'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ─── RESULTS ─── */
.results {
  padding: 80px 20px;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(240,180,41,0.07), transparent),
    var(--bg3);
}

.results-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.2s;
}

.result-item:hover { border-color: rgba(240,180,41,0.4); }
.result-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px var(--gold); }

/* ─── TESTIMONIALS ─── */
.social {
  padding: 80px 20px;
  background: var(--bg2);
}

.social-header { text-align: center; margin-bottom: 52px; }

/* ── CAROUSEL ── */
.carousel-wrapper {
  position: relative;
  padding: 10px 56px 10px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 280px;
}

.testi {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.testi::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 14px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(240,180,41,0.08);
  line-height: 1;
  font-family: 'Exo 2', sans-serif;
  pointer-events: none;
}

.testi.side {
  width: 26%;
  opacity: 0.4;
  transform: scale(0.87);
  filter: brightness(0.65);
  z-index: 1;
}

.testi.center {
  width: 40%;
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  z-index: 2;
  border-color: rgba(240,180,41,0.5);
  box-shadow: 0 0 60px rgba(240,180,41,0.13), 0 16px 48px rgba(0,0,0,0.5);
  background: linear-gradient(155deg, #181c28, #12151f);
}

.testi.center::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  border-radius: 8px 8px 0 0;
}

@media(max-width:700px){
  .carousel-wrapper { padding: 10px 44px; }
  .testi.side { width: 18%; }
  .testi.side .stars,
  .testi.side p,
  .testi.side .testi-name { display: none; }
  .testi.center { width: 60%; }
}

@media(max-width:440px){
  .testi.side { width: 10%; }
  .testi.center { width: 76%; }
}

.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi p { font-size: 0.9rem; color: #a0aabb; line-height: 1.7; margin-bottom: 16px; }
.testi.side p { font-size: 0.82rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.testi-name { font-weight: 700; color: var(--text); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.testi-name::before { content: ''; width: 22px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px; flex-shrink:0; }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: var(--gold);
  font-size: 1.1rem;
  user-select: none;
  line-height: 1;
}

.carousel-btn:hover { background: rgba(240,180,41,0.22); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(240,180,41,0.22);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active { background: var(--gold); transform: scale(1.35); }

/* ─── PRICING ─── */
.pricing {
  padding: 80px 20px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(240,180,41,0.1), transparent),
    var(--bg3);
}

.pricing-header { text-align: center; margin-bottom: 52px; }

.price-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid rgba(240,180,41,0.4);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(240,180,41,0.1);
  position: relative;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}

.price-tag {
  display: inline-block;
  background: var(--gold);
  color: #0a0c10;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 4px 0;
  position: absolute;
  top: 4px; left: 0;
}

.price-body { padding: 48px 36px 36px; text-align: center; }

.price-includes { text-align: left; margin-bottom: 28px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: #a8b0c0; }
.price-includes li strong { color: var(--text); }
.price-includes li::before { content: '✔'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.price-divider { height: 1px; background: var(--border); margin: 24px 0; }

.price-main { margin: 0 0 8px; }
.price-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.price-value { font-size: clamp(2.8rem, 8vw, 4rem); font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
.price-value span { font-size: 1.5rem; font-weight: 600; vertical-align: super; }

.price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 28px; }

.urgency-bar {
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #e63946;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ─── FINAL CTA ─── */
.final {
  padding: 80px 20px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(240,180,41,0.12), transparent),
    var(--bg);
}

.final h2 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
.final h2 em { font-style: normal; color: var(--gold); }
.final p { color: #8a94a8; max-width: 500px; margin: 0 auto 36px; }

.close-box {
  max-width: 560px;
  margin: 52px auto 0;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

@media(max-width:480px){ .close-box{grid-template-columns:1fr;} }

.close-opt { padding: 16px; border-radius: 4px; }
.close-bad { background: rgba(230,57,70,0.05); border: 1px solid rgba(230,57,70,0.15); }
.close-good { background: rgba(240,180,41,0.07); border: 1px solid rgba(240,180,41,0.2); }
.close-opt h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.close-bad h4 { color: var(--red); }
.close-good h4 { color: var(--gold); }
.close-opt p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
  padding: 28px 20px;
  background: #080a0d;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── STICKY CTA BAR (mobile) ─── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: rgba(10,12,16,0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 100;
  justify-content: center;
}

@media(max-width:640px){ .sticky-cta{display:flex;} }

.sticky-cta .cta-primary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.9rem; }

/* ─── SCROLL ANIM ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
