/* === VARIABLES === */
:root {
  --bg: #f4f1ec;
  --bg-alt: #eae6de;
  --fg: #1c1a17;
  --fg-muted: #6b6459;
  --accent: #c97d2a;
  --accent-light: #f5a623;
  --forest: #1b3828;
  --forest-light: #2d5c42;
  --white: #ffffff;
  --border: #d9d4ca;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  --radius: 12px;
  --radius-lg: 20px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(244, 241, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--accent-light); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,125,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: var(--bg-alt);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.headline-accent {
  color: var(--accent);
  display: inline-block;
  position: relative;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-pack {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}
.pack-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.pack-unit {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* === MOCK CARD === */
.mock-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.mock-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--accent-light));
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mock-business {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.mock-badge {
  background: var(--forest);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.mock-metric { margin-bottom: 1.5rem; }
.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.85rem;
}
.metric-row:last-child { border-bottom: none; }
.metric-label { color: var(--fg-muted); }
.metric-value {
  font-weight: 600;
  color: var(--forest);
}
.mock-bar { margin-top: 1rem; }
.bar-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.bar-track {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--accent-light));
  border-radius: 100px;
}

/* === PROOF STATS === */
.proof {
  background: var(--forest);
  color: var(--white);
  padding: 4rem 2rem;
}
.proof-inner { max-width: 900px; margin: 0 auto; }
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}
.proof-stat { flex: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.4rem;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}
.proof-note {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.45;
  margin-top: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === SECTION COMMON === */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* === HOW === */
.how {
  padding: var(--space-2xl) 2rem;
  background: var(--bg);
}
.how .section-header { max-width: 1200px; margin: 0 auto var(--space-xl); }
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-alt);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--white);
  padding: var(--space-2xl) 2rem;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.outcomes-body {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 1.25rem;
}
.outcomes-list { display: flex; flex-direction: column; gap: 1.25rem; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.outcome-check {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 20px;
  height: 20px;
}
.outcome-item strong { font-weight: 600; }
.outcome-item span { color: var(--fg-muted); }

/* === NICHES === */
.niches {
  background: var(--bg);
  padding: var(--space-2xl) 2rem;
}
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-inner .section-header { text-align: center; margin-bottom: 4rem; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.niche-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.niche-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.niche-icon {
  margin-bottom: 1.25rem;
  display: flex;
}
.niche-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.niche-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PRICING === */
.pricing {
  background: var(--forest);
  padding: var(--space-2xl) 2rem;
  color: var(--white);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pricing-inner .section-eyebrow { color: var(--accent-light); }
.pricing-inner .section-title { color: var(--white); }
.pricing-card {
  max-width: 560px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: left;
}
.pricing-header { margin-bottom: 1rem; }
.pricing-name {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
}
.price-per { font-size: 1rem; opacity: 0.6; }
.pricing-tagline {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.88rem;
  opacity: 0.8;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-light);
}
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  opacity: 0.55;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
}
.pricing-note svg { flex-shrink: 0; margin-top: 0.1rem; }

/* === CLOSING === */
.closing {
  background: var(--bg-alt);
  padding: var(--space-2xl) 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.closing-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
}
.deco-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201,125,42,0.15);
}
.deco-ring-1 { width: 200px; height: 200px; }
.deco-ring-2 { width: 320px; height: 320px; }
.deco-ring-3 { width: 440px; height: 440px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.closing-accent { color: var(--accent); }
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  background: var(--forest);
  color: var(--white);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-desc {
  font-size: 0.82rem;
  opacity: 0.45;
  margin-top: 0.35rem;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.4;
}
.footer-sep { opacity: 0.3; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .proof-stats { flex-direction: column; gap: 2rem; }
  .proof-divider { display: none; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-headline { font-size: 2.2rem; }
  .navbar { padding: 1rem 1.5rem; }
  .nav-tagline { display: none; }
  .niches-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .price-amount { font-size: 2.4rem; }
}