:root {
  --green: #b5ff00;
  --blue: #000037;
  --purple: #9F00FD;
  --white: #ffffff;
  --text-muted: #9090c0;
  --text-light: #c8c8e8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--blue); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* Noise Background */
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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none; z-index: 0;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { position: relative; padding: 100px 0; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,55,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(159,0,253,0.2);
}
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; }
.nav-logo span { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--blue); font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px; padding: 10px 24px; text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* Form Styles */
#custom-booking-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(159, 0, 253, 0.3);
    padding: 40px; border-radius: 8px; max-width: 650px; margin: 40px auto; text-align: left;
}
.step { display: none; }
.step.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-light); font-size: 14px; }
.form-group input, .form-group select {
    width: 100%; padding: 14px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 4px;
}
.time-slots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 10px; }
.time-slot {
    padding: 12px; border: 1px solid var(--purple); text-align: center;
    border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.time-slot.selected { background: var(--green); color: var(--blue); border-color: var(--green); }
.time-slot.booked { opacity: 0.3; cursor: not-allowed; border-color: #444; }

.btn-wrapper { display: flex; gap: 10px; margin-top: 20px; }
.btn {
    padding: 16px; font-family: 'Syne', sans-serif; font-weight: 800; border: none; cursor: pointer; flex: 1;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-next, .btn-submit { background: var(--green); color: var(--blue); }
.btn-prev { background: rgba(255,255,255,0.1); color: #fff; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(28px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(159,0,253,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(181,255,0,0.06) 0%, transparent 60%),
    var(--blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(159,0,253,0.12);
  border: 1px solid rgba(159,0,253,0.3);
  padding: 6px 14px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-eyebrow span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.02;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(181,255,0,0.25); }

.btn-ghost {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

/* Hero right — stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(159,0,253,0.2);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
  border-color: rgba(159,0,253,0.5);
  transform: translateY(-4px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

.stat-card.green-accent::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card.purple-num .stat-num { color: var(--purple); }

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* guarantee badge */
.hero-guarantee {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(181,255,0,0.05);
  border: 1px solid rgba(181,255,0,0.2);
  padding: 14px 20px;
  margin-top: 4px;
}

.guarantee-icon {
  width: 36px; height: 36px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.guarantee-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.guarantee-text strong { color: var(--green); }

/* ─── SECTION COMMON ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── MARQUEE STRIP ─── */
.marquee-section {
  padding: 20px 0;
  background: var(--purple);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
}

/* ─── PROBLEM SECTION ─── */
#problem { padding: 100px 0; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.problem-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.problem-card:hover {
  background: rgba(159,0,253,0.06);
  border-color: rgba(159,0,253,0.2);
}

.problem-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(159,0,253,0.12);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem-bottom {
  margin-top: 40px;
  padding: 28px 36px;
  border-left: 3px solid var(--purple);
  background: rgba(159,0,253,0.06);
}

.problem-bottom p {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
}

/* ─── 3P SYSTEM ─── */
#system { padding: 100px 0; background: rgba(0,0,30,0.6); }

.system-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.phase {
  background: rgba(255,255,255,0.02);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.phase:hover { background: rgba(255,255,255,0.04); }

.phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.phase-1::before { background: var(--purple); }
.phase-2::before { background: var(--purple-dim); }
.phase-3::before { background: var(--green); }

.phase-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.phase-1 .phase-badge { background: rgba(159,0,253,0.15); color: var(--purple); }
.phase-2 .phase-badge { background: rgba(122,0,196,0.15); color: var(--purple-dim); }
.phase-3 .phase-badge { background: rgba(181,255,0,0.12); color: var(--green); }

.phase-days {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.phase h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.phase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.phase-items li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.phase-items li::before {
  content: '→';
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.phase-3 .phase-items li::before { color: var(--green); }

.phase-result {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.phase-3 .phase-result { color: var(--green); }

/* ─── PROOF ─── */
#proof { padding: 100px 0; }

.proof-hero {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(159,0,253,0.2);
  padding: 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.proof-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple), var(--green));
}

.proof-hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.proof-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.proof-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.proof-col.before h4 { color: var(--purple); }
.proof-col.action h4 { color: var(--text-muted); }
.proof-col.result h4 { color: var(--green); }
.proof-col.time h4 { color: var(--text-muted); }

.proof-col p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

.proof-col.result p { color: var(--green); font-weight: 500; }

.proof-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.15);
  margin-top: 28px;
}

.proof-badge {
  background: var(--green);
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  padding: 16px 24px;
  text-align: center;
  line-height: 1.1;
  margin-top: 10px;
}

.proof-badge small { font-size: 12px; display: block; font-weight: 600; letter-spacing: 0.05em; }

/* supporting results */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.proof-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
  transition: border-color 0.3s;
}

.proof-card:hover { border-color: rgba(181,255,0,0.2); }

.proof-card-result {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.proof-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.proof-card-timeline {
  font-size: 12px;
  color: var(--purple);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ─── TESTIMONIAL ─── */
#testimonial { padding: 80px 0; background: rgba(159,0,253,0.04); }

.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 120px;
  color: var(--purple);
  line-height: 0.6;
  opacity: 0.4;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  text-transform: uppercase;
}

/* ─── OFFER TIERS ─── */
#offer { padding: 100px 0; }

.tiers {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 16px;
  align-items: start;
}

.tier {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s;
}

.tier:hover { transform: translateY(-6px); }

.tier-featured {
  background: rgba(159,0,253,0.08);
  border-color: var(--purple);
  margin-top: -12px;
  padding-top: 48px;
}

.tier-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  color: var(--white);
  white-space: nowrap;
}

.tier-level {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 16px 0 4px;
}

.tier-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.tier-best {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tier-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.tier-includes li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.check {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-promise {
  font-size: 13px;
  color: var(--purple);
  padding: 14px;
  background: rgba(159,0,253,0.08);
  border-left: 2px solid var(--purple);
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-featured .tier-promise {
  color: var(--green);
  background: rgba(181,255,0,0.06);
  border-color: var(--green);
}

.btn-tier {
  display: block;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.03em;
}

.btn-tier-outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-tier-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-tier-main {
  background: var(--green);
  color: var(--blue);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-tier-main:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(181,255,0,0.25);
}

/* ─── GUARANTEE ─── */
#guarantee { padding: 100px 0; }

.guarantee-box {
  border: 1px solid rgba(181,255,0,0.25);
  background: rgba(181,255,0,0.03);
  padding: 56px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  align-items: center;
}

.guarantee-shield {
  width: 100px; height: 100px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
}

.guarantee-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.guarantee-headline {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.guarantee-statement {
  font-size: 17px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.65;
}

.guarantee-statement strong { color: var(--green); font-style: normal; }

.guarantee-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-points li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
}

.guarantee-points li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* ─── OBJECTIONS / FAQ ─── */
#faq { padding: 100px 0; background: rgba(0,0,30,0.6); }

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--green); }

.faq-toggle {
  width: 24px; height: 24px;
  background: rgba(159,0,253,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--purple);
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 2px solid var(--purple);
  margin: 0 28px 0 28px;
}

/* ─── ABOUT ─── */
#about { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.about-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon {
  width: 44px; height: 44px;
  background: rgba(159,0,253,0.12);
  border: 1px solid rgba(159,0,253,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-right {
  position: relative;
}

.about-statement {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-statement em {
  font-style: normal;
  color: var(--purple);
}

.about-statement .green { color: var(--green); }

.about-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 24px;
}

.about-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-stat .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── SCARCITY BANNER ─── */
.scarcity-bar {
  background: var(--purple);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.scarcity-bar p {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.scarcity-bar .dot { color: var(--green); font-size: 20px; }

/* ─── FINAL CTA ─── */
#cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(159,0,253,0.15) 0%, transparent 70%);
}

.cta-label { margin-bottom: 20px; }

.cta-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-headline em {
  font-style: normal;
  color: var(--green);
}

.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 20px 44px;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.btn-cta-main:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(181,255,0,0.2);
}

.cta-fine {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── FOOTER ─── */
footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.footer-logo span { color: var(--green); }

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159,0,253,0.3), transparent);
  margin: 0;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-grid,
  .problem-grid,
  .system-phases,
  .tiers,
  .about-grid,
  .proof-before-after { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; }
  .proof-arrow { display: none; }
  nav { padding: 16px 20px; }

  .hero h1 { font-size: 36px; }
  .tier-featured { margin-top: 0; }
}
.step { display: none; }
.step.active { display: block; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 15px; }
.time-slot { 
    padding: 10px; border: 1px solid var(--purple); color: var(--white); 
    text-align: center; cursor: pointer; font-size: 13px; 
}
.time-slot.booked { background: #333; color: #777; cursor: not-allowed; border-color: #444; }
.time-slot.selected { background: var(--green); color: var(--blue); }
.time-slot:hover:not(.booked) { border-color: var(--green); }
.form-group select { 
    width: 100%; padding: 14px; background: rgba(0,0,55,0.8); 
    border: 1px solid rgba(255,255,255,0.1); color: white; outline: none; 
}