/* =========================================================
   Scope Marketing Site - main.css
   ========================================================= */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #faf8f3;
  --bg-dark:     #1a1a1a;
  --ink:         #1a1a1a;
  --ink-light:   #faf8f3;
  --sage:        #8fb896;
  --sage-dark:   #6fa378;
  --muted:       #8a8a92;
  --muted-light: #b0b0b8;
  --highlight:   #e8d5b0;
  --border:      #e2ddd4;
  --border-dark: #2e2e2e;

  --font-serif:  'Fraunces', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'DM Mono', 'Courier New', monospace;

  --radius-card: 12px;
  --radius-btn:  8px;

  --transition:  0.3s ease;
  --reveal-dur:  0.65s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--sage); }

/* ── Layout Helpers ────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--ink-light);
}
.section--dark .muted { color: var(--muted-light); }
.section--sage {
  background: var(--sage);
  color: var(--ink);
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  margin-top: 0.25rem;
  max-width: 700px;
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 560px;
}
.section-header--center {
  text-align: center;
}
.section-header--center h2,
.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sage);
  color: var(--ink);
}
.btn--primary:hover { background: var(--sage-dark); opacity: 1; }

.btn--outline {
  background: transparent;
  color: var(--ink-light);
  border: 1.5px solid rgba(250,248,243,0.4);
}
.btn--outline:hover { border-color: var(--ink-light); opacity: 1; }

.btn--outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline-ink:hover { background: var(--ink); color: var(--ink-light); opacity: 1; }

.btn--dark {
  background: var(--ink);
  color: var(--ink-light);
}
.btn--dark:hover { background: #2e2e2e; opacity: 1; }

.btn--nav {
  background: var(--sage);
  color: var(--ink);
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
}
.btn--nav:hover { background: var(--sage-dark); opacity: 1; }

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(250,248,243,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.nav__links a:hover,
.nav__links a.active { opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  opacity: 0.75;
}
.nav__mobile a:hover { opacity: 1; }
.nav__mobile .btn--nav {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--ink-light);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__brand .nav__logo {
  color: var(--ink-light);
  display: block;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 0.9rem;
  color: var(--muted-light);
  max-width: 220px;
  line-height: 1.5;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-content: flex-start;
  justify-content: flex-end;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--muted-light);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--ink-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--reveal-dur), transform var(--reveal-dur);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* No-JS / prefers-reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--bg-dark);
  color: var(--ink-light);
  padding: 120px 0 100px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero__inner { max-width: 760px; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.1s forwards;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  color: var(--ink-light);
  line-height: 1.05;
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.25s forwards;
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--muted-light);
  margin-top: 1.5rem;
  max-width: 580px;
  line-height: 1.65;
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.4s forwards;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.55s forwards;
}
.hero__trust {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 1.25rem;
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.7s forwards;
}

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

/* ── Stats Bar ─────────────────────────────────────────── */
.stats {
  background: var(--bg);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
  padding: 24px 16px;
}
.stat__value {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
}
.stat__source {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 6px;
}

/* ── Problem Section ───────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.process-card {
  border-radius: var(--radius-card);
  padding: 36px 32px;
}
.process-card--before {
  background: #fff4f0;
  border: 1px solid #f5c9bb;
}
.process-card--after {
  background: #f0f7f1;
  border: 1px solid #b8d9bd;
}
.process-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.process-card--before .process-card__label { color: #c0614a; }
.process-card--after .process-card__label  { color: var(--sage-dark); }
.process-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
}
.process-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}
.process-card--before .process-step__num {
  background: #f5c9bb;
  color: #a0432b;
}
.process-card--after .process-step__num {
  background: #b8d9bd;
  color: #3d7048;
}
.process-step__text { color: var(--ink); line-height: 1.45; }

/* ── Features Grid ─────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--border-dark);
  border: 1px solid #2e2e2e;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: var(--sage); transform: translateY(-3px); }
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
  grid-column: span 1;
}
.features__grid .feature-card:nth-child(4) { margin-left: 0; }
/* Center last row of 2 in a 3-col grid */
.feature-card--wide {
  grid-column: span 1;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(143,184,150,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sage);
  font-size: 1.25rem;
}
.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.6;
}

/* ── How It Works ──────────────────────────────────────── */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.how-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.how-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Pricing Cards ─────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing__grid--full {
  grid-template-columns: repeat(5, 1fr);
}
.plan-card {
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--border-dark);
  background: var(--border-dark);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.plan-card:hover { border-color: #444; transform: translateY(-3px); }
.plan-card--popular {
  border-color: var(--sage);
  background: #1e2820;
}
.plan-card--popular:hover { border-color: var(--sage); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--ink-light);
  line-height: 1;
}
.plan-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted-light);
}
.plan-volume {
  font-size: 0.85rem;
  color: var(--muted-light);
  margin-top: 8px;
  margin-bottom: 20px;
}
.plan-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted-light);
}
.plan-feature--check::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(143,184,150,0.2);
  border: 1px solid var(--sage);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%238fb896' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.plan-feature--na {
  opacity: 0.4;
}
.plan-feature--na::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(138,138,146,0.15);
  border: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-light);
}
.toggle-label.active { color: var(--ink-light); }
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border-dark);
  border-radius: 14px;
  border: 1.5px solid #3e3e3e;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.toggle-switch.yearly { background: var(--sage); border-color: var(--sage-dark); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.toggle-switch.yearly::after { transform: translateX(24px); }
.toggle-savings {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  background: rgba(143,184,150,0.15);
  padding: 3px 10px;
  border-radius: 20px;
}
/* Light context pricing cards */
.pricing--light .plan-card {
  background: white;
  border-color: var(--border);
  color: var(--ink);
}
.pricing--light .plan-card--popular {
  background: #f0f7f1;
  border-color: var(--sage);
}
.pricing--light .plan-name { color: var(--muted); }
.pricing--light .plan-price { color: var(--ink); }
.pricing--light .plan-price span { color: var(--muted); }
.pricing--light .plan-volume { color: var(--muted); }
.pricing--light .plan-feature { color: var(--ink); }
.pricing--light .plan-feature--na { opacity: 0.4; }
.pricing--light .plan-badge { background: var(--sage); color: var(--ink); }
.pricing--light .toggle-label { color: var(--muted); }
.pricing--light .toggle-label.active { color: var(--ink); }
.pricing--light .toggle-switch { background: #e0ddd8; border-color: #ccc; }
.pricing--light .toggle-switch.yearly { background: var(--sage); }
.pricing--light .plan-feature--na::before { background: #f0f0f0; border-color: var(--border); }

/* ── Final CTA ─────────────────────────────────────────── */
.cta-section {
  background: var(--sage);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(26,26,26,0.75);
  margin: 1rem auto 2.5rem;
  max-width: 480px;
}

/* ── Pricing Page Hero ─────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  color: var(--ink-light);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-group { margin-bottom: 48px; }
.faq-group__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--sage-dark); }
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--sage);
  color: var(--sage);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 18px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── About Page ────────────────────────────────────────── */
.about-story {
  max-width: 680px;
  margin: 0 auto;
}
.about-story p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.mission-block {
  background: var(--highlight);
  border-radius: var(--radius-card);
  padding: 48px;
  margin-top: 64px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.mission-block .eyebrow { justify-content: center; display: flex; }
.mission-block h2 {
  font-size: 1.75rem;
  color: var(--ink);
  margin-top: 0.5rem;
}

/* ── Legal Pages ───────────────────────────────────────── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 6px;
}
.legal-content .effective {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}

/* ── Security Page ─────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.security-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  background: white;
}
.security-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.security-icon {
  width: 32px;
  height: 32px;
  background: rgba(143,184,150,0.15);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.security-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Contact Page ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.contact-email:hover { color: var(--ink); }
.contact-response {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 20px;
  display: block;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: white;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Divider ───────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.divider--dark {
  border-top-color: var(--border-dark);
}

/* ── Pricing Page Comparison Table ────────────────────── */
.comparison-section { padding: 72px 0 100px; }
.comparison-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table thead th {
  padding: 12px 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.highlight { color: var(--sage-dark); }
.compare-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.02); }
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}
.compare-table td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 500;
}
.compare-check { color: var(--sage-dark); font-size: 1.1rem; }
.compare-dash  { color: var(--muted); opacity: 0.4; }

/* ── Pricing FAQ ───────────────────────────────────────── */
.pricing-faq { padding: 0 0 80px; }
.pricing-faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.75rem;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 968px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid--full { grid-template-columns: repeat(3, 1fr); }
  .stats__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__top    { grid-template-columns: 1fr; }
  .footer__links  { justify-content: flex-start; }
  .how__steps     { grid-template-columns: 1fr; gap: 40px; }
  .how__steps::before { display: none; }
  .security-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 72px; min-height: auto; }

  .nav__links,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .problem__grid    { grid-template-columns: 1fr; }
  .features__grid   { grid-template-columns: 1fr; }
  .pricing__grid    { grid-template-columns: 1fr; }
  .pricing__grid--full { grid-template-columns: 1fr 1fr; }
  .stats__grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .how-step { padding: 0 16px; align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
  .how-step__num { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.25rem; }

  .footer__bottom { flex-direction: column; text-align: center; }
  .mission-block { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .pricing__grid--full { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
}
