:root {
  --forest: #1A4731;
  --forest-dark: #0F2D1E;
  --orange: #FF6B35;
  --orange-dark: #E85A2A;
  --canvas: #F9F9F7;
  --canvas-warm: #F2EFE5;
  --canvas-warmer: #EBE6D6;
  --slate: #4A5568;
  --slate-light: #6B7280;
  --lake: #2B6CB0;
  --line: rgba(26, 71, 49, 0.12);
  --line-strong: rgba(26, 71, 49, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--forest-dark);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif { font-family: 'Fraunces', Georgia, serif; font-variation-settings: "opsz" 144; }
.mono { font-family: 'JetBrains Mono', monospace; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ TOPO LINES BACKGROUND ============ */
.topo {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: -0.5px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 15px;
  color: var(--slate);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--forest); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--canvas);
  box-shadow: 0 1px 0 var(--orange-dark);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--canvas);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
  padding: 24px 20px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 24px rgba(26, 71, 49, 0.08);
}

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

.mobile-menu a {
  padding: 14px 4px;
  font-size: 18px;
  color: var(--forest);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu .btn-primary {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 16px 20px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 100px;
}

.hero-topo {
  top: -100px;
  right: -200px;
  width: 800px;
  height: 800px;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(43, 108, 176, 0.08);
  color: var(--lake);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lake);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -2.5px;
  color: var(--forest);
  margin-bottom: 28px;
}

h1.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-microtrust {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--slate-light);
  flex-wrap: wrap;
}

.hero-microtrust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check {
  color: var(--forest);
  font-weight: 600;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 540px;
}

.dashboard-card {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 380px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(26, 71, 49, 0.12), 0 4px 12px rgba(26, 71, 49, 0.06);
  padding: 22px;
  transform: rotate(3deg);
  z-index: 1;
}

.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.db-title {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

.db-dots { display: flex; gap: 4px; }
.db-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }

.db-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.db-stat {
  background: var(--canvas-warm);
  padding: 10px 12px;
  border-radius: 8px;
}

.db-stat-label { font-size: 10px; color: var(--slate); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.db-stat-value { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--forest); line-height: 1; }
.db-stat-value.alert { color: var(--orange); }

.db-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--canvas);
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 12px;
}

.db-row-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.db-row-dot.medical { background: var(--orange); }
.db-row-dot.safety { background: var(--lake); }
.db-row-dot.behavior { background: #B8862E; }

.db-row-text { color: var(--slate); flex: 1; }
.db-row-text strong { color: var(--forest); font-weight: 500; }
.db-row-time { color: var(--slate-light); font-size: 11px; }

/* PHONE */
.phone {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 280px;
  background: var(--forest-dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(26, 71, 49, 0.25), 0 8px 20px rgba(26, 71, 49, 0.12);
  z-index: 2;
  transform: rotate(-4deg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--forest-dark);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone-screen {
  background: var(--canvas);
  border-radius: 28px;
  padding: 28px 18px 20px;
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 14px;
  padding: 0 6px;
}

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

.phone-back {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--canvas-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 14px;
}

.phone-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate);
}

.phone-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}

.phone-subtitle {
  font-size: 11px;
  color: var(--slate);
  margin-bottom: 18px;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.phone-btn {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
}

.phone-btn.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.phone-btn-icon {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.phone-submit {
  background: var(--forest);
  color: white;
  border-radius: 10px;
  padding: 13px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

/* Floating timestamp tag */
.timestamp-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--forest);
  color: var(--canvas);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 5;
  transform: rotate(2deg) translate(40px, -30px);
  box-shadow: 0 8px 20px rgba(26, 71, 49, 0.2);
}

.timestamp-tag::before {
  content: "●";
  color: var(--orange);
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { min-height: 480px; max-width: 480px; margin: 0 auto; }
  .dashboard-card { right: 0; width: 320px; }
  .phone { left: 0; width: 240px; }
  .hero { padding: 60px 20px 80px; }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 460px;
    max-width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Hide the dashboard card on narrow screens — the composition gets crushed.
     The phone alone is a stronger focal point at this width. */
  .dashboard-card {
    display: none;
  }
  .phone {
    position: relative;
    left: auto;
    bottom: auto;
    width: 240px;
    border-radius: 32px;
    padding: 10px;
    transform: rotate(-3deg);
  }
  .phone-screen {
    border-radius: 24px;
    padding: 24px 16px 18px;
  }
  .phone-grid { gap: 8px; }
  .phone-btn { padding: 12px 6px; font-size: 11px; }
  .phone-btn-icon { font-size: 18px; }
  .timestamp-tag {
    font-size: 11px;
    padding: 7px 13px;
    top: 30px;
    left: 50%;
    transform: rotate(3deg) translate(-30px, 0);
  }
  .hero-ctas .btn-large {
    padding: 14px 18px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-microtrust {
    gap: 14px;
    font-size: 12px;
  }
  .hero-sub { font-size: 17px; }
  h1.hero-title { letter-spacing: -1.5px; }
}

/* ============ LOGO STRIP ============ */
.logo-strip {
  background: var(--canvas-warm);
  padding: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-strip-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-strip-label strong { color: var(--forest); }

.logo-strip-logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--slate);
  letter-spacing: -0.3px;
}

.logo-strip-logos span {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-strip-logos span:hover { opacity: 1; color: var(--forest); }

@media (max-width: 760px) {
  .logo-strip { padding: 24px 20px; }
  .logo-strip-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .logo-strip-label {
    white-space: normal;
    font-size: 12px;
  }
  .logo-strip-logos {
    gap: 20px 28px;
    justify-content: center;
    font-size: 15px;
  }
}

/* ============ KPI BAR ============ */
.kpi-bar {
  background: var(--forest);
  color: var(--canvas);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.kpi-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 1;
}

.kpi {
  text-align: center;
  position: relative;
}

.kpi:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(249, 249, 247, 0.2);
}

.kpi-number {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
  color: var(--canvas);
}

.kpi-number em {
  font-style: italic;
  color: var(--orange);
}

.kpi-label {
  font-size: 14px;
  color: rgba(249, 249, 247, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 760px) {
  .kpi-inner { grid-template-columns: 1fr; gap: 40px; }
  .kpi:not(:last-child)::after { display: none; }
}

/* ============ SECTION SHELL ============ */
section.shell {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}

section.shell.warm { background: var(--canvas-warm); }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange);
}

h2.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--forest);
  margin-bottom: 28px;
  max-width: 800px;
}

h2.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 680px;
  margin-bottom: 64px;
}

/* ============ PAIN GRID ============ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 71, 49, 0.08);
}

.pain-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pain-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.pain-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--forest);
  margin-bottom: 14px;
}

.pain-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 760px) {
  .pain-grid { grid-template-columns: 1fr; }
  section.shell { padding: 64px 20px; }
  .section-sub { margin-bottom: 44px; font-size: 17px; }
  h2.section-title { letter-spacing: -1px; }
}

@media (max-width: 480px) {
  section.shell { padding: 56px 20px; }
  .final-cta { padding: 72px 20px; }
  .kpi-bar { padding: 36px 20px; }
  .kpi-inner { gap: 28px; }
  .kpi:not(:last-child)::after { display: none; }
  .kpi-number { font-size: 52px; }
}

/* ============ SOLUTION ============ */
.solution-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.benefit {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--forest);
}

.benefit-num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.2;
}

.benefit-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 760px) {
  .solution-benefits { grid-template-columns: 1fr; gap: 32px; margin-top: 60px; }
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--forest) 0, var(--forest) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 96px;
  height: 96px;
  background: var(--canvas);
  border: 2px solid var(--forest);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg { width: 44px; height: 44px; color: var(--forest); }

.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.step-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
}

.feature {
  background: var(--canvas);
  padding: 36px;
  position: relative;
  transition: background 0.3s;
}

.feature:hover { background: white; }

.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--orange);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
}

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.testimonial.featured {
  background: var(--forest);
  color: var(--canvas);
  border-color: var(--forest);
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--orange);
  margin-bottom: 12px;
  height: 32px;
}

.testimonial.featured .quote-mark { color: var(--orange); }

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--forest);
  margin-bottom: 28px;
  flex: 1;
}

.testimonial.featured .testimonial-text {
  color: var(--canvas);
  font-size: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--canvas-warmer);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial.featured .avatar { background: var(--canvas); }

.author-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 2px;
}

.testimonial.featured .author-name { color: var(--canvas); }

.author-role {
  font-size: 13px;
  color: var(--slate);
}

.testimonial.featured .author-role { color: rgba(249, 249, 247, 0.7); }

@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ============ PRESS BAND ============ */
.press-band {
  margin-top: 64px;
  padding: 32px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.press-group { display: flex; flex-direction: column; gap: 12px; }

.press-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}

.press-items {
  display: flex;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--forest);
  flex-wrap: wrap;
}

.press-items span { opacity: 0.85; }
.press-items span:not(:last-child)::after {
  content: '·';
  margin-left: 24px;
  color: var(--orange);
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--orange);
  background: white;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.price-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 4px;
}

.price-size {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 24px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.price-amount .dollar {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--slate);
  font-weight: 500;
}

.price-amount .number {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.4;
}

.price-features li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-best-for {
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-best-for strong { color: var(--forest); font-style: normal; font-weight: 500; }

.price-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}

.price-card .price-cta {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}

.price-card .price-cta:hover {
  background: var(--forest);
  color: var(--canvas);
}

.price-card.featured .price-cta {
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: white;
}

.price-card.featured .price-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.pricing-note {
  margin-top: 48px;
  text-align: center;
  color: var(--slate);
  font-size: 15px;
}

.pricing-note a { color: var(--lake); border-bottom: 1px solid currentColor; }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 880px;
}

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

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--orange); }

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--canvas-warm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--forest);
  transition: all 0.2s;
}

.faq-item.open .faq-toggle {
  background: var(--orange);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 60px 0 0;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 60px 28px 0;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--forest);
  color: var(--canvas);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-topo {
  bottom: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  opacity: 0.15;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--orange);
}

.final-cta-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(249, 249, 247, 0.8);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btn {
  background: var(--orange);
  color: var(--forest);
  font-weight: 600;
  font-size: 18px;
  padding: 20px 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 0 var(--orange-dark);
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--orange-dark);
}

.final-cta-guarantee {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(249, 249, 247, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.final-cta-secondary {
  margin-top: 36px;
  font-size: 15px;
  color: rgba(249, 249, 247, 0.6);
}

.final-cta-secondary a {
  color: var(--canvas);
  border-bottom: 1px solid rgba(249, 249, 247, 0.4);
}

/* ============ FOOTER ============ */
footer {
  background: var(--forest-dark);
  color: rgba(249, 249, 247, 0.7);
  padding: 80px 32px 32px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

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

.footer-brand .logo {
  color: var(--canvas);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(249, 249, 247, 0.6);
  margin-bottom: 20px;
  max-width: 280px;
  line-height: 1.5;
}

.footer-mission {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(249, 249, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.footer-col h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--canvas);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(249, 249, 247, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(249, 249, 247, 0.5);
  flex-wrap: wrap;
}

.footer-bottom em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(249, 249, 247, 0.7);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(249, 249, 247, 0.2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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

.hero-inner > div > * {
  animation: fadeUp 0.7s ease backwards;
}

.hero-inner > div:first-child > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > div:first-child > *:nth-child(2) { animation-delay: 0.15s; }
.hero-inner > div:first-child > *:nth-child(3) { animation-delay: 0.25s; }
.hero-inner > div:first-child > *:nth-child(4) { animation-delay: 0.35s; }
.hero-inner > div:first-child > *:nth-child(5) { animation-delay: 0.45s; }

.hero-visual { animation: fadeUp 0.9s ease 0.3s backwards; }