/* ============================================
   LocalLift — Bold / Punchy Landing Page
   Design system: high contrast, big type,
   alternating sections, scroll animations
   ============================================ */

:root {
  --green-dark: #0d2212;
  --green-dark-solid: #142e18;
  --green-mid: #1e7a42;
  --green-bright: #28c96a;
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --cream: #faf8f5;
  --warm-white: #fffefa;
  --black: #0a0a0a;
  --charcoal: #111111;
  --muted: #6b7280;
  --border: #e2ddd6;
  --border-dark: rgba(255,255,255,0.08);

  /* Big type scale */
  --text-hero: clamp(44px, 6vw, 80px);
  --text-section: clamp(32px, 4.5vw, 56px);
  --text-card: clamp(22px, 3vw, 32px);
  --text-body: 17px;
  --text-sm: 14px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* ---- Scroll animation base ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94),
              transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-weight: 800;
  font-size: 20px;
  color: white;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo span {
  color: var(--amber-bright);
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.nav-spacer { flex: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: white;
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40,201,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,201,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40,201,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-bright);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber-bright);
}
.hero-headline {
  font-size: var(--text-hero);
  color: white;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero-headline em {
  font-style: normal;
  color: var(--amber-bright);
}
.hero-lede {
  font-size: 19px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 12px;
  transition: all 0.25s;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 0 rgba(40,201,106,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(40,201,106,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: white; }
.hero-stat-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-dark);
}
.hero-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--amber-bright);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ---- STAT BAR ---- */
.stat-bar {
  background: var(--green-dark-solid);
  padding: 0;
  overflow: hidden;
}
.stat-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-bar-item {
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--green-bright);
  line-height: 1;
}
.stat-bar-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ---- HOW ---- */
.how {
  padding: 120px 48px;
  background: var(--cream);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.section-heading {
  font-size: var(--text-section);
  color: var(--green-dark);
  margin-bottom: 64px;
  max-width: 600px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.step {
  background: white;
  padding: 48px 40px;
  position: relative;
}
.step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: var(--amber);
  opacity: 0.2;
  margin-bottom: 20px;
  line-height: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--green-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--amber-bright);
}
.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 48px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.services-header .section-heading { margin-bottom: 0; }
.services-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.6;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
  cursor: default;
}
.service-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  color: var(--amber-bright);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  margin-top: 14px;
  padding: 4px 10px;
  background: rgba(30,122,66,0.08);
  border-radius: 20px;
}

/* ---- NICHE DARK SECTION ---- */
.niches {
  padding: 120px 48px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.niches::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40,201,106,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,201,106,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.niches-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.niches .section-label { color: var(--amber-bright); }
.niches .section-heading { color: white; }
.niches-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.65;
}
.niche-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  transition: all 0.25s;
}
.niche-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(40,201,106,0.3);
  transform: translateY(-2px);
}
.niche-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.niche-name {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin-bottom: 8px;
}
.niche-desc {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ---- OUTCOMES ---- */
.outcomes {
  padding: 120px 48px;
  background: var(--cream);
}
.outcomes__inner { max-width: 1200px; margin: 0 auto; }
.outcomes__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.outcomes__top .section-heading { margin-bottom: 0; }
.outcomes__top p {
  font-size: 16px;
  color: var(--muted);
  max-width: 300px;
  line-height: 1.6;
}
.outcomes__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.outcome {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
}
.outcome__stat {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: var(--text-card);
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.1;
}
.outcome__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.outcomes__quote {
  background: var(--green-dark);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.outcomes__quote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: white;
  line-height: 1.35;
}
.outcomes__quote-attr {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}
.quote-mark {
  font-size: 120px;
  color: var(--amber-bright);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ---- MANIFESTO / PRICING ---- */
.manifesto {
  padding: 120px 48px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 96px;
  align-items: start;
}
.manifesto-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 28px;
  padding-left: 28px;
  border-left: 4px solid var(--amber);
}
.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.manifesto-pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.25s;
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.pricing-card--featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 24px 80px rgba(10,50,20,0.4);
}
.pricing-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--green-dark);
  margin-bottom: 24px;
  line-height: 1;
}
.pricing-card--featured .pricing-price { color: white; }
.pricing-price span { font-size: 20px; font-weight: 500; opacity: 0.5; }
.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.2s;
}
.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40,201,106,0.3);
}
.pricing-card--featured .pricing-cta { background: var(--amber-bright); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.7); }

/* ---- CLOSING CTA ---- */
.closing {
  padding: 120px 48px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(40,201,106,0.08) 0%, transparent 70%);
}
.closing__inner { max-width: 900px; margin: 0 auto; position: relative; }
.closing__headline {
  font-size: var(--text-section);
  color: white;
  margin-bottom: 24px;
  line-height: 1.12;
}
.closing__headline em {
  font-style: normal;
  color: var(--amber-bright);
}
.closing__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 56px;
}
.closing-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-closing {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  padding: 22px 48px;
  border-radius: 14px;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 rgba(40,201,106,0.5);
}
.btn-closing:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 60px rgba(40,201,106,0.4);
}
.closing-note {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  font-weight: 800;
  font-size: 20px;
  color: white;
}
.footer__brand span { color: var(--amber-bright); }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ---- PACKAGES ---- */
.packages { padding: 120px 48px; background: var(--cream); }
.packages__inner { max-width: 1200px; margin: 0 auto; }
.packages .section-label { color: var(--amber); }
.packages__headline { font-size: var(--text-section); color: var(--green-dark); margin: 12px 0 56px; }
.packages__grid { display: grid; gap: 24px; }
.packages__grid--two { grid-template-columns: 1fr 1fr; }
.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.25s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: var(--green-mid); }
.package-card--featured { background: var(--green-dark); border-color: var(--green-dark); }
.package-card__badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: var(--amber-bright); color: var(--green-dark); padding: 4px 10px; border-radius: 20px; margin-bottom: 20px; width: fit-content; }
.package-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.package-card__number { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 64px; color: var(--amber); opacity: 0.2; line-height: 1; }
.package-card__name { font-size: 26px; font-weight: 800; color: var(--green-dark); }
.package-card--featured .package-card__name { color: white; }
.package-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.package-card__features li { font-size: 15px; color: var(--muted); padding-left: 20px; position: relative; }
.package-card__features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.package-card--featured .package-card__features li { color: rgba(255,255,255,0.7); }
.package-card--featured .package-card__features li::before { background: var(--amber-bright); }
.package-card__pricing { margin-bottom: 20px; }
.package-card__price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 44px; color: var(--green-dark); line-height: 1; }
.package-card__price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.package-card--featured .package-card__price { color: white; }
.package-card--featured .package-card__price span { color: rgba(255,255,255,0.5); }
.package-card__cta { display: inline-block; width: 100%; text-align: center; background: var(--green-bright); color: var(--green-dark); font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 10px; text-decoration: none; transition: all 0.2s; }
.package-card__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(40,201,106,0.3); }
.package-card--featured .package-card__cta { background: var(--amber-bright); color: var(--green-dark); }

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stat-block { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .outcomes__top { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero-content { padding: 100px 24px 60px; }
  .hero, .how, .services, .niches, .manifesto, .outcomes, .closing { padding: 80px 24px; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item:nth-child(2) { border-right: none; }
  .stat-bar-item:nth-child(3), .stat-bar-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .steps, .service-grid, .niche-list, .outcomes__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .outcomes__quote { grid-template-columns: 1fr; padding: 36px; }
  .quote-mark { display: none; }
  .btn-closing { font-size: 18px; padding: 18px 36px; }
}

@media (max-width: 480px) {
  :root { --text-hero: 38px; --text-section: 28px; }
  .hero-stat-number, .stat-bar-num { font-size: 36px; }
  .pricing-price { font-size: 40px; }
  .outcome__stat { font-size: 28px; }
  .closing__headline { font-size: 26px; }
}