/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:      #1B3D2F;
  --green-mid:  #2A5C47;
  --amber:      #F5A623;
  --cream:      #F9F5EE;
  --warm-white: #FFFDF7;
  --text:       #1A1A18;
  --text-muted: #6B6B63;
  --border:     rgba(27,61,47,0.12);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* ---- NAVBAR ---- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
/* ---- HERO ---- */
.hero {
  padding: 80px 48px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,61,47,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  color: var(--green);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green);
  font-weight: 400;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 3px;
  box-shadow: 0 32px 64px rgba(27,61,47,0.18), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  top: -1px;
}
.phone-screen {
  background: var(--warm-white);
  border-radius: 32px;
  padding: 20px 16px;
  min-height: 400px;
}
.gbp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gbp-avatar { flex-shrink: 0; }
.gbp-name { font-weight: 600; font-size: 14px; color: var(--text); }
.gbp-rating { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.stars { color: #F5A623; font-size: 12px; letter-spacing: 1px; }
.review-count { font-size: 11px; color: var(--text-muted); }
.gbp-actions { display: flex; gap: 8px; margin-bottom: 16px; }
.gbp-btn {
  flex: 1;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.gbp-btn.primary { background: var(--amber); color: var(--green); }
.gbp-reviews-preview { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.review-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.review-chip .stars { font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.review-text { font-size: 11px; color: var(--text-muted); line-height: 1.4; font-style: italic; }
.social-posts-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.social-post {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--green);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: 12px;
  padding: 10px 12px;
}
.post-icon { font-size: 16px; flex-shrink: 0; }
.post-content { font-size: 11px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: rgba(27,61,47,0.08);
  padding: 6px 12px;
  border-radius: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
/* ---- PROOF BAR ---- */
.proof {
  padding: 32px 48px;
  background: var(--green);
  text-align: center;
}
.proof-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.proof-types { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.proof-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
/* ---- FEATURES ---- */
.features {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { max-width: 600px; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.65; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card-tall { grid-row: span 1; }
.feature-card-wide { grid-column: span 2; }
.feature-icon-wrap { width: 40px; height: 40px; }
.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green);
  line-height: 1.25;
}
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.feature-detail { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; line-height: 1.5; }
.feature-metric { display: flex; align-items: baseline; gap: 12px; margin-top: 8px; }
.metric-big { font-family: var(--font-serif); font-size: 48px; color: var(--amber); line-height: 1; }
.metric-label { font-size: 13px; color: var(--text-muted); }
/* ---- PRICING ---- */
.pricing {
  padding: 100px 48px;
  background: var(--green);
}
.pricing-header { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.pricing-header .section-title { color: white; }
.pricing-header .section-sub { color: rgba(255,255,255,0.6); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card.featured {
  background: rgba(245,166,35,0.12);
  border-color: var(--amber);
  position: relative;
}
.pricing-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.pricing-price { font-family: var(--font-serif); font-size: 52px; color: white; line-height: 1; }
.per-mo { font-size: 18px; font-weight: 400; opacity: 0.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 12px;
  top: 2px;
}
.pricing-cta {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 11px;
}
.featured .pricing-cta {
  background: var(--amber);
  color: var(--green);
  border-color: var(--amber);
}
.pricing-note { max-width: 540px; margin: 32px auto 0; font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }
/* ---- MANIFESTO ---- */
.manifesto {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-body { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.manifesto-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 280px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 280px; height: 280px; border-color: rgba(27,61,47,0.06); }
.ring-3 { width: 360px; height: 360px; border-color: rgba(27,61,47,0.04); }
.manifesto-center {
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto-big { display: block; font-family: var(--font-serif); font-size: 72px; color: var(--green); line-height: 1; }
.manifesto-sub { display: block; font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }
/* ---- FOOTER ---- */
.footer {
  background: var(--green);
  padding: 60px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo { font-family: var(--font-serif); font-size: 24px; color: white; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col div:not(.footer-col-title) { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-bottom { font-size: 12px; color: rgba(255,255,255,0.3); }
/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-graphic { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 48px 24px 60px; }
  .proof { padding: 24px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  .footer { padding: 48px 24px 32px; }
  .footer-links { flex-direction: column; gap: 24px; }
}