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

:root {
  --bg: #FAF8F5;
  --surface: #F2EEE8;
  --ink: #141210;
  --ink-muted: #6B6560;
  --accent: #FF5B1F;
  --accent-light: #FFF0EB;
  --secondary: #6C5CE7;
  --white: #FFFFFF;
  --border: #E8E2D9;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  padding: 7rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner { margin-bottom: 4rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.badge {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* Hero visual - pack preview cards */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pack-card {
  border-radius: 20px;
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pack-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,18,16,0.08); }
.pack-card--starter { border-top: 3px solid var(--ink); }
.pack-card--growth { border-top: 3px solid var(--accent); box-shadow: 0 8px 24px rgba(255,91,31,0.12); }
.pack-card--elite { border-top: 3px solid var(--secondary); }
.pack-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.pack-price {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.pack-list li {
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.pack-list li:last-child { border-bottom: none; }

/* === PROOF STRIP === */
.proof {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 2rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  padding: 0 3rem;
  flex: 1;
  min-width: 200px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* === PACKS SECTION === */
.packs { padding: 6rem 2rem; background: var(--bg); }
.packs-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}
.pack-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pack-detail {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
}
.pack-detail--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pd-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.pd-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.pack-detail--featured .pd-name { color: var(--white); }
.pd-price {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.pack-detail--featured .pd-price { color: var(--accent); }
.pd-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.pack-detail--featured .pd-desc { color: rgba(255,255,255,0.65); }
.pd-features li {
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-muted);
}
.pack-detail--featured .pd-features li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.pd-features li:last-child { border-bottom: none; }
.pack-detail--featured .pd-features li::before { content: '✓ '; color: var(--accent); }

.pd-cta {
  display: block;
  margin-top: 2rem;
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.pd-cta:hover { background: var(--accent); transform: translateY(-2px); }
.pd-cta:active { transform: translateY(0); }

.pd-cta--featured {
  background: var(--accent);
}
.pd-cta--featured:hover { background: #e64e15; }

.packs-secure {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* === HOW IT WORKS === */
.how { padding: 6rem 2rem; background: var(--surface); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how .section-title { margin-bottom: 3rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step { padding: 0; }
.step-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.step-body { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; }

/* === VISION === */
.vision { padding: 7rem 2rem; background: var(--bg); }
.vision-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.vision-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-style: normal;
}
.vision-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

/* === CLOSING === */
.closing { padding: 6rem 2rem; background: var(--ink); }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.closing-body { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.closing-tags span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
}

/* === FOOTER === */
.footer { padding: 3rem 2rem; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}
.footer-tagline { font-size: 0.85rem; color: var(--ink-muted); }
.footer-copy { font-size: 0.75rem; color: var(--ink-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-visual, .pack-row, .steps { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 2rem; }
  .proof-divider { width: 60px; height: 1px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 1.25rem 3rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-badges { gap: 0.5rem; }
  .pack-card { padding: 1.25rem; }
}