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

:root {
  --bg: #ffffff;
  --bg-alt: #f5f6fc;
  --bg-card: #ffffff;
  --border: rgba(23,23,55,0.09);
  --accent: #6c5ce7;
  --accent2: #8b7cf6;
  --accent-soft: #eceaff;
  --accent-glow: rgba(108,92,231,0.28);
  --text: #15152e;
  --heading: #0d0d22;
  --muted: #5c5c75;
  --green: #16a34a;
  --shadow-sm: 0 2px 8px rgba(23,23,55,0.06);
  --shadow-md: 0 10px 30px rgba(23,23,55,0.08);
  --shadow-lg: 0 20px 50px rgba(108,92,231,0.16);
  --radius: 16px;
  --radius-sm: 9px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-glow);
}
.btn-primary:hover { background: #5a4bd4; box-shadow: 0 10px 28px var(--accent-glow); transform: translateY(-1px); }

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--heading);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: #fff; }

.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a { color: var(--muted); font-size: 15px; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--heading);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(108,92,231,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(108,92,231,0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--heading);
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, #b794f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.social-proof-bar {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 34px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.sp-item { font-size: 14px; color: var(--muted); }
.sp-item strong { color: var(--accent); font-size: 24px; font-weight: 800; display: block; }
.sp-divider { width: 1px; height: 38px; background: var(--border); }

/* ============================================================
   NICHE FOCUS ROW
   ============================================================ */
.logos-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}
.logos-label { font-size: 13px; color: var(--muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.logos-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.logo-pill {
  background: var(--accent-soft);
  border: 1px solid rgba(108,92,231,0.16);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { padding: 90px 0; background: var(--bg); text-align: center; }
.problem-section h2 { margin-bottom: 48px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-card::before {
  content: '';
  display: block;
  width: 36px; height: 4px;
  border-radius: 99px;
  background: var(--accent);
  margin: 0 auto 18px;
}
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--heading); }
.problem-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============================================================
   VSL
   ============================================================ */
.vsl-section { padding: 90px 0; text-align: center; background: var(--bg-alt); }
.vsl-section h2 { margin-bottom: 40px; }

.vsl-wrapper {
  max-width: 820px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.vsl-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.vsl-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl-placeholder {
  background: linear-gradient(135deg, #1c1b2e 0%, #2a2748 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
}
.vsl-placeholder p { font-size: 15px; font-weight: 600; color: #fff; }
.vsl-placeholder span { font-size: 13px; }

.play-btn {
  width: 74px; height: 74px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 34px var(--accent-glow);
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.play-btn:hover { transform: scale(1.08); }

.vsl-cta-text { color: var(--muted); font-size: 14px; }
.vsl-cta-text a { color: var(--accent); font-weight: 600; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 90px 0; background: var(--bg); }
.how-it-works h2 { margin-bottom: 52px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.step-num {
  font-size: 46px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--heading); }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { padding: 90px 0; background: var(--bg-alt); }
.features-section h2 { margin-bottom: 48px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-card::before {
  content: '';
  display: block;
  width: 32px; height: 4px;
  border-radius: 99px;
  background: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--heading); }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ============================================================
   CASE STUDIES / RESULTS
   ============================================================ */
.case-studies { padding: 90px 0; background: var(--bg); }
.case-studies h2 { margin-bottom: 14px; }
.cs-intro { color: var(--muted); font-size: 16px; max-width: 680px; margin-bottom: 48px; line-height: 1.7; }
.cs-intro strong { color: var(--text); }

.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.cs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cs-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }

.cs-card--placeholder {
  border-style: dashed;
  background: var(--bg-alt);
  box-shadow: none;
}

.cs-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  width: fit-content;
}
.cs-card h3 { font-size: 17px; font-weight: 700; line-height: 1.4; color: var(--heading); }
.cs-card p { color: var(--muted); font-size: 14px; line-height: 1.65; flex: 1; }

.cs-stats {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.cs-stat { display: flex; flex-direction: column; }
.cs-stat strong { font-size: 22px; font-weight: 800; color: var(--accent); }
.cs-stat span { font-size: 12px; color: var(--muted); }

.cs-link { color: var(--accent); font-size: 14px; font-weight: 600; }
.cs-link:hover { text-decoration: underline; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 90px 0; background: var(--bg-alt); }
.pricing h2 { margin-bottom: 8px; }
.pricing-sub { color: var(--muted); font-size: 15px; margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pricing-grid--two {
  max-width: 800px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 34px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.plan-name { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.plan-price { font-size: 44px; font-weight: 900; letter-spacing: -2px; color: var(--heading); line-height: 1; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan-subprice { font-size: 14px; color: var(--muted); margin: 10px 0 28px; }
.plan-subprice strong { color: var(--accent); font-weight: 700; }

.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }

.pricing-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 32px; }
.pricing-note a { color: var(--accent); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 90px 0; background: var(--bg); }
.faq-inner h2 { margin-bottom: 40px; }

.faq-list { display: flex; flex-direction: column; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent); font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open::after { transform: rotate(45deg); }

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-a.open { max-height: 260px; padding-bottom: 18px; }

/* ============================================================
   BOOK / CALENDLY
   ============================================================ */
.book-section { padding: 90px 0; text-align: center; background: var(--bg-alt); }
.book-section h2 { margin-bottom: 12px; }
.book-sub { color: var(--muted); font-size: 16px; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }

.calendly-wrapper { max-width: 820px; margin: 0 auto; }

.calendly-placeholder {
  background: #fff;
  border: 2px dashed rgba(108,92,231,0.3);
  border-radius: var(--radius);
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cal-icon { font-size: 48px; }
.calendly-placeholder h3 { font-size: 20px; font-weight: 700; color: var(--heading); }
.calendly-placeholder p { color: var(--muted); font-size: 14px; max-width: 440px; }
.calendly-placeholder code {
  background: var(--accent-soft);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 13px;
  color: var(--accent);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% 120%, rgba(108,92,231,0.16) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f6ff 100%);
}
.final-cta h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.final-cta p { color: var(--muted); font-size: 16px; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f0e1d;
  padding: 60px 0 0;
}
.footer .logo { color: #fff; }
.footer .logo span { color: var(--accent2); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; line-height: 1.65; max-width: 260px; }

.footer-links { display: contents; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 640px) {
  .hero { padding: 70px 0 60px; }
  .sp-divider { display: none; }
  .social-proof-bar { gap: 16px; padding: 16px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}
