:root {
  --cream: #f8f6f1;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --ink-muted: #8a8a8a;
  --accent: #1b6b4a;
  --accent-mid: #2a8c61;
  --accent-pale: #e8f4ee;
  --border: #e5e2da;
  --red: #d64242;
  --font-display: 'Google Sans', 'Public Sans', 'Montserrat', 'Proxima Nova', 'Proxima Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-header: 'Google Sans', 'Public Sans', 'Montserrat', 'Proxima Nova', 'Proxima Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-header);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: var(--space-md); list-style: none; }
.nav-links a { font-family: var(--font-header); font-size: 0.9rem; font-weight: 500; color: var(--ink-light); transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--font-header);
  background: var(--accent);
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.15s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--accent-mid) !important; transform: translateY(-1px); }

.hero {
  padding-top: calc(68px + var(--space-xl));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 107, 74, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 107, 74, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: var(--space-md);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-light);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(27, 107, 74, 0.25);
}
.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 107, 74, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.15s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--ink-muted); transform: translateY(-2px); }
.hero-trust { margin-top: var(--space-lg); display: flex; align-items: center; gap: var(--space-sm); }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  background: var(--accent-pale);
  margin-left: -8px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust p { font-size: 0.85rem; color: var(--ink-light); }
.hero-trust strong { color: var(--ink); font-weight: 600; }

.pain { background: var(--ink); color: white; padding: var(--space-xl) 0; }
.pain h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: var(--space-md);
}
.pain h2 em { font-style: italic; color: #7bbfa0; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-top: var(--space-lg); }
.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.pain-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(214, 66, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}
.pain-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 400; }
.pain-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); line-height: 1.6; }
.pain-pivot {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: #7bbfa0;
  line-height: 1.3;
}

.promise { padding: var(--space-xl) 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.promise h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 20ch;
  margin-bottom: var(--space-lg);
}
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.promise-item {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.promise-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-pale);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.promise-item h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.3; }
.promise-item p { font-size: 0.9rem; color: var(--ink-light); line-height: 1.65; }

.proof { background: var(--accent-pale); padding: var(--space-xl) 0; }
.proof h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}
.proof-case {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--space-md);
}
.proof-case-content { padding: var(--space-lg); }
.proof-tag {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.proof-case h3 { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.25; margin-bottom: var(--space-sm); }
.proof-case p { font-size: 0.9rem; color: var(--ink-light); margin-bottom: var(--space-md); line-height: 1.7; }
.proof-stats { display: flex; gap: var(--space-md); }
.proof-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.proof-stat .label { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.25rem; }
.proof-case-image {
  background: linear-gradient(135deg, var(--accent) 0%, #0d4a33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.proof-case-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.proof-case-image-text {
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  padding: var(--space-md);
  position: relative;
  z-index: 1;
  opacity: 0.9;
}
.logos { margin-top: var(--space-lg); }
.logos p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-md);
}
.logo-strip { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md); align-items: center; }
.logo-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-light);
  box-shadow: var(--shadow-sm);
}

.local { padding: var(--space-xl) 0; }
.local-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.local h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.local h2 em { font-style: italic; color: var(--accent); }
.local p { font-size: 1rem; color: var(--ink-light); line-height: 1.75; margin-bottom: var(--space-md); }
.local-visual {
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.local-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a1a 0%, #1b6b4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.local-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-section {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
}
.cta-inner h2 em { font-style: italic; color: var(--accent); }
.cta-inner p { font-size: 1rem; color: var(--ink-light); margin-bottom: var(--space-lg); line-height: 1.7; }
.cta-audit-card {
  background: var(--accent-pale);
  border: 1px solid rgba(27, 107, 74, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  text-align: left;
}
.cta-audit-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.cta-audit-card p { font-size: 0.9rem; color: var(--ink-light); margin-bottom: var(--space-md); }
.cta-audit-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: var(--space-md); }
.cta-audit-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-light); }
.cta-audit-list li::before { content: '\2713'; color: var(--accent); font-weight: 700; font-size: 0.8rem; }
.cta-small { font-size: 0.8rem; color: var(--ink-muted); text-align: center; margin-top: var(--space-sm); }

footer { background: var(--ink); color: rgba(255, 255, 255, 0.5); padding: var(--space-lg) 0; }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
footer .footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: white; }
footer .footer-logo span { color: #7bbfa0; }
footer p { font-size: 0.85rem; }
footer a { color: rgba(255, 255, 255, 0.5); transition: color 0.15s; }
footer a:hover { color: white; }

.page-section {
  padding-top: calc(68px + var(--space-lg));
  padding-bottom: var(--space-xl);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.page-content { color: var(--ink-light); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.5s ease both; }
.hero h1 { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.5s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
.hero-trust { animation: fadeUp 0.5s 0.4s ease both; }

@media (max-width: 768px) {
  .pain-grid,
  .promise-grid,
  .proof-case,
  .local-inner {
    grid-template-columns: 1fr;
  }

  .proof-case-image { min-height: 200px; }
  .cta-audit-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: calc(68px + 4rem); padding-bottom: 4rem; }
  .page-section { padding-top: calc(68px + 3rem); }
}
