/* ==============================================
   HARVEST — PREMIUM SAAS MARKETING SITE
   Design: Dark forest green brand, clean modern SaaS
   Fonts: Cabinet Grotesk (display) + Satoshi (body)
   ============================================== */

/* ---- DESIGN TOKENS ---- */
:root,
[data-theme='light'] {
  /* Brand Palette */
  --harvest-green: #0F4D35;
  --harvest-green-mid: #1A6647;
  --harvest-green-light: #2D8A5E;
  --harvest-green-subtle: #EBF5EF;
  --harvest-green-xsubtle: #F4FAF6;
  --harvest-gold: #D4A017;
  --harvest-gold-subtle: #FDF6E3;

  /* Surfaces */
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-2: #F6F6F4;
  --color-surface-offset: #F0F0EE;
  --color-border: #E2E2DF;
  --color-divider: #EBEBEA;

  /* Text */
  --color-text: #1A1A18;
  --color-text-muted: #6B6B67;
  --color-text-faint: #B4B4AF;
  --color-text-inverse: #FFFFFF;

  /* Primary = brand green */
  --color-primary: #0F4D35;
  --color-primary-hover: #0A3827;
  --color-primary-highlight: #EBF5EF;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 77, 53, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 77, 53, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 77, 53, 0.14);
  --shadow-xl: 0 24px 60px rgba(15, 77, 53, 0.18);
  --shadow-phone: 0 32px 80px rgba(0, 0, 0, 0.22), 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* 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;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  /* Content */
  --content-narrow: 680px;
  --content-default: 1000px;
  --content-wide: 1240px;

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-mid: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme='dark'] {
  --color-bg: #0E1512;
  --color-surface: #141D19;
  --color-surface-2: #192219;
  --color-surface-offset: #1E2A22;
  --color-border: #2A3830;
  --color-divider: #233028;
  --color-text: #E8EDE9;
  --color-text-muted: #8BA695;
  --color-text-faint: #4D6357;
  --color-text-inverse: #0E1512;
  --color-primary: #4FA87A;
  --color-primary-hover: #6DC495;
  --color-primary-highlight: #1A3028;
  --harvest-green-subtle: #1A3028;
  --harvest-green-xsubtle: #141F1A;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-phone: 0 32px 80px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0E1512;
    --color-surface: #141D19;
    --color-surface-2: #192219;
    --color-surface-offset: #1E2A22;
    --color-border: #2A3830;
    --color-divider: #233028;
    --color-text: #E8EDE9;
    --color-text-muted: #8BA695;
    --color-text-faint: #4D6357;
    --color-text-inverse: #0E1512;
    --color-primary: #4FA87A;
    --color-primary-hover: #6DC495;
    --color-primary-highlight: #1A3028;
    --harvest-green-subtle: #1A3028;
    --harvest-green-xsubtle: #141F1A;
    --shadow-phone: 0 32px 80px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--font-display); line-height: 1.15; }
p, li { text-wrap: pretty; }

::selection { background: rgba(15, 77, 53, 0.2); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

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

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) { .container { padding: 0 var(--space-8); } }
@media (min-width: 1200px) { .container { padding: 0 var(--space-12); } }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--harvest-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--harvest-green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.btn-outline:hover { border-color: var(--harvest-green); background: var(--harvest-green-xsubtle); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.btn-ghost:hover { color: var(--color-text); background: var(--color-surface-2); }

.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--harvest-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  transition: background var(--t-fast);
  letter-spacing: 0.01em;
}
.btn-nav:hover { background: var(--harvest-green-mid); }

.btn-nav-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  gap: 6px;
}
.btn-nav-ghost:hover { background: var(--surface-raised); }

.nav-mobile-appstore {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-primary);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-2);
}
.nav-mobile-appstore:hover { color: var(--brand); }

.btn-lg { padding: 0.9rem 2rem; font-size: var(--text-base) !important; }
.btn-full { display: flex; justify-content: center; width: 100%; margin-top: var(--space-6); }

.btn-white {
  display: inline-flex; align-items: center;
  background: #fff;
  color: var(--harvest-green);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-white-outline {
  display: inline-flex; align-items: center;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ---- SECTION LABELS & TITLES ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--harvest-green-light);
  margin-bottom: var(--space-4);
}

[data-theme='dark'] .section-label { color: var(--color-primary); }

.section-title {
  font-size: var(--text-2xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-12);
  line-height: 1.7;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--t-mid);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 64px;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) { .nav-inner { padding: 0 var(--space-8); } }
@media (min-width: 1200px) { .nav-inner { padding: 0 var(--space-12); } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
  margin-left: var(--space-4);
}

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--color-text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

@media (min-width: 900px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-divider);
}

.nav-mobile.open { display: flex; }

@media (min-width: 900px) { .nav-mobile { display: none !important; } }

.nav-mobile a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--color-text); }

/* ---- HERO NOTE ---- */
.hero-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-4);
  max-width: none;
}

.hero-ios-note {
  text-align: center;
  padding: var(--space-4) 0 var(--space-8);
}

.hero-ios-note p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(165deg, #0A3828 0%, #0F4D35 40%, #1A6647 75%, #1D7050 100%);
  overflow: hidden;
  padding-bottom: 0;
}

.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  padding-top: clamp(var(--space-16), 8vw, var(--space-32));
  padding-bottom: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-5);
}

.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-headline {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-5);
}

.hero-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-ctas .btn-primary {
  background: #fff;
  color: var(--harvest-green);
}
.hero-ctas .btn-primary:hover { background: #f0faf4; }

.hero-ctas .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.hero-ctas .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }

/* Hero-specific named variants to avoid conflicts */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: #fff; color: var(--harvest-green);
  font-family: var(--font-display); font-weight: 700;
  border-radius: var(--radius-full);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover { background: #f0faf4; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-hero-outline {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: transparent; color: #fff;
  font-family: var(--font-display); font-weight: 600;
  border-radius: var(--radius-full); border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.proof-avatars {
  display: flex;
}

.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--harvest-green-mid);
  border: 2.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-left: -8px;
  font-family: var(--font-display);
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #1A6647; }
.av2 { background: #2D8A5E; }
.av3 { background: #22785A; }

.hero-social-proof p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  max-width: none;
}

/* Phone stack hero */
.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: clamp(400px, 50vw, 600px);
}

.phone-stack {
  position: relative;
  width: 260px;
  height: 100%;
}

.phone {
  position: absolute;
  bottom: 0;
}

.phone-back {
  left: -60px;
  bottom: -20px;
  transform: rotate(-6deg) translateY(20px);
  opacity: 0.75;
  filter: brightness(0.7);
  z-index: 1;
}

.phone-front {
  right: -60px;
  transform: rotate(3deg);
  z-index: 2;
}

.phone-frame {
  width: 240px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-phone);
  border: 8px solid #1A1A1A;
  background: #1A1A1A;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stat bar */
.hero-stats {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  margin-top: var(--space-8);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 600px) { .stat-divider { display: none; } }

/* ---- PROBLEM ---- */
.problem {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
}

.problem-card:hover { border-color: var(--harvest-green-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.problem-icon {
  width: 72px;
  height: 72px;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problem-card h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- SHOWCASE ---- */
.showcase {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}

.showcase > .container { margin-bottom: var(--space-16); }

.showcase-panels { display: flex; flex-direction: column; gap: 0; }

.showcase-panel {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  border-top: 1px solid var(--color-divider);
}

.showcase-panel-alt {
  background: var(--color-surface-2);
}

.showcase-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .showcase-panel-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  .showcase-panel-inner.reverse { direction: rtl; }
  .showcase-panel-inner.reverse > * { direction: ltr; }
}

.panel-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--harvest-green-light);
  background: var(--harvest-green-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

[data-theme='dark'] .panel-tag {
  color: var(--color-primary);
  background: var(--harvest-green-subtle);
}

.panel-text h3 {
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.panel-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 480px;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.panel-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.panel-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--harvest-green-light);
  flex-shrink: 0;
}

.panel-phone {
  display: flex;
  justify-content: center;
}

.phone-frame-lg {
  width: clamp(200px, 35vw, 300px);
  border-radius: 36px;
  box-shadow: var(--shadow-phone);
  border: 8px solid #1A1A1A;
  background: #1A1A1A;
  overflow: hidden;
}

.phone-frame-lg img { width: 100%; height: auto; display: block; }

/* ---- ROLES ---- */
.roles {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface-2);
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .roles-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

.role-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.role-header {
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.role-badge {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--harvest-green);
  color: #fff;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.agent-badge {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.role-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-surface);
}

.role-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.role-list li:last-child { border-bottom: none; }

.role-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--harvest-green-light);
  flex-shrink: 0;
}

[data-theme='dark'] .role-list li::before { background: var(--color-primary); }

.roles-note {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  text-align: center;
  max-width: none;
}

/* ---- INTEGRATIONS ---- */
.integrations {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

@media (min-width: 600px) { .integrations-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }

.integration-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-mid), transform var(--t-mid);
}

.integration-item:hover { border-color: var(--harvest-green-light); transform: translateY(-2px); }

.integration-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--harvest-green-subtle);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--harvest-green);
  padding: var(--space-2);
}

[data-theme='dark'] .integration-icon { background: var(--harvest-green-subtle); color: var(--color-primary); }

.integration-icon svg { width: 20px; height: 20px; }

.integration-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.integration-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-8);
  background: var(--harvest-green-xsubtle);
  border: 1px solid var(--harvest-green-subtle);
  border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
  .trust-bar { flex-direction: row; gap: var(--space-8); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.trust-item svg { flex-shrink: 0; color: var(--harvest-green-light); }
[data-theme='dark'] .trust-item svg { color: var(--color-primary); }

/* ---- CREDIT PACKS ---- */
.credit-packs {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-divider);
}

.credit-packs-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.credit-packs-header h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.credit-packs-header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  max-width: 640px;
  margin: 0 auto var(--space-6);
}

.pack-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  text-align: center;
  position: relative;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}

.pack-card:hover { border-color: var(--harvest-green-light); box-shadow: var(--shadow-md); }

.pack-card-featured {
  border-color: var(--harvest-green);
  box-shadow: var(--shadow-md);
}

.pack-best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--harvest-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pack-credits {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.pack-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--harvest-green);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works .section-label { color: rgba(255,255,255,0.55); }
.how-it-works .section-title { color: #fff; }
.how-it-works .section-sub { color: rgba(255,255,255,0.65); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  transition: background var(--t-mid);
}

.step:hover { background: rgba(255,255,255,0.1); }

.step-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

.step-content h3 {
  font-size: var(--text-base);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: none;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--space-6);
    margin-top: var(--space-8);
    color: rgba(255,255,255,0.25);
    font-size: 1.2rem;
  }
  .step-connector::after { content: '→'; }

  .steps { gap: var(--space-3); }
}

/* ---- WHY HARVEST ---- */
.why-harvest {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

.compare-col {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.compare-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: -0.01em;
}

.compare-badge.bad { background: #FEE2E2; color: #B91C1C; }
.compare-badge.good { background: var(--harvest-green-subtle); color: var(--harvest-green); }

[data-theme='dark'] .compare-badge.bad { background: rgba(185, 28, 28, 0.2); color: #FCA5A5; }
[data-theme='dark'] .compare-badge.good { background: var(--harvest-green-subtle); color: var(--color-primary); }

.compare-list {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-6) var(--space-6);
  background: var(--color-surface);
  gap: 0;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.compare-item:last-child { border-bottom: none; }

.compare-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.compare-item.bad .compare-icon { color: #EF4444; }
.compare-item.good .compare-icon { color: var(--harvest-green-light); }
.compare-item.good { color: var(--color-text); font-weight: 500; }

[data-theme='dark'] .compare-item.bad .compare-icon { color: #FC8181; }
[data-theme='dark'] .compare-item.good .compare-icon { color: var(--color-primary); }

/* ---- FEATURES ---- */
.features {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface-2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
}

.feature-card:hover {
  border-color: var(--harvest-green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--harvest-green-subtle);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  padding: var(--space-2);
  color: var(--harvest-green);
}

[data-theme='dark'] .feature-icon { background: var(--harvest-green-subtle); color: var(--color-primary); }

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.testimonial-card-featured {
  background: var(--harvest-green);
  border-color: var(--harvest-green);
}

.testimonial-stars {
  color: var(--harvest-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
}

.testimonial-card-featured .testimonial-stars { color: #FBBF24; }

.testimonial-card blockquote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
  max-width: none;
}

.testimonial-card-featured blockquote { color: rgba(255,255,255,0.8); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--harvest-green-subtle);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--harvest-green);
  flex-shrink: 0;
}

.testimonial-card-featured .testimonial-avatar {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
}

.testimonial-card-featured .testimonial-name { color: #fff; }

.testimonial-title {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.testimonial-card-featured .testimonial-title { color: rgba(255,255,255,0.55); }

.usage-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.usage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.usage-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--harvest-green);
  letter-spacing: -0.03em;
  line-height: 1;
}

[data-theme='dark'] .usage-num { color: var(--color-primary); }

.usage-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- PRICING ---- */
.pricing {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
}

.pricing-card-featured {
  background: var(--harvest-green);
  border-color: var(--harvest-green);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

@media (max-width: 767px) { .pricing-card-featured { transform: none; } }

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--harvest-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.65); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
}

.pricing-card-featured .price-amount { color: #fff; }

.price-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-card-featured .price-period { color: rgba(255,255,255,0.6); }

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: none;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--space-6);
}

.pricing-card-featured .pricing-desc {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }

.check {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--harvest-green-light);
  font-weight: 700;
}

.pricing-card-featured .check { color: #4ADE80; }

.pricing-card-featured .btn-primary {
  background: #fff;
  color: var(--harvest-green);
}
.pricing-card-featured .btn-primary:hover { background: #f0faf4; }

.pricing-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-8);
  max-width: none;
}

/* ---- DEMO CTA ---- */
.demo-cta {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: linear-gradient(135deg, #0A3828 0%, #0F4D35 50%, #1A6647 100%);
}

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

.cta-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.cta-inner h2 {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}

.cta-inner p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.cta-fine {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

/* ---- FAQ ---- */
.faq {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-6) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  background: var(--color-surface);
  gap: var(--space-4);
  transition: background var(--t-fast);
}

.faq-q:hover { background: var(--color-surface-2); }
.faq-q[aria-expanded='true'] { background: var(--harvest-green-xsubtle); }
[data-theme='dark'] .faq-q[aria-expanded='true'] { background: var(--harvest-green-subtle); }

.faq-arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--t-mid);
}

.faq-q[aria-expanded='true'] .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 var(--space-8) var(--space-6);
  background: var(--color-surface);
}

.faq-q[aria-expanded='true'] + .faq-a {
  display: block;
  background: var(--harvest-green-xsubtle);
}

[data-theme='dark'] .faq-q[aria-expanded='true'] + .faq-a {
  background: var(--harvest-green-subtle);
}

.faq-a p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-text);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0 var(--space-8);
}

[data-theme='dark'] .footer { background: #0A0E0C; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  justify-content: space-between;
  margin-bottom: var(--space-12);
}

.footer .nav-logo-text { color: #fff; }

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-3);
  max-width: none;
}

.footer-links {
  display: flex;
  gap: var(--space-12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  max-width: none;
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ---- ANIMATIONS ---- */
/* Animations — desktop only. Mobile gets no transform so nothing pops awkwardly. */
@media (min-width: 768px) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .fade-up-delay {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .fade-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .fade-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .in-view {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== VALUE STRIP ===== */
.value-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-10) 0;
}

[data-theme="dark"] .value-strip {
  background: var(--surface-raised);
}

.value-strip-line {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto var(--space-8);
  text-align: center;
  line-height: 1.65;
}

.value-pillars {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.value-pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}

.value-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 77, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}

[data-theme="dark"] .value-pillar-icon {
  background: rgba(15, 77, 53, 0.25);
}

.value-pillar > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.value-pillar strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.value-pillar span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.value-pillar-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .value-pillars {
    flex-direction: column;
    align-items: stretch;
  }
  .value-pillar {
    max-width: 100%;
  }
  .value-pillar-sep {
    display: none;
  }
}

/* ===== COMPACT HOW IT WORKS ===== */
.how-it-works {
  background: var(--brand-dark, #0a3828);
  padding: var(--space-16) 0;
}

[data-theme="dark"] .how-it-works {
  background: #061f17;
}

.how-it-works .section-label {
  color: rgba(255,255,255,0.45);
}

.how-it-works .section-title {
  color: #fff;
  margin-bottom: var(--space-10);
}

.steps-compact {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 140px;
  max-width: 190px;
  padding: 0 var(--space-2);
}

.step-compact-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-1);
}

.step-compact-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-compact-body strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: #fff;
}

.step-compact-body span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.step-compact-arrow {
  color: rgba(255,255,255,0.2);
  align-self: flex-start;
  margin-top: 28px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .steps-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
    max-width: 400px;
    margin: 0 auto;
  }
  .step-compact {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    max-width: 100%;
    min-width: 0;
    gap: var(--space-4);
    padding: 0;
  }
  .step-compact-num {
    margin-bottom: 0;
    padding-top: 2px;
    min-width: 28px;
  }
  .step-compact-arrow {
    display: none;
  }
}

/* App Store button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
