/* ============================================
   Reseeda Marketing Site — style.css
   Multi-page, mobile-first, matching app design
   ============================================ */

/* --- Brand Tokens (matching app reseeda.css) --- */
:root {
  /* Primary Palette — Earthy Modern */
  --color-primary: #4A6741;
  --color-primary-light: #5C7A52;
  --color-primary-dark: #3A5534;
  --color-secondary: #9BB88A;
  --color-secondary-light: #B5CEAA;
  --color-accent: #C67D4E;
  --color-accent-light: #D49670;
  --color-accent-dark: #A86638;
  --color-reward: #E5A84B;
  --color-reward-light: #EDBD6F;

  /* Backgrounds */
  --color-bg: #F8F6F3;
  --color-bg-warm: #F2EFEA;
  --color-bg-card: rgba(255, 255, 255, 0.82);
  --color-white: #FFFFFF;

  /* Hero / Dark sections — vibrant, fresh */
  --color-hero: #4A7A3A;
  --color-hero-mid: #3D6930;
  --color-footer: #243D1A;
  --color-dark-section: #2E5422;

  /* Warm CTA tones */
  --color-honey: #FFF8E7;
  --color-honey-dark: #F5E6C4;
  --color-cream: #FFFDF5;

  /* Neutrals — warm grays */
  --color-gray-50: #FAFAF9;
  --color-gray-100: #F5F4F2;
  --color-gray-200: #E8E6E3;
  --color-gray-300: #D4D1CC;
  --color-gray-400: #A8A29E;
  --color-gray-500: #78716C;
  --color-gray-600: #57534E;
  --color-gray-700: #3C3836;
  --color-gray-800: #292524;
  --color-gray-900: #1C1917;

  /* Semantic */
  --color-success: #34C759;
  --color-success-bg: rgba(52, 199, 89, 0.08);
  --color-error: #FF3B30;
  --color-error-bg: rgba(255, 59, 48, 0.06);

  /* Typography */
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-base: 280ms cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --nav-height: 72px;
  --max-width: 1200px;
  --content-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-gray-800);
  line-height: 1.6;
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gray-900);
  letter-spacing: -0.025em;
}

::selection {
  background: rgba(155, 184, 138, 0.35);
  color: var(--color-gray-900);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

/* Default transparent (on hero pages) */
.nav--transparent {
  background: transparent;
}

/* Solid variant for interior pages */
.nav--solid {
  background: rgba(74, 122, 58, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
}

.nav.scrolled {
  background: rgba(74, 122, 58, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--color-secondary); }
.nav-logo-icon { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--color-accent-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(74,103,65,0.25);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,103,65,0.35);
  color: white;
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(198,125,78,0.25);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198,125,78,0.35);
  color: white;
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  background: transparent;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  color: white;
}

/* Warm hero buttons */
.btn-honey {
  background: var(--color-honey);
  color: var(--color-gray-800);
  border: 1.5px solid var(--color-honey-dark);
  box-shadow: 0 4px 16px rgba(229,168,75,0.2);
}
.btn-honey:hover {
  background: var(--color-reward-light);
  color: var(--color-gray-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229,168,75,0.35);
}

.btn-cream {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-cream:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  color: white;
}

.btn-outline {
  border: 2px solid var(--color-gray-200);
  color: var(--color-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn-block { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ================================================
   HERO — HOMEPAGE
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-hero) 0%, var(--color-hero-mid) 50%, #2E5422 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%2370A85E' fill-opacity='0.08'%3E%3Cpath d='M20 5c-2 4-1 9 3 12s9 2 12-1c-5 1-9-1-11-4S20 5 20 5z'/%3E%3Cpath d='M60 25c-3 3-3 8 0 12s8 4 12 2c-4-1-8-3-9-6s-1-6-3-8z'/%3E%3Cpath d='M10 55c2 4 6 6 10 5s7-5 6-9c-2 3-5 5-8 5s-6-1-8-1z'/%3E%3Cpath d='M55 60c-1 4 1 8 5 10s8 1 10-2c-4 0-7-2-9-4s-4-4-6-4z'/%3E%3Cellipse cx='40' cy='42' rx='3' ry='5' transform='rotate(30 40 42)'/%3E%3Cellipse cx='70' cy='10' rx='2.5' ry='4' transform='rotate(-20 70 10)'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Ambient glow — animated pulse */
.hero::after {
  content: '';
  position: absolute;
  top: 15%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(181,206,170,0.18) 0%, rgba(155,184,138,0.06) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,184,138,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(155,184,138,0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary-light);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: heroMockupEntrance 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.mockup-frame {
  width: 280px;
  height: 560px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: mockupFloat 5s ease-in-out infinite;
}

.mockup-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 28px;
  background: rgba(0,0,0,0.4);
  border-radius: 0 0 18px 18px;
}

.mockup-content {
  padding: 44px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.mockup-greeting {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.mockup-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
}

.mockup-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.mockup-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px;
}

.mockup-card-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.mockup-card-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.mockup-card-sub {
  font-size: 0.7rem;
  color: var(--color-secondary);
  margin-top: 3px;
}

.mockup-pill-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mockup-pill {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
}

.mockup-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(181,206,170,0.25) 0%, rgba(155,184,138,0.08) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

/* ================================================
   SOCIAL PROOF BAR
   ================================================ */
.social-proof {
  background: var(--color-bg-warm);
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.proof-item h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-primary);
  margin-bottom: 4px;
}

.proof-item p {
  color: var(--color-gray-500);
  font-size: 0.9rem;
}

.proof-divider {
  display: none;
  width: 1px;
  background: var(--color-gray-200);
  align-self: stretch;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-gray-900);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--color-gray-500);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-sub-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ================================================
   PAGE HERO (interior pages)
   ================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 64px;
  background: linear-gradient(135deg, var(--color-hero) 0%, var(--color-hero-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%235C7A52' fill-opacity='0.08'%3E%3Cpath d='M20 5c-2 4-1 9 3 12s9 2 12-1c-5 1-9-1-11-4S20 5 20 5z'/%3E%3Cpath d='M60 25c-3 3-3 8 0 12s8 4 12 2c-4-1-8-3-9-6s-1-6-3-8z'/%3E%3Cpath d='M10 55c2 4 6 6 10 5s7-5 6-9c-2 3-5 5-8 5s-6-1-8-1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 14px;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
}

.page-hero .hero-badge {
  position: relative;
}

/* ================================================
   FEATURES SECTION / PAGE
   ================================================ */
.features {
  padding: 100px 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--color-gray-800);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-gray-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Feature detail (used on features page) */
.feature-detail {
  padding: 80px 0;
}

.feature-detail:nth-child(even) {
  background: var(--color-bg);
}

.feature-detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.feature-detail-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.feature-detail-text p {
  color: var(--color-gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-detail-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.feature-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-success-bg);
  color: var(--color-success);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--color-bg);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 16px;
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-text h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-gray-800);
  margin-bottom: 12px;
}

.step-text p {
  color: var(--color-gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 460px;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-illustration {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-md);
}

.step-illustration.vault {
  background: linear-gradient(135deg, #E8F0DB, var(--color-secondary-light));
}
.step-illustration.grow {
  background: linear-gradient(135deg, #D6EED0, var(--color-secondary));
}
.step-illustration.compete {
  background: linear-gradient(135deg, #F5E9D8, rgba(229,168,75,0.25));
}

/* ================================================
   PEST SPOTTING CALLOUT
   ================================================ */
.callout {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.callout--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #B35A2A 100%);
}

.callout--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='15' cy='15' r='3'/%3E%3Ccircle cx='45' cy='45' r='2'/%3E%3Ccircle cx='45' cy='15' r='1.5'/%3E%3Ccircle cx='15' cy='45' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.callout-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.callout-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.callout h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.25;
}

.callout p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: white;
  font-weight: 500;
}

/* ================================================
   PARTNER / SEED COMPANIES
   ================================================ */
.partner-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-dark-section) 0%, #1C2A16 100%);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.partner-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.partner-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}

.partner-features {
  list-style: none;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.partner-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(155,184,138,0.2);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.partner-visual {
  display: flex;
  justify-content: center;
}

.partner-card-preview {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.partner-card-preview-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.partner-card-preview h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.partner-card-preview p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ================================================
   PRICING TABLE
   ================================================ */
.pricing {
  padding: 100px 0;
  background: var(--color-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-bg);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: white;
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-gray-400);
}

.pricing-desc {
  color: var(--color-gray-500);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-gray-700);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ================================================
   CTA / SIGNUP SECTION
   ================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--color-bg-warm);
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-gray-900);
  margin-bottom: 14px;
}

/* ================================================
   FORMS (Contact, Signup, Partner)
   ================================================ */
.form-section {
  padding: 80px 0;
  background: var(--color-white);
}

.form-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--color-gray-800);
  background: white;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(74,103,65,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray-400);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-note {
  color: var(--color-gray-500);
  font-size: 0.8rem;
  margin-top: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Email inline form (CTA) */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  margin: 0 auto;
}

.email-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: var(--font-body);
  background: white;
  color: var(--color-gray-800);
  outline: none;
  transition: border-color var(--transition-fast);
}

.email-form input[type="email"]::placeholder { color: var(--color-gray-400); }
.email-form input[type="email"]:focus { border-color: var(--color-primary); }

/* Form alerts */
.form-message {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: var(--color-success-bg);
  color: #166534;
  border: 1px solid rgba(52,199,89,0.15);
  display: block;
}

.form-message.error {
  background: var(--color-error-bg);
  color: #991B1B;
  border: 1px solid rgba(255,59,48,0.1);
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--color-footer);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .footer-logo span { color: var(--color-secondary); }

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-group h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links-group a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes glowPulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes heroMockupEntrance {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroTextEntrance {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmerSlide {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.5; }
  25% { transform: translateY(-30px) translateX(15px) rotate(90deg); opacity: 0.8; }
  50% { transform: translateY(-50px) translateX(-10px) rotate(180deg); opacity: 0.4; }
  75% { transform: translateY(-25px) translateX(20px) rotate(270deg); opacity: 0.7; }
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hero text stagger entrance */
.hero-text .hero-badge {
  animation: heroTextEntrance 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-text h1 {
  animation: heroTextEntrance 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-sub {
  animation: heroTextEntrance 0.7s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.hero-buttons {
  animation: heroTextEntrance 0.7s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

/* Floating leaf particles on hero */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50% 50% 50% 0;
  background: rgba(181,206,170,0.2);
  animation: particleFloat linear infinite;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 12s; width: 6px; height: 6px; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 15s; animation-delay: -3s; width: 10px; height: 10px; }
.hero-particle:nth-child(3) { left: 50%; top: 30%; animation-duration: 10s; animation-delay: -5s; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-duration: 14s; animation-delay: -2s; width: 5px; height: 5px; }
.hero-particle:nth-child(5) { left: 85%; top: 15%; animation-duration: 11s; animation-delay: -7s; width: 7px; height: 7px; }
.hero-particle:nth-child(6) { left: 40%; top: 80%; animation-duration: 13s; animation-delay: -4s; }
.hero-particle:nth-child(7) { left: 60%; top: 45%; animation-duration: 16s; animation-delay: -6s; width: 9px; height: 9px; }
.hero-particle:nth-child(8) { left: 15%; top: 85%; animation-duration: 11s; animation-delay: -1s; width: 6px; height: 6px; }

/* Badge hover bounce */
.hero-badge:hover {
  animation: badgeBounce 0.5s ease;
}

/* Scroll indicator shimmer */
.proof-item h3 {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature card icon bounce on hover */
.feature-card:hover .feature-icon {
  animation: badgeBounce 0.4s ease;
}

/* Step illustrations gentle hover */
.step-illustration {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.step-illustration:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* Scroll-triggered animations */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
}

.animate-in.visible {
  animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

.animate-in.visible:nth-child(2) { animation-delay: .08s; }
.animate-in.visible:nth-child(3) { animation-delay: .16s; }
.animate-in.visible:nth-child(4) { animation-delay: .22s; }
.animate-in.visible:nth-child(5) { animation-delay: .28s; }
.animate-in.visible:nth-child(6) { animation-delay: .34s; }
.animate-in.visible:nth-child(7) { animation-delay: .40s; }
.animate-in.visible:nth-child(8) { animation-delay: .46s; }
.animate-in.visible:nth-child(9) { animation-delay: .52s; }

.animate-left {
  opacity: 0;
  transform: translateX(-32px);
}
.animate-left.visible {
  animation: fadeInLeft 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(32px);
}
.animate-right.visible {
  animation: fadeInRight 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* ================================================
   SPINNER
   ================================================ */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================
   RESPONSIVE — Tablet (640px+)
   ================================================ */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
  }

  .proof-divider { display: block; }

  .email-input-wrap { flex-direction: row; }

  .form-row { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   RESPONSIVE — Desktop (960px+)
   ================================================ */
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    grid-template-columns: 1fr 1fr;
  }
  .step.reverse .step-text { order: 2; }
  .step.reverse .step-visual { order: 1; }

  .feature-detail-inner {
    grid-template-columns: 1fr 1fr;
  }
  .feature-detail:nth-child(even) .feature-detail-inner { direction: rtl; }
  .feature-detail:nth-child(even) .feature-detail-inner > * { direction: ltr; }

  .partner-inner { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 2fr 1fr 1fr; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-toggle { display: none !important; }
}

/* ================================================
   MOBILE MENU
   ================================================ */
@media (max-width: 959px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-footer);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right var(--transition-slow);
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4px;
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 8px;
  }

  .nav-links a {
    padding: 14px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
  }

  .nav-toggle { display: flex; }

  .hero {
    padding-top: 100px;
    text-align: center;
  }
  .hero-text { margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .page-hero { text-align: center; }
  .page-hero p { margin-left: auto; margin-right: auto; }
}

/* --- Overlay for mobile menu --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================================
   FOCUS STYLES
   ================================================ */
.btn:focus-visible,
.nav-cta:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}
