/**
 * AccessiYes – Main Stylesheet
 * Source: CookieYes design system (design.md)
 *
 * Table of Contents:
 *  1. Design Tokens
 *  2. Reset
 *  3. Accessibility
 *  4. Layout
 *  5. Typography
 *  6. Buttons
 *  7. Navigation
 *  8. Hero
 *  9. Trust Bar
 * 10. How It Works
 * 11. Interactive Demo
 * 12. Features Grid
 * 13. JS Embed Section
 * 14. Stats Banner
 * 15. Testimonials
 * 16. FAQ
 * 17. CTA Banner
 * 18. Footer
 * 19. Focus Styles
 * 20. Utilities
 */

/* ============================================================
   DESIGN TOKENS
   Source: CookieYes design system (design.md)
============================================================ */
:root {
  /* Brand Colors */
  --blue:          #1863DC;
  --blue-hover:    #1354B0;
  --blue-light:    #65A0FF;

  /* Text Hierarchy */
  --text-primary:   #27283C;
  --text-secondary: #3D3E50;
  --text-muted:     #525363;
  --text-body:      #212529;

  /* Backgrounds */
  --bg-white:   #FFFFFF;
  --bg-hero:    #F1F6FD;
  --bg-section: #ECF3FC;
  --bg-pale:    #D1E0F8;
  --bg-grey:    #F4F4F4;

  /* Accents */
  --teal:  #0DD4A4;
  --green: #2DAD70;
  --amber: #F5A623;

  /* Footer */
  --footer-bg: #27283C;

  /* Typography */
  --font: 'Poppins', sans-serif;

  /* Layout */
  --container: 1248px;

  /* Radii */
  --r-sm:   4px;
  --r-md:   6px;
  --r-lg:   8px;
  --r-pill: 50px;

  /* Shadows */
  --shadow-nav:   rgba(0,0,0,0.10) 0px 2px 5px 0px;
  --shadow-card:  rgba(39,40,60,0.12) 0px 8px 26px -4px;
  --shadow-blue:  rgba(24,99,220,0.17) 0px 1px 8px 0px;
  --shadow-blueLg:var(--blue-15) 0px 8px 28px -4px;

  /* Blue alpha variants */
  --blue-04: rgba(24,99,220,0.04);
  --blue-06: rgba(24,99,220,0.06);
  --blue-08: rgba(24,99,220,0.08);
  --blue-09: rgba(24,99,220,0.09);
  --blue-15: rgba(24,99,220,0.15);
  --blue-20: rgba(24,99,220,0.2);
  --blue-40: rgba(24,99,220,0.4);
  --blue-45: rgba(24,99,220,0.45);
  --blue-50: rgba(24,99,220,0.5);

  /* Motion */
  --ease: all 0.2s ease-in-out;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--blue-hover); }
ul, ol { list-style: none; }
button { font-family: var(--font); }

/* ============================================================
   ACCESSIBILITY: SKIP LINK
   Allows keyboard users to jump directly to main content
============================================================ */
.skip-link {
  position: absolute;
  top: -200%;
  left: 16px;
  z-index: 9999;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 60px 0; }
@media (min-width: 992px) { .section { padding: 80px 0; } }

.section--blue { background: var(--bg-section); }
.section--hero  { background: var(--bg-hero); }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-08);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  margin-bottom: 16px;
}

/* Section heading scales through three steps */
.h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
@media (min-width: 480px) { .h2 { font-size: 30px; letter-spacing: -0.4px; } }
@media (min-width: 768px) { .h2 { font-size: 36px; letter-spacing: -0.5px; } }
@media (min-width: 992px) { .h2 { font-size: 42px; } }

.h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.25px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.text-center { text-align: center; }
.text-center .lead { max-width: 620px; margin: 0 auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--ease);
  line-height: 1;
}
.btn:focus-visible {
  outline: 3px solid var(--blue-50);
  outline-offset: 3px;
}

/* Primary */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  padding: 14px 24px;
  font-size: 16px;
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #fff;
  box-shadow: var(--shadow-blueLg);
}

/* Large variant — specificity bump ensures it wins over .btn-outline and .btn-wp */
.btn.btn-lg { padding: 16px 32px; font-size: 18px; }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  padding: 14px 24px;
  font-size: 16px;
}
.btn-outline:hover {
  background: var(--blue-06);
  color: var(--blue-hover);
  border-color: var(--blue-hover);
}

/* WordPress CTA — uses WP brand colour for recognition */
.btn-wp {
  background: #3858E9;
  color: #fff;
  border-color: #3858E9;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 600;
}
.btn-wp:hover {
  background: #2747D0;
  border-color: #2747D0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(56,88,233,0.35);
}
.btn-wp svg { flex-shrink: 0; }

/* White (used on dark/coloured backgrounds) */
.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  color: var(--blue-hover);
}

/* Ghost/outline on dark bg */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.75);
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.09);
  color: #fff;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 998;
  background: #fff;
  border-bottom: 1px solid var(--bg-pale);
  box-shadow: var(--shadow-nav);
  height: 71px;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  /* width: 100% ensures the inner flex row fills the full container width so that
     margin-left: auto on .nav__actions actually has space to push to the right.
     Without this, the div only grows to content-width and the layout collapses. */
  width: 100%;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Desktop menu — gap is intentionally smaller at 768px so logo + 3 links +
   CTA all fit; expands to the design-spec 32px at 1024px+ */
.nav__menu {
  display: none;
  align-items: center;
  gap: 20px;
  margin: 0;
}
@media (min-width: 768px)  { .nav__menu { display: flex; } }
@media (min-width: 1024px) { .nav__menu { gap: 32px; } }

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--blue); }
.nav__link[aria-current="page"] { color: var(--blue); font-weight: 600; position: relative; }
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Nav actions — margin-left: auto pushes this group to the far right,
   mirroring the CookieYes layout: Logo → Links (left) … CTAs (right) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0; /* prevent CTA from being squeezed at mid-widths */
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
}
@media (min-width: 768px) { .nav__toggle { display: none; } }
.nav__toggle-bar {
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--ease);
  display: block;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 71px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--bg-pale);
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  z-index: 997;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-pale);
  text-decoration: none;
  display: block;
}
.nav__mobile-link:last-of-type { border-bottom: none; }
.nav__mobile-link[aria-current="page"] { color: var(--blue); font-weight: 600; border-left: 3px solid currentColor; padding-left: 12px; }
.nav__mobile-cta { margin-top: 12px; width: 100%; justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background-color: var(--bg-hero);
  background-image: radial-gradient(
    49.73% 66.5% at 80.42% 46.43%,
    rgba(45,112,173,0.18) 8.65%,
    var(--blue-15) 24.05%,
    rgba(45,173,112,0.06) 56.15%,
    rgba(236,243,252,0) 75.78%,
    rgba(236,243,252,0) 100%
  );
  padding: 79px 0 87px;
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* Animated badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-08);
  border: 1px solid var(--blue-20);
  border-radius: var(--r-pill);
  padding: 5px 14px 5px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Hero title scales through four steps to avoid being oversized on phones */
.hero__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
@media (min-width: 480px) { .hero__title { font-size: 38px; letter-spacing: -0.75px; } }
@media (min-width: 768px) { .hero__title { font-size: 44px; letter-spacing: -1px;    } }
@media (min-width: 992px) { .hero__title { font-size: 52px; line-height: 1.18;        } }

.hero__title-blue { color: var(--blue); }

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

/* Trust signals row */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.hero__trust-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--teal);
}

/* ---- Widget preview mockup (hero visual) ---- */
/* padding-bottom creates room for the FAB button that sits 22px below
   the card edge via position: absolute; bottom: -22px */
.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__visual-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}
.demo-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 24px; }

/* ============================================================
   TRUST BAR (below hero)
============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--bg-pale);
  padding: 28px 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}

.trust-stat { text-align: center; }
.trust-stat__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.trust-stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.trust-bar__sep {
  width: 1px; height: 40px;
  background: var(--bg-pale);
}
@media (max-width: 600px) { .trust-bar__sep { display: none; } }

.trust-cookieyes { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-cookieyes__inner { display: flex; align-items: center; gap: 6px; }
.trust-cookieyes__label { font-size: 13px; font-weight: 500; line-height: 1; color: var(--text-muted); }
.trust-cookieyes__logo-link { display: block; border-radius: 3px; }
.trust-cookieyes__logo-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.trust-cookieyes__logo { display: block; opacity: 0.85; transition: opacity 0.15s; }
.trust-cookieyes__logo-link:hover .trust-cookieyes__logo { opacity: 1; }
.trust-cookieyes__sub { font-size: 11px; color: var(--text-muted); }

.trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
a.trust-stars .trust-stars__text { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(61,62,80,0.4); }
a.trust-stars:hover .trust-stars__text { text-decoration-color: currentColor; }
.trust-stars__icons { color: var(--amber); font-size: 20px; letter-spacing: 2px; }
.trust-stars__text { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.trust-badge {
  background: var(--bg-section);
  border: 1px solid var(--bg-pale);
  border-radius: 8px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step {
  background: #fff;
  border: 1px solid var(--bg-pale);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--ease);
  position: relative;
}
.step:hover { box-shadow: var(--shadow-card); }

.step__num {
  width: 48px; height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Arrow between steps (desktop) */
@media (min-width: 768px) {
  .step::after {
    content: '→';
    position: absolute;
    top: 36px;
    right: -16px;
    font-size: 22px;
    color: var(--bg-pale);
    z-index: 1;
  }
  .step:last-child::after { display: none; }
}

/* ============================================================
   INTERACTIVE DEMO
============================================================ */
.demo-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
@media (min-width: 992px) {
  .demo-grid { grid-template-columns: 1fr 1fr; }
}

/* Browser chrome mockup */
.browser {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(39,40,60,0.13);
  /* overflow: hidden removed — rounded corners on .browser__chrome handle
     the visual clip so focus rings inside are never cut off */
  border: 1px solid var(--bg-pale);
}

.browser__chrome {
  background: #F4F4F4;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #E8E8E8;
  /* Top corners match the parent border-radius so no overflow clip is needed */
  border-radius: 12px 12px 0 0;
}
.browser__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser__dot-r { background: #FF5F57; }
.browser__dot-y { background: #FFBD2E; }
.browser__dot-g { background: #28C840; }
.browser__url {
  flex: 1; margin-left: 8px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.browser__canvas {
  padding: 20px;
  min-height: 340px;
  background: #FAFAFA;
  position: relative;
}

/* Fake website content strips */
.fake-nav { height: 10px; background: #E0E0E0; border-radius: 3px; margin-bottom: 14px; }
.fake-hero { height: 55px; background: linear-gradient(135deg, #ECF3FC, #D1E0F8); border-radius: 6px; margin-bottom: 14px; }
.fake-line { height: 7px; background: #E8E8E8; border-radius: 3px; margin-bottom: 8px; }
.fake-line--short { width: 60%; }
.fake-line--med   { width: 80%; }

/* Interactive widget inside browser */
.demo-widget {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.demo-panel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(39,40,60,0.18);
  border: 1px solid var(--bg-pale);
  width: 220px;
  /* overflow: hidden removed — rounded top corners applied to header directly */
  transform-origin: bottom right;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s;
  visibility: visible;
}
.demo-panel.hidden {
  transform: scale(0.85) translateY(8px);
  opacity: 0;
  pointer-events: none;
  /* visibility: hidden removes all children from tab order when panel is closed */
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s 0.25s;
}

.demo-panel__header {
  background: var(--blue);
  padding: 10px 14px;
  display: flex;
  /* Top corners match the panel border-radius */
  border-radius: 10px 10px 0 0;
  align-items: center;
  justify-content: space-between;
}
.demo-panel__header-title { color: #fff; font-size: 12px; font-weight: 600; }
.demo-panel__close {
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  font-size: 17px; cursor: pointer;
  line-height: 1; padding: 0;
}

.demo-panel__body {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.demo-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 6px;
  border: 1.5px solid #E0E0E0;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
}
.demo-opt:hover, .demo-opt.on {
  border-color: var(--blue);
  background: var(--blue-06);
}
.demo-opt__icon { font-size: 16px; color: var(--text-muted); }
.demo-opt[aria-pressed="true"] .demo-opt__icon { color: var(--blue); }
.demo-opt__text { font-size: 8px; font-weight: 500; color: #555; text-align: center; line-height: 1.2; }

/* FAB trigger */
.demo-fab {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--blue-40);
  border: none;
  font-size: 20px;
  color: #fff;
  transition: var(--ease);
  flex-shrink: 0;
  position: relative; /* anchor the pulse ring */
}

/* Pulse ring — expands and fades out to draw attention */
@media (prefers-reduced-motion: no-preference) {
  .demo-fab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--blue-45);
    animation: fab-pulse 2.4s ease-out 1.2s infinite;
    pointer-events: none;
  }
  /* Stop animating once the panel is open */
  .demo-fab[aria-expanded="true"]::before {
    animation: none;
  }
}

@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.75); opacity: 0;   }
  100% { transform: scale(1.75); opacity: 0;   }
}

.demo-fab:hover { background: var(--blue-hover); transform: scale(1.08); }

.demo-fab-row { display: flex; align-items: center; gap: 8px; }
.demo-fab-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  pointer-events: none;
  animation: hint-bob 1s ease-in-out infinite alternate;
}
.demo-fab-row:has([aria-expanded="true"]) .demo-fab-hint { display: none; }
@keyframes hint-bob {
  from { transform: translateX(0); }
  to   { transform: translateX(4px); }
}
.demo-fab:focus-visible {
  outline: 3px solid var(--blue-50);
  outline-offset: 3px;
}

/* Feature tabs on right side of demo */
.demo-tabs { display: flex; flex-direction: column; gap: 12px; }

.demo-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  background: none;
  text-align: left;
  font-family: var(--font);
  width: 100%;
}
.demo-tab:hover, .demo-tab.is-active {
  background: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-card);
}

.demo-tab__icon {
  width: 42px; height: 42px;
  background: var(--blue-09);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.demo-tab.is-active .demo-tab__icon { background: var(--blue-15); }
.demo-tab__icon i { color: var(--blue); }

.demo-tab__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.demo-tab__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 576px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: #fff;
  border: 1px solid var(--bg-pale);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px; height: 48px;
  background: var(--blue-08);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card__icon i { color: var(--blue); }

.feature-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Checklist (used inside feature alternating sections) */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checklist__item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   JS EMBED SECTION
============================================================ */
.embed-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
@media (min-width: 992px) { .embed-grid { grid-template-columns: 1fr 1fr; } }

/* Dark code block */
.code-block {
  background: var(--text-primary);
  border-radius: var(--r-lg);
  /* overflow: hidden removed; rounded top corners on bar instead */
  box-shadow: 0 16px 48px rgba(39,40,60,0.2);
}

.code-block__bar {
  background: rgba(255,255,255,0.06);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.code-block__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.cd-r { background: #FF5F57; }
.cd-y { background: #FFBD2E; }
.cd-g { background: #28C840; }

.code-block__file {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  margin-left: 8px;
  font-family: 'Courier New', monospace;
}

.code-block__body {
  padding: 22px 24px;
  overflow-x: auto;
}
.code-block__body pre {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #CDD3DE;
  white-space: pre;
}
.ct { color: #79B8FF; }  /* tag     — CR 6.95:1 ✓ */
.ca { color: #B392F0; }  /* attr    — CR 5.70:1 ✓ */
.cv { color: #9ECBFF; }  /* value   — CR 8.55:1 ✓ */
.cc { color: #8B949E; }  /* comment — CR 4.69:1 ✓ (was #6A737D @ 3.00:1) */
.cs { color: #85E89D; }  /* string  — CR 9.64:1 ✓ */

@keyframes code-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.code-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--blue);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: code-blink 0.8s step-end infinite;
}
@media (prefers-reduced-motion: reduce) {
  .code-cursor { animation: none; }
}

/* ============================================================
   CONTACT / SUPPORT PAGE
============================================================ */
.support-hero { padding: 64px 0; }
.support-hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* 3-column credentials grid — reuses .step cards */
.support-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}
@media (max-width: 767px) {
  .support-stats {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }
}
.support-stat__value {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.support-stat__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.support-stat__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Inline links inside step cards */
.support-step__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: var(--ease);
}
.support-step__link:hover { color: var(--blue-hover); }

/* Accessibility Statement overlay — injected by Tab 3 preset */
.demo-statement {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #fff;
  border: 1px solid var(--bg-pale);
  border-radius: var(--r-lg);
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(39,40,60,0.12);
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-secondary);
  z-index: 10;
  pointer-events: none;
}
.demo-statement strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

/* Embed feature list */
.embed-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.embed-cta { display: inline-flex; align-items: center; gap: 8px; }
.embed-feature { display: flex; gap: 14px; align-items: flex-start; }
.embed-feature__icon {
  width: 40px; height: 40px;
  background: var(--blue-09);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.embed-feature__icon i { color: var(--blue); }
.embed-feature__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.embed-feature__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   STATS BANNER
============================================================ */
.stats-banner {
  background: var(--text-primary);
  padding: 56px 0;
}
.stats-banner__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.stats-banner__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.stats-banner__title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.4px;
}
@media (min-width: 768px) { .stats-banner__title { font-size: 38px; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* Stat value scales up from mobile 2-col to desktop 4-col */
.stat__value {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 480px) { .stat__value { font-size: 38px; } }
@media (min-width: 768px) { .stat__value { font-size: 44px; } }
.stat__accent { color: var(--teal); }
.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.tcard {
  background: #fff;
  border: 1px solid var(--bg-pale);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--ease);
}
.tcard:hover { box-shadow: var(--shadow-card); }
.tcard--featured { border-color: var(--blue); border-width: 2px; }

.tcard__stars { color: var(--amber); font-size: 17px; letter-spacing: 2px; }
.tcard__heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.tcard__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-pale);
}
.tcard__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 2px solid var(--bg-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.tcard__name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.tcard__date { font-size: 12px; color: var(--text-muted); }

.testimonials__footer {
  text-align: center;
  margin-top: 32px;
}
.testimonials__wp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  border: 1.5px solid var(--bg-pale);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  transition: var(--ease);
}
.testimonials__wp-link:hover {
  border-color: var(--blue);
  background: var(--blue-04);
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--bg-pale);
  border-radius: var(--r-lg);
  /* overflow: hidden removed — focus ring on the question button was being
     clipped. Top corners applied to the button itself instead. */
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  /* Round the top corners of the button to match the card, now that
     overflow: hidden is gone from the parent */
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s;
}
.faq-item__q:hover { background: var(--bg-section); }
.faq-item__q[aria-expanded="true"] { color: var(--blue); }

.faq-item__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__a.open { max-height: 400px; }

.faq-item__a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: var(--blue);
  background-image: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0) 60%,
    rgba(45,173,112,0.12) 100%
  );
  padding: 80px 0;
  text-align: center;
}
.cta-banner__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 14px;
}
.cta-banner__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 16px;
}
@media (min-width: 768px) { .cta-banner__title { font-size: 42px; } }
.cta-banner__sub {
  font-size: 17px;
  color: #fff;
  margin-bottom: 32px;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cta-banner__note { font-size: 13px; color: rgba(255,255,255,0.88); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.footer__logo-text em { font-style: normal; color: var(--blue-light); }

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: #fff; text-decoration: underline; }

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.footer__bottom {
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer__copy { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ============================================================
   GLOBAL ACCESSIBILITY FOCUS STYLES
   Two-colour ring: solid brand blue + white inner gap.
   Visible on every background colour — light, dark, and blue.
   WCAG 2.2 §2.4.11 requires 3:1 contrast; this exceeds it.
============================================================ */
:focus-visible {
  outline: 5px solid #1863DC;
  outline-offset: 3px;
  /* White gap between element edge and the blue ring ensures the
     ring is visible on both dark and blue section backgrounds */
  box-shadow: 0 0 0 5px #fff, 0 0 0 10px #1863DC;
}

/* Navbar links and buttons use a narrower 3px ring */
.nav__link:focus-visible,
.btn:focus-visible,
.demo-fab:focus-visible,
.demo-opt:focus-visible,
.faq-item__q:focus-visible,
.nav__toggle:focus-visible,
.testimonials__wp-link:focus-visible {
  outline: 3px solid #1863DC;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #fff, 0 0 0 8px #1863DC;
}

/* On dark-background sections (stats banner, footer) swap to a
   white ring with a dark gap so it reads against the navy bg */
.stats-banner :focus-visible,
.footer :focus-visible,
.cta-banner :focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 5px #27283C, 0 0 0 10px #fff;
}

/* ============================================================
   UTILITY
============================================================ */
/* Visually hidden but available to screen readers */
.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;
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ============================================================
   RESPONSIVE OVERRIDES
   Organized by breakpoint, ascending. Corrects reflow for
   every screen dimension from 320px through wide desktop.
   Breakpoints mirror the design.md spec (Bootstrap 5):
     xs  < 576px  |  sm ≥ 576px  |  md ≥ 768px
     lg ≥ 992px   |  xl ≥ 1200px
============================================================ */

/* ----------------------------------------------------------
   EXTRA SMALL  ≤ 479px
   Target: small phones (iPhone SE 375px, Galaxy A 360px)
   Strategy: reduce all font sizes, stack CTAs full-width,
   hide decorative hero visual, collapse trust bar vertically.
---------------------------------------------------------- */
@media (max-width: 479px) {

  /* --- Sections: tighter vertical padding --- */
  .section        { padding: 40px 0; }
  .hero           { padding: 36px 0 48px; }
  .stats-banner   { padding: 40px 0; }
  .cta-banner     { padding: 48px 0; }

  /* --- Hero: hide decorative widget mockup on very narrow screens
         to keep focus on the headline and CTA --- */
  .hero__visual { display: none; }

  /* --- Hero copy adjustments --- */
  .hero__subtitle  { font-size: 15px; }
  .hero__badge     { font-size: 12px; }

  /* --- Stack hero CTAs full-width so they're easy to tap --- */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* --- Trust signals: stack vertically, center-align --- */
  .hero__trust { flex-direction: column; gap: 10px; }

  /* --- Trust bar: stack stats + badges vertically --- */
  .trust-bar__inner { flex-direction: column; align-items: center; gap: 20px; }
  .trust-bar__sep   { display: none; }
  .trust-badges     { justify-content: center; }

  /* --- Typography scale-down --- */
  .lead              { font-size: 16px; }
  .stats-banner__title { font-size: 22px; }
  .cta-banner__title { font-size: 22px; }
  .cta-banner__sub   { font-size: 15px; }

  /* --- Stack CTA banner buttons full-width --- */
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Steps --- */
  .steps-grid { gap: 12px; }
  .step       { padding: 20px 16px; }

  /* --- Feature cards --- */
  .feature-card { padding: 18px 16px; }

  /* --- Demo browser canvas: shorten height --- */
  .browser__canvas { min-height: 260px; }

  /* --- Demo panel: ensure it doesn't overflow the canvas --- */
  .demo-panel { width: 190px; }

  /* --- Code block font: slightly smaller to avoid horizontal scroll --- */
  .code-block__body pre { font-size: 11px; }

  /* --- Testimonial cards: reduce padding --- */
  .tcard { padding: 18px 14px; }

  /* --- FAQ: reduce question padding --- */
  .faq-item__q     { padding: 14px 16px; font-size: 14px; gap: 10px; }
  .faq-item__a-inner { padding: 0 16px 14px; font-size: 14px; }

  /* --- Footer bottom: stack copyright above legal links --- */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__legal  { flex-wrap: wrap; gap: 12px; }

  /* --- Footer grid: already single-column, just reduce gap --- */
  .footer__grid   { gap: 28px; }
}

/* ----------------------------------------------------------
   SMALL  480px – 575px
   Target: large phones (iPhone 14 430px, Pixel 8 393px)
   Strategy: show hero visual, slightly larger type,
   buttons wrap rather than stack.
---------------------------------------------------------- */
@media (min-width: 480px) and (max-width: 575px) {

  /* --- Hero: restore visual at this breakpoint --- */
  .hero__visual { display: flex; }

  /* --- Hero actions: allow wrapping side-by-side --- */
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .hero__actions .btn { width: auto; }

  /* --- Trust bar: allow wrapping row layout --- */
  .trust-bar__inner { flex-direction: row; flex-wrap: wrap; gap: 16px 24px; }

  /* --- Sections: restore section padding --- */
  .section      { padding: 48px 0; }
  .hero         { padding: 48px 0 60px; }
  .cta-banner   { padding: 56px 0; }
  .stats-banner { padding: 48px 0; }

  /* --- CTA banner: allow side-by-side buttons --- */
  .cta-banner__actions { flex-direction: row; flex-wrap: wrap; }
  .cta-banner__actions .btn { width: auto; }
}

/* ----------------------------------------------------------
   SMALL–MEDIUM  576px – 767px
   Target: large phones / phablets (Samsung Galaxy S21 Ultra)
   Strategy: full layout mostly works; minor tweaks.
---------------------------------------------------------- */
@media (min-width: 576px) and (max-width: 767px) {


  /* Steps: 2-col grid (avoids 3-col squeeze before 768px) */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Step arrows: only show for 3-col, hide at 2-col */
  .step::after { display: none; }
}

/* ----------------------------------------------------------
   MEDIUM  768px – 991px
   Target: tablets portrait (iPad Mini 768px, iPad 820px)
   Strategy: nav gap reduced, hero single-column still.
---------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {

  /* Nav: inner gap reduced to give all elements breathing room */
  .nav__inner { gap: 16px; }


  /* Demo and embed grids: single column still, reduce their gap */
  .demo-grid   { gap: 28px; }
  .embed-grid  { gap: 32px; }

  /* Compact stats banner */
  .stats-banner { padding: 48px 0; }

  /* Footer: 2-col grid instead of 4-col at this width to avoid cramping */
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------
   LARGE  992px – 1199px
   Target: small desktops, iPad Pro landscape (1024px)
   Strategy: all two-column grids active; minor spacing tune.
---------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {

  /* Restore footer to 4-col */
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }


  /* Demo panel: slightly narrower at this width to sit inside browser */
  .demo-panel { width: 200px; }

  /* Embed grid: tighten gap */
  .embed-grid { gap: 40px; }
}

/* ----------------------------------------------------------
   XL  1200px+
   Target: full desktop — restore all generous design-spec values.
---------------------------------------------------------- */
@media (min-width: 1200px) {

  /* Full design-spec nav gap */
  .nav__menu { gap: 32px; }
  .nav__inner { gap: 24px; }

  /* Full design-spec section padding */
  .section { padding: 80px 0; }

  /* Restore demo panel full width */
  .demo-panel { width: 220px; }
}

/* ----------------------------------------------------------
   TOUCH DEVICES
   Disable hover transforms/shadows on touch screens to
   prevent sticky hover states after tap.
---------------------------------------------------------- */
@media (hover: none) {
  .feature-card:hover  { box-shadow: none; transform: none; }
  .step:hover          { box-shadow: none; }
  .tcard:hover         { box-shadow: none; }
  .demo-tab:hover      { background: none; border-color: transparent; box-shadow: none; }
  .btn-primary:hover   { box-shadow: none; }
  .btn-wp:hover        { box-shadow: none; }
  .demo-fab:hover      { transform: none; }
}

/* ----------------------------------------------------------
   PRINT
   Strip chrome, backgrounds, and interactive sections.
   Show only the essential page content in black on white.
---------------------------------------------------------- */
@media print {
  /* Hide navigation, decorative visuals, and interactive sections */
  .nav,
  .nav__mobile,
  .hero__visual,
  .demo-section,
  #demo,
  .cta-banner,
  .footer        { display: none !important; }

  /* Reset backgrounds and shadows */
  body           { font-size: 12pt; color: #000; background: #fff; }
  .hero          { padding: 20pt 0; background: none !important; }
  .section,
  .section--blue,
  .stats-banner  { background: none !important; padding: 16pt 0; }

  /* Readable typography */
  .hero__title   { font-size: 24pt; color: #000; letter-spacing: 0; }
  .h2            { font-size: 18pt; color: #000; }
  .h3            { font-size: 14pt; color: #000; }
  .lead          { font-size: 11pt; color: #333; }
  .stat__value   { font-size: 24pt; color: #000; }
  .stat__label   { color: #333; }

  /* Show links as underlined text */
  a             { color: #000 !important; text-decoration: underline; }

  /* Remove card borders and shadows */
  .feature-card,
  .step,
  .tcard,
  .faq-item     { box-shadow: none !important; border-color: #ccc !important; }

  /* Expand all FAQ answers for print */
  .faq-item__a  { max-height: none !important; }
}

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