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

:root {
  --bg: #f5f3ef;
  --bg-alt: #edebe5;
  --forest: #1a2e22;
  --forest-light: #243a2f;
  --sage: #5a8f6e;
  --sage-light: #7aab88;
  --cream: #f9f8f5;
  --text: #2d332c;
  --text-mid: #5a635c;
  --text-light: #8a9188;
  --border: rgba(45,51,44,0.12);
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(245,243,239,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 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: -0.3px;
}

.nav-tag {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--forest);
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.geo-1 {
  width: 600px; height: 600px;
  background: var(--sage);
  top: -200px; right: -150px;
}

.geo-2 {
  width: 400px; height: 400px;
  background: var(--sage-light);
  top: 80px; right: 80px;
}

.geo-3 {
  width: 300px; height: 300px;
  background: var(--sage);
  bottom: -80px; left: -80px;
}

.geo-4 {
  width: 180px; height: 180px;
  background: var(--sage-light);
  bottom: 120px; left: 180px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(249,248,245,0.72);
  line-height: 1.65;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(90,143,110,0.2);
}

.stat:last-child { border-bottom: none; }

.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--sage-light);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(249,248,245,0.5);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 0;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.manifesto-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.manifesto-statement {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--forest);
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 0;
  background: var(--forest);
  color: var(--cream);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.outcomes-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 60px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(90,143,110,0.15);
}

.outcome {
  background: var(--forest);
  padding: 48px 40px;
}

.outcome-icon {
  color: var(--sage);
  margin-bottom: 20px;
}

.outcome-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.outcome-body {
  font-size: 15px;
  color: rgba(249,248,245,0.6);
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  padding: 100px 0;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.features-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.features-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--forest);
  max-width: 640px;
  margin-bottom: 64px;
  letter-spacing: -0.3px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.feature:last-child { border-bottom: none; }

.feature-marker {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 1px;
  padding-top: 4px;
}

.feature-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.feature-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 600px;
}

/* === CLOSER === */
.closer {
  padding: 120px 0;
  background: var(--forest-light);
  color: var(--cream);
}

.closer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.closer-badge {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.closer-statement {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 28px;
}

.closer-body {
  font-size: 18px;
  color: rgba(249,248,245,0.65);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 64px;
}

.closer-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(90,143,110,0.3);
  border-radius: 16px;
  overflow: hidden;
}

.proof-item {
  padding: 24px 36px;
  text-align: center;
  flex: 1;
}

.proof-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--sage-light);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.proof-text {
  font-size: 12px;
  color: rgba(249,248,245,0.5);
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(90,143,110,0.25);
}

/* === FOOTER === */
.site-footer {
  padding: 48px 0;
  background: var(--forest);
  border-top: 1px solid rgba(90,143,110,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(249,248,245,0.4);
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: 13px;
  color: rgba(249,248,245,0.5);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(249,248,245,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--cream);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .hero-stats {
    flex-direction: row;
    border-top: 1px solid rgba(90,143,110,0.2);
    padding-top: 24px;
  }

  .stat {
    border-bottom: none;
    border-right: 1px solid rgba(90,143,110,0.2);
    padding: 0 20px 0 0;
    flex: 1;
    text-align: center;
  }

  .stat:last-child { border-right: none; }
  .stat-num { font-size: 32px; }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .closer-proof {
    flex-direction: column;
  }

  .proof-divider {
    width: 80px;
    height: 1px;
  }

  .proof-item {
    padding: 16px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-meta { text-align: center; }
  .nav-inner { padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }
  .features-inner { padding: 0 24px; }
  .closer-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .manifesto-statement { font-size: 24px; }
  .closer-statement { font-size: 26px; }
  .outcomes, .features, .manifesto, .closer { padding: 64px 0; }
}

/* === NAV CTA === */
.nav-inner {
  /* override: push cta to far right */
  justify-content: flex-start;
}

.nav-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--sage);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--sage-light); }
.nav-cta--active { background: var(--forest); }
.nav-cta--active:hover { background: var(--forest-light); }

/* === HERO QUOTE BUTTON === */
.hero-quote-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 36px;
  padding: 14px 32px;
  background: var(--sage);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 32px;
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: background 0.15s, transform 0.1s;
}

.hero-quote-btn:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

/* === QUOTE PAGE === */
.quote-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 72px 40px 56px;
}

.quote-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.quote-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 20px;
  margin-top: 20px;
}

.quote-sub {
  font-size: 17px;
  color: rgba(249,248,245,0.72);
  line-height: 1.65;
  max-width: 540px;
}

.quote-section {
  padding: 60px 40px 80px;
  background: var(--bg);
}

.quote-container {
  max-width: 760px;
  margin: 0 auto;
}

.quote-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Form */
.quote-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.qf-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.qf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

/* Single-column groups (textarea, full-width) */
.quote-form > .qf-group {
  margin-bottom: 20px;
}

.qf-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.1px;
}

.qf-req { color: var(--sage); }

.qf-input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.qf-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,143,110,0.15);
}

.qf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a8f6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.qf-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.qf-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--forest);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.qf-submit:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.qf-submit:active { transform: translateY(0); }

/* Quote trust bar */
.quote-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  overflow: hidden;
}

.qt-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
}

.qt-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.qt-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.qt-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* === THANKS PAGE === */
.thanks-section {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex;
  align-items: center;
  padding: 80px 40px;
  background: var(--bg);
}

.thanks-container {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.thanks-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 20px;
}

.thanks-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 48px;
}

.thanks-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  overflow: hidden;
  margin-bottom: 40px;
}

.tp-item {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
}

.tp-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.tp-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.tp-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.thanks-back {
  font-size: 14px;
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
}

.thanks-back:hover { text-decoration: underline; }

/* === QUOTE RESPONSIVE === */
@media (max-width: 768px) {
  .quote-hero { padding: 48px 24px 40px; }
  .quote-section { padding: 40px 24px 60px; }
  .quote-form { padding: 28px 24px; }

  .qf-group-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .qf-group-row .qf-group {
    margin-bottom: 20px;
  }

  .qt-label, .tp-label { font-size: 11px; }

  .thanks-section { padding: 60px 24px; }
  .thanks-proof { flex-direction: column; }
  .tp-divider { width: 80%; height: 1px; }
}
