/* ==========================================================================
   Stop Not Digital — Design System
   Tokens derived from the brand's Stitch design reference (Kinetic Performance
   Red palette): primary red #b70100 / #e60000, crimson glow accent #FF2B2B,
   dark slate #020617, Plus Jakarta Sans for display/headings, Inter for body.
   Hand-written, dependency-free CSS (no build step, no CDN framework) so the
   site has zero third-party runtime dependency and stays fast by default.
   ========================================================================== */

:root {
  --primary: #b70100;
  --primary-container: #e60000;
  --primary-hover: #930100;
  --crimson-glow: #ff2b2b;
  --on-primary: #ffffff;

  --ink: #0b0c10;
  --ink-soft: #3a4a5c;
  --ink-muted: #5f6b7a;
  --dark-slate: #020617;
  --noir: #07070a;

  --surface: #f8f9ff;
  --surface-alt: #f1f5f9;
  --surface-card: #ffffff;
  --surface-dark: #0b1220;
  --surface-dark-card: #121a2b;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --success: #10b981;
  --error: #ba1a1a;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(11, 28, 48, 0.06);
  --shadow-md: 0 12px 32px -8px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 28px -6px rgba(230, 0, 0, 0.35);
  --shadow-glow-lg: 0 20px 60px -12px rgba(230, 0, 0, 0.45);

  --container: 1200px;
  --gutter: 1.5rem;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--dark { background: var(--surface-dark); color: #eaf1ff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #ffffff; }
.section--dark p { color: #b7c3d9; }
.section--alt { background: var(--surface-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-container);
  background: rgba(230, 0, 0, 0.08);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: 1em;
}
.section--dark .eyebrow { background: rgba(255, 43, 43, 0.15); color: #ff8a80; }

h1.display, .h1-display {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}
.h1-display em, .h1-display .accent {
  font-style: normal;
  color: var(--crimson-glow);
  -webkit-text-stroke: 0;
}
.section--dark .h1-display, .hero .h1-display { text-shadow: 0 0 60px rgba(230, 0, 0, 0.25); }
.hero.section--tight .h1-display { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95em 1.8em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, gap 0.15s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn::after { content: "\2192"; transition: transform 0.15s ease; }
.btn-primary {
  background: var(--primary-container);
  color: var(--on-primary);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--crimson-glow); transform: translateY(-1px); gap: 0.85em; box-shadow: var(--shadow-glow-lg); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-alt); gap: 0.85em; }
.section--dark .btn-secondary, .hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); }
.section--dark .btn-secondary:hover, .hero .btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.85rem; }
.btn-sm::after { display: none; }

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--noir);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 38px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--crimson-glow); }
.topbar__links { display: none; align-items: center; gap: 1.25rem; }
.topbar__contact { display: none; align-items: center; gap: 1.25rem; }
.topbar__social { display: flex; align-items: center; gap: 0.6rem; }
.topbar__social a {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800;
}
.topbar__social a:hover { background: var(--primary-container); color: #fff; }
@media (min-width: 720px) {
  .topbar__links { display: flex; }
  .topbar__contact { display: flex; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--primary-container);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand img { height: 34px; width: auto; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; text-transform: uppercase; white-space: nowrap; }
.brand__name span { color: var(--primary-container); background: rgba(230,0,0,0.1); padding: 0 0.2em; border-radius: 4px; }
.brand__tag { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 700; white-space: nowrap; }

.main-nav { display: none; align-items: center; gap: 0.25rem; }
.main-nav__item { position: relative; }
.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.6em 0.9em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.main-nav__link:hover { background: var(--surface-alt); color: var(--ink); }

.mega-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  min-width: 560px;
  max-width: 720px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
/* Invisible bridge so the pointer never leaves a hoverable area while
   moving from the nav link down into the menu (this is what was causing
   the menu to close before you could reach it). */
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -10px; height: 10px;
}
.main-nav__item:hover .mega-menu,
.main-nav__item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 1.5rem; }
.mega-menu__col-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); font-weight: 700; margin: 0.75rem 0 0.4rem; }
.mega-menu a.mega-menu__link {
  display: block;
  padding: 0.35em 0.5em;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.mega-menu a.mega-menu__link:hover { background: var(--surface-alt); color: var(--primary); }
.mega-menu__footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-actions .btn-primary { display: none; }
.header-phone { display: none; align-items: center; gap: 0.4em; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.header-phone .material-icon { color: var(--primary-container); }
@media (min-width: 640px) {
  .header-actions .btn-primary { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: transparent;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav { display: none; flex-direction: column; background: var(--surface-card); border-top: 1px solid var(--border); padding: 1rem var(--gutter) 1.5rem; }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 0.75em 0.25em; border-bottom: 1px solid var(--border); font-weight: 600; }
.mobile-nav details summary { padding: 0.75em 0.25em; border-bottom: 1px solid var(--border); font-weight: 600; cursor: pointer; }
.mobile-nav details[open] summary { border-bottom: 1px solid transparent; }
.mobile-nav details .mobile-sub { padding-left: 1rem; padding-bottom: 0.5em; display: flex; flex-direction: column; }
.mobile-nav details .mobile-sub a { border-bottom: none; padding: 0.5em 0.25em; font-weight: 500; color: var(--ink-soft); }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 15% 0%, rgba(230,0,0,0.35), transparent 60%),
              radial-gradient(ellipse 55% 60% at 100% 30%, rgba(255,43,43,0.22), transparent 55%),
              var(--noir);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
}
.hero.section--tight { padding: 3rem 0 3.25rem; }
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { background: rgba(255,43,43,0.16); color: #ff8a80; }
.hero .lead { color: #c4cede; }
.hero__tagline {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--crimson-glow); font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  margin: 0.6em 0 1em;
}
.hero h1, .hero h2, .hero h3, .hero .h1-display { color: #fff; }
.hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.hero__badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.4em;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5em 0.9em; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600; color: #dbe2ee;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__form-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(255,43,43,0.35);
  padding: 1.75rem;
  box-shadow: var(--shadow-glow-lg);
  color: var(--ink);
}
.hero__form-title { font-size: 1.15rem; margin: 0.6rem 0 1.1rem; color: var(--ink); }
.hero__form-card .field { margin-bottom: 0.9rem; }
.hero__form-card .form-grid--2col { display: grid; gap: 0.9rem; grid-template-columns: 1fr; margin-bottom: 0; }
@media (min-width: 480px) { .hero__form-card .form-grid--2col { grid-template-columns: 1fr 1fr; } }
.hero__form-card textarea { min-height: 4.5rem; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--primary-container);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 0;
}
.marquee__track { display: flex; width: max-content; gap: 3rem; animation: marquee 32s linear infinite; }
.marquee__track span {
  display: flex; align-items: center; gap: 3rem;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 1.05rem; color: #fff; white-space: nowrap;
}
.marquee__track span em { font-style: normal; color: var(--noir); opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Stats band (real coverage numbers, no invented performance claims) ---------- */
.stats-band { background: var(--noir); color: #fff; padding: 3.5rem 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 720px) { .stats-band__grid { grid-template-columns: repeat(4, 1fr); } }
.stats-band__item strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem); color: var(--crimson-glow);
}
.stats-band__item span { font-size: 0.85rem; color: #9fabc0; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ---------- About intro (8 years band) ---------- */
.about-intro__grid { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 800px) { .about-intro__grid { grid-template-columns: 220px 1fr; } }
.about-intro__badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.4rem; width: 200px; height: 200px; margin-inline: auto;
  border-radius: 50%; background: linear-gradient(160deg, var(--primary), var(--primary-container));
  box-shadow: var(--shadow-glow-lg); color: #fff;
}
.about-intro__num { font-family: var(--font-display); font-weight: 800; font-size: 4rem; line-height: 1; }
.about-intro__label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; max-width: 140px; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
/* Cards rendered as <a> (whole-card clickable) rather than <div> */
a.card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
a.card:hover { border-color: var(--primary-container); }
a.card .card__link { margin-top: auto; padding-top: 1rem; }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(230, 0, 0, 0.08); color: var(--primary-container);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.card__icon svg { width: 24px; height: 24px; }
.service-card:hover .card__icon { background: var(--primary-container); color: #fff; }
.card__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.3em; margin-top: 1rem; font-weight: 700; color: var(--primary-container); font-size: 0.88rem; }

.card--flat {
  background: var(--surface-alt);
  border: none;
  box-shadow: none;
}

/* Numbered service cards (01, 02, 03…) */
.services-grid { counter-reset: svc; }
.service-card { position: relative; overflow: hidden; counter-increment: svc; border-width: 1.5px; }
.service-card::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute; top: 0.25rem; right: 1.1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1;
  color: rgba(230, 0, 0, 0.07);
  transition: color 0.15s ease;
}
.service-card:hover::before { color: rgba(230, 0, 0, 0.16); }
.service-card:hover { border-color: var(--primary-container); box-shadow: var(--shadow-glow); transform: translateY(-4px); }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-alt); border: 1px solid var(--border);
  padding: 0.35em 0.8em; border-radius: var(--radius-full);
}
a.tag:hover { color: var(--primary); border-color: var(--primary-container); }

/* ---------- Process ("How We Work") ---------- */
.process-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(1, 1fr); counter-reset: step; position: relative; }
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(6, 1fr); } }
.how-we-work .process-grid::before {
  content: ""; position: absolute; top: 2.4rem; left: 4%; right: 4%; height: 2px;
  background-image: linear-gradient(to right, var(--border-strong) 60%, transparent 0%);
  background-size: 14px 2px; background-repeat: repeat-x;
  z-index: 0;
}
@media (max-width: 1023px) { .how-we-work .process-grid::before { display: none; } }
.process-step {
  counter-increment: step; position: relative; z-index: 1; text-align: center; overflow: hidden;
  background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: var(--primary-container); }
.process-step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0.35rem; right: 0.9rem;
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: rgba(230, 0, 0, 0.07); z-index: -1;
}
.process-step__icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: linear-gradient(160deg, var(--primary), var(--primary-container));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
}
.process-step__icon svg { width: 26px; height: 26px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Funnel / flow diagram (conceptual, never data-based) ---------- */
.funnel-graphic { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin: 1.5rem 0; }
.funnel-graphic__stage { flex: 1 1 150px; max-width: 200px; text-align: center; background: var(--surface-alt); border-radius: var(--radius-md); padding: 1.5rem 1rem; }
.funnel-graphic__icon { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 0.75rem; background: rgba(230,0,0,0.1); color: var(--primary-container); display: flex; align-items: center; justify-content: center; }
.funnel-graphic__icon svg { width: 22px; height: 22px; }
.funnel-graphic__stage h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.funnel-graphic__stage p { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }
.funnel-graphic__arrow { font-size: 1.4rem; font-weight: 800; color: var(--primary-container); flex: 0 0 auto; }
@media (max-width: 640px) { .funnel-graphic__arrow { transform: rotate(90deg); } }

/* ---------- Slider (industries / related content) ---------- */
.slider {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.25rem 0.5rem 1rem;
  scrollbar-width: thin;
}
.slider > * { scroll-snap-align: start; flex: 0 0 270px; }
.slider::-webkit-scrollbar { height: 8px; }
.slider::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; }
.slider::-webkit-scrollbar-track { background: transparent; }

/* ---------- Lead magnet band ---------- */
.lead-magnet {
  background: linear-gradient(135deg, var(--noir), #1f0505);
  border: 1px solid rgba(230,0,0,0.35);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
  color: #fff;
}
.lead-magnet h3 { color: #fff; margin-bottom: 0.35rem; font-size: 1.3rem; }
.lead-magnet p { color: #c4cede; margin-bottom: 0; max-width: 520px; }
.lead-magnet .btn-primary { flex-shrink: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 1rem 0 0; font-size: 0.85rem; color: var(--ink-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--border-strong); }
.breadcrumbs a { color: var(--ink-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs li:last-child { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.4rem;
  font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--primary-container); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); }

/* ---------- CTA sections ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-container) 60%, var(--crimson-glow));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-glow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 40%, transparent 90%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; text-transform: uppercase; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 640px; margin-inline: auto; }
.cta-banner .btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.2); }
.cta-banner .btn-primary { background: #fff; color: var(--primary); box-shadow: none; }
.cta-banner .btn-primary:hover { background: #fff5f5; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .form-grid--2col { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.8em 1em; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary-container); box-shadow: 0 0 0 3px rgba(230,0,0,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-note { font-size: 0.78rem; color: var(--ink-muted); }
.form-status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.9rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--success { background: rgba(16,185,129,0.1); color: #067a5a; border: 1px solid rgba(16,185,129,0.3); }
.form-status--error { background: rgba(186,26,26,0.08); color: var(--error); border: 1px solid rgba(186,26,26,0.25); }

/* ---------- Placeholder blocks (portfolio / case studies / testimonials) --- */
.placeholder-block {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  color: var(--ink-muted);
  background: var(--surface-alt);
}
.placeholder-block h3 { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--noir); color: #b7c3d9; padding: 3.5rem 0 1.5rem; border-top: 3px solid var(--primary-container); }
.site-footer h4 { position: relative; padding-bottom: 0.6rem; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--primary-container); }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: #93a2ba; font-size: 0.9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: #6b7a91;
}
.footer-bottom a { color: #93a2ba; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.7rem; transition: background 0.15s ease, transform 0.15s ease; }
.footer-social a:hover { background: var(--primary-container); transform: translateY(-2px); }

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--surface-card); border-top: 1px solid var(--border);
  padding: 0.7rem var(--gutter); display: flex; gap: 0.6rem; box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-cta-bar .btn { flex: 1; }
@media (min-width: 1024px) { .sticky-cta-bar { display: none; } }
body { padding-bottom: 72px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ---------- Motion / scroll reveal ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow, .hero .h1-display, .hero .lead, .hero .hero__cta-row, .hero .hero__badge-row {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .h1-display { animation-delay: 0.08s; }
.hero .lead { animation-delay: 0.16s; }
.hero .hero__cta-row { animation-delay: 0.24s; }
.hero .hero__badge-row { animation-delay: 0.32s; }
.hero__form-card { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.2s; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero .h1-display, .hero .lead, .hero .hero__cta-row, .hero .hero__badge-row, .hero__form-card,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track { animation: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-content { max-width: 760px; }
.mt-0 { margin-top: 0; }
.section-head { max-width: 680px; margin-bottom: 2.75rem; }
.section-head.text-center { margin-inline: auto; }
.divider { height: 1px; background: var(--border); border: none; margin: 3rem 0; }
.two-col { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col--wide-left { grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col--wide-left { grid-template-columns: 1.6fr 1fr; } }
.list-check { display: flex; flex-direction: column; gap: 0.75rem; }
.list-check li { display: flex; gap: 0.7em; align-items: flex-start; color: var(--ink-soft); }
.list-check li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,0.12); color: var(--success); font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 0.15em;
}
.list-x li::before { content: "✕"; background: rgba(186,26,26,0.1); color: var(--error); }
.pill-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-nav a { padding: 0.5em 1em; border-radius: var(--radius-full); border: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.pill-nav a:hover, .pill-nav a.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Industry filter/search ---------- */
.industry-filter { margin-bottom: 2.25rem; display: flex; flex-direction: column; gap: 1.1rem; }
.industry-filter__search input {
  width: 100%; font: inherit; padding: 0.9em 1.1em; border-radius: var(--radius-full);
  border: 1.5px solid var(--border-strong); background: #fff; color: var(--ink);
}
.industry-filter__search input:focus { outline: none; border-color: var(--primary-container); box-shadow: 0 0 0 3px rgba(230,0,0,0.12); }
.industry-filter__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-filter {
  font: inherit; font-size: 0.85rem; font-weight: 700; padding: 0.5em 1.1em; border-radius: var(--radius-full);
  border: 1.5px solid var(--border-strong); background: #fff; color: var(--ink-soft); transition: all 0.15s ease;
}
.pill-filter:hover { border-color: var(--primary-container); color: var(--primary-container); }
.pill-filter.is-active { background: var(--primary-container); color: #fff; border-color: var(--primary-container); }
.filterable-item { transition: opacity 0.15s ease; }
.filterable-item[hidden] { display: none; }

/* ---------- Blog filter bar (extends the industry filter pattern) ---------- */
.blog-filter__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .blog-filter__row { grid-template-columns: repeat(2, 1fr); } }
.blog-filter__row .field label { font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.35rem; display: block; }
.blog-filter__row select {
  width: 100%; font: inherit; padding: 0.75em 1em; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong); background: #fff; color: var(--ink);
}
.blog-filter__tags { align-items: center; padding-top: 0.25rem; border-top: 1px dashed var(--border); margin-top: 0.25rem; }
.blog-filter__tags-label { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); margin-right: 0.25rem; }
.pill-filter--tag { font-size: 0.78rem; font-weight: 600; padding: 0.4em 0.9em; text-transform: capitalize; }
.pill-filter--tag.is-active { background: var(--noir); border-color: var(--noir); }

/* ---------- Blog cover art (generated, never stock photography) ---------- */
.blog-cover {
  position: relative; overflow: hidden; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(var(--cover-angle, 135deg), var(--noir), var(--primary) 65%, var(--crimson-glow));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.blog-cover::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 22% 25%, rgba(255,255,255,0.16), transparent 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}
.blog-cover__icon { position: relative; width: 25%; max-width: 64px; color: rgba(255,255,255,0.92); }
.blog-cover__icon svg { width: 100%; height: 100%; }
.blog-cover__tag {
  position: absolute; bottom: 0.75rem; left: 0.9rem; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.38);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
}
.blog-cover--lg { aspect-ratio: 21 / 9; border-radius: var(--radius-md); margin-bottom: 2rem; }
.blog-cover--lg .blog-cover__icon { max-width: 84px; }

.blog-card { display: flex; flex-direction: column; height: 100%; border-radius: var(--radius-md); overflow: hidden; background: var(--surface-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: 0.78rem; font-weight: 700; color: var(--primary-container); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.6rem; }
.blog-card__body .card__link { margin-top: auto; padding-top: 1rem; }

/* ---------- Article layout (post body + recommended-reading sidebar) ---------- */
.article-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .article-layout { grid-template-columns: minmax(0, 1fr) 300px; } }
.article-body { max-width: 72ch; }
.article-body h2 { margin-top: 2.2rem; margin-bottom: 0.85rem; font-size: 1.4rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--primary-container); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(230,0,0,0.35); }
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 1.5rem; }
.blog-sidebar__widget { background: var(--surface-alt); border-radius: var(--radius-md); padding: 1.5rem; }
.blog-sidebar__widget h4 { font-size: 0.95rem; margin-bottom: 1rem; }
.blog-sidebar__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.blog-sidebar__list a { display: flex; flex-direction: column; gap: 0.25rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.blog-sidebar__list a:hover { color: var(--primary-container); }
.blog-sidebar__tag { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--primary-container); }
.blog-sidebar__widget--cta { background: var(--noir); color: #fff; }
.blog-sidebar__widget--cta p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0.5rem 0 1.1rem; }
.blog-sidebar__widget--cta h4 { color: #fff; margin-top: 0.4rem; }

.stat-row { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-row div strong { font-family: var(--font-display); font-size: 1.6rem; display: block; color: var(--ink); }
.stat-row div span { font-size: 0.85rem; color: var(--ink-muted); }

.article-body h2 { margin-top: 2rem; font-size: 1.4rem; }
.article-body p { color: var(--ink-soft); }
.article-body ul { margin: 1rem 0 1.5rem 1.25rem; }
.article-body li { color: var(--ink-soft); margin-bottom: 0.5rem; list-style: disc; }
.article-body a { color: var(--primary); font-weight: 600; text-decoration: underline; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--primary-container); color: #fff;
  padding: 0.75em 1.2em; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
