/* Optiv Partners — WebFX-inspired layout, Optiv brand colors */

:root {
  --cream: #f8f4ec;
  --cream-2: #f3ede2;
  --white: #ffffff;
  --ink: #14333b;
  --ink2: #2c4e57;
  --grey: #5c6b6e;
  --mist: #e4ebea;
  --orange: #f76b1c;
  --ember: #d9550e;
  --peach: #fde4d2;
  --line: rgba(20, 51, 59, 0.1);
  --shadow: 0 10px 30px rgba(20, 51, 59, 0.1);
  --shadow-lg: 0 18px 50px rgba(20, 51, 59, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --nav-h: 84px;
  --utility-h: 42px;
  --font-display: "Baloo 2", cursive;
  --font-body: "Figtree", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 0.65em;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--grey);
}

em {
  font-style: normal;
  color: var(--orange);
}

strong {
  font-weight: 700;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.eyebrow.light {
  color: var(--peach);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

.btn-block {
  width: 100%;
}

.btn-accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(247, 107, 28, 0.28);
}

.btn-accent:hover {
  background: var(--ember);
  color: #fff;
  transform: translateY(-1px);
}

a.btn-accent,
a.btn-accent:hover,
a.btn-accent:visited {
  color: #fff;
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--ink2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(20, 51, 59, 0.22);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline.dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.text-link {
  color: var(--orange);
  font-weight: 700;
}

.text-link:hover {
  color: var(--ember);
}

/* Utility bar */
.utility-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  height: var(--utility-h);
  display: flex;
  align-items: center;
}

.ask-ai-bar {
  position: fixed;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 3.6rem;
  padding: 0.85rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 14px 36px rgba(20, 51, 59, 0.14);
  backdrop-filter: blur(10px);
}

.ask-ai-label {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.ask-ai-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.ask-ai-btn {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 51, 59, 0.08);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ask-ai-btn:hover,
.ask-ai-btn:focus-visible {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(247, 107, 28, 0.45);
  box-shadow: 0 8px 18px rgba(20, 51, 59, 0.12);
  outline: none;
}

.ask-ai-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .ask-ai-bar {
    right: 0.55rem;
    top: auto;
    bottom: 5.5rem;
    transform: none;
    width: auto;
    max-width: calc(100vw - 1.1rem);
    flex-direction: row;
    padding: 0.45rem 0.55rem;
    gap: 0.45rem;
    border-radius: 999px;
  }

  .ask-ai-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding: 0 0.2rem;
  }

  .ask-ai-links {
    flex-direction: row;
    gap: 0.35rem;
  }

  .ask-ai-btn {
    width: 2.15rem;
    height: 2.15rem;
  }
}

@media (max-width: 480px) {
  .ask-ai-bar {
    right: 0.4rem;
    left: 0.4rem;
    bottom: 4.75rem;
    justify-content: center;
    max-width: none;
    width: auto;
  }

  .ask-ai-label {
    display: none;
  }

  .ask-ai-btn {
    width: 2.35rem;
    height: 2.35rem;
  }
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
}

@media (max-width: 639px) {
  .utility-bar {
    min-height: auto;
    padding: 0.55rem 0;
  }

  .utility-inner {
    align-items: flex-start;
  }

  .utility-metric {
    gap: 0.25rem 0.5rem;
    line-height: 1.35;
  }

  .utility-label {
    flex: 1 1 100%;
    font-size: 0.68rem;
  }

  .utility-value {
    font-size: 1rem;
  }

  .utility-sub {
    font-size: 0.75rem;
  }
}

.utility-metric {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  min-width: 0;
  max-width: 100%;
}

.utility-label {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.utility-value {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.utility-sub {
  color: var(--grey);
  min-width: 0;
}

.utility-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink2);
}

.utility-phone {
  color: var(--orange);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20, 51, 59, 0.06);
}

.header-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  display: block;
  width: auto;
  height: 3.35rem;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.logo--footer .logo-img,
.logo-img--footer {
  height: 3.75rem;
  max-width: min(240px, 62vw);
}

.spark {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-i {
  color: var(--orange);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--grey);
  margin-top: 0.15rem;
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--ink2);
  font-weight: 600;
  font-size: 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav a.nav-active {
  color: var(--orange);
}

/* WebFX / Optiv mega navigation */
.mega-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.mega-nav .nav-item {
  position: relative;
}

.mega-nav .nav-item > a,
.mega-nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.5rem 0.4rem;
  color: var(--ink2);
  font-weight: 600;
  font-size: 0.78rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.mega-nav .nav-trigger:hover,
.mega-nav .nav-item.is-open .nav-trigger,
.mega-nav .nav-item > a:hover,
.mega-nav .nav-item > a.nav-active {
  color: var(--orange);
}

.mega-nav .chev {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.mega-nav .nav-item.is-open .chev {
  transform: rotate(180deg);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-40%);
  min-width: min(520px, 70vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(20, 51, 59, 0.14);
  padding: 0.85rem;
  z-index: 60;
  animation: megaIn 0.18s ease;
}

@keyframes megaIn {
  from { opacity: 0; transform: translateX(-40%) translateY(6px); }
  to { opacity: 1; transform: translateX(-40%) translateY(0); }
}

.mega-panel.mega-panel-services {
  left: 0;
  transform: none;
  min-width: min(980px, 92vw);
  padding: 1rem 1rem 0.85rem;
}

.mega-panel.mega-panel-about {
  left: auto;
  right: 0;
  transform: none;
  min-width: min(720px, 92vw);
  padding: 1.25rem;
}

.mega-panel.mega-panel-compact {
  left: 0;
  right: auto;
  transform: none;
  min-width: min(320px, 90vw);
  max-width: 380px;
  padding: 0.65rem;
}

.mega-panel.mega-panel-about-compact {
  min-width: min(280px, 92vw);
  padding: 1rem;
}

.mega-compact-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.2rem !important;
}

.mega-about-grid-1 {
  grid-template-columns: 1fr !important;
}

.mega-about-grid-2 {
  grid-template-columns: 1fr 1fr !important;
}

.mega-panel[hidden] {
  display: none;
}

.mega-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.35rem 1rem;
}

.mega-service-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.mega-panel-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.mega-panel-footer a:not(.btn) {
  font-weight: 700;
  color: var(--ink2);
}

.mega-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.mega-about-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.mega-about-head h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.mega-col-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
}

.mega-about-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.mega-about-col a {
  color: var(--ink2);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-block;
  padding: 0.15rem 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.mega-about-col a:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.mega-link {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  color: var(--ink);
}

.mega-link:hover {
  background: var(--peach);
}

.mega-link strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.mega-link span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.35;
}

.mobile-group {
  border-bottom: 1px solid var(--line);
}

.mobile-group summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.85rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary::after {
  content: "▾";
  font-size: 0.75rem;
  color: var(--grey);
}

.mobile-group[open] summary::after {
  transform: rotate(180deg);
}

.mobile-group-links {
  display: grid;
  gap: 0.15rem;
  padding: 0 0 0.85rem;
}

.mobile-group-links a {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  padding: 0.55rem 0.2rem !important;
  border-bottom: 0 !important;
  color: var(--ink2) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-cta {
  display: none;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
}

.menu-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: calc(var(--utility-h) + var(--nav-h)) 0 0;
  background: rgba(248, 244, 236, 0.98);
  z-index: 40;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
}

.mobile-menu nav {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(247, 107, 28, 0.14), transparent 48%),
    radial-gradient(ellipse at 92% 18%, rgba(20, 51, 59, 0.05), transparent 40%),
    linear-gradient(180deg, #fffaf4 0%, var(--white) 58%, var(--white) 100%);
}

.hero-glow {
  position: absolute;
  inset: 12% 10% auto;
  height: 18rem;
  background:
    radial-gradient(ellipse at center, rgba(247, 107, 28, 0.12), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  animation: heroGlow 7s ease-in-out infinite alternate;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 54rem;
  margin: 0 auto;
}

.brand-signal {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.brand-signal::after {
  content: "";
  display: block;
  width: 3.4rem;
  height: 4px;
  margin: 0.55rem auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(2.15rem, 5.4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-accent {
  color: var(--orange);
}

.hero-sub {
  margin: 1.15rem auto 0;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  max-width: 38rem;
  color: var(--ink2);
  line-height: 1.65;
}

.mark {
  position: relative;
  display: inline-block;
  font-style: normal;
}

.mark::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.06em;
  height: 0.22em;
  background: rgba(247, 107, 28, 0.38);
  border-radius: 99px;
  transform: rotate(-1.5deg) scaleX(0.2);
  transform-origin: left center;
  z-index: -1;
  animation: markDraw 0.85s 0.35s ease forwards;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.35rem;
  margin: 1.65rem 0 0;
  max-width: 46rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(20, 51, 59, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-pill::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 107, 28, 0.16);
}

.hero-pill:hover {
  border-color: rgba(247, 107, 28, 0.45);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20, 51, 59, 0.08);
}

.hero-pill-arrow {
  width: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 51, 59, 0.18), rgba(247, 107, 28, 0.55));
  position: relative;
  flex: 0 0 auto;
}

.hero-pill-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(247, 107, 28, 0.7);
  border-top: 1.5px solid rgba(247, 107, 28, 0.7);
  transform: translateY(-50%) rotate(45deg);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-lg {
  padding: 1rem 1.45rem;
  font-size: 1rem;
}

.hero-trust {
  margin: 1rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust a {
  color: var(--ink2);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hero-trust a:hover {
  color: var(--orange);
}

.hero-proof {
  width: min(100%, 52rem);
  margin-top: 2.15rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 51, 59, 0.08);
}

.hero-proof-line {
  margin: 0 0 1.1rem;
  color: var(--ink2);
  font-size: 0.98rem;
}

.hero-proof-line strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-logo-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: hero-logo-scroll 32s linear infinite;
}

.hero-logo-marquee:hover .hero-logo-track {
  animation-play-state: paused;
}

.hero-logo-track img {
  flex: 0 0 auto;
  max-height: 2.45rem;
  max-width: 7rem;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) contrast(1.05);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.hero-logo-track img:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 640px) {
  .hero-pill-arrow {
    display: none;
  }

  .hero-pills {
    gap: 0.5rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-logo-track {
    gap: 1.75rem;
  }

  .hero-logo-track img {
    max-height: 2rem;
    max-width: 5.75rem;
  }
}

@keyframes markDraw {
  to { transform: rotate(-1.5deg) scaleX(1); }
}

@keyframes heroGlow {
  from { opacity: 0.55; transform: translateY(0); }
  to { opacity: 1; transform: translateY(8px); }
}

@keyframes hero-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Proof bar */
.proof-bar {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 2.4rem 0;
}

.proof-intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.6rem;
  color: var(--ink2);
  font-weight: 600;
}

.proof-grid {
  display: grid;
  gap: 1.25rem;
}

.proof-item {
  text-align: center;
  padding: 0.4rem 0.75rem;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}

.proof-item span {
  display: block;
  color: var(--grey);
  font-size: 0.9rem;
}

/* Industries */
.industries {
  padding: 1.1rem 0;
  background: var(--cream-2);
}

.industries-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.industries-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  color: var(--grey);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Sections shared */
.section-head {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: none;
}

.section-head.row > div {
  max-width: 720px;
}

/* Pain section */
.pain {
  padding: 5rem 0;
  background: var(--cream);
}

.pain-grid {
  display: grid;
  gap: 1rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}

.pain-x {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(20, 51, 59, 0.08);
  color: var(--grey);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.pain-closer {
  text-align: center;
  margin: 2rem auto 0;
  max-width: 36rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* Compare table */
.compare {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(247, 107, 28, 0.08), transparent 42%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.compare-board {
  display: grid;
  gap: 0.65rem;
  max-width: 920px;
  margin: 0 auto;
}

.compare-board-head,
.compare-board-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
}

.compare-board-head {
  position: sticky;
  top: calc(var(--nav-h) + 0.35rem);
  z-index: 2;
}

.compare-board-label,
.compare-board-optiv,
.compare-board-typical {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.compare-board-head .compare-board-label {
  background: transparent;
}

.compare-board-head .compare-board-optiv,
.compare-board-head .compare-board-typical {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
}

.compare-board-head .compare-board-optiv {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.compare-board-head .compare-board-typical {
  color: var(--ink2);
  background: var(--white);
  border: 1px solid var(--line);
}

.compare-board-row .compare-board-label {
  display: flex;
  align-items: center;
  color: var(--ink2);
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--line);
}

.compare-board-row .compare-board-optiv {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink);
  font-weight: 700;
  background: rgba(247, 107, 28, 0.08);
  border: 1px solid rgba(247, 107, 28, 0.22);
}

.compare-board-row .compare-board-typical {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey);
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.compare-yes {
  position: relative;
  padding-left: 1.25rem;
}

.compare-yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--cream-2);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.compare-table thead th:nth-child(2) {
  color: var(--orange);
  background: rgba(247, 107, 28, 0.08);
}

.compare-table tbody th {
  color: var(--ink2);
  font-weight: 700;
  width: 28%;
}

.compare-table tbody td:nth-child(2) {
  color: var(--ink);
  font-weight: 700;
  background: rgba(247, 107, 28, 0.04);
}

.compare-table tbody td:nth-child(3) {
  color: var(--grey);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .compare-board-head,
  .compare-board-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .compare-board-head {
    position: static;
  }

  .compare-board-head .compare-board-label {
    display: none;
  }

  .compare-board-row {
    padding: 0.85rem;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .compare-board-row .compare-board-label {
    border: 0;
    background: transparent;
    padding: 0 0 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey);
  }

  .compare-board-row .compare-board-optiv,
  .compare-board-row .compare-board-typical {
    justify-content: flex-start;
    text-align: left;
    padding: 0.75rem 0.9rem;
  }

  .compare-board-row .compare-board-typical::before {
    content: "Typical: ";
    font-weight: 800;
    color: var(--ink2);
  }
}

/* Services / stages */
.services {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at top, rgba(247, 107, 28, 0.07), transparent 40%),
    var(--white);
}

.engine-stages {
  display: grid;
  gap: 1rem;
}

.stage-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
}

.stage-tag {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.service-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.service-list li {
  display: grid;
  gap: 0.25rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--peach);
}

.service-list strong {
  color: var(--ink);
  font-size: 1rem;
}

.service-list span {
  color: var(--grey);
  font-size: 0.95rem;
}

.core-note {
  margin: 2rem auto 0;
  max-width: 820px;
  text-align: center;
  background: var(--peach);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  color: var(--ink2);
  font-size: 0.98rem;
}

.core-note strong {
  color: var(--ember);
}

/* Loop */
.loop {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse at 88% 8%, rgba(247, 107, 28, 0.12), transparent 36%),
    linear-gradient(180deg, var(--ink), #0f2a31);
  color: var(--white);
}

.loop .section-head h2,
.loop .section-head p {
  color: var(--white);
}

.loop .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.loop-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.loop-step {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.loop-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(247, 107, 28, 0.14);
  filter: blur(8px);
  pointer-events: none;
}

.loop-step:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 107, 28, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.loop-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.loop-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.55rem);
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.loop-step h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.3rem;
}

.loop-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  flex: 1;
}

.loop-time {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(247, 107, 28, 0.16);
  border: 1px solid rgba(247, 107, 28, 0.35);
  color: var(--peach);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Results */
.results {
  padding: 5rem 0;
  background: var(--white);
}

.results-grid {
  display: grid;
  gap: 1.1rem;
}

.result-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.result-card--data {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  padding: 1.25rem;
}

.result-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.result-status {
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(44, 120, 90, 0.12);
  color: #1f6b4f;
  font-size: 0.72rem;
  font-weight: 800;
}

.result-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.result-metric {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

.result-metric span {
  font-size: 1rem;
  color: var(--ink2);
  margin-left: 0.2rem;
}

.result-primary-copy {
  min-width: 0;
  flex: 1;
}

.result-channel {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.result-delta {
  margin: 0.2rem 0 0;
  color: var(--ink2);
  font-size: 0.88rem;
  font-weight: 600;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.result-stats > div {
  padding: 0.7rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.result-stats span {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.result-stats small {
  display: block;
  margin-top: 0.2rem;
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-card blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  color: var(--ink2);
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}

.result-card footer {
  display: grid;
  gap: 0.2rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.result-card footer strong {
  color: var(--ink);
}

.result-card footer span {
  color: var(--grey);
  font-size: 0.88rem;
}

.result-card footer .text-link {
  margin-top: 0.35rem;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.9rem;
}

.results-note {
  margin: 1.5rem auto 0;
  max-width: 46rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--grey);
}

.results-note a {
  color: var(--orange);
  font-weight: 800;
}

/* Client logo marquee (under FAQ) */
.client-logos {
  padding: 4.5rem 0 3.5rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.client-logo-marquee {
  margin-top: 1.75rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: max-content;
  animation: client-logo-scroll 42s linear infinite;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-card {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 16rem;
  min-height: 8.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(20, 51, 59, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.client-logo-card:hover {
  border-color: rgba(247, 107, 28, 0.35);
  box-shadow: var(--shadow);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes client-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
    flex-wrap: wrap;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    justify-content: center;
  }
  .client-logo-card[aria-hidden="true"] { display: none; }
}

/* Related case studies on service pages */
.related-studies {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.related-studies .results-grid {
  margin-top: 0.25rem;
}

.related-studies .results-note {
  margin-top: 1.35rem;
}

/* About */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-layout--home {
  align-items: center;
}

.about-copy p strong {
  color: var(--ink);
}

.about-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.35rem;
}

.about-home-links .text-link {
  color: var(--orange);
  font-weight: 800;
}

.about-home-aside {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.about-home-photo {
  margin: 0;
  width: min(100%, 22rem);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream-2);
}

.about-home-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-home-credit {
  margin: 0;
  color: var(--ink2);
  font-size: 0.95rem;
  line-height: 1.4;
}

.about-home-credit strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.about-chips span {
  background: var(--peach);
  color: var(--ember);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
}

.about-quote {
  background: var(--ink);
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.about-quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--white);
}

.quote-meta {
  margin: 0;
  color: var(--peach);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Insights */
.insights {
  display: none;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.2rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  padding: 1rem 0;
  position: relative;
  padding-right: 1.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0 0 1rem;
  padding-bottom: 0.4rem;
}

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(247, 107, 28, 0.22), transparent 45%),
    linear-gradient(160deg, var(--ink), #0f2a30 70%);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.final-benefits {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.final-benefits li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.final-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.final-form {
  background: var(--white);
  color: var(--ink);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
}

.final-form h3 {
  margin-bottom: 0;
}

.form-lead {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
}

.final-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink2);
}

.final-form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  padding: 0.85rem 0.95rem;
  outline: none;
  font-weight: 500;
  resize: vertical;
}

.final-form textarea:focus {
  border-color: rgba(247, 107, 28, 0.55);
  box-shadow: 0 0 0 3px rgba(247, 107, 28, 0.12);
  background: var(--white);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--grey);
  text-align: center;
}

.form-success {
  margin: 0;
  color: var(--ember);
  font-weight: 700;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0d2429;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.4rem;
}

.site-footer .logo-word {
  color: var(--white);
}

.site-footer .logo-sub {
  color: rgba(255, 255, 255, 0.55);
}

.footer-cta-strip {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-strip h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.footer-cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline.dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline.dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-hours {
  margin-top: 1rem !important;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-grid-mega {
  gap: 1.5rem 1.25rem;
}

.footer-resources ul {
  gap: 0.4rem;
}

.footer-locations {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-locations-label {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-locations-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer .footer-loc-col ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.site-footer .footer-loc-col ul li {
  display: inline;
}

.site-footer .footer-loc-col a {
  font-size: 0.88rem;
}

@media (min-width: 900px) {
  .footer-locations-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-social--inline {
  margin-top: 0;
  display: inline-flex;
  vertical-align: middle;
}

.footer-social .social-link,
.contact-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social .social-link img {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-social .social-link:hover {
  background: rgba(247, 107, 28, 0.22);
  border-color: rgba(247, 107, 28, 0.55);
  transform: translateY(-1px);
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.contact-social .social-link {
  border-color: rgba(20, 40, 45, 0.14);
  background: rgba(20, 40, 45, 0.04);
}

.contact-social .social-link img {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.contact-social .social-link:hover {
  border-color: rgba(247, 107, 28, 0.45);
  background: rgba(247, 107, 28, 0.08);
}

.contact-social--footer {
  margin-top: 1rem;
}

.contact-social--footer .social-link {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.contact-social--footer .social-link img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

@keyframes barRise {
  from {
    transform: scaleY(0.2);
    transform-origin: bottom;
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
}

@keyframes gridDrift {
  from {
    transform: perspective(600px) rotateX(58deg) scale(1.35) translateY(0);
  }
  to {
    transform: perspective(600px) rotateX(58deg) scale(1.4) translateY(-2%);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .utility-actions {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1100px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .footer-cta-strip {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }

  .footer-grid-mega {
    grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 4rem 0 4.25rem;
    min-height: calc(100vh - var(--utility-h) - var(--nav-h) - 7rem);
    display: flex;
    align-items: center;
  }

  .hero-layout {
    gap: 0;
  }

  .hero-pill-arrow {
    width: 1.45rem;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-item {
    border-right: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-right: 0;
  }

  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .engine-stages {
    grid-template-columns: repeat(3, 1fr);
  }

  .loop-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-layout {
    max-width: 760px;
  }

  .about-layout--home {
    max-width: none;
    grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.7fr);
    gap: 2.5rem;
  }

  .about-layout,
  .final-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-layout--home {
    grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.7fr);
  }

  .faq-layout {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-glow,
  .mark::after,
  .hero-logo-track {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mark::after {
    transform: rotate(-1.5deg) scaleX(1) !important;
  }

  .hero-logo-track {
    flex-wrap: wrap;
    width: min(100%, 52rem);
    margin-inline: auto;
    justify-content: center;
    gap: 1.5rem 1.75rem;
  }

  .hero-logo-track img[aria-hidden="true"] {
    display: none;
  }
}

/* ========== Inner / service pages ========== */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(247, 107, 28, 0.1), transparent 45%),
    linear-gradient(180deg, var(--cream), var(--white));
  border-bottom: 1px solid var(--line);
}

.page-kicker {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  max-width: 26ch;
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  max-width: 40rem;
  font-size: 1.1rem;
  color: var(--ink2);
  margin-bottom: 1.4rem;
}

.page-hero .lead strong {
  color: var(--ink);
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink2);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-pills li {
  position: relative;
  padding-left: 1.3rem;
}

.trust-pills li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.stat-trio {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stat-trio .item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--orange);
  font-weight: 800;
  line-height: 1.1;
}

.stat-trio .item span {
  display: block;
  margin-top: 0.3rem;
  color: var(--grey);
  font-size: 0.9rem;
}

.section-block {
  padding: 4.5rem 0;
}

.section-block.alt {
  background: var(--white);
}

.section-block.cream {
  background: var(--cream);
}

.prose-wide {
  max-width: 720px;
}

.prose-wide p {
  font-size: 1.05rem;
  color: var(--ink2);
}

.situations-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.situation-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.situation-card .eyebrow-sm {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.situation-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.deliverables-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.deliverable {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.deliverable h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.deliverable p {
  margin: 0;
  font-size: 0.94rem;
}

.process-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.3rem 4rem;
  position: relative;
}

.process-steps .num {
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--peach);
  line-height: 1;
}

.proof-band {
  padding: 4rem 0;
  background: var(--ink);
  color: var(--white);
}

.proof-band h2 {
  color: var(--white);
}

.proof-band p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.proof-metrics div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.proof-metrics strong {
  display: block;
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 1.35rem;
}

.proof-metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.page-cta {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(247, 107, 28, 0.2), transparent 45%),
    linear-gradient(160deg, var(--ink), #0f2a30);
  color: var(--white);
  text-align: center;
}

.page-cta h2 {
  color: var(--white);
}

.page-cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  margin-inline: auto;
}

.related-services {
  padding: 4rem 0;
  background: var(--cream);
}

.related-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.related-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}

.catalog-section {
  padding: 3.5rem 0 1rem;
}

.catalog-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--peach);
}

.catalog-grid {
  display: grid;
  gap: 0.85rem;
}

.catalog-card {
  display: grid;
  gap: 0.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.catalog-card:hover {
  border-color: rgba(247, 107, 28, 0.45);
  transform: translateY(-2px);
}

.catalog-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.catalog-card span {
  color: var(--grey);
  font-size: 0.92rem;
}

.catalog-card em {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.contact-page-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.2rem;
}

.contact-details .block strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.contact-details .block p,
.contact-details .block a {
  margin: 0;
  color: var(--ink2);
  font-weight: 600;
}

.next-steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.next-steps li {
  padding-left: 2rem;
  position: relative;
  color: var(--ink2);
}

.next-steps li::before {
  content: attr(data-n);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ember);
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}

.blog-filters .filter {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink2);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
}

.blog-filters .filter.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.blog-featured {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  color: inherit;
  text-decoration: none;
}

.blog-featured:hover h2 {
  color: var(--orange);
}

.blog-featured-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist);
}

.blog-featured-media img,
.blog-card-media img,
.related-media img,
.article-featured img,
.article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured-copy {
  padding: 1.5rem 1.4rem 1.6rem;
  display: grid;
  gap: 0.55rem;
}

.blog-featured-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
}

.blog-meta {
  color: var(--grey);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
}

.blog-grid {
  display: grid;
  gap: 1.15rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  display: grid;
}

.blog-card:hover h3 {
  color: var(--orange);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.blog-card-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: grid;
  gap: 0.4rem;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.blog-card .tag,
.blog-featured .tag,
.related-card .tag,
.article-hero .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
  position: static;
  background: transparent;
  padding: 0;
}

.nav-active {
  color: var(--orange) !important;
}

@media (min-width: 700px) {
  .stat-trio {
    grid-template-columns: repeat(3, 1fr);
  }

  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .proof-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .situations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-page-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-page-grid.booking-layout {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-shell {
    grid-template-columns: 0.9fr 1.25fr;
  }

  .booking-calendar-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .final-layout.final-booking {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .final-layout.final-booking .final-copy {
    max-width: 40rem;
  }

  .final-layout.final-booking #booking-mount {
    width: 100%;
  }
}

/* Calendly / Topmate-style booking */
.booking-shell {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 51, 59, 0.08);
}

.booking-aside {
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(247, 107, 28, 0.16), transparent 55%),
    linear-gradient(165deg, #173840 0%, #14333b 55%, #1d4650 100%);
  color: var(--white);
}

.booking-eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--peach);
}

.booking-aside h2,
.booking-aside h3 {
  margin: 0 0 0.75rem;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  color: #fff;
}

.booking-aside-lead {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.booking-meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.booking-meta li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.booking-ico {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(253, 228, 210, 0.18);
  border: 1px solid rgba(247, 107, 28, 0.45);
  color: #ffb07a;
  flex-shrink: 0;
}

.booking-ico svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-meta strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.booking-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

.booking-progress {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.55rem;
}

.booking-progress li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-progress li span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.booking-progress li.is-active,
.booking-progress li.is-done {
  color: var(--white);
}

.booking-progress li.is-active span,
.booking-progress li.is-done span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.booking-main {
  padding: 1.5rem 1.35rem 1.6rem;
  background:
    linear-gradient(180deg, #fffdf9 0%, var(--white) 40%);
}

.booking-main h3 {
  margin: 0 0 0.35rem;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.35rem;
  color: var(--ink);
}

.booking-hint {
  margin: 0 0 1.1rem;
  color: var(--grey);
  font-size: 0.92rem;
}

.booking-step-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.booking-back {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--ink2);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.booking-back:hover {
  color: var(--orange);
}

.booking-form-grid {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.booking-form label,
.booking-form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink2);
}

.booking-form input,
.booking-form select,
.booking-form-grid input,
.booking-form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form-grid input:focus,
.booking-form-grid select:focus {
  outline: 2px solid rgba(247, 107, 28, 0.35);
  border-color: var(--orange);
}

.booking-calendar-layout {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.1rem;
}

.booking-calendar {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: var(--cream);
  min-height: 18rem;
}

.cal-footnote {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
}

.slots-empty {
  margin: 0;
  padding: 1rem 0.25rem;
}

.qualify-form {
  display: grid;
  gap: 1.25rem;
}

.qualify-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.qualify-field legend {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  padding: 0;
}

.qualify-n {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--peach);
  color: var(--ember);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.qualify-options {
  display: grid;
  gap: 0.45rem;
}

.qualify-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink2);
}

.qualify-option:hover {
  border-color: var(--orange);
}

.qualify-option:has(input:checked) {
  border-color: var(--orange);
  background: var(--peach);
  color: var(--ink);
}

.qualify-option input {
  margin-top: 0.2rem;
  accent-color: var(--orange);
}

.booking-confirm-list li {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.booking-confirm-list span {
  text-align: left;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cal-head strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.cal-nav {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
}

.cal-nav:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey);
  padding: 0.25rem 0;
}

.cal-cell {
  aspect-ratio: 1;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--grey);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
}

.cal-cell.empty {
  visibility: hidden;
}

.cal-cell.day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-cell.day.is-available {
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  border: 1px solid transparent;
}

.cal-cell.day.is-available:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cal-cell.day.is-selected {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.slots-label {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.slot-grid {
  display: grid;
  gap: 0.45rem;
  max-height: 280px;
  overflow: auto;
  padding-right: 0.2rem;
}

.slot-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink2);
  cursor: pointer;
  text-align: center;
}

.slot-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.slot-btn.is-selected {
  background: var(--peach);
  border-color: var(--orange);
  color: var(--ember);
}

.btn[disabled],
button.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.booking-confirm-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--cream);
}

.booking-confirm-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.booking-confirm-list strong {
  color: var(--grey);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-confirm-list span {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.booking-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.booking-success-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--peach);
  color: var(--ember);
  font-size: 1.4rem;
  font-weight: 800;
}

.booking-success-when {
  margin: 0 0 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

@media (min-width: 640px) {
  .booking-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form-grid .span-2 {
    grid-column: 1 / -1;
  }
}

/* ========== Article / blog post layout ========== */
.article-hero {
  padding: 2.5rem 0 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(247, 107, 28, 0.1), transparent 45%),
    linear-gradient(180deg, var(--cream), var(--white));
}

.article-hero-inner {
  max-width: 760px;
}

.article-hero h1 {
  margin: 0.5rem 0 0.75rem;
  max-width: 20ch;
}

.article-featured {
  margin: 1.5rem 0 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--mist);
  border: 1px solid var(--line);
}

.article-layout {
  padding: 2rem 0 3rem;
}

.article-rail {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.article-body {
  display: grid;
  gap: 1.1rem;
}

.article-body h2 {
  margin: 1.2rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.article-body p,
.article-body li {
  color: var(--ink2);
  line-height: 1.75;
  font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.article-figure {
  margin: 0.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
}

.article-figure img {
  aspect-ratio: 16 / 9;
}

.article-figure figcaption,
.article-video figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--grey);
  background: var(--cream);
}

.article-video {
  margin: 0.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1c20;
}

.article-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.article-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-cta-box {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(247, 107, 28, 0.18), transparent 50%),
    linear-gradient(145deg, #14333b 0%, #1a4049 55%, #0f2a30 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.7rem;
}

.article-cta-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.article-cta-title {
  margin: 0 0 0.55rem;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 16ch;
}

.article-cta-text {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.article-share strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.share-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink2);
  font-size: 0.82rem;
  font-weight: 700;
}

.share-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.share-pill.share-x {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border-radius: 999px;
}

.worth-exploring,
.keep-exploring {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
}

.worth-kicker {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink2);
}

.worth-grid {
  display: grid;
  gap: 0.85rem;
}

.worth-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.4rem;
  color: var(--white);
  min-height: 9.5rem;
  text-decoration: none;
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.worth-card strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.worth-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.worth-link {
  margin-top: 0.55rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.92rem;
}

.worth-glyph {
  position: absolute;
  right: -0.2rem;
  bottom: -0.85rem;
  font-size: 7rem;
  font-weight: 800;
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.worth-fb {
  background: linear-gradient(145deg, #1877f2, #3b93ff);
}

.worth-ig {
  background: linear-gradient(145deg, #833ab4, #fd1d1d 55%, #fcb045);
}

.worth-yt {
  background: linear-gradient(145deg, #cc0000, #ff2a2a);
}

.related-heading {
  margin: 0;
  text-align: center;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.related-grid {
  display: grid;
  gap: 1rem;
}

.related-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  display: grid;
}

.related-card:hover h3 {
  color: var(--orange);
}

.related-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.related-body {
  padding: 1rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.related-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.article-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.article-author-avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.article-author strong {
  display: block;
  margin-bottom: 0.25rem;
}

.article-author p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink2);
}

@media (min-width: 700px) {
  .blog-featured {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }

  .blog-featured-media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .worth-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Growth plan band + service long-form */
.growth-plan-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(247, 107, 28, 0.16), transparent 45%),
    linear-gradient(165deg, #0f2a30 0%, #14333b 45%, #1a4049 100%);
  color: var(--white);
}

.growth-plan-intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.growth-plan-eyebrow {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
}

.growth-plan-band h2 {
  margin: 0 0 0.65rem;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.growth-plan-lead {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

.growth-plan-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.growth-plan-benefits li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

.growth-plan-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.growth-plan-card {
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.svc-hero {
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(247, 107, 28, 0.12), transparent 42%),
    linear-gradient(180deg, var(--cream), var(--white));
  border-bottom: 1px solid var(--line);
}

.svc-hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.svc-hero h1 {
  margin: 0.4rem 0 0.75rem;
  max-width: 16ch;
}

.svc-hero .lead {
  max-width: 38rem;
  margin-bottom: 1.2rem;
}

.svc-hero-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.4rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 18px 40px rgba(20, 51, 59, 0.08);
}

.svc-hero-form-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.svc-hero-form h2 {
  margin: 0;
  font-size: 1.35rem;
}

.svc-hero-form-lead {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
}

.svc-hero-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink2);
}

.svc-hero-form input,
.svc-hero-form select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.svc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.85rem;
}

.svc-breadcrumbs a { color: var(--ink2); font-weight: 600; }
.svc-breadcrumbs span { opacity: 0.5; }

.svc-section { padding: 3rem 0; }
.svc-section.alt { background: var(--cream); }
.svc-section.ink {
  background: linear-gradient(165deg, #14333b, #1a4049);
  color: var(--white);
}
.svc-section.ink h2, .svc-section.ink h3 { color: var(--white); }
.svc-section.ink p, .svc-section.ink li { color: rgba(255,255,255,0.78); }

.svc-narrow { max-width: 760px; }
.svc-prose { display: grid; gap: 1rem; }
.svc-prose p, .svc-prose li { line-height: 1.75; color: var(--ink2); font-size: 1.05rem; }
.svc-prose h2 { margin-top: 0.5rem; }
.svc-prose h3 { margin: 0.75rem 0 0; font-size: 1.2rem; }

.svc-grid-2, .svc-grid-3 { display: grid; gap: 1rem; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}
.svc-card h3 { margin: 0 0 0.45rem; font-size: 1.1rem; }
.svc-card p { margin: 0; color: var(--ink2); }

.svc-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.svc-checklist li { position: relative; padding-left: 1.4rem; color: var(--ink2); font-weight: 600; }
.svc-checklist li::before { content: "?"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

.svc-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.svc-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.svc-table th, .svc-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.svc-table th { background: var(--cream); color: var(--ink); font-weight: 800; }
.svc-table tr:last-child td { border-bottom: 0; }

.svc-takeaways {
  background: var(--peach);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(247,107,28,0.25);
}
.svc-takeaways h3 { margin: 0 0 0.65rem; }
.svc-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
}
.svc-faq summary { cursor: pointer; font-weight: 700; color: var(--ink); }
.svc-faq p { margin: 0.65rem 0 0; color: var(--ink2); }

.svc-related-grid { display: grid; gap: 1rem; }
.svc-related-card {
  display: grid; gap: 0.35rem; padding: 1.15rem; border-radius: 14px;
  border: 1px solid var(--line); background: var(--white); color: inherit; text-decoration: none;
}
.svc-related-card:hover { border-color: var(--orange); }
.svc-related-card strong { color: var(--ink); }
.svc-related-card span { color: var(--grey); font-size: 0.9rem; }

@media (min-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 2rem; }
  .svc-grid-2 { grid-template-columns: 1fr 1fr; }
  .svc-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .svc-related-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-about-grid { gap: 1.5rem; }
}

@media (max-width: 1099px) {
  .mega-panel.mega-panel-services,
  .mega-panel.mega-panel-about {
    left: 0; right: 0; transform: none; min-width: 0; width: min(96vw, 980px);
  }
}

/* GEO / AI SEO plans section */
.geo-plans {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
}
.gp-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.gp-eyebrow::before {
  content: "";
  width: 1.35rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
h2.gp-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 48rem;
}
p.gp-sub {
  font-size: 1.05rem;
  color: var(--ink2);
  max-width: 42rem;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.gp-note {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin: 1.4rem 0 2.4rem;
  font-size: 0.86rem;
  color: rgba(20, 51, 59, 0.72);
  max-width: 700px;
  line-height: 1.55;
}
.gp-note b { color: var(--ink); }

.gp-grid.gp-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .gp-grid.gp-grid-3 { grid-template-columns: 1fr; }
}
.gp-markets {
  display: flex;
  gap: 0.65rem;
  margin: 1.35rem 0 2.5rem;
  flex-wrap: wrap;
}
.gp-market-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.gp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.gp-card {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20, 51, 59, 0.08);
}
.gp-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(247, 107, 28, 0.05), rgba(247, 107, 28, 0) 40%);
  box-shadow: 0 16px 40px rgba(247, 107, 28, 0.14);
}
.gp-badge {
  position: absolute;
  top: -0.8rem;
  left: 1.25rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.gp-plan-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0.35rem 0 0.25rem;
}

.gp-plan-scale {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.gp-plan-for {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1.1rem;
  min-height: 2rem;
  line-height: 1.4;
}
.gp-price-block { margin-bottom: 1.2rem; }
.gp-price-block .lead {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.gp-price-block .amt {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--ink);
}
.gp-price-block .per {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 500;
  margin-left: 0.25rem;
}
.gp-price-block .talk {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gp-price-block .talk::before {
  content: "?";
  color: var(--orange);
  font-weight: 800;
}
.gp-price-block .sub {
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 0.25rem;
}
.gp-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.1rem;
  border-radius: 9px;
  margin-bottom: 1.4rem;
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid var(--line);
  transition: filter 0.15s ease;
}
.gp-card.featured .gp-cta {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.gp-cta:hover { filter: brightness(0.96); }
.gp-deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.gp-deliverables li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink2);
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
}
.gp-deliverables li:last-child { border-bottom: 0; }
.gp-deliverables li .tick {
  color: var(--orange);
  font-weight: 800;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.gp-deliverables li b { color: var(--ink); font-weight: 700; }
.gp-compare-wrap {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.gp-compare-head {
  padding: 1.2rem 1.4rem 0.85rem;
  border-bottom: 1px solid var(--line);
}
.gp-compare-head h3 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.gp-compare-head p {
  font-size: 0.88rem;
  color: var(--grey);
  margin: 0;
}
table.gp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
table.gp-table th,
table.gp-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.gp-table thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
table.gp-table tbody tr:nth-child(even) td {
  background: rgba(248, 244, 236, 0.55);
}
table.gp-table tbody td:first-child {
  font-weight: 700;
  color: var(--ink);
  width: 24%;
}
table.gp-table tbody td.center { text-align: center; }
.gp-table .talk-row td {
  font-weight: 700;
  color: var(--ink);
  background: var(--cream) !important;
}
.gp-footnote {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 52rem;
}
@media (max-width: 1020px) {
  .gp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .geo-plans { padding: 2.5rem 1rem 3rem; }
  .gp-grid { grid-template-columns: 1fr; }
  .gp-compare-wrap { overflow-x: auto; }
  table.gp-table { min-width: 640px; }
}

/* �� Long-form service pages (WebFX-inspired / Optiv brand) �� */
.svc-jumpnav {
  position: sticky;
  top: 72px;
  z-index: 45;
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.svc-jumpnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.88rem;
}
.svc-jumpnav a {
  color: var(--ink2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.15rem;
}
.svc-jumpnav a:hover,
.svc-jumpnav a:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
  outline: none;
}

.svc-quick {
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  margin: 0 0 1.25rem;
}
.svc-quick .label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.svc-quick p { margin: 0; color: var(--ink2); line-height: 1.65; font-size: 1.02rem; }

.svc-def-grid {
  display: grid;
  gap: 0.85rem;
}
.svc-def-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
}
.svc-def-card h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.svc-def-card p { margin: 0; color: var(--ink2); line-height: 1.65; }
.svc-def-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.svc-mistake {
  counter-reset: mistake;
  display: grid;
  gap: 0.85rem;
}
.svc-mistake article {
  counter-increment: mistake;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.15rem 1.35rem;
  position: relative;
}
.svc-mistake article::before {
  content: "0" counter(mistake);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.35rem;
}
.svc-mistake h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
.svc-mistake p { margin: 0; color: var(--ink2); line-height: 1.6; }

.svc-selfcheck {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: rgba(247, 107, 28, 0.08);
  border: 1px solid rgba(247, 107, 28, 0.28);
}
.svc-selfcheck strong { color: var(--ink); }
.svc-selfcheck p { margin: 0.35rem 0 0; color: var(--ink2); }

.svc-mid-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(165deg, #14333b, #1a4049);
  color: #fff;
  margin: 0.5rem 0;
}
.svc-mid-cta h2 { color: #fff; margin: 0 0 0.5rem; font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.svc-mid-cta p { color: rgba(255,255,255,0.78); margin: 0 0 1.1rem; max-width: 42ch; margin-inline: auto; }
.svc-mid-cta .btn-accent { background: var(--orange); color: #fff; }

.svc-framework {
  display: grid;
  gap: 1rem;
}
.svc-framework-step {
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}
.svc-framework-step .step-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.svc-framework-step h3 { margin: 0; font-size: 1.25rem; }
.svc-framework-step p { margin: 0; color: var(--ink2); line-height: 1.65; }

.svc-proof-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
.svc-proof-strip div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.svc-proof-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--orange);
  line-height: 1.1;
}
.svc-proof-strip span { font-size: 0.88rem; color: var(--ink2); }

.svc-checklist li::before { content: "?"; }

@media (min-width: 760px) {
  .svc-def-grid { grid-template-columns: 1fr 1fr; }
  .svc-mistake { grid-template-columns: 1fr 1fr; }
  .svc-framework { grid-template-columns: 1fr 1fr; }
  .svc-proof-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .svc-framework { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .svc-jumpnav { top: 64px; }
  .svc-proof-strip { grid-template-columns: 1fr 1fr; }
}

/* ========== About Us page ========== */
.about-page { background: var(--cream); }
.about-kicker {
  margin: 0 0 0.65rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-kicker--light { color: rgba(255,255,255,0.7); }
.about-kicker--orange { color: var(--orange); }

.about-hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(1.05);
}
.about-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,51,59,0.92) 0%, rgba(20,51,59,0.72) 42%, rgba(20,51,59,0.28) 72%, rgba(20,51,59,0.18) 100%),
    linear-gradient(180deg, rgba(20,51,59,0.15) 0%, rgba(20,51,59,0.55) 70%, rgba(20,51,59,0.88) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 12vw, 8rem) 0 clamp(2.75rem, 6vw, 4rem);
  max-width: 40rem;
}
.about-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
}
.about-hero-line {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--peach);
}
.about-hero-lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  line-height: 1.65;
}
.about-hero-lead strong { color: var(--white); }
.about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-hero-cta .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.about-hero-cta .btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.about-stats {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.about-stats-grid div {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.about-stats-grid strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.05;
}
.about-stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}
.about-stats-highlight {
  margin: 1.5rem 0 0;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  background: rgba(247,107,28,0.12);
  border: 1px solid rgba(247,107,28,0.28);
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.about-stats-highlight strong { color: var(--peach); }

.about-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--white);
}
.about-section--cream { background: var(--cream); }
.about-section--ink {
  background: var(--ink);
  color: var(--white);
}
.about-section--ink h2,
.about-section--ink h3 { color: var(--white); }
.about-section--ink p { color: rgba(255,255,255,0.78); }
.about-section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.about-section-head--center {
  margin-inline: auto;
  text-align: center;
}
.about-section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1.15;
  color: var(--ink);
}

.about-pillars {
  display: grid;
  gap: 1rem;
}
.about-pillars article {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}
.about-pillars h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  color: var(--ink);
}
.about-pillars p {
  margin: 0;
  color: var(--ink2);
  line-height: 1.65;
}

.about-founder {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.about-founder-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-position: center top;
}
.about-founder-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--ink);
}
.about-founder-copy p {
  margin: 0 0 1rem;
  color: var(--ink2);
  line-height: 1.75;
  font-size: 1.05rem;
}
.about-pull {
  margin: 1.35rem 0 !important;
  padding: 1rem 0 1rem 1.15rem;
  border-left: 3px solid var(--orange);
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem) !important;
  font-weight: 700;
  line-height: 1.3 !important;
}
.about-founder-meta {
  margin-top: 1.5rem !important;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
}
.about-founder-meta a {
  color: var(--orange);
  font-weight: 800;
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.about-timeline li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.about-timeline li:last-child { border-bottom: 1px solid var(--line); }
.about-timeline-year {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.about-timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--ink);
}
.about-timeline p {
  margin: 0;
  color: var(--ink2);
  line-height: 1.55;
}

.about-values {
  display: grid;
  gap: 1rem;
}
.about-values article {
  padding: 1.25rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.about-values h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}
.about-values p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.about-diff {
  display: grid;
  gap: 1rem;
}
.about-diff article {
  padding: 1.4rem 1.35rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}
.about-diff h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.2rem;
}
.about-diff p {
  margin: 0;
  color: var(--ink2);
  line-height: 1.65;
}

.about-fit {
  display: grid;
  gap: 1rem;
}
.about-fit-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.about-fit-card--no {
  background: #f8ece8;
  border-color: rgba(217, 85, 14, 0.18);
}
.about-fit-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--ink);
}
.about-fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.about-fit-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink2);
  line-height: 1.5;
  font-weight: 600;
}
.about-fit-list--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f6b4f;
  font-weight: 800;
}
.about-fit-list--no li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
}

.about-cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--cream-2);
  border-block: 1px solid var(--line);
}
.about-cta-inner {
  display: grid;
  gap: 1.5rem;
}
.about-cta-inner h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  color: var(--ink);
}
.about-cta-inner p {
  margin: 0;
  max-width: 36rem;
  color: var(--ink2);
  line-height: 1.65;
  font-size: 1.05rem;
}
.about-cta-actions {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.about-cta-link {
  color: var(--orange);
  font-weight: 800;
  line-height: 1.45;
}

@media (min-width: 720px) {
  .about-stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-diff { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-fit { grid-template-columns: 1.25fr 0.9fr; }
  .about-timeline li { grid-template-columns: 7rem 1fr; gap: 1.5rem; }
}
@media (min-width: 980px) {
  .about-hero-content { max-width: 44rem; }
  .about-founder {
    grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: center;
  }
  .about-values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-cta-inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero-media img { filter: none; }
}

/* ========== Founding story page ========== */
.story-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.story-crumbs a { color: rgba(255,255,255,0.88); font-weight: 700; }
.story-crumbs span { opacity: 0.55; }

.story-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}
.story-socials a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}
.story-socials a:hover {
  border-color: var(--orange);
  color: var(--peach);
}

.story-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.story-prose h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  color: var(--ink);
}
.story-prose p {
  margin: 0 0 1rem;
  color: var(--ink2);
  font-size: 1.05rem;
  line-height: 1.75;
}
.story-aside {
  display: grid;
  gap: 1rem;
}
.story-aside-card {
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.story-aside-card ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.story-aside-card li {
  color: var(--ink2);
  font-size: 0.95rem;
  line-height: 1.4;
}
.story-aside-card strong { color: var(--ink); }

.story-principles {
  display: grid;
  gap: 1rem;
}
.story-principles article {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}
.story-principles span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.story-principles h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  color: var(--ink);
}
.story-principles p {
  margin: 0;
  color: var(--ink2);
  line-height: 1.6;
}

.story-two-col {
  display: grid;
  gap: 2rem;
}
.story-two-col h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  color: var(--ink);
}
.story-two-col p {
  margin: 0 0 0.9rem;
  color: var(--ink2);
  line-height: 1.7;
  font-size: 1.02rem;
}
.story-teach-stats {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.story-teach-stats li {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink2);
}
.story-teach-stats strong { color: var(--orange); font-family: var(--font-display); }

.story-audience {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.story-audience li {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.story-audience strong { color: var(--ink); font-size: 1.05rem; }
.story-audience span { color: var(--ink2); line-height: 1.55; }
.story-links-row {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
}
.story-links-row a {
  color: var(--orange);
  font-weight: 800;
}

.story-media {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: var(--ink);
  color: var(--white);
}
.story-media-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.story-media-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--white);
}
.story-media-copy p {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-size: 1.05rem;
}
.story-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.story-media-pill {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}
.story-media-pill:hover { border-color: var(--orange); color: var(--peach); }
.story-media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.story-media-list li {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.story-media-tag {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-media-list a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.story-media-list a:hover { color: var(--peach); }

.story-podcast-panel { min-width: 0; }
.story-podcast-label {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-podcast-card {
  padding: 1.15rem;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.story-podcast-head {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
}
.story-podcast-head strong {
  font-size: 1.1rem;
  color: var(--ink);
}
.story-podcast-head span {
  color: var(--grey);
  font-size: 0.9rem;
}
.story-podcast-embed {
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream);
}
.story-podcast-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}
.story-podcast-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}
.story-podcast-more {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .story-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-two-col { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 980px) {
  .story-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.75fr);
    gap: 3rem;
    align-items: start;
  }
  .story-principles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-principles article:nth-child(4),
  .story-principles article:nth-child(5) { grid-column: span 1; }
  .story-media-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.95fr);
    gap: 2.5rem;
    align-items: center;
  }
}


