/* ==========================================================================
   AE Technology Solutions — HomerAI marketing site
   Single stylesheet, no build step. Served as-is by Apache.

   Contents
     1.  Tokens
     2.  Reset & base
     3.  Layout primitives
     4.  Typography
     5.  Buttons & links
     6.  Header / navigation
     7.  Hero
     8.  App mockup (pure CSS product shot)
     9.  Cards & grids
     10. Feature sections
     11. Comparison table
     12. Timeline
     13. Stats
     14. Testimonials
     15. Logo / integration strips
     16. Pricing
     17. Blog & articles
     18. FAQ / accordion
     19. Forms
     20. CTA bands
     21. Footer
     22. Utilities
     23. Motion & reduced-motion
     24. Responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Exact background baked into assets/logo.png. The header and footer use this
     so the logo's own background is invisible against the bar it sits on. */
  --brand-navy: #022234;

  /* Brand navy — carried over from the previous site for continuity */
  --navy-900: #06122a;
  --navy-850: #08182f;
  --navy-800: #0a1b35;
  --navy-700: #0c2247;
  --navy-600: #123060;
  --navy-500: #1b427d;

  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  /* Accent — used sparingly for AI/automation moments */
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white: #ffffff;

  --green-500: #22c55e;
  --red-500: #ef4444;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--slate-50);
  --text: var(--slate-900);
  --text-muted: var(--slate-600);
  --text-subtle: var(--slate-500);
  --border: var(--slate-200);
  --brand: var(--blue-600);

  /* Type scale */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  /* Spacing */
  --section-y: 96px;
  --section-y-sm: 64px;
  --container: 1180px;
  --container-narrow: 780px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06),
               0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08),
               0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10),
               0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.14),
               0 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-brand: 0 10px 30px rgba(37, 99, 235, 0.28);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Reset & base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px; /* clears the sticky header on anchor jumps */
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }

/* Visible focus for keyboard users only */
:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* 3. Layout primitives ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--sm { padding-block: var(--section-y-sm); }
.section--tight { padding-block: 48px; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: #fff; }

.section--gradient {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}
.section--gradient h1, .section--gradient h2,
.section--gradient h3, .section--gradient h4 { color: #fff; }

/* Soft radial light used on dark sections */
.glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(37, 99, 235, 0.30) 0%, transparent 70%);
  pointer-events: none;
}
.glow > * { position: relative; z-index: 1; }

/* 4. Typography ------------------------------------------------------------ */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.section--dark .eyebrow,
.section--gradient .eyebrow { color: var(--blue-400); }

h1, .h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; }
h2, .h2 { font-size: clamp(1.75rem, 3.6vw, 2.625rem); font-weight: 800; letter-spacing: -0.03em; }
h3, .h3 { font-size: clamp(1.125rem, 1.8vw, 1.375rem); }
h4, .h4 { font-size: 1.0625rem; }

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.65;
  color: var(--text-muted);
}
.section--dark .lead,
.section--gradient .lead { color: rgba(255, 255, 255, 0.68); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }

.text-gradient {
  background: linear-gradient(100deg, var(--blue-400) 0%, var(--teal-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 5. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--blue-700); color: #fff; }

.btn--secondary {
  background: var(--white);
  color: var(--slate-900);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { background: var(--slate-50); border-color: var(--slate-300); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* Text link with a sliding arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue-600);
}
.link-arrow:hover { text-decoration: none; }
.link-arrow svg { transition: transform 0.2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Pills / badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}
.badge--dark {
  background: rgba(96, 165, 250, 0.12);
  color: var(--blue-300);
  border-color: rgba(96, 165, 250, 0.28);
}
.badge--live {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.3);
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge--live .badge__dot { background: var(--green-500); animation: pulseDot 2s ease-in-out infinite; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.82); }
}

/* 6. Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
/* The logo PNG carries the wordmark and its own --brand-navy background. */
.brand__logo { height: 34px; width: auto; flex-shrink: 0; }
.site-footer .brand__logo { height: 40px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.nav__link[aria-current='page'] { color: #fff; background: rgba(255, 255, 255, 0.10); }

.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-sm);
  color: #fff;
  cursor: pointer;
}

/* Mobile drawer */
.nav__drawer { display: none; }

/* 7. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: 104px 96px;
  background: linear-gradient(168deg, var(--navy-900) 0%, var(--navy-700) 52%, var(--navy-850) 100%);
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 0%,  rgba(37, 99, 235, 0.38) 0%, transparent 68%),
    radial-gradient(ellipse 45% 45% at 88% 18%, rgba(45, 212, 191, 0.14) 0%, transparent 66%);
  pointer-events: none;
}
/* Faint grid, sells the "software" feel without an image request */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero__lead {
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__actions { margin-bottom: 28px; }
.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  list-style: none;
}
.hero__note li { display: flex; align-items: center; gap: 7px; }
.hero__note svg { color: var(--teal-400); flex-shrink: 0; }

/* Compact hero for interior pages */
.page-hero {
  position: relative;
  padding-block: 76px 68px;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(37, 99, 235, 0.32) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero .lead { margin-inline: auto; max-width: 660px; color: rgba(255, 255, 255, 0.7); }
.page-hero .btn-row { margin-top: 30px; }

/* 8. App mockup ------------------------------------------------------------ */
.mock {
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  font-size: 0.8125rem;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--border);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-300); }
.mock__title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
}
.mock__body { padding: 16px; background: var(--slate-50); }

.mock__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  margin-bottom: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--slate-300);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.mock__row:last-child { margin-bottom: 0; }
.mock__row--ai {
  border-left-color: var(--blue-600);
  background: linear-gradient(90deg, var(--blue-50) 0%, var(--white) 45%);
}
.mock__row--urgent { border-left-color: var(--amber-500); }
.mock__row--done { border-left-color: var(--green-500); opacity: 0.72; }

.mock__time {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-500);
  flex-shrink: 0;
  width: 48px;
}
.mock__main { flex: 1; min-width: 0; }
/* Block, not inline — otherwise a short meta label runs into the line that
   follows it (e.g. the speaker name in a call transcript). */
.mock__job, .mock__meta { display: block; }
.mock__job {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock__meta {
  font-size: 0.6875rem;
  color: var(--slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock__tag {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--slate-100);
  color: var(--slate-600);
}
.mock__tag--ai { background: var(--blue-600); color: #fff; }
.mock__tag--urgent { background: #fef3c7; color: #92400e; }
.mock__tag--done { background: #dcfce7; color: #166534; }

/* "Homer suggested" banner inside the mockup */
.mock__insight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 13px;
  background: var(--navy-800);
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.55;
}
.mock__insight svg { flex-shrink: 0; color: var(--teal-400); margin-top: 2px; }
.mock__insight strong { color: #fff; }

/* 8b. Product screenshots --------------------------------------------------
   Real UI captures. The frame reads as a floating app window in both the
   light and dark sections, so one class works everywhere.               */
.shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.32), 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.shot img { display: block; width: 100%; height: auto; }

/* On dark backgrounds the shadow disappears — swap for a light hairline. */
.section--dark .shot,
.section--gradient .shot,
.hero .shot {
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Caption strip under a screenshot */
.shot-caption {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  text-align: center;
}
.section--dark .shot-caption,
.section--gradient .shot-caption { color: rgba(255, 255, 255, 0.5); }

/* Checklist mock — recreated in markup (no screenshot asset for this one yet) */
.chk { padding: 22px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-xl); }
.chk__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.chk__title { font-size: 1rem; font-weight: 700; color: var(--slate-900); }
.chk__bar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.chk__track { flex: 1; height: 7px; border-radius: var(--r-full); background: var(--slate-200); overflow: hidden; }
/* display:block — an inline span ignores height, leaving the bar empty. */
.chk__fill { display: block; height: 100%; background: var(--green-500); border-radius: var(--r-full); }
.chk__count { font-size: 0.8125rem; font-weight: 600; color: var(--slate-600); white-space: nowrap; }
.chk__item { padding: 12px 0; border-top: 1px solid var(--slate-100); }
.chk__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.chk__label { font-size: 0.875rem; font-weight: 500; color: var(--slate-800); }
.chk__req { color: var(--red-500); }
.chk__pff { display: flex; gap: 6px; flex-shrink: 0; }
.chk__btn {
  padding: 5px 12px; border-radius: 7px; font-size: 0.75rem; font-weight: 600;
  border: 1px solid var(--slate-200); background: var(--white); color: var(--slate-500);
}
.chk__btn--pass { background: #dcfce7; border-color: #86efac; color: #15803d; }
.chk__btn--fail { background: #fee2e2; border-color: #fca5a5; color: #b91c1c; }
.chk__stamp { margin-top: 6px; font-size: 0.75rem; font-weight: 600; color: var(--green-500); }
.chk__input {
  margin-top: 8px; padding: 8px 11px; border: 1px solid var(--slate-300);
  border-radius: var(--r-sm); font-size: 0.8125rem; color: var(--slate-700); background: var(--white);
}
.chk__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.chk__chip {
  padding: 5px 11px; border-radius: 7px; font-size: 0.75rem; font-weight: 600;
  border: 1px solid var(--blue-300); background: var(--blue-50); color: var(--blue-700);
}
.chk__tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 5px; background: var(--green-500);
  color: #fff; font-size: 0.75rem; flex-shrink: 0;
}

/* Pillar cards — the four things HomerAI leads with */
.pillar {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-300);
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 9px; font-size: 1.0625rem; }
.pillar p { font-size: 0.9375rem; color: var(--text-muted); }
.pillar .link-arrow { margin-top: auto; padding-top: 16px; font-size: 0.875rem; }

/* 9. Cards ----------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-300);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.9375rem; }
.card__link { margin-top: 16px; }

.card--dark {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.72);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255, 255, 255, 0.66); }
.card--dark.card--hover:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.45);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}
.icon-box--teal {
  background: linear-gradient(140deg, #0d9488, var(--teal-400));
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.26);
}
.icon-box--amber {
  background: linear-gradient(140deg, #d97706, var(--amber-400));
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.26);
}
.icon-box--slate {
  background: linear-gradient(140deg, var(--slate-700), var(--slate-500));
  box-shadow: 0 6px 16px rgba(51, 65, 85, 0.24);
}

/* 10. Feature rows (alternating image/text) -------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  padding-block: 56px;
}
.feature-row + .feature-row { border-top: 1px solid var(--border); }
.feature-row--flip .feature-row__media { order: -1; }
.feature-row h2 { margin-bottom: 16px; }
.feature-row .lead { margin-bottom: 24px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.check-list svg { flex-shrink: 0; margin-top: 3px; color: var(--blue-600); }
.check-list strong { color: var(--text); font-weight: 600; }
.section--dark .check-list li,
.section--gradient .check-list li { color: rgba(255, 255, 255, 0.68); }
.section--dark .check-list strong,
.section--gradient .check-list strong { color: #fff; }
.section--dark .check-list svg,
.section--gradient .check-list svg { color: var(--teal-400); }

/* 11. Comparison table ----------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.table th, .table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate-500);
  background: var(--slate-50);
  white-space: nowrap;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody th {
  font-weight: 600;
  color: var(--text);
  width: 30%;
}
.table td { color: var(--text-muted); }
.table .col-highlight {
  background: var(--blue-50);
  color: var(--slate-900);
  font-weight: 500;
}
.table thead .col-highlight { background: var(--blue-100); color: var(--blue-700); }

.mark-yes { color: var(--green-500); font-weight: 700; }
.mark-no  { color: var(--slate-400); font-weight: 700; }

/* 12. Timeline ------------------------------------------------------------- */
.timeline { list-style: none; position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), rgba(96, 165, 250, 0.15));
}
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -29px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.timeline__time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue-400);
  margin-bottom: 5px;
}
.timeline__item h3 { margin-bottom: 7px; font-size: 1.0625rem; }
.timeline__item p { font-size: 0.9375rem; }

/* 13. Stats ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat { text-align: center; padding: 8px; }
.stat__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 8px;
  background: linear-gradient(100deg, var(--blue-400), var(--teal-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); line-height: 1.45; }
.section--alt .stat__value,
.section:not(.section--dark):not(.section--gradient) .stat__value {
  background: linear-gradient(100deg, var(--blue-600), #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section--alt .stat__label,
.section:not(.section--dark):not(.section--gradient) .stat__label { color: var(--text-muted); }

/* 14. Testimonials --------------------------------------------------------- */
.quote {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote__text { font-size: 1.0625rem; line-height: 1.6; color: var(--slate-800); }
.quote__text::before { content: '\201C'; }
.quote__text::after  { content: '\201D'; }
.quote__foot { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-600), var(--teal-400));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.quote__name { font-weight: 600; font-size: 0.9375rem; color: var(--text); }
.quote__role { font-size: 0.8125rem; color: var(--text-subtle); }

/* Placeholder marker — see README. Keeps unverified content visually flagged
   so it cannot ship as a real customer claim by accident. */
.is-placeholder { position: relative; }
.is-placeholder::after {
  content: 'SAMPLE';
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: #fef3c7;
  color: #92400e;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.placeholder-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 40px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: #92400e;
  line-height: 1.55;
}
.placeholder-note svg { flex-shrink: 0; margin-top: 2px; }
.placeholder-note strong { font-weight: 700; }

/* 15. Logo / integration strips -------------------------------------------- */
.logo-strip { text-align: center; }
.logo-strip__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 24px;
}
.logo-strip__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 44px;
  list-style: none;
}
.logo-strip__items li {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--slate-400);
  transition: color 0.2s;
}
.logo-strip__items li:hover { color: var(--slate-600); }
.section--dark .logo-strip__items li,
.section--gradient .logo-strip__items li { color: rgba(255, 255, 255, 0.42); }

.integration-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.integration-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.integration-tile__logo {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #fff;
  flex-shrink: 0;
  background: var(--slate-700);
}
.integration-tile__name { font-weight: 600; font-size: 0.9375rem; }
.integration-tile__cat { font-size: 0.75rem; color: var(--text-subtle); }

/* 16. Pricing -------------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.price--featured {
  border-color: var(--blue-600);
  border-width: 2px;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}
.price__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: var(--r-full);
  background: var(--blue-600);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price__name { font-size: 1.125rem; font-weight: 700; margin-bottom: 6px; }
.price__desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; min-height: 42px; }
.price__amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price__num { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price__unit { font-size: 0.875rem; color: var(--text-subtle); font-weight: 500; }
.price__basis { font-size: 0.8125rem; color: var(--text-subtle); margin-bottom: 24px; }
.price .btn { margin-bottom: 26px; }
.price__features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.price__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.price__features svg { flex-shrink: 0; margin-top: 3px; color: var(--green-500); }
.price__group-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 8px;
}

/* 17. Blog ----------------------------------------------------------------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card__thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(140deg, var(--navy-700), var(--blue-600));
}
.post-card__thumb--teal { background: linear-gradient(140deg, #0f766e, var(--teal-400)); }
.post-card__thumb--amber { background: linear-gradient(140deg, #b45309, var(--amber-400)); }
.post-card__thumb--slate { background: linear-gradient(140deg, var(--slate-800), var(--slate-500)); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.post-card__cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.post-card__title { font-size: 1.0625rem; line-height: 1.35; }
.post-card__title a { color: var(--text); }
.post-card__title a:hover { color: var(--blue-600); text-decoration: none; }
.post-card__excerpt { font-size: 0.9375rem; color: var(--text-muted); }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.post-card--featured { flex-direction: row; }
.post-card--featured .post-card__thumb { height: auto; width: 42%; flex-shrink: 0; }
.post-card--featured .post-card__body { padding: 36px; justify-content: center; }
.post-card--featured .post-card__title { font-size: 1.625rem; letter-spacing: -0.025em; }

/* Article body */
.article { max-width: 720px; margin-inline: auto; }
.article > * + * { margin-top: 24px; }
.article h2 { font-size: 1.625rem; margin-top: 48px; }
.article h3 { font-size: 1.25rem; margin-top: 36px; }
.article p { font-size: 1.0625rem; line-height: 1.75; color: var(--slate-700); }
.article ul, .article ol { padding-left: 24px; display: flex; flex-direction: column; gap: 10px; }
.article li { font-size: 1.0625rem; line-height: 1.7; color: var(--slate-700); }
.article strong { color: var(--slate-900); font-weight: 650; }
.article blockquote {
  margin: 32px 0;
  padding: 20px 26px;
  border-left: 4px solid var(--blue-500);
  background: var(--blue-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-800);
}
.article blockquote p { font-size: inherit; color: inherit; }
.article hr { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.article figure { margin: 32px 0; }
.article figcaption {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--text-subtle);
  text-align: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  justify-content: center;
}
.article-meta__sep { opacity: 0.4; }

/* 18. FAQ / accordion ------------------------------------------------------ */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 4px;
  background: none;
  border: none;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.faq__q:hover { color: var(--blue-600); }
.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--slate-400);
  transition: transform 0.25s var(--ease), color 0.2s;
}
.faq__q[aria-expanded='true'] .faq__icon { transform: rotate(45deg); color: var(--blue-600); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.faq__a-inner { padding: 0 4px 24px; }
.faq__a p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }
.faq__a p + p { margin-top: 14px; }

/* 19. Forms ---------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.field label .req { color: var(--red-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.field__hint { font-size: 0.8125rem; color: var(--text-subtle); }

.form__consent { display: flex; align-items: flex-start; gap: 10px; }
.form__consent input { width: auto; margin-top: 4px; flex-shrink: 0; }
.form__consent label { font-size: 0.8125rem; font-weight: 400; color: var(--text-muted); line-height: 1.55; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  line-height: 1.55;
}
.form-status--ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.form-status--err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.form-status[hidden] { display: none; }

/* Contact method tiles */
.contact-method {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.contact-method__icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-method p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 6px; }
.contact-method a { font-weight: 600; font-size: 0.9375rem; }

/* 20. CTA bands ------------------------------------------------------------ */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin-inline: auto; max-width: 560px; margin-bottom: 32px; }

/* Demo-call block — the live AI line */
.demo-call { text-align: center; }
.demo-call__ring {
  position: relative;
  width: 78px; height: 78px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-call__ring::before, .demo-call__ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.32);
  animation: demoPulse 2.4s ease-out infinite;
}
.demo-call__ring::after { animation-delay: 0.8s; }
@keyframes demoPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.3); opacity: 0; }
}
.demo-call__icon {
  position: relative;
  z-index: 1;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.22);
}
.demo-call__number {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 26px;
  padding: 16px 38px;
  border-radius: var(--r-md);
  background: var(--blue-600);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transition: background 0.2s, transform 0.15s;
}
.demo-call__number:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); text-decoration: none; }
.demo-call__number-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.demo-call__number-value { font-size: 1.625rem; font-weight: 800; letter-spacing: -0.02em; }
.demo-call__fine { margin-top: 16px; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); }

/* 21. Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.6);
  padding-block: 64px 32px;
  font-size: 0.9375rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__about { max-width: 300px; }
.site-footer__about p { margin-top: 16px; font-size: 0.875rem; line-height: 1.65; color: rgba(255, 255, 255, 0.55); }
.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer a { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; }

/* 22. Utilities ------------------------------------------------------------ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.no-wrap { white-space: nowrap; }

/* 23. Motion --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* 24. Responsive ----------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-y: 76px; --section-y-sm: 56px; }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__lead { max-width: none; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price--featured { order: -1; }
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__about { grid-column: 1 / -1; max-width: none; }
  .feature-row { gap: 44px; }
}

@media (max-width: 860px) {
  /* Nav collapses to a drawer */
  .nav { display: none; }
  .nav__toggle { display: flex; }

  .nav__drawer {
    display: block;
    position: fixed;
    inset: 72px 0 0 0;
    z-index: 99;
    padding: 24px;
    background: var(--navy-900);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s var(--ease), visibility 0.28s;
  }
  .nav__drawer[data-open='true'] { transform: translateX(0); visibility: visible; }
  .nav__drawer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .nav__drawer .nav__link {
    padding: 15px 16px;
    font-size: 1.0625rem;
    border-radius: var(--r-sm);
  }
  .nav__drawer .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 24px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav__drawer .btn { width: 100%; }

  body.nav-open { overflow: hidden; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding-block: 44px; }
  .feature-row--flip .feature-row__media { order: 0; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__thumb { width: 100%; height: 170px; }
  .post-card--featured .post-card__body { padding: 26px; }
  .post-card--featured .post-card__title { font-size: 1.375rem; }
  .form__row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 560px) {
  :root { --section-y: 60px; --section-y-sm: 48px; }
  .container { padding-inline: 20px; }
  .hero { padding-block: 72px 64px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .card { padding: 24px; }
  .demo-call__number { width: 100%; padding-inline: 20px; }
  .demo-call__number-value { font-size: 1.375rem; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Print — strip chrome, keep content readable */
@media print {
  .site-header, .site-footer, .nav__drawer, .cta-band, .demo-call { display: none; }
  body { color: #000; background: #fff; }
  .section { padding-block: 24px; }
}
