/* ─── Landing Page ─────────────────────────────────────── */

.landing { min-height: 100vh; background: var(--cream); }

/* AD SLOTS */
.ad-slot {
  background: var(--cream-dark);
  border: 1px dashed rgba(17,17,16,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}
.ad-slot-label { font-weight: 500; margin-right: 0.5rem; }
.ad-slot code { font-size: 0.6875rem; background: rgba(17,17,16,0.08); padding: 0.1rem 0.35rem; border-radius: 3px; }

.ad-banner { width: 100%; height: 90px; margin: 0; border-radius: 0; }
.ad-between { width: 100%; height: 250px; margin: 2rem 0; }
.ad-skyscraper-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 8vw;
}
.ad-skyscraper {
  width: 160px;
  height: 600px;
}

/* NAV BAR */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,246,241,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,17,16,0.08);
  padding: 1rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.landing-nav-brand span { color: var(--accent); }
.landing-nav-cta { }

/* HERO */
.hero {
  padding: 5rem 8vw 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d4edda;
  color: #155724;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #155724;
  animation: pulse 2s infinite;
}
.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-headline span { color: var(--accent); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-cta:hover { background: #2a2a28; transform: translateY(-1px); }
.btn-cta span.arrow { font-size: 1.1em; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--charcoal); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17,17,16,0.1);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* HOW IT WORKS */
.how-section {
  background: var(--white);
  padding: 5rem 8vw;
}
.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.section-heading span { color: var(--accent); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(17,17,16,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.step-box {
  padding: 2rem;
  border-right: 1px solid rgba(17,17,16,0.08);
  background: var(--cream);
}
.step-box:last-child { border-right: none; }
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.step-icon svg { width: 20px; height: 20px; }
.step-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.step-box p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* PRICING */
.pricing-section {
  padding: 5rem 8vw;
  background: var(--cream);
}
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(17,17,16,0.1);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(17,17,16,0.08);
}
.pricing-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.5rem 3rem;
  text-align: center;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.pricing-price sup { font-size: 1.5rem; font-weight: 500; vertical-align: super; }
.pricing-period { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.pricing-body { padding: 2.5rem 3rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.pricing-check { color: #155724; font-size: 1.1em; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.pricing-cta:hover { background: #a33518; }
.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* SOCIAL PROOF */
.proof-section {
  background: var(--charcoal);
  padding: 4rem 8vw;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.proof-stat { text-align: center; }
.proof-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.proof-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 0.375rem; }

/* FOOTER */
.footer {
  padding: 1.5rem 8vw;
  border-top: 1px solid rgba(17,17,16,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}
.footer-brand { font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.footer-copy { font-size: 0.8125rem; color: var(--muted); }

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 3rem 6vw 3rem; }
  .hero-stats { gap: 1.5rem; }
  .steps-row { grid-template-columns: 1fr; }
  .step-box { border-right: none; border-bottom: 1px solid rgba(17,17,16,0.08); }
  .step-box:last-child { border-bottom: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-header, .pricing-body { padding: 2rem 1.5rem; }
  .footer { padding: 1.25rem 6vw; flex-direction: column; gap: 0.5rem; text-align: center; }
  .landing-nav { padding: 1rem 6vw; }
  .how-section, .pricing-section { padding: 4rem 6vw; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }