:root {
  --bg: #0c0e12;
  --bg-surface: #14171e;
  --bg-card: #1a1e28;
  --fg: #e8e6e1;
  --fg-muted: #8a8780;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.25);
  --red: #ef4444;
  --green: #22c55e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin-top: 1.5rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── PROBLEM SECTION ── */
.problem {
  padding: 6rem 1.5rem;
  background: var(--bg-surface);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem .section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 3rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
}

.problem-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 1.5rem;
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how .section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(245,158,11,0.3) 0%, rgba(245,158,11,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── RESULTS ── */
.results {
  padding: 6rem 1.5rem;
  background: var(--bg-surface);
}

.results-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.results-text .section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.results-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.results-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 1.5rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

footer .brand {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .results-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .hero { min-height: 80vh; padding: 3rem 1.25rem 4rem; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .problem, .how, .results, .closing { padding: 4rem 1.25rem; }
}
/* ── HERO CTA ── */
.hero-actions {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #0c0e12;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
}
.hero-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.brand { color: var(--accent); font-weight: 700; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }

.nav-portal {
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 1rem;
  border-radius: 8px;
  transition: border-color 0.15s, color 0.15s;
}
.nav-portal:hover { border-color: rgba(255,255,255,0.35); color: var(--fg); }

/* push hero down so nav doesn't overlap */
.hero { padding-top: 8rem; }

/* ── HERO UPDATES ── */
.hero-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.15s;
}
.hero-link:hover { color: var(--fg); }

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ── 3-COLUMN HOW IT WORKS ── */
.steps-3 {
  grid-template-columns: repeat(3, 1fr) \!important;
}
@media (max-width: 900px) {
  .steps-3 { grid-template-columns: 1fr \!important; }
}

/* ── PRICING ── */
.pricing {
  padding: 7rem 1.5rem;
  background: var(--bg-surface);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing .section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 0.75rem;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px var(--accent-glow);
  transform: translateY(-8px);
}
.pricing-card-featured:hover { transform: translateY(-12px); }

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: #0c0e12;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.plan-price span {
  font-size: 1.2rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.plan-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.plan-features li {
  font-size: 0.93rem;
  color: var(--fg);
  line-height: 1.5;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
  background: var(--accent);
  color: #0c0e12;
}
.plan-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.plan-cta-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--fg);
}
.plan-cta-secondary:hover { border-color: rgba(255,255,255,0.4); }

.pricing-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.875rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 1.5rem;
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials .section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-text {
  color: var(--fg);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.author-trade {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

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

/* ── BOOKING FORM (closing section updates) ── */
.closing {
  background: var(--bg-surface);
}

.closing-inner {
  max-width: 640px;
}

.closing .section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.closing p {
  margin-bottom: 2.5rem;
}

.book-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.book-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.book-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.book-field input {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}
.book-field input::placeholder { color: var(--fg-muted); opacity: 0.5; }
.book-field input:focus { border-color: var(--accent); }

.book-submit {
  background: var(--accent);
  color: #0c0e12;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
  width: 100%;
  margin-top: 0.5rem;
}
.book-submit:hover { opacity: 0.88; transform: translateY(-2px); }
.book-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.book-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  color: var(--green);
  font-size: 1rem;
  text-align: center;
}

.book-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: var(--red);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 600px) {
  .book-form-row { grid-template-columns: 1fr; }
  .nav-links .nav-link:not(.nav-portal) { display: none; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
}
