/* ==========================================================================
   Digistruct Consulting | Digital Growth Partner
   Design: clear sans type for owner-run service businesses
   ========================================================================== */

:root {
  --ink: #0a1f3c;
  --ink-deep: #061428;
  --ink-90: #13294a;
  --accent: #1e4468;
  --accent-2: #2d5a86;
  --accent-soft: rgba(10, 31, 60, 0.07);
  --accent-line: rgba(10, 31, 60, 0.22);
  --accent-hover: #16355a;
  --star-gold: #f4b400;
  /* legacy aliases kept so nothing breaks */
  --orange: var(--accent);
  --orange-soft: var(--accent-soft);
  --orange-hover: var(--accent-hover);
  --surface: #ffffff;
  --surface-2: #f3f4f6;
  --bone: #f8f9fb;
  --white: #ffffff;
  --paper: #ffffff;
  --card-border: #e5e7eb;
  --hairline: #e5e7eb;
  --muted: #5c6472;
  --muted-2: #8a8f9a;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', monospace;
  --font-pixel: 'Press Start 2P', ui-monospace, monospace;
  --radius: 0.75rem;
  --radius-lg: 1.15rem;
  --radius-sm: 0.4rem;
  --shadow-card: 0 1px 2px rgba(10, 31, 60, 0.04), 0 8px 30px -18px rgba(10, 31, 60, 0.28);
  --shadow-lift: 0 2px 6px rgba(10, 31, 60, 0.06), 0 26px 60px -28px rgba(10, 31, 60, 0.4);
  --shadow-cta: 0 10px 30px -12px rgba(10, 31, 60, 0.5);
  --header-h: clamp(3.75rem, 11vw, 4.5rem);
  --ribbon-h: 2.618rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;

  /* Golden ratio (φ ≈ 1.618) spacing system — mobile-first base, scales up at breakpoints */
  --phi: 1.618;
  --phi-inv: 0.618;
  --space-unit: 1rem;
  --space-3xs: 0.382rem;
  --space-2xs: 0.618rem;
  --space-xs: 0.809rem;
  --space-sm: 1rem;
  --space-md: 1.618rem;
  --space-lg: 2.618rem;
  --space-xl: 4.236rem;
  --space-2xl: 6.854rem;
  --line-body: 1.618;
  --line-heading: 1.2;
  --content-narrow: 28rem;
  --content-read: 46rem;
  --content-wide: 72rem;
  --gutter: max(var(--space-sm), env(safe-area-inset-left, 0px));

  /* Semantic spacing (mobile defaults) */
  --space-section: clamp(var(--space-lg), 10vw, var(--space-xl));
  --space-section-sm: clamp(var(--space-md), 6.5vw, var(--space-lg));
  --space-block: clamp(var(--space-md), 5vw, calc(var(--space-md) * var(--phi)));
  --space-stack: clamp(var(--space-2xs), 2.8vw, var(--space-sm));
  --space-split: clamp(var(--space-md), 6vw, var(--space-lg));
  --space-inline: var(--space-sm);
  --aspect-media: 16 / 10;
  --media-bg: #eef1f5;
  /* Seven liberal arts visual scale (φ-based): grammar → astronomy */
  --art-grammar: clamp(4.5rem, 20vw, 5.5rem);
  --art-logic: clamp(8rem, 38vw, 11rem);
  --art-rhetoric: clamp(10rem, 44vw, 13rem);
  --art-arithmetic: clamp(11rem, 52vw, 15rem);
  --art-geometry: clamp(12rem, 56vw, 18rem);
  --art-music: clamp(14rem, 40vw, 22rem);
  --art-astronomy: clamp(16rem, 44vw, 28rem);

  --render-pad: clamp(var(--space-sm), 4vw, var(--space-md));
  --render-pad-tight: clamp(var(--space-2xs), 2vw, var(--space-xs));
  --render-max-split: var(--art-geometry);
  --render-max-wide: var(--art-astronomy);
  --render-max-hero: var(--art-music);
  --render-card-max-h: var(--art-logic);
  --render-card-max-w: 100%;

  /* Signature dotted-grid backdrop */
  --grid-dot: rgba(10, 31, 60, 0.05);
  --bit-color: rgba(10, 31, 60, 0.12);
  --bit-color-strong: rgba(10, 31, 60, 0.2);
}

@media (min-width: 768px) {
  :root {
    --space-inline: var(--space-md);
    --gutter: max(var(--space-md), env(safe-area-inset-left, 0px));
    --art-logic: clamp(9rem, 28vw, 12rem);
    --art-rhetoric: clamp(11rem, 32vw, 14rem);
    --art-arithmetic: clamp(12rem, 34vw, 16rem);
    --art-geometry: clamp(14rem, 36vw, 20rem);
    --art-music: clamp(16rem, 32vw, 24rem);
    --art-astronomy: clamp(18rem, 36vw, 30rem);
  }
}

@media (min-width: 1024px) {
  :root {
    --space-inline: var(--space-lg);
    --gutter: max(var(--space-lg), env(safe-area-inset-left, 0px));
    --space-section: clamp(var(--space-xl), 8vw, var(--space-2xl));
    --space-split: clamp(var(--space-lg), 4vw, calc(var(--space-lg) * var(--phi)));
    --art-arithmetic: clamp(13rem, 22vw, 17rem);
    --art-geometry: clamp(15rem, 24vw, 22rem);
    --art-music: clamp(17rem, 26vw, 26rem);
    --art-astronomy: clamp(20rem, 32vw, 32rem);
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

html {
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body.mobile-menu-open {
  position: fixed;
  top: var(--scroll-lock-y, 0);
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

html.mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

figure { margin: 0; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: var(--space-stack) 0 0;
}
.section-actions:last-child { margin-bottom: 0; }

@media (min-width: 480px) {
  .section-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: var(--line-heading);
  margin: 0 0 0.618em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(1.75rem, 5vw + 0.5rem, 4.236rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.618rem, 3.2vw + 0.35rem, 2.618rem); }
h3 { font-size: clamp(1.125rem, 1.6vw + 0.5rem, 1.618rem); }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; }
ul { padding-left: 1.25rem; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

.shell {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-left: max(var(--space-inline), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-inline), env(safe-area-inset-right, 0px));
  overflow-x: clip;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

.section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-section-sm); }

.section > .shell:not(.section-split) {
  display: flex;
  flex-direction: column;
  gap: var(--space-block);
}

.section > .shell.section-split {
  display: grid;
  gap: var(--space-split);
  align-items: center;
}

.section > .shell > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .section > .shell.section-split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  #faq .shell.section-split {
    align-items: start;
  }
}

.section--stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-block);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--accent-line);
}
.section-head--center .eyebrow::before { display: none; }

.section-head { max-width: var(--content-read); margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { text-align: center; }
.section-head:not(.section-head--center) { max-width: var(--content-narrow); }
.section-head p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.125rem); margin-bottom: 0; line-height: var(--line-body); }
.section-head h2 { margin-bottom: 0.382em; }
.section-head p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--muted); line-height: var(--line-body); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: var(--space-sm) var(--space-md);
  min-height: 3rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn svg { flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:active { transform: translateY(1px); }
/* arrow-forward buttons: nudge the arrow on hover */
.btn:hover svg:last-child { transform: translateX(3px); }

.btn--cta {
  background: #1a73e8;
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(26, 115, 232, 0.55);
}
.btn--cta:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(21, 87, 176, 0.55);
}

.btn--ghost { border: 1px solid var(--hairline); color: var(--ink); background: var(--white); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-card); }

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--hairline);
  box-shadow: 0 10px 34px -22px rgba(10, 31, 60, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding-block: 0.625rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink-deep);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 0;
}
.brand__mark {
  flex-shrink: 0;
  line-height: 0;
}
.brand__logo {
  width: 2.25rem;
  height: 2.25rem;
  max-width: 2.25rem;
  max-height: 2.25rem;
  object-fit: contain;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.brand__name em { font-style: normal; font-weight: 500; color: inherit; opacity: 0.78; }
.site-footer .brand__mark {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.2rem;
}
.site-footer .brand__logo { width: 2rem; height: 2rem; }

.main-nav { display: none; }

/* Desktop header: logo | nav (shrinks) | CTA — grid keeps CTA from overlapping nav links */
@media (min-width: 1024px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(0.65rem, 1.5vw, 1.25rem);
  }

  .brand {
    position: relative;
    z-index: 2;
  }

  .main-nav {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .main-nav > ul {
    max-width: 100%;
  }

  /* Audit CTA links to /contact — no need for a separate Contact nav item in the header */
  .main-nav > ul > li:last-child {
    display: none;
  }

  .header-actions {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-left: 0.35rem;
    padding-left: 0.35rem;
    background: inherit;
  }

  .menu-toggle {
    display: none !important;
  }
}

.main-nav > ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
@media (min-width: 1024px) {
  .main-nav > ul {
    justify-content: flex-start;
    gap: 0.2rem;
  }
}
@media (min-width: 1200px) {
  .main-nav > ul {
    gap: 0.35rem;
  }
}
@media (min-width: 1360px) {
  .main-nav > ul {
    gap: 0.5rem;
  }
}
.main-nav a, .main-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
@media (min-width: 1024px) {
  .main-nav a,
  .main-nav button {
    white-space: nowrap;
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
  }
  .main-nav a::after {
    left: 0.5rem;
    right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .main-nav a,
  .main-nav button {
    padding: 0.5rem 0.6rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 1360px) {
  .main-nav a,
  .main-nav button {
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }
  .main-nav a::after {
    left: 0.75rem;
    right: 0.75rem;
  }
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover, .main-nav button:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 21rem;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 0.6rem;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
}
.nav-dropdown a:hover { background: var(--orange-soft); color: var(--ink); }
.nav-dropdown a span { display: block; font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.nav-dropdown__all { border-top: 1px solid var(--card-border); margin-top: 0.35rem; padding-top: 0.35rem; }
.nav-dropdown__all a { color: var(--ink); font-weight: 600; }
.nav-caret { transition: transform 0.15s ease; }
.nav-item--dropdown:hover .nav-caret, .nav-item--dropdown.is-open .nav-caret { transform: rotate(180deg); }

@media (min-width: 640px) and (max-width: 1023px) {
  .brand__name {
    font-size: 1.05rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { color: var(--muted); flex-shrink: 0; }
@media (min-width: 1280px) { .header-phone { display: inline-flex; } }

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  min-height: 42px;
  font-size: 0.875rem;
  box-shadow: none;
  white-space: nowrap;
}
.header-cta__label--short {
  display: none;
}
@media (max-width: 1023px) {
  .header-cta__label--long {
    display: none;
  }
  .header-cta__label--short {
    display: inline;
  }
}
/* Header shell maxes at 72rem — always use the short label on desktop */
@media (min-width: 1024px) {
  .header-cta__label--long {
    display: none;
  }
  .header-cta__label--short {
    display: inline;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .header-cta {
    display: inline-flex;
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    min-height: 40px;
  }
}
.header-cta:hover {
  transform: none;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    font-size: 0.8125rem;
    padding: 0.5rem 0.85rem;
  }
}
@media (min-width: 1360px) {
  .header-cta {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  border: 1px solid var(--card-border);
  background: var(--white);
  color: var(--ink-deep);
  cursor: pointer;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(100dvh - var(--header-h));
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.98);
  max-height: none;
  overflow: hidden;
  overscroll-behavior: contain;
}
.mobile-menu.is-open { display: block; }
.mobile-menu > .shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.mobile-menu ul {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 1rem;
}
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.mobile-menu .mobile-menu__sub a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.6rem 0 0.6rem 1rem;
  border-bottom: 0;
}
.mobile-menu .mobile-menu__sub a:hover { color: var(--ink); }
.mobile-menu__cta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 0 calc(1rem + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 18%),
    rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.mobile-menu__cta .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border-bottom: 0;
}
.mobile-menu__cta .btn--cta {
  color: var(--paper);
  background: var(--ink);
}
.mobile-menu__cta .btn--outline {
  color: var(--ink);
  background: var(--white);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--ink);
  background: var(--surface);
  border-bottom: 1px solid var(--card-border);
  padding-top: calc(var(--header-h) + var(--space-md));
  padding-bottom: var(--space-lg);
}

/* Homepage hero — mobile-first stack */
.hero--home {
  position: relative;
  min-height: auto;
  padding-top: var(--header-h);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-bottom: 1px solid var(--hairline);
  overflow: visible;
}

body:has(.ai-hub-ribbon:not(.is-dismissed):not([hidden])) .hero--home {
  padding-top: clamp(1rem, 3vw, 1.5rem);
}
/* Signature dotted grid backdrop */
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grid-dot) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 78%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

/* Faint circuit lines */
.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(10, 31, 60, 0.05) calc(100% - 1px)) 0 0 / 33% 100% no-repeat,
    linear-gradient(180deg, transparent calc(100% - 1px), rgba(10, 31, 60, 0.04) calc(100% - 1px)) 0 0 / 100% 40% no-repeat;
  pointer-events: none;
  opacity: 0.7;
}

.hero--home > .shell { position: relative; z-index: 2; }

.hero--home > .shell.hero__grid {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  flex: 1;
  display: grid;
  align-content: center;
  min-height: 0;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  overflow-x: clip;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
  align-items: start;
  flex: 1;
  min-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.hero--home .hero__grid {
  grid-template-areas:
    "copy"
    "media"
    "aside";
}

.hero--home .hero__content {
  display: contents;
}

.hero--home .hero__copy {
  grid-area: copy;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-stack);
}

.hero--home .hero__aside {
  grid-area: aside;
  display: flex;
  flex-direction: column;
  gap: var(--space-stack);
  min-width: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-stack);
  padding: 0;
  min-width: 0;
  min-height: 0;
}

.hero--home .hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-90);
}
.hero--home .hero__pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(10, 31, 60, 0.35);
  animation: pulse-dot 2.4s var(--ease) infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(10, 31, 60, 0.35); }
  70% { box-shadow: 0 0 0 7px rgba(10, 31, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 31, 60, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--home .hero__pill::before { animation: none; }
}

.hero__banner {
  margin: 0 0 1.35rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.hero__banner img {
  display: block;
  width: 100%;
  height: clamp(11rem, 32vw, 14rem);
  object-fit: cover;
  object-position: center 18%;
}

.hero--home h1 {
  font-size: clamp(1.65rem, 6vw + 0.25rem, 2.618rem);
  margin-bottom: 0;
  max-width: none;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero--home h1 em:not(.hero__digital) { font-style: italic; }

.hero__digital {
  display: inline-block;
  font-family: var(--font-pixel);
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  letter-spacing: -0.04em;
  color: inherit;
  vertical-align: baseline;
  position: relative;
  top: 0.08em;
  min-width: 7.5ch;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
}

.hero--home .hero__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  margin-bottom: 0;
  line-height: var(--line-body);
  color: var(--muted);
  max-width: var(--content-narrow);
}

.hero--home .hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2xs);
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.hero--home .hero__ctas .btn {
  width: 100%;
  justify-content: center;
  flex: 1 1 auto;
  font-size: 0.92rem;
  min-height: 3rem;
  padding-inline: var(--space-md);
}

.hero--home .hero__ctas .btn--ghost {
  flex: 1 1 auto;
}

.hero--home .hero__photo--portrait {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.hero--home .hero__media { grid-area: media; min-width: 0; }

.hero__media {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  align-self: center;
  justify-self: center;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: clamp(0.35rem, 1.5vw, 0.65rem);
  padding-top: clamp(1rem, 3vw, 1.25rem);
  border-top: 1px solid rgba(10, 31, 60, 0.08);
}

.hero__trust-google {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}

.hero__google-stars {
  color: var(--star-gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero__google-on {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1;
}

.hero__google-wordmark {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__google-wordmark--title {
  font-size: 0.92em;
  display: inline;
  vertical-align: baseline;
}

.hero__trust-local {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.hero__trust-avatars {
  display: flex;
  align-items: center;
  padding-left: 0.15rem;
}

.hero__trust-avatar {
  width: 2.35rem;
  height: 2.35rem;
  margin-left: -0.5rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(10, 31, 60, 0.12);
}

.hero__trust-avatar:first-child { margin-left: 0; }

.hero__trust-avatar--wide {
  object-fit: contain;
  padding: 0.15rem;
  background: #1a2744;
}

.hero__trust-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.hero__trust-local--center {
  justify-content: center;
}

.client-trust {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.hero__photo--hero {
  position: relative;
  margin: 0;
  width: min(100%, 44rem);
  max-width: 100%;
  margin-inline: 0;
  aspect-ratio: 3 / 2;
  max-height: none;
  overflow: visible;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: var(--media-bg);
  box-shadow: 0 20px 50px -24px rgba(10, 31, 60, 0.35);
}

.hero__photo--hero::before,
.hero__photo--hero::after {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(10, 31, 60, 0.28);
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.hero__photo--hero::before {
  top: 0.65rem;
  left: 0.65rem;
  border-right: 0;
  border-bottom: 0;
}

.hero__photo--hero::after {
  bottom: 0.65rem;
  right: 0.65rem;
  border-left: 0;
  border-top: 0;
}

.hero__photo--hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.hero__photo--render {
  background: transparent;
  margin-inline: 0;
}

.hero__photo--render img {
  object-fit: contain;
  object-position: center;
  height: auto;
  max-width: 100%;
}

.hero__banner { display: none; }
.hero__meta { display: none; }
.hero--home .hero__pill { display: none; }

.hero__google-wordmark .g-blue { color: #4285f4; }
.hero__google-wordmark .g-red { color: #ea4335; }
.hero__google-wordmark .g-yellow { color: #fbbc04; }
.hero__google-wordmark .g-green { color: #34a853; }

@media (max-height: 740px) and (max-width: 767px) {
  .hero__photo--hero {
    max-width: 100%;
  }

  .hero--home h1 {
    font-size: clamp(1.618rem, 6.5vw, 2rem);
  }

  .hero--home .hero__sub {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

@media (min-width: 560px) {
  .hero--home .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero--home .hero__ctas .btn {
    width: auto;
    flex: 1 1 auto;
  }

  .hero--home .hero__ctas .btn--ghost {
    flex: 0 1 auto;
  }
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-lg);
    align-items: center;
  }

  .hero--home {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero--home h1 {
    max-width: 20ch;
    font-size: clamp(2rem, 4.5vw, 2.618rem);
  }

  .hero__digital {
    font-size: 0.86em;
    letter-spacing: -0.04em;
    top: 0.1em;
  }

  .hero--home .hero__grid {
    grid-template-areas: "content media";
    grid-template-rows: auto;
  }

  .hero--home .hero__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-area: content;
    min-width: 0;
  }

  .hero--home .hero__copy,
  .hero--home .hero__aside {
    grid-area: auto;
  }

  .hero--home .hero__media {
    grid-area: media;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: min(100%, 28rem);
  }

  .hero--home h1 {
    max-width: 20ch;
  }

  .hero--home .hero__ctas .btn {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .hero--home {
    min-height: auto;
    padding-top: calc(var(--header-h) + clamp(1.5rem, 3vw, 2.5rem));
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
    display: block;
  }

  body:has(.ai-hub-ribbon:not(.is-dismissed):not([hidden])) .hero--home {
    padding-top: calc(var(--header-h) + var(--ribbon-h) + clamp(1rem, 2vw, 1.5rem));
  }

  .hero--home > .shell.hero__grid {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .hero--home .hero__grid {
    grid-template-areas: "content media";
    align-items: center;
  }

  .hero--home .hero__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    grid-area: content;
  }

  .hero--home .hero__copy,
  .hero--home .hero__aside {
    grid-area: auto;
  }

  .hero--home .hero__media {
    grid-area: media;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: min(100%, 30rem);
  }

  .hero--home h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.65rem);
    margin-bottom: 0;
    max-width: 18ch;
  }

  .hero--home .hero__sub {
    font-size: clamp(1.02rem, 1.35vw, 1.15rem);
    max-width: 34rem;
  }

  .hero--home .hero__ctas {
    gap: 0.85rem;
    margin-top: clamp(1rem, 2vw, 1.35rem);
  }

  .hero--home .hero__ctas .btn {
    font-size: 0.95rem;
    min-height: 48px;
    padding-inline: 1.45rem;
  }

  .hero__trust {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding-top: 1.75rem;
    gap: 1rem;
  }

  .hero__google-stars { font-size: 0.95rem; }
  .hero__google-on { font-size: 0.88rem; }
  .hero__google-wordmark { font-size: 1.15rem; }

  .hero__trust-avatar {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: -0.55rem;
  }

  .hero__trust-label { font-size: 0.88rem; }

  .hero__trust-local { flex-wrap: nowrap; }

  .hero__photo--hero {
    aspect-ratio: 3 / 2;
    max-height: none;
    height: auto;
  }

  .hero__photo--hero img {
    max-height: none;
    object-position: center;
    transition: none;
  }
}

.service-hero-media {
  margin-top: calc(var(--space-section-sm) * -0.35);
  margin-bottom: var(--space-block);
  display: flex;
  justify-content: center;
}

.service-hero-media .section-visual {
  width: min(100%, var(--render-max-hero));
  max-width: var(--render-max-hero);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .service-hero-media .section-visual {
    max-width: min(34rem, 44%);
  }
}

/* ---- Floating digital bits ---- */
.digital-bits {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.digital-bit {
  position: absolute;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.1vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--bit-color);
  opacity: 0.55;
  user-select: none;
  white-space: nowrap;
  animation: bit-drift 7s var(--ease) infinite;
  animation-delay: var(--d, 0s);
}

.digital-bit--hex {
  letter-spacing: 0.08em;
  color: var(--bit-color-strong);
}

.digital-bit--tag {
  font-size: clamp(0.58rem, 1vw, 0.7rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.digital-bit--bracket {
  letter-spacing: 0.22em;
}

@keyframes bit-drift {
  0%, 100% {
    opacity: 0.35;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.72;
    transform: translate3d(0, -5px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .digital-bit { animation: none; opacity: 0.4; }
}

.section-split {
  gap: var(--space-block);
}

.section-split .section-visual {
  width: min(100%, var(--render-max-split));
  max-width: var(--render-max-split);
}

.keyword-examples {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.keyword-examples li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
}
.keyword-examples li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- Google UI mocks (search bar, map pack, organic SERP) ---- */
.google-ui {
  font-family: Arial, Roboto, "Helvetica Neue", sans-serif;
  color: #202124;
}

.google-logo {
  flex-shrink: 0;
  display: block;
}

.google-tabs {
  display: flex;
  gap: 0.15rem;
  padding: 0 0.75rem 0.65rem;
  border-bottom: 1px solid #ebebeb;
  overflow-x: auto;
}
.google-tabs__tab {
  flex-shrink: 0;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
  color: #70757a;
  border-bottom: 2px solid transparent;
}
.google-tabs__tab--active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
  font-weight: 500;
}

.google-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  line-height: 1.2;
}
.google-stars__icons {
  color: #fbbc04;
  letter-spacing: -0.05em;
  font-size: 0.68rem;
}
.google-stars__num {
  color: #70757a;
}
.google-stars__reviews {
  color: #70757a;
}

.serp-demo {
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
  overflow: hidden;
  max-width: 26rem;
  margin-inline: auto;
}
.serp-demo__results {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
}
.serp-demo__result {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ebebeb;
}
.serp-demo__result:last-child {
  border-bottom: 0;
}
.serp-demo__result--top {
  background: rgba(26, 115, 232, 0.04);
}
.serp-demo__site {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}
.serp-demo__favicon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: hsl(var(--favicon-hue, 210) 55% 88%);
  border: 1px solid #dadce0;
  flex-shrink: 0;
}
.serp-demo__site-name {
  font-size: 0.72rem;
  color: #202124;
  line-height: 1.2;
}
.serp-demo__breadcrumb {
  font-size: 0.68rem;
  color: #70757a;
  width: 100%;
  padding-left: 1.45rem;
  line-height: 1.2;
}
.serp-demo__title {
  display: block;
  font-weight: 400;
  color: #1a0dab;
  font-size: 0.92rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.serp-demo__snippet {
  display: block;
  font-size: 0.78rem;
  color: #4d5156;
  line-height: 1.45;
}

.search-visuals {
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
  overflow: hidden;
  max-width: 26rem;
  margin-inline: auto;
}
.search-visuals__chrome {
  background: #fff;
}
.search-visuals__bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem 0.55rem;
}
.search-visuals__query {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dfe1e5;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.12);
  font-size: 0.88rem;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-visuals__mic {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%, transparent 28%, #4285f4 29% 38%, transparent 39%),
    linear-gradient(#4285f4, #4285f4);
  background-size: 100% 100%, 2px 55%;
  background-repeat: no-repeat;
  background-position: center, center;
  opacity: 0.85;
}

.map-pack-demo {
  padding: 0;
  border-bottom: 1px solid #ebebeb;
}
.map-pack-demo__places-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem 0.45rem;
}
.map-pack-demo__places-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: #202124;
}
.map-pack-demo__places-more {
  font-size: 0.72rem;
  color: #1a73e8;
}
.map-pack-demo__map-strip {
  position: relative;
  height: 3.25rem;
  margin: 0 1rem 0.5rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 100%),
    linear-gradient(135deg, #c8e6c9 0%, #bbdefb 35%, #e8f5e9 70%, #b3e5fc 100%);
  border: 1px solid #c8e6c9;
  overflow: hidden;
}
.map-pack-demo__map-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
}
.map-pack-demo__map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #ea4335;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.map-pack-demo__rank-num,
.map-pack-demo__map-pin span {
  display: block;
  transform: rotate(45deg);
}
.map-pack-demo__map-pin--1 { top: 38%; left: 22%; }
.map-pack-demo__map-pin--2 { top: 28%; left: 52%; background: #4285f4; }
.map-pack-demo__map-pin--3 { top: 45%; left: 72%; background: #fbbc04; color: #202124; }
.serp-demo__label {
  margin: 0;
  padding: 0.65rem 1rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #70757a;
}
.map-pack-demo__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.map-pack-demo__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid #ebebeb;
}
.map-pack-demo__item--you {
  background: rgba(26, 115, 232, 0.05);
}
.map-pack-demo__item--gap {
  background: #f8f9fa;
  justify-content: center;
  padding-block: 1rem;
  border-top-style: dashed;
}
.map-pack-demo__rank {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #ea4335;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}
.map-pack-demo__item:nth-child(2) .map-pack-demo__rank {
  background: #4285f4;
}
.map-pack-demo__body {
  flex: 1;
  min-width: 0;
}
.map-pack-demo__name {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: #202124;
  line-height: 1.25;
}
.map-pack-demo__category {
  display: block;
  font-size: 0.72rem;
  color: #70757a;
  margin-top: 0.08rem;
}
.map-pack-demo__hours {
  display: block;
  font-size: 0.72rem;
  color: #70757a;
  margin-top: 0.08rem;
}
.map-pack-demo__hours--open {
  color: #188038;
}
.map-pack-demo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}
.map-pack-demo__action {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f1f3f4;
  color: #1a73e8;
  font-size: 0.72rem;
  font-weight: 500;
}
.map-pack-demo__action-icon {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.85;
}
.map-pack-demo__action-icon--call {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.map-pack-demo__action-icon--web {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95a15.65 15.65 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.92 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A8.03 8.03 0 0 1 5.08 16zm2.95-8H5.08a8.03 8.03 0 0 1 4.33-3.56A15.65 15.65 0 0 0 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.34.16-2h4.68c.09.66.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95a15.65 15.65 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.92 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A8.03 8.03 0 0 1 5.08 16zm2.95-8H5.08a8.03 8.03 0 0 1 4.33-3.56A15.65 15.65 0 0 0 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.34.16-2h4.68c.09.66.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.map-pack-demo__action-icon--dir {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.map-pack-demo__missing {
  font-size: 0.82rem;
  font-weight: 500;
  color: #70757a;
  font-style: italic;
}
.serp-demo--nested {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
}
.serp-demo--nested .serp-demo__results {
  padding-top: 0.15rem;
}

/* ---- Process timeline (how it works) ---- */
.process-timeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.process-timeline__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.process-timeline__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.process-timeline__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.process-timeline__step h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: 1.05rem;
}
.process-timeline__step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.process-timeline__when {
  margin-top: auto !important;
  padding-top: 0.85rem;
  font-size: 0.82rem !important;
}
.process-timeline__when strong {
  color: var(--ink);
}

.ui-mock {
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) - 4px);
  background: var(--paper);
  padding: 0.85rem;
  min-height: 7.5rem;
}
.ui-mock__title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.ui-mock__foot {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}
.ui-mock__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.ui-mock__check {
  font-size: 0.78rem;
  padding-left: 1rem;
  position: relative;
  color: var(--ink);
}
.ui-mock__check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}
.ui-mock__check--bad::before {
  background: #ef4444;
}
.ui-mock__check--good::before {
  background: #22c55e;
}
.ui-mock--phone {
  display: grid;
  place-items: center;
  padding: 0.65rem;
}
.ui-mock__phone {
  width: 5.5rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  padding: 0.55rem 0.45rem 0.65rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}
.ui-mock__phone-notch {
  width: 1.75rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--hairline);
  margin-inline: auto;
}
.ui-mock__phone-title {
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
}
.ui-mock__phone-btn {
  display: block;
  text-align: center;
  padding: 0.35rem;
  border-radius: 0.45rem;
  background: #22c55e;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
}
.ui-mock--seo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.65rem;
  background: transparent;
  border: 0;
}
.ui-mock__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.55rem 0.25rem;
  border: 1px solid var(--hairline);
  border-radius: 0.5rem;
  background: var(--white);
  text-align: center;
}
.ui-mock__tile span {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ui-mock__tile strong {
  font-size: 0.85rem;
  color: var(--accent);
}
.ui-mock--report .ui-mock__report-line {
  display: block;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--hairline);
  margin-bottom: 0.4rem;
}
.ui-mock__report-line--mid { width: 85%; }
.ui-mock__report-line--short { width: 60%; margin-bottom: 0; }

/* ---- Visual-first cards & grids ---- */
.search-visuals--minimal {
  max-width: var(--art-rhetoric);
  border: 1px solid #dadce0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(32, 33, 36, 0.06);
  overflow: hidden;
  margin-inline: auto;
}
.map-pack-demo--minimal {
  border: 0;
}
.map-pack-demo--minimal .map-pack-demo__item {
  border-top: 0;
  padding: 0.65rem 0.75rem;
}
.map-pack-demo--minimal.map-pack-demo--compact .map-pack-demo__item {
  padding: 0.5rem 0.65rem;
}

/* ---- How it works timeline mocks ---- */
.ui-mock--timeline {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.ui-mock--timeline .map-pack-demo--minimal {
  margin: 0;
}
.timeline-mock__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.timeline-mock__check {
  font-size: 0.72rem;
  padding-left: 0.85rem;
  position: relative;
  color: var(--ink);
}
.timeline-mock__check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
}
.timeline-mock__check--bad::before { background: #ef4444; }
.timeline-mock__check--good::before { background: #22c55e; }
.timeline-mock__phone {
  position: relative;
  width: min(100%, var(--art-logic));
  margin-inline: auto;
  border: 2px solid #202124;
  border-radius: 1.1rem;
  padding: 0.35rem 0.3rem 0.45rem;
  background: #fff;
  overflow: hidden;
}
.timeline-mock__phone-notch {
  display: block;
  width: 1.5rem;
  height: 0.18rem;
  border-radius: 999px;
  background: #dadce0;
  margin: 0 auto 0.35rem;
}
.timeline-mock__phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 750 / 1334;
  max-height: var(--art-logic);
}
.timeline-mock__phone-call {
  display: block;
  margin-top: 0.35rem;
  padding: 0.3rem;
  border-radius: 0.4rem;
  background: #188038;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
}
.ui-mock--seo .timeline-mock__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.timeline-mock__chips span {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f1f3f4;
  color: #1a73e8;
  font-size: 0.62rem;
  font-weight: 500;
}
.timeline-mock__report-title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
}
.timeline-mock__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.68rem;
}
.timeline-mock__metric span {
  color: var(--muted);
}
.timeline-mock__metric strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.search-visuals--compact {
  max-width: none;
  margin: 0;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.map-pack-demo--compact .map-pack-demo__item {
  padding: 0.55rem 0.75rem;
}
.map-pack-demo--compact .map-pack-demo__map-strip {
  height: 2.5rem;
  margin-inline: 0.75rem;
}
.map-pack-demo--compact .map-pack-demo__places-head {
  padding-inline: 0.75rem;
}
.map-pack-demo--compact .map-pack-demo__actions {
  display: none;
}
.map-pack-demo--compact .map-pack-demo__name {
  font-size: 0.82rem;
}
.map-pack-demo--compact .google-stars {
  font-size: 0.68rem;
}
.visual-card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .visual-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .visual-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .visual-card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.visual-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.visual-card .ui-mock {
  min-height: 9rem;
  margin: 0;
}
.visual-card--pillar .ui-mock--pillar {
  min-height: 10rem;
  padding: 0.5rem;
  background: var(--paper);
}
.visual-card h3 {
  margin: 0;
  font-size: 1.05rem;
}
.visual-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.compare-visual__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.compare-visual__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.compare-visual__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}
.offer-visual-grid__item--detail {
  min-height: 6.5rem;
  align-items: flex-start;
  text-align: left;
  padding: 1rem;
}
.offer-visual-grid__detail {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
}
.process-timeline--visual-first .process-timeline__step p {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
.process-timeline--visual-first .process-timeline__step h3 {
  font-size: 1rem;
  margin: 0.35rem 0 0;
}

/* ---- AI chat demo ---- */
.ai-chat-demo {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 26rem;
}
.ai-chat-demo__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.ai-chat-demo__logo {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.35rem;
  background: #10a37f;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
}
.ai-chat-demo__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.ai-chat-demo__thread {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}
.ai-chat-demo__bubble {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.ai-chat-demo__bubble--user {
  justify-self: end;
  max-width: 92%;
  background: var(--paper);
  border: 1px solid var(--hairline);
  color: var(--ink);
}
.ai-chat-demo__bubble--ai {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--ink);
}
.ai-chat-demo__bubble--ai p {
  margin: 0;
}
.ai-chat-demo__missing {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

/* ---- Proof visuals (real photos, art-scale sizing) ---- */
.proof-visual {
  margin: 0;
  width: 100%;
  max-width: var(--art-geometry);
  margin-inline: auto;
}
.proof-visual--person {
  max-width: var(--art-music);
}
.proof-visual--device {
  max-width: var(--art-arithmetic);
}
.proof-visual--person img {
  width: 100%;
  max-width: var(--art-music);
  margin-inline: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.proof-visual--device img {
  width: 100%;
  max-width: var(--art-arithmetic);
  margin-inline: auto;
  display: block;
  aspect-ratio: 750 / 1334;
  object-fit: cover;
  object-position: top;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lift);
}
.proof-dual {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--art-music);
  margin-inline: auto;
}
.proof-dual__item {
  margin: 0;
  text-align: center;
}
.proof-dual__item img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}
.proof-dual__item figcaption {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}
.keyword-strategy-visual {
  display: grid;
  gap: 1rem;
}
.keyword-examples--stack {
  margin-bottom: 0;
}

.ui-mock--pain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 9rem;
}
.lead-split {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin: 0.5rem 0;
}
.lead-split__biz {
  display: grid;
  place-items: center;
  min-height: 2.25rem;
  padding: 0.35rem;
  border-radius: 0.45rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
}
.lead-split__biz:first-child {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
}
.notif-stack {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.ui-mock__todo {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.ui-mock__todo-item {
  font-size: 0.78rem;
  padding: 0.4rem 0.55rem 0.4rem 1.5rem;
  border-radius: 0.4rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  position: relative;
  color: var(--ink);
}
.ui-mock__todo-item::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0.15rem;
  border: 2px solid var(--hairline);
}
.ui-mock__todo-item--done {
  color: var(--muted);
  text-decoration: line-through;
}
.ui-mock__todo-item--done::before {
  background: #22c55e;
  border-color: #22c55e;
}
.ui-mock__todo-item--late {
  font-weight: 600;
  border-color: #f59e0b;
  background: #fffbeb;
}
.ui-mock__todo-item--late::before {
  border-color: #f59e0b;
}
.notif-stack__badge {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #ef4444;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}
.notif-stack__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}
.gbp-progress {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--hairline);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.gbp-progress__fill {
  display: block;
  width: 42%;
  height: 100%;
  background: #f59e0b;
  border-radius: 999px;
}
.ui-mock--own .own-stack {
  display: grid;
  gap: 0.45rem;
  place-content: center;
  min-height: 7rem;
}
.own-stack span {
  display: block;
  text-align: center;
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  font-size: 0.78rem;
  font-weight: 600;
}
.section-visual-first {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}
@media (min-width: 900px) {
  .section-visual-first {
    grid-template-columns: 1fr var(--phi-inv);
    gap: var(--space-split);
  }
  .section-visual-first__visual {
    justify-self: end;
    width: 100%;
    max-width: var(--art-geometry);
  }
  .section-visual-first__visual .search-visuals {
    max-width: var(--art-rhetoric);
    margin: 0;
  }
}
.compare-visual {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .compare-visual { grid-template-columns: 1fr 1fr; }
}
.compare-visual__col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.compare-visual__col--highlight {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.04);
}
.compare-visual__col h3 {
  margin: 0;
  font-size: 1.1rem;
}
.compare-visual__col p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.ui-mock--ads {
  display: grid;
  gap: 0.5rem;
  min-height: 9rem;
  align-content: center;
}
.ui-mock__ads-tag {
  display: inline-flex;
  align-self: start;
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 700;
}
.ui-mock__ads-cost {
  font-size: 1.1rem;
  font-weight: 700;
  color: #dc2626;
}
.ui-mock__ads-meter {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--hairline);
  overflow: hidden;
}
.ui-mock__ads-meter span {
  display: block;
  width: 75%;
  height: 100%;
  background: #dc2626;
  border-radius: 999px;
}
.ui-mock__ads-stop {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.ui-mock--ads-win {
  padding: 0.35rem;
  min-height: 9rem;
}
.offer-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .offer-visual-grid { grid-template-columns: repeat(3, 1fr); }
}
.offer-visual-grid--6 {
  max-width: 42rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .offer-visual-grid--6 { grid-template-columns: repeat(3, 1fr); }
}
.offer-visual-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.65rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.offer-visual-grid__icon {
  font-size: 1.35rem;
  line-height: 1;
}
.offer-visual-grid__item strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}
.process-timeline--visual-first .process-timeline__step {
  padding: 1rem;
}
.process-timeline--visual-first .ui-mock {
  min-height: 8.5rem;
}
.ui-mock--timeline.ui-mock--build {
  justify-content: center;
}

.point-list--compact {
  margin: 1.25rem 0 1.5rem;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.point-list--compact li {
  padding-top: 0.65rem;
}

@media (min-width: 900px) {
  .section-split .serp-demo,
  .section-split .search-visuals {
    margin-inline: 0;
    justify-self: end;
  }
  .section-split--reverse .serp-demo,
  .section-split--reverse .search-visuals {
    justify-self: start;
  }
}

.section-visual--wide,
#services .section-visual--wide,
#work .section-visual--wide {
  width: min(100%, var(--render-max-wide));
  max-width: var(--render-max-wide);
}

@media (max-width: 767px) {
  .digital-bit:nth-child(n+9) { display: none; }
}

/* ---- Digital scope band ---- */
.digital-scope {
  position: relative;
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--white);
  border-block: 1px solid var(--hairline);
  overflow: hidden;
}

.digital-bits--band .digital-bit {
  font-size: 0.68rem;
  opacity: 0.45;
}

.digital-scope > .shell {
  position: relative;
  z-index: 1;
}

.digital-scope__lead {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.digital-scope__lead::before {
  content: "// ";
  font-family: var(--font-mono);
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.digital-scope__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.digital-scope__grid li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
}

.digital-scope__grid li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem 0.45rem 0.7rem;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.digital-scope__grid li a:hover {
  color: var(--ink);
  background: var(--white);
}

.digital-scope__grid li::before {
  content: "01";
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

.digital-scope__grid li:nth-child(2)::before { content: "10"; }
.digital-scope__grid li:nth-child(3)::before { content: "11"; }
.digital-scope__grid li:nth-child(4)::before { content: "00"; }
.digital-scope__grid li:nth-child(5)::before { content: "01"; }

@media (min-width: 768px) {
  .digital-scope {
    padding: 1.5rem 0 1.65rem;
  }

  .digital-scope .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .digital-scope__lead {
    margin: 0;
    flex: 0 0 auto;
    max-width: 22ch;
  }

  .digital-scope__grid {
    justify-content: flex-end;
    flex: 1 1 auto;
  }
}

/* SEO internal link lists */
.internal-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 42rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .internal-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
  }
}

.internal-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.internal-links a:hover {
  border-color: var(--accent-line);
  box-shadow: var(--shadow-card);
}

.section-foot a {
  font-weight: 500;
  color: var(--ink-90);
}

.section-foot a:hover {
  color: var(--accent);
}

/* Pain points grid */
.pain-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0;
  width: 100%;
  min-width: 0;
}

.pain-grid > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 1.5rem);
    align-items: stretch;
  }
}

.pain-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.pain-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: var(--render-pad);
  background: var(--surface-2);
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.pain-card__media img {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.pain-card:hover .pain-card__media img {
  transform: none;
}

.pain-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.65rem;
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
}

.pain-card__body h3 {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  line-height: 1.2;
}

.pain-card__body p {
  margin: 0;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .pain-card {
    height: auto;
  }

  .pain-card__body p {
    flex: none;
  }

  .pain-card__media {
    padding: var(--render-pad-tight);
  }
}

.pain-card__link {
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: var(--accent-line);
}

.pain-card__link:hover {
  color: var(--accent);
}

/* Data / stat grid (AI search evidence blocks) */
.stat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.25rem);
  width: 100%;
  min-width: 0;
}

.stat-grid > * { min-width: 0; }

@media (min-width: 640px) {
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .stat-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  padding: clamp(1.1rem, 2.5vw, 1.4rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-card__label {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--ink);
}

.stat-card__source {
  margin-top: auto;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.source-note {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero__layout { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .hero__layout { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }

.hero__pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero__pill-dot { display: none; }

.hero h1 { color: var(--ink); margin-bottom: 1rem; max-width: 18ch; }
.hero h1 em { font-style: italic; color: inherit; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.15rem); color: var(--muted); max-width: 36rem; margin-bottom: 1.75rem; line-height: 1.65; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.88rem; color: var(--muted); }
.hero__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__meta svg { color: var(--muted); flex-shrink: 0; }
.hero__meta a { color: var(--ink); text-decoration: none; font-weight: 600; }
.hero__meta a:hover { text-decoration: underline; }

.hero--page {
  padding-top: calc(var(--header-h) + clamp(1.35rem, 3.5vw, 2.75rem));
  padding-bottom: clamp(1.75rem, 4vw, 3.25rem);
}
.hero--page .hero__sub {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}
.hero--page h1 { max-width: none; }

.hero--page.hero--compact {
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.hero--page.hero--compact .hero__sub {
  max-width: 42rem;
}

.hero--page .hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 0;
}
.hero--page .hero__ctas .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 560px) {
  .hero--page .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero--page .hero__ctas .btn {
    width: auto;
  }
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; list-style: none; margin: 0 0 1rem; padding: 0; font-size: 0.82rem; color: var(--muted); }
.breadcrumbs a { color: var(--ink); text-decoration: none; opacity: 0.7; }
.breadcrumbs a:hover { opacity: 1; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--card-border); }

.hero__visual { position: relative; }
.hero__photo:not(.hero__photo--hero) { margin: 0; max-width: 22rem; margin-inline: auto; }
.hero__photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.hero__image img { width: 100%; display: block; aspect-ratio: var(--aspect-media); object-fit: cover; }

.section-split {
  display: grid;
  gap: var(--space-split);
  align-items: center;
  margin: 0;
  width: 100%;
  min-width: 0;
}

.section-split > * {
  min-width: 0;
}
@media (min-width: 900px) {
  .section-split { grid-template-columns: 1.05fr 0.95fr; }
  .section-split--reverse { direction: rtl; }
  .section-split--reverse > * { direction: ltr; }
}

.section-visual,
figure.section-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: min(100%, var(--render-max-split));
  max-width: var(--render-max-split);
  min-height: 0;
  padding: var(--render-pad);
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  line-height: 0;
}

.section-visual:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.section-visual--wide {
  width: min(100%, var(--render-max-wide));
  max-width: var(--render-max-wide);
}

/* Blender-style 3D renders: transparent cutouts sitting on the page plane */
.render-3d {
  position: relative;
  margin: 0 auto;
  padding: 0 0 0.35rem;
  background: transparent;
  border: none;
  box-shadow: none;
  line-height: 0;
  max-width: min(100%, var(--art-music));
  isolation: isolate;
}

.render-3d::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: min(82%, 20rem);
  height: clamp(1.25rem, 4vw, 2rem);
  transform: translateX(-50%) scale(1, 0.42);
  transform-origin: center bottom;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 31, 60, 0.22) 0%,
    rgba(10, 31, 60, 0.08) 42%,
    transparent 72%
  );
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.render-3d img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--art-music);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10, 31, 60, 0.14));
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.render-3d:hover img {
  transform: translateY(-5px);
  filter: drop-shadow(0 16px 28px rgba(10, 31, 60, 0.18));
}

.render-3d:hover::after {
  transform: translateX(-50%) scale(1.06, 0.48);
  opacity: 0.95;
}

#qualify .render-3d::after,
.qualify-panel__media .render-3d::after {
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.14) 42%,
    transparent 72%
  );
}

.render-3d--wide {
  max-width: min(100%, var(--render-max-wide));
}

.render-3d--wide img {
  max-height: var(--art-astronomy);
}

.render-3d--hero {
  max-width: min(100%, var(--art-arithmetic));
  margin: 0 auto 0.5rem;
}

.render-3d--hero img {
  max-height: var(--art-arithmetic);
}

.render-3d--cta img {
  max-height: var(--art-logic);
}

.render-3d--card {
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-radius: 1.25rem;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(201, 162, 39, 0.1), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.92));
  border: 1px solid rgba(10, 31, 60, 0.06);
  box-shadow:
    0 28px 60px -36px rgba(10, 31, 60, 0.35),
    0 12px 24px -18px rgba(10, 31, 60, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.render-3d--card img {
  filter: drop-shadow(0 18px 28px rgba(10, 31, 60, 0.16));
}

.visual-card-grid--render {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.visual-card-grid--2 {
  grid-template-columns: 1fr;
}

.visual-card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .visual-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.visual-card--render {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.visual-card--render h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.visual-card--render p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.visual-card--render:hover .render-3d--card {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 36px 72px -32px rgba(10, 31, 60, 0.4),
    0 16px 32px -20px rgba(201, 162, 39, 0.16);
}

.compare-visual__col .render-3d--card {
  margin-bottom: 1rem;
}

.final-cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .final-cta__inner {
    grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
    gap: 2rem;
    text-align: left;
  }
}

.final-cta__copy h2 {
  margin-top: 0;
}

.qualify-panel__media .render-3d {
  max-width: 100%;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.qualify-panel__media .render-3d img {
  max-height: clamp(9rem, 28vw, 13rem);
}

.section-visual img,
.service-hero-media .section-visual img,
.service-row__render img,
.audit-offer__media img,
.qualify-panel__media .section-visual img {
  position: static;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin-inline: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.pain-card__media img,
.card__illustration img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
}

.section-visual--wide img {
  max-height: var(--art-astronomy);
}

.section-visual:not(.section-visual--wide) img {
  max-height: var(--art-music);
}

.section-visual:hover img,
.pain-card:hover .pain-card__media img {
  transform: none;
}

.tool-logos {
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.tool-logos__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.tool-logos__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-logos__list li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-logos__list img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  padding: 0.55rem;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(10, 31, 60, 0.08);
  transition: transform 0.2s var(--ease);
}

.tool-logos__list img:hover {
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .tool-logos__list img {
    width: 3rem;
    height: 3rem;
  }
}

.hero__photo--render img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.hero--home .hero__photo--render img {
  position: static;
  height: auto;
  padding: 0;
  object-position: center;
  transform: none;
}

.section-split .section-visual {
  margin: 0 auto;
}

.section-split .section-visual--wide {
  width: min(100%, var(--render-max-wide));
  max-width: var(--render-max-wide);
}

.service-hero-media .section-visual img {
  max-height: clamp(11rem, 36vw, 16rem);
}

#services .section-visual--wide,
#work .section-visual--wide {
  margin-inline: auto;
}

@media (min-width: 900px) {
  :root {
    --render-pad: clamp(0.75rem, 1.2vw, 1rem);
    --render-max-split: var(--art-geometry);
    --render-max-wide: var(--art-astronomy);
    --render-max-hero: var(--art-music);
    --space-split: clamp(2.75rem, 5vw, 4.5rem);
    --space-block: clamp(1.75rem, 2.5vw, 2.75rem);
  }

  .section-split {
    align-items: center;
  }

  .section-split .section-visual {
    width: 100%;
    max-width: 100%;
    align-self: start;
    justify-self: stretch;
  }

  .section-split--reverse .section-visual {
    margin-left: auto;
    margin-right: 0;
  }

  .section-split .section-visual img {
    width: 100%;
    max-height: var(--art-music);
    height: auto;
    object-fit: contain;
  }

  .section-visual img,
  .service-hero-media .section-visual img,
  .audit-offer__media img,
  .qualify-panel__media .section-visual img {
    width: 100%;
  }

  .section-visual:not(.section-visual--wide) img {
    max-height: min(20rem, 38vh);
  }

  .section-visual--wide {
    width: min(100%, var(--render-max-wide));
    max-width: var(--render-max-wide);
  }

  .section-visual--wide img {
    max-height: min(22rem, 44vh);
  }

  .service-hero-media .section-visual {
    width: min(100%, var(--render-max-hero));
    max-width: var(--art-music);
  }

  .service-hero-media .section-visual img {
    max-height: var(--art-music);
  }

  .section-split .proof-visual--device {
    max-width: var(--art-arithmetic);
    justify-self: center;
  }

  .section-split .proof-visual--person {
    max-width: var(--art-music);
    justify-self: center;
  }

  .section-split .proof-visual--device img {
    max-width: 100%;
  }

  .section-split .proof-visual--person img {
    max-width: 100%;
  }

  .pain-grid {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .pain-card__media {
    padding: var(--render-pad-tight);
    aspect-ratio: 3 / 2;
  }

  .pain-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .card__illustration {
    padding: var(--render-pad-tight);
    aspect-ratio: 16 / 10;
  }

  .card__illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .qualify-panel__media .section-visual {
    height: 100%;
    min-height: 100%;
  }

  .qualify-panel__media .section-visual img {
    max-height: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.card--cartoon {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
  overflow: hidden;
}

.card__illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  min-width: 0;
  padding: var(--render-pad);
  overflow: hidden;
  background: var(--surface-2);
  border-bottom: 1px solid var(--hairline);
  line-height: 0;
}

.card__illustration img {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.card--cartoon h3,
.card--cartoon p {
  padding-inline: var(--space-md);
}

.card--cartoon h3 {
  margin-top: var(--space-md);
}

.card--cartoon p {
  padding-bottom: var(--space-md);
  margin-bottom: 0;
}

.section-split .faq-list {
  margin: 0;
  max-width: none;
  width: 100%;
}

.section-split .section-head {
  max-width: none;
}


.card__media { display: none; }

/* Hero visual card (legacy tile grid fallback) */
.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.hero-card__title { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.hero-card__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.hero-card__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--orange-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.hero-card__tile svg { color: var(--orange); }
.hero-card__note {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border: 1.5px dashed rgba(17, 17, 17, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Placeholder blocks (unfabricated content slots)
   -------------------------------------------------------------------------- */
.placeholder-slot {
  border: 2px dashed rgba(17, 17, 17, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--card-border); }
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  padding-block: 1.5rem;
}
.trust-bar .placeholder-slot { padding: 0.85rem 1.5rem; font-size: 0.85rem; background: transparent; flex: 1 1 16rem; max-width: 24rem; }

/* --------------------------------------------------------------------------
   Sector & point lists (replacing pill/card grids on homepage)
   -------------------------------------------------------------------------- */
.sector-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.sector-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0.15rem;
}
.sector-list a:hover { border-color: var(--ink); }
.sector-list .is-muted { color: var(--muted); border: 0; }

.point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  max-width: 42rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .point-list { grid-template-columns: 1fr 1fr; max-width: none; gap: 2rem 3rem; } }
.point-list li { position: relative; padding-top: 0.85rem; border-top: 1px solid var(--hairline); transition: border-color 0.3s var(--ease); }
.point-list li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 2.25rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.point-list li:hover::before { transform: scaleX(1); }
.point-list strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.point-list span { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.service-list { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); margin: 0; }
.service-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 3vw, 1.25rem);
  padding: clamp(1.15rem, 3vw, 1.65rem) clamp(1rem, 3vw, 1.25rem);
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}

.service-row__render {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(2.65rem, 9vw, 3rem);
  height: clamp(2.65rem, 9vw, 3rem);
  padding: 0.28rem;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
}

.service-row__render img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}
/* accent edge indicator that grows on hover */
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.service-row:hover {
  background: linear-gradient(90deg, var(--accent-soft), transparent 60%);
  padding-left: 1.15rem;
}
.service-row:hover::before { transform: scaleY(1); }
.service-row__body { flex: 1; min-width: 0; }
.service-row h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.service-row p { color: var(--muted); font-size: 0.95rem; margin: 0; max-width: 38rem; line-height: 1.6; }
.service-row__arrow { flex-shrink: 0; color: var(--muted-2); font-size: 1.2rem; transition: transform 0.35s var(--ease), color 0.35s var(--ease); }
.service-row:hover .service-row__arrow { color: var(--accent); transform: translateX(5px); }

.section-icon,
.page-icon,
.card__icon,
.service-row__icon { display: none !important; }

.section--alt {
  position: relative;
  background: var(--surface-2);
  border-block: 1px solid var(--hairline);
}
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grid-dot) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 60%);
  mask-image: linear-gradient(180deg, #000, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.section--alt > .shell { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  a.card:hover, .card--hover:hover {
    border-color: var(--card-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
  }
}
@media (min-width: 768px) {
  .card {
    padding: var(--space-lg);
  }
}
a.card { display: block; text-decoration: none; color: inherit; }
a.card .card__link svg { transition: transform var(--dur) var(--ease); }
a.card:hover .card__link svg { transform: translateX(3px); }

.card h3 { margin-bottom: 0.55rem; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; line-height: 1.6; }
.card__link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); text-decoration: underline; text-underline-offset: 0.2em; }

.grid { display: grid; gap: var(--space-md); margin: 0; width: 100%; min-width: 0; }
.grid > * { min-width: 0; }
@media (min-width: 640px) { .grid--2, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.section-foot {
  margin: 1.5rem 0 0;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.55;
  font-size: 0.95rem;
}
.section-foot--pricing {
  margin-top: 0.25rem;
}
.section-foot--pricing a {
  display: inline-block;
  margin-top: 0.35rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-marquee {
  overflow: hidden;
  width: 100%;
  margin: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-marquee__track {
  display: flex;
  width: max-content;
  animation: testimonials-marquee 50s linear infinite;
  will-change: transform;
}

.testimonials-marquee:hover .testimonials-marquee__track,
.testimonials-marquee:focus-within .testimonials-marquee__track {
  animation-play-state: paused;
}

.testimonials-marquee__group {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  padding-right: 0.85rem;
  flex-shrink: 0;
}

@keyframes testimonials-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonials-marquee__track {
    animation: none;
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: max(1.5rem, env(safe-area-inset-left, 0px)) max(1.5rem, env(safe-area-inset-right, 0px));
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .testimonials-marquee__group[aria-hidden="true"] { display: none; }

  .testimonials-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .testimonial__quote p {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  flex: 0 0 15rem;
  width: 15rem;
  height: 15.5rem;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .testimonial {
    flex-basis: 16.5rem;
    width: 16.5rem;
    height: 16.5rem;
    padding: 1.1rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial {
    flex: 1 1 15rem;
    width: auto;
    max-width: 16.5rem;
    height: auto;
    min-height: 15.5rem;
  }
}

.section--alt .testimonial { background: var(--white); }

.testimonial__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 2.25rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.testimonial__logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 6.5rem;
  height: 2.25rem;
  flex: 0 0 6.5rem;
  min-width: 0;
  text-decoration: none;
}

.testimonial__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.testimonial__logo--wide {
  max-width: 100%;
  max-height: 100%;
}

.testimonial__stars {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--star-gold);
}

.testimonial__quote {
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
}

.testimonial__quote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-90);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial__quote p::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.testimonial__author strong {
  font-weight: 600;
  color: var(--ink);
}

.testimonial__author span {
  color: var(--muted);
}

.testimonial__author a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: var(--accent-line);
}

.testimonial__author a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   Stat / proof banner
   -------------------------------------------------------------------------- */
.proof-banner {
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(10, 31, 60, 0.12), transparent 60%),
    linear-gradient(140deg, var(--ink-90) 0%, var(--ink-deep) 100%);
  color: var(--white);
  border-radius: 1.5rem;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}
.proof-banner h2 { color: var(--white); }
.proof-banner p { color: rgba(255, 255, 255, 0.7); max-width: 38rem; margin-inline: auto; }
.proof-banner .placeholder-slot { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.65); max-width: 34rem; margin: 1.5rem auto 0; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 48rem; margin: 0 auto; width: 100%; }
details.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
details.faq-item:hover { border-color: var(--card-border); }
details.faq-item[open] { border-color: var(--accent-line); box-shadow: var(--shadow-lift); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .faq-q { flex: 1 1 auto; min-width: 0; }
.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}
details.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a { padding: 0 1.65rem 1.5rem; color: var(--muted); font-size: 0.97rem; line-height: 1.65; }
.faq-a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  background: linear-gradient(160deg, var(--ink-90), var(--ink-deep));
  color: var(--paper);
  text-align: left;
  border-top: 0;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(120% 100% at 100% 0%, #000, transparent 70%);
  mask-image: radial-gradient(120% 100% at 100% 0%, #000, transparent 70%);
  pointer-events: none;
}
.final-cta > .shell { position: relative; z-index: 1; }
.final-cta h2 { color: var(--paper); font-size: clamp(2rem, 4.5vw, 3rem); max-width: 18ch; }
.final-cta p { color: rgba(255, 255, 255, 0.72); max-width: 38rem; margin-inline: 0; font-size: 1.075rem; }
.final-cta__actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.85rem; margin-top: 1.75rem; }
.final-cta__actions .btn { width: 100%; justify-content: center; }
@media (min-width: 560px) {
  .final-cta__actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2.25rem; }
  .final-cta__actions .btn { width: auto; }
}
.final-cta .btn--cta { background: var(--paper); color: var(--ink-deep); box-shadow: none; }
.final-cta .btn--cta:hover { background: var(--white); box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.6); }
.final-cta .btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--paper);
  box-shadow: none;
}
.final-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  box-shadow: none;
}
/* outline on navy was invisible (dark ink on dark bg); keep readable if any page still uses it */
.final-cta .btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--paper);
  background: transparent;
}
.final-cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.final-cta__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; color: var(--paper); text-decoration: underline; text-underline-offset: 0.2em; text-decoration-color: var(--accent-line); }
.final-cta__phone:hover { color: #b8cfc0; }
.final-cta__phone svg { display: none; }

/* --------------------------------------------------------------------------
   Content / prose sections (service pages)
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 4.5rem); } }

.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.checklist li svg { flex-shrink: 0; color: var(--accent); margin-top: 0.2rem; }
.checklist li strong { display: block; }
.checklist li span { color: var(--muted); font-size: 0.95rem; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.steps h3 { font-size: 1.1rem; }
.steps p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   About / headshot
   -------------------------------------------------------------------------- */
.headshot {
  display: block;
  width: min(100%, 32rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: none;
}
.headshot--sm { width: 64px; height: 64px; border-radius: 50%; box-shadow: none; border: 1px solid var(--card-border); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--card-border); border-radius: 1.25rem; padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-grid { display: grid; gap: 1.35rem; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field label { font-weight: 700; font-size: 0.9rem; }
.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--card-border);
  background: var(--bone);
  color: var(--ink);
  width: 100%;
}
.field input:not([type="radio"]):not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.field--full { grid-column: 1 / -1; }
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0.75rem 0 0; }
.form-status { display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; }
.form-status.is-ok { display: block; background: rgba(34, 160, 84, 0.1); color: #1c7a43; }
.form-status.is-err { display: block; background: rgba(214, 64, 25, 0.1); color: #b23a12; }

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid #1fb855;
  box-shadow: 0 12px 32px -12px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp:hover {
  background: #1fb855;
  color: #fff;
  border-color: #1a9e4c;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(31, 184, 85, 0.5);
}
.btn--cta.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #1fb855;
  box-shadow: 0 12px 32px -12px rgba(37, 211, 102, 0.45);
}
.btn--cta.btn--whatsapp:hover {
  background: #1fb855;
  color: #fff;
  border-color: #1a9e4c;
}
.final-cta .btn--whatsapp,
.final-cta .btn--cta.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #1fb855;
  box-shadow: 0 12px 32px -12px rgba(37, 211, 102, 0.4);
}
.final-cta .btn--whatsapp:hover,
.final-cta .btn--cta.btn--whatsapp:hover {
  background: #1fb855;
  color: #fff;
  border-color: #1a9e4c;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
  border-radius: clamp(1rem, 3vw, 1.35rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--ink);
  box-shadow: 0 30px 80px -36px rgba(0, 0, 0, 0.7);
}

.contact-panel__intro h2 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.contact-panel__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-panel__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.contact-panel__checks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-70);
}

.contact-panel__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #1c7a43;
}

.contact-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-panel__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 540px) {
  .contact-panel__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-panel__actions .btn {
    width: auto;
    flex: 1 1 auto;
  }
}

.contact-aside { position: sticky; top: calc(var(--header-h) + 1rem); }

.contact-address {
  margin-top: 0;
  font-style: normal;
  line-height: 1.6;
}
.contact-address p { margin-bottom: 0.75rem; }
.contact-address a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.map-embed {
  margin-top: 1.25rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(14rem, 42vw, 18rem);
  border: 0;
}
.map-embed--footer iframe {
  height: clamp(12rem, 36vw, 16rem);
}
.map-embed--gbp {
  position: relative;
}
.map-embed--gbp iframe {
  pointer-events: none;
}
.map-embed__gbp-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
.map-embed--gbp:focus-within {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
.map-embed__gbp-link:focus-visible {
  outline: none;
}

.calendar-embed {
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 600px;
  min-height: 32rem;
  border: 0;
}

.book-panel {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
.book-panel__copy {
  max-width: 36rem;
}
.book-panel__copy h2 {
  margin-bottom: 0.5em;
}
.book-panel__copy .lead {
  margin-bottom: 1.25rem;
}
.book-panel__copy .contact-panel__checks {
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  .book-panel {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
    align-items: center;
  }
  .book-panel .calendar-embed {
    margin-inline: 0;
    justify-self: end;
  }
}

#qualify {
  position: relative;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255, 255, 255, 0.12), transparent 62%),
    radial-gradient(700px 420px at 100% 38%, rgba(37, 211, 102, 0.12), transparent 58%),
    linear-gradient(145deg, var(--ink-90), var(--ink-deep));
  color: var(--white);
  border-block: 0;
  overflow: hidden;
}

#qualify::before {
  opacity: 0.2;
  -webkit-mask-image: none;
  mask-image: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
}

#qualify .section-head h2 {
  color: var(--white);
}

#qualify .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

#qualify .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.qualify-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(1.25rem, 3vw, 1.85rem);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 36px 100px -55px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.qualify-panel__media {
  display: block;
  min-width: 0;
  background:
    radial-gradient(420px 260px at 50% 24%, rgba(255, 255, 255, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.04);
}

.qualify-panel__media .section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: var(--render-pad);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.qualify-panel__media .section-visual img {
  max-height: clamp(8rem, 32vw, 11rem);
  padding: 0;
  transform: none;
}

@media (min-width: 900px) {
  .qualify-panel__media .section-visual img {
    max-height: clamp(10rem, 28vw, 13.5rem);
  }
}

.qualify-panel__media .render-3d {
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

.qualify-panel__form {
  min-width: 0;
  padding: clamp(0.75rem, 2vw, 1rem);
}

.qualify-panel__form--split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .qualify-panel__form--split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }
}

@media (min-width: 900px) {
  .qualify-panel {
    grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1fr);
    align-items: stretch;
  }

  .qualify-panel__form {
    padding: clamp(1.25rem, 2.5vw, 2rem);
  }
}

/* Audit qualification wizard (contact) */
.audit-wizard {
  color: var(--white);
  max-width: 36rem;
}

.audit-wizard__label {
  margin: 0 0 0.75rem;
}

.audit-wizard__progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 1.35rem;
}

.audit-wizard__progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #25d366, #7dd3fc);
  transition: width 0.35s var(--ease);
}

.audit-wizard__step {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.audit-wizard__question {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--white);
}

.audit-wizard__question--spaced {
  margin-top: 1.1rem;
}

.audit-wizard__choices {
  display: grid;
  gap: 0.55rem;
}

.audit-wizard__choice {
  appearance: none;
  text-align: left;
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.audit-wizard__choice:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.audit-wizard__choice:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}

.audit-wizard__choice.is-selected {
  border-color: #7dd3fc;
  background: rgba(125, 211, 252, 0.14);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.35);
}

.audit-wizard__pref {
  margin: 1.15rem 0 0;
  padding: 0;
  border: 0;
}

.audit-wizard__pref-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.audit-wizard__choices--pref {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.audit-wizard__choices--pref .audit-wizard__choice {
  padding: 0.65rem 0.5rem;
  font-size: 0.88rem;
}

.audit-wizard__skip {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.audit-wizard__skip a {
  color: rgba(255, 255, 255, 0.62);
}

.audit-wizard__skip a:hover {
  color: #fff;
}

.audit-wizard__input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.audit-wizard__input:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}

.audit-wizard__hint {
  margin: -0.35rem 0 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.audit-wizard__fields {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .audit-wizard__fields {
    grid-template-columns: 1fr 1fr;
  }

  .audit-wizard__field--full {
    grid-column: 1 / -1;
  }
}

.audit-wizard__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}

.audit-wizard__select {
  cursor: pointer;
}

.audit-wizard__field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #fecaca;
}

.audit-wizard__field-error--block {
  margin-top: 0.5rem;
}

.audit-wizard__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.audit-wizard__consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.audit-wizard__consent a {
  color: #7dd3fc;
}

.audit-wizard__recap {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
}

.audit-wizard__recap div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
}

.audit-wizard__recap dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.audit-wizard__recap dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.audit-wizard__lead-status {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.audit-wizard__lead-status.is-ok {
  background: rgba(37, 211, 102, 0.15);
  color: #bbf7d0;
}

.audit-wizard__lead-status.is-warn {
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
}

.audit-wizard__lead-status.is-err {
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.audit-wizard__input.is-invalid {
  border-color: #f87171;
}

.audit-wizard__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  align-items: center;
}

.audit-wizard__nav .btn--cta {
  margin-left: auto;
}

.audit-wizard__nav--steps {
  margin-top: 1rem;
}

.audit-wizard__outcome .contact-panel__checks {
  margin: 1rem 0 0;
}

.audit-wizard__outcome-head {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0.35rem 0 0;
  color: var(--white);
}

.audit-wizard__checks li {
  color: rgba(255, 255, 255, 0.82);
}

.audit-wizard .form-note {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}

.audit-wizard .link-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.audit-wizard .link-btn:hover {
  color: var(--white);
}

.btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
}

.audit-wizard__art.section-visual {
  transition: opacity 0.35s var(--ease);
}

.audit-wizard__art.is-swapping img {
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .audit-wizard__progress-fill,
  .audit-wizard__art.section-visual {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.68);
  padding-block: clamp(3.25rem, 6vw, 5rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.site-footer a { color: rgba(255, 255, 255, 0.68); text-decoration: none; transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--white); }
.footer-col ul a { position: relative; }
.footer-col ul a:hover { color: #b8cfc0; }
.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
  }
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--space-lg);
  }
}
.footer-map {
  margin-bottom: 2.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-map .map-embed {
  margin-top: 1.5rem;
  border-color: rgba(255, 255, 255, 0.12);
}
.footer-map__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}
.footer-map__links a { text-decoration: underline; text-underline-offset: 0.15em; }
.footer-brand .brand { color: var(--white); display: inline-flex; margin-bottom: 0.75rem; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer-brand .footer-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--white); margin-top: 0.75rem; }
.footer-brand .footer-phone svg { color: var(--muted); }
.footer-col h4 { color: rgba(255,255,255,0.55); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Mobile sticky contact bar (mobile-first)
   -------------------------------------------------------------------------- */
body.has-mobile-action-bar {
  padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
}

body.mobile-menu-open.has-mobile-action-bar {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body.mobile-menu-open .mobile-action-bar {
  display: none;
}

.mobile-action-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xs);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: var(--space-2xs) var(--space-inline);
  padding-bottom: max(var(--space-2xs), env(safe-area-inset-bottom));
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  box-shadow: 0 -8px 32px -12px rgba(10, 31, 60, 0.2);
}

.mobile-action-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 3rem;
  padding: var(--space-2xs) var(--space-sm);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.mobile-action-bar__btn--call {
  color: var(--ink);
  background: #fff;
  border-color: rgba(10, 31, 60, 0.12);
}

.mobile-action-bar__btn--audit {
  color: #fff;
  background: #1a73e8;
  border-color: rgba(0, 0, 0, 0.06);
}

.mobile-action-bar__btn svg {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  body.has-mobile-action-bar {
    padding-bottom: 0;
  }

  .mobile-action-bar {
    display: none;
  }
}

/* Guide inline CTA (after first short answer) */
.guide-inline-cta {
  margin: 1.25rem 0 1.75rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(10, 31, 60, 0.04));
  border: 1px solid rgba(26, 115, 232, 0.16);
}

.guide-inline-cta p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.guide-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* --------------------------------------------------------------------------
   WhatsApp floating button
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.35),
    0 8px 28px -6px rgba(10, 31, 60, 0.25);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-fab:hover {
  background: #1fb855;
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.42),
    0 12px 32px -8px rgba(10, 31, 60, 0.3);
}

.whatsapp-fab:active {
  transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { transition: background 0.25s var(--ease); }
  .whatsapp-fab:hover { transform: none; }
}

@media (min-width: 960px) {
  .whatsapp-fab {
    right: max(1.5rem, env(safe-area-inset-right, 0px));
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    width: 3.75rem;
    height: 3.75rem;
  }
}

body.has-mobile-action-bar .whatsapp-fab {
  bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .convert-bar {
    display: none !important;
  }

  body.has-convert-bar .whatsapp-fab {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
}

.convert-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 44;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem max(0.75rem, env(safe-area-inset-left, 0px)) calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(246, 243, 237, 0.96);
  border-top: 1px solid var(--hairline);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 32px -12px rgba(10, 31, 60, 0.18);
}

.convert-bar[hidden] {
  display: none !important;
}

.convert-bar__primary {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: var(--radius-sm);
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid #1a73e8;
}

.convert-bar__primary:hover {
  background: #1557b0;
  border-color: #1557b0;
  color: #fff;
}

.convert-bar__call {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 31, 60, 0.2);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.convert-bar__call:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
/* Reveal only when JS is present (fails open otherwise) */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 0.45s var(--ease);
}
.js .reveal.in { transform: none; }
/* gentle stagger for grid/list children */
.js .grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.js .grid > .reveal:nth-child(3) { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 0.5rem; }

/* ---- AI hub ribbon ---- */
.ai-hub-ribbon {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  margin-top: var(--header-h);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-hub-ribbon.is-dismissed { display: none; }
.ai-hub-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--ribbon-h);
  padding-block: 0.65rem;
}
.ai-hub-ribbon__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
}
.ai-hub-ribbon__text a {
  color: inherit;
  text-decoration: none;
}
.ai-hub-ribbon__text a:hover { color: var(--accent); }
.ai-hub-ribbon__dismiss {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  border-radius: 0.35rem;
}
.ai-hub-ribbon__dismiss:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ---- Audit offer ---- */
.audit-offer {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: linear-gradient(135deg, rgba(82, 122, 104, 0.1), rgba(10, 31, 60, 0.03));
}
@media (min-width: 768px) {
  .audit-offer {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem 1.5rem;
  }
}
.audit-offer__body h2 { margin-bottom: 0.5rem; }
.audit-offer__body p { margin: 0; color: var(--muted); max-width: 38rem; }
.audit-offer__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(3.5rem, 12vw, 4.25rem);
  height: clamp(3.5rem, 12vw, 4.25rem);
  padding: 0.3rem;
  margin: 0 auto;
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
}

.audit-offer__media img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.audit-offer__media--photo {
  width: clamp(4.5rem, 14vw, 5.5rem);
  height: clamp(4.5rem, 14vw, 5.5rem);
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.audit-offer__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audit-offer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.audit-offer__actions .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .audit-offer__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .audit-offer__actions .btn {
    width: auto;
  }
}
@media (min-width: 768px) {
  .audit-offer__actions {
    flex-direction: column;
    min-width: 11.5rem;
  }
  .audit-offer__actions .btn {
    width: 100%;
  }
}

/* ---- Trust strip (hero) ---- */
.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: 36rem;
}

.trust-strip__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.85rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
  text-align: left;
}

.trust-strip__item strong {
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--ink);
}

.trust-strip__item span {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-muted);
}

.trust-strip__item a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.trust-strip__item a:hover {
  text-decoration: underline;
}

.trust-strip__item--highlight {
  background: linear-gradient(135deg, rgba(34, 160, 84, 0.12), rgba(34, 160, 84, 0.04));
  border-color: rgba(34, 160, 84, 0.28);
}

.trust-strip__num {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  line-height: 1;
  color: #1c7a43;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .trust-strip__item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0.85rem 0.75rem;
  }

  .trust-strip__item--highlight {
    grid-column: span 1;
  }
}

/* ---- Proof band (pricing / services) ---- */
.proof-band {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 160, 84, 0.28);
  background: linear-gradient(135deg, rgba(34, 160, 84, 0.1), rgba(34, 160, 84, 0.03));
  align-items: center;
}

@media (min-width: 768px) {
  .proof-band {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.25rem 1.5rem;
  }
}

.proof-band__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proof-band__num {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  color: #1c7a43;
  letter-spacing: -0.03em;
}

.proof-band__stat span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.proof-band__body {
  min-width: 0;
}

.proof-band__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-70);
}

.proof-band__link {
  justify-self: start;
}

@media (min-width: 768px) {
  .proof-band__link {
    justify-self: end;
  }
}

.proof-band--lite {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1rem, 3vw, 1.25rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: var(--surface);
}

@media (min-width: 768px) {
  .proof-band--lite {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.proof-band--lite .proof-band__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-70);
}

.proof-band--lite .proof-band__link {
  flex-shrink: 0;
}

/* ---- About photo ---- */
.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--hairline);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
}

.about-photos {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  max-width: var(--content-narrow);
  margin-inline: auto;
  align-content: start;
}

@media (min-width: 521px) {
  .about-photos {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin-inline: 0;
  }
}

/* ---- Case study layout (mobile-first) ---- */
.lp-case {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: stretch;
}

.lp-case__content {
  display: flex;
  flex-direction: column;
  order: 2;
  min-width: 0;
}

.lp-case__media {
  order: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--hairline);
}

@media (min-width: 900px) {
  .lp-case {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .lp-case__content { order: 2; }
  .lp-case__media { order: 1; }
}

.lp-case__media--devices {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.lp-case__media--devices picture {
  display: block;
  width: 100%;
}

.lp-case__media--devices img {
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .lp-case__media--devices {
    margin-inline: calc(-1 * max(var(--space-inline), env(safe-area-inset-left, 0px)));
    width: calc(100% + 2 * max(var(--space-inline), env(safe-area-inset-left, 0px)));
    border-radius: 0;
  }

  .lp-case__media--devices img {
    border-radius: 0;
    max-height: min(72vh, 640px);
    object-fit: contain;
    object-position: top center;
  }
}

.lp-case__content h3,
.lp-case__body h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: 0.25rem;
}

.lp-case__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: clamp(0.9rem, 3vw, 1.15rem) clamp(1rem, 3.5vw, 1.35rem);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(232, 93, 44, 0.1), rgba(232, 93, 44, 0.03));
  border: 1px solid rgba(232, 93, 44, 0.22);
}

.lp-case__stat--success {
  background: linear-gradient(135deg, rgba(34, 160, 84, 0.14), rgba(34, 160, 84, 0.04));
  border-color: rgba(34, 160, 84, 0.32);
}

.lp-case__stat-num {
  font-size: clamp(2.25rem, 9vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.lp-case__stat--success .lp-case__stat-num {
  color: #1c7a43;
}

.lp-case__stat-label {
  font-size: clamp(0.9rem, 2.5vw, 0.98rem);
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.35;
}

.lp-case__permission {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.lp-head .lp-case__permission,
.section-head .lp-case__permission {
  margin-top: 0.5rem;
}

.lp-case__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--muted, #5a6478);
}

.case-teaser {
  padding: 0;
  overflow: hidden;
}

.case-teaser__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid rgba(10, 31, 60, 0.08);
}

.case-teaser .card__body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.case-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 31, 60, 0.06);
  color: var(--ink-muted);
}

.case-context {
  max-width: 42rem;
  margin-top: 1rem;
}
.case-context p + p {
  margin-top: 0.75rem;
}
.case-context__about {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.case-detail {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 31, 60, 0.1);
}

.case-detail__grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .case-detail__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.case-detail__heading {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.case-detail__col p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.case-detail__col .checklist {
  margin-bottom: 1.25rem;
}

.case-detail__enquiry {
  font-weight: 500;
  color: var(--ink) !important;
}

.case-detail__foot {
  margin: 1.5rem 0 0;
  text-align: center;
}

.case-gallery {
  margin-top: 2rem;
}

.case-gallery__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .case-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .case-gallery__grid:has(.case-gallery__item:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.case-gallery__label {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(10, 31, 60, 0.1);
  background: rgba(250, 250, 248, 0.95);
}

.case-gallery__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(10, 31, 60, 0.1);
  box-shadow: 0 8px 24px rgba(10, 31, 60, 0.08);
}

.case-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.case-index__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .case-index__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.case-index__link {
  display: block;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 31, 60, 0.12);
  background: var(--surface, #fff);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.case-index__link:hover {
  border-color: rgba(10, 31, 60, 0.22);
  box-shadow: 0 6px 20px rgba(10, 31, 60, 0.08);
}

.case-index__link strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.case-index__link span {
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.compare-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.compare-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: var(--white);
}

.compare-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.compare-card--highlight {
  border-color: rgba(34, 160, 84, 0.35);
  background: linear-gradient(180deg, rgba(34, 160, 84, 0.08), rgba(255, 255, 255, 0.95));
}

.section--alt .compare-card {
  background: rgba(255, 255, 255, 0.92);
}

.section--alt .compare-card--highlight {
  background: linear-gradient(180deg, rgba(34, 160, 84, 0.12), rgba(255, 255, 255, 0.98));
}

.work-case .shell {
  max-width: 56rem;
}

.work-case .case-detail {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 31, 60, 0.1);
}

.work-case__extras {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(10, 31, 60, 0.1);
}

.work-case__extras--home {
  max-width: 56rem;
  margin-inline: auto;
}

.proof-card {
  position: relative;
  max-width: min(100%, 20rem);
  margin-inline: auto;
  padding: 1rem 1rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(10, 31, 60, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 60px -36px rgba(10, 31, 60, 0.35);
}

.proof-card__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(34, 160, 84, 0.14), rgba(34, 160, 84, 0.06));
  border: 1px solid rgba(34, 160, 84, 0.25);
  border-radius: 999px;
}

.proof-card img {
  border: none;
  box-shadow: none;
  border-radius: 10px;
}

.work-case__extras .proof-card {
  margin-inline: 0;
  max-width: 100%;
}

.case-study-jump {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.case-study-jump__label {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
}

.case-study-jump__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-study-jump__list a {
  font-weight: 600;
  text-decoration: none;
}

.case-study-jump__list a:hover {
  text-decoration: underline;
}

.case-performance__no-export {
  margin-top: 2rem;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .work-case__extras {
    grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem 2rem;
  }

  .work-case__extras .lp-case__actions {
    margin-top: 0;
    align-self: center;
  }
}

.work-case__proof {
  margin: 0;
  max-width: 13rem;
}

.work-case__extras--home {
  max-width: 56rem;
  margin-inline: auto;
}

.case-performance {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 31, 60, 0.1);
}

.case-performance__head {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.case-performance__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.case-performance__intro {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.case-performance .case-metrics {
  margin-top: 1.25rem;
}

.case-performance .case-metrics:first-of-type {
  margin-top: 0;
}

.work-case .case-metrics {
  margin-top: 0;
}

.case-metrics__table-pair {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .case-metrics__table-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.case-metrics__table-block .case-metrics__subhead {
  margin-top: 0;
}

main:has(.work-case) .hero--page .shell,
main:has(.work-case) .work-case .shell,
main:has(.work-case) .work-case ~ .section--tight .shell,
main:has(.work-case) .final-cta .shell {
  max-width: 56rem;
}

body:has(.work-case) {
  padding-bottom: 5rem;
}

.case-metrics__stats li span {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-metrics {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 31, 60, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.case-metrics__head {
  margin-bottom: 1rem;
}

.case-metrics__period {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

.case-metrics__intro {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.case-metrics__callout {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid #1c7a43;
  background: rgba(34, 160, 84, 0.08);
}

.case-metrics__callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}

.case-metrics__callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.case-metrics__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .case-metrics__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.case-metrics__stats li {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 31, 60, 0.04);
  text-align: center;
}

.case-metrics__stats strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
  font-family: var(--font-display, inherit);
}

.case-metrics__stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--ink-muted);
}

.case-metrics__table-wrap {
  overflow-x: auto;
  margin-bottom: 0.75rem;
}

.case-metrics__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.case-metrics__table th,
.case-metrics__table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid rgba(10, 31, 60, 0.08);
}

.case-metrics__table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.case-metrics__table td:last-child,
.case-metrics__table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.case-metrics__note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.case-metrics--gbp {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(34, 160, 84, 0.22);
}

.case-metrics--secondary {
  margin-top: 1.25rem;
  background: rgba(10, 31, 60, 0.03);
}

.case-metrics__subhead {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.case-metrics__breakdown {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.case-metrics__breakdown li {
  font-size: 0.92rem;
  line-height: 1.45;
}

.case-metrics__breakdown strong {
  font-variant-numeric: tabular-nums;
}

.lp-case__quote {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid #1c7a43;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(34, 160, 84, 0.08);
}

.lp-case__quote p {
  margin: 0;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.lp-case__lead {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.lp-case__result-num {
  color: #1c7a43;
  font-weight: 700;
}

.lp-case__content p,
.lp-case__body p {
  color: var(--ink-70);
  margin: 0 0 1rem;
}

.lp-case__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.lp-case__list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: start;
  font-size: clamp(0.9rem, 2.6vw, 0.95rem);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
}

@media (min-width: 640px) {
  .lp-case__list li {
    grid-template-columns: 5rem 1fr;
    gap: 0.5rem 0.65rem;
  }
}

@media (min-width: 900px) {
  .lp-case__list li {
    grid-template-columns: 5rem 1fr;
    padding: 0.65rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}

.lp-case__list strong {
  flex-shrink: 0;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-case__list span {
  color: var(--ink-70);
  line-height: 1.5;
}

.lp-case__site {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.lp-case__site a {
  color: #1a73e8;
  font-weight: 500;
  text-decoration: none;
}

.lp-case__site a:hover {
  text-decoration: underline;
}

.lp-case__proof {
  margin: 0 0 1.25rem;
  width: 100%;
  max-width: min(100%, 17.5rem);
}

@media (min-width: 480px) {
  .lp-case__proof { max-width: 15rem; }
}

.lp-case__proof img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}

.lp-case__proof figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-70);
}

.lp-case__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.lp-case__actions .btn {
  width: 100%;
  justify-content: center;
  margin: 0;
}

@media (min-width: 540px) {
  .lp-case__actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }

  .lp-case__actions .btn {
    width: auto;
  }
}

/* ---- Testimonial cards ---- */
.testimonials-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: var(--white);
}
.testimonial__stars {
  color: var(--star-gold);
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.testimonial-card__quote {
  margin: 0;
  flex: 1;
}
.testimonial-card__quote p {
  margin: 0;
  color: var(--ink);
  line-height: 1.62;
  font-size: 0.95rem;
}
.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.testimonial-card__avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(10, 31, 60, 0.1);
}
.testimonial-card__meta strong {
  display: block;
  font-size: 0.92rem;
}
.testimonial-card__meta span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---- Email fallback links ---- */
.hero__email-link,
.final-cta__email {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.hero__email-link:hover,
.final-cta__email:hover { color: var(--accent); }
.hero--home .hero__ctas .hero__email-link {
  flex: 0 0 100%;
  margin-top: 0.15rem;
}
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

/* ---- AI demo widget ---- */
.ai-demo__shell {
  max-width: 40rem;
  margin-inline: auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.ai-demo__messages {
  min-height: 8rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
}
.ai-demo__msg {
  max-width: 90%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.ai-demo__msg--bot {
  background: var(--white);
  border: 1px solid var(--hairline);
}
.ai-demo__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem;
  border-top: 1px solid var(--hairline);
}
.ai-demo__form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--hairline);
  border-radius: 0.55rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
}
.ai-demo__form input:disabled { opacity: 0.65; cursor: not-allowed; }
.ai-demo__note {
  padding: 0 0.85rem 0.85rem;
  margin: 0;
  font-size: 0.78rem;
}

/* ---- Insights articles ---- */
.insight-article { max-width: 46rem; }
.insight-article__date { margin-bottom: 1.25rem; }
.insight-article__body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.insight-article__body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.insight-article__body p,
.insight-article__body ul,
.insight-article__body ol {
  color: var(--muted);
  line-height: 1.65;
}
.insight-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
}
.insight-table th,
.insight-table td {
  border: 1px solid var(--hairline);
  padding: 0.55rem 0.65rem;
  text-align: left;
}
.insight-table th { background: var(--cream); }

/* ---- Guides hub quick links ---- */
.guide-hub-quick {
  max-width: var(--content-read);
  margin: 0 auto;
  text-align: center;
}
.guide-hub-quick__label {
  margin-bottom: var(--space-sm);
}
.guide-hub-quick__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2xs) var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-hub-quick__list a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* ---- Guide articles (Tier 1 SEO content) ---- */
.guide-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  scroll-margin-top: 5.5rem;
}
.guide-article h2:first-child {
  margin-top: 0;
}
.guide-article p {
  color: var(--muted);
  line-height: 1.65;
}
.guide-short-answer {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.guide-short-answer strong {
  color: var(--ink);
}

.guide-map-panel {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .guide-map-panel {
    grid-template-columns: 1fr minmax(16rem, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 3rem);
  }
}
.guide-map-panel__checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
}
.guide-map-panel__checks li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
}
.guide-map-panel__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}
.guide-map-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.guide-map-panel .map-embed {
  margin-top: 0;
}
.map-embed--inline iframe {
  height: clamp(16rem, 38vw, 22rem);
}

/* ---- Card body wrapper (service hub) ---- */
.card--cartoon .card__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.card--cartoon .card__body h3,
.card--cartoon .card__body p {
  padding: 0;
}

.card--cartoon .card__body h3 {
  margin-top: 0;
}

.card--cartoon .card__body p {
  padding-bottom: 0;
}

/* ---- Page hero with media ---- */
.hero--page-media .hero__grid {
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 900px) {
  .hero--page-media .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 38%);
  }
}

.hero--page-media .hero__photo--render {
  width: min(100%, 18rem);
  max-width: var(--render-max-split);
  justify-self: center;
}

.hero--page-media .hero__photo--render img {
  object-position: center;
  padding: var(--render-pad);
  max-height: clamp(10rem, 30vw, 13.5rem);
}

.hero--home .hero__photo--portrait {
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: auto;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  line-height: 0;
  background: transparent;
}

.hero--home .hero__photo--portrait picture {
  display: block;
  line-height: 0;
}

.hero--home .hero__photo--portrait picture,
.hero--home .hero__photo--portrait img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1024 / 571;
  object-fit: cover;
  object-position: center;
}

.hero--home .hero__photo--render {
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: auto;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  contain: inline-size;
}

.hero--home .hero__photo--render img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  display: block;
}

.hero--home .hero__photo--render::before,
.hero--home .hero__photo--render::after {
  display: none;
}

/* Package pricing cards */
.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius, 1rem);
  box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.18);
}

.package-card--featured {
  border-color: var(--accent, #1a73e8);
  box-shadow: 0 20px 50px -24px rgba(26, 115, 232, 0.28);
}

.package-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 0.85rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent, #1a73e8);
  background: rgba(26, 115, 232, 0.08);
  border-radius: 999px;
}

.package-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.package-card__price {
  margin: 0;
  line-height: 1.1;
}

.package-card__amount {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.package-card__period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.package-card__note {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.package-card__follow-on {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent, #1a73e8);
}

.package-card__blurb {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.package-card__features {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.package-card__features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.package-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent, #1a73e8);
}

.package-card__cta {
  align-self: flex-start;
  margin-top: auto;
}

/* Launch → Growth funnel */
.launch-funnel {
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 640px) {
  .launch-funnel {
    padding: clamp(1.35rem, 2.5vw, 2rem);
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius, 1rem);
    box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.2);
  }
}

.launch-funnel__steps {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .launch-funnel__steps {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.launch-funnel__step {
  padding: 1.15rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius, 1rem);
  box-shadow: 0 10px 28px -22px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .launch-funnel__step {
    padding: clamp(1.2rem, 2.5vw, 1.5rem);
    background: var(--surface-2, #f8f9fa);
    box-shadow: none;
    border-radius: calc(var(--radius, 1rem) - 0.15rem);
  }
}

.launch-funnel__step--primary {
  border-color: rgba(26, 115, 232, 0.35);
  box-shadow:
    0 10px 28px -22px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(26, 115, 232, 0.08);
}

@media (min-width: 640px) {
  .launch-funnel__step--primary {
    box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.08);
  }
}

.launch-funnel__connector {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding-block: 0.15rem;
  color: var(--muted);
}

.launch-funnel__arrow svg {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .launch-funnel__connector {
    flex-direction: column;
    padding-top: 2.75rem;
    padding-block: 0;
  }

  .launch-funnel__arrow svg {
    transform: none;
  }
}

.launch-funnel__connector-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-funnel__label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #1a73e8);
}

.launch-funnel__price {
  margin: 0;
  line-height: 1.1;
}

.launch-funnel__amount {
  font-size: clamp(1.85rem, 6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.launch-funnel__period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.launch-funnel__tag {
  margin: 0.4rem 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

.launch-funnel__features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-funnel__features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.launch-funnel__features li:last-child {
  margin-bottom: 0;
}

.launch-funnel__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent, #1a73e8);
}

.launch-funnel__foot {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

@media (min-width: 640px) {
  .launch-funnel__foot {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
  }
}

.launch-funnel__note {
  max-width: 38rem;
  margin: 0 auto 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

@media (min-width: 560px) {
  .launch-funnel__note {
    text-align: center;
  }
}

.launch-funnel__foot .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .launch-funnel__foot .btn {
    width: auto;
  }
}

/* Homepage price band */
.lp-price-band {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius, 1rem);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
  .lp-price-band {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 1.5rem 2rem;
    padding: 1.5rem 1.75rem;
  }
}

.lp-price-band h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

.lp-price-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lp-price-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lp-price-band__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .lp-price-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lp-price-band__actions .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .lp-price-band__actions {
    flex-direction: column;
    min-width: 13.5rem;
  }

  .lp-price-band__actions .btn {
    width: 100%;
  }
}
