:root {
  --bg: #0a0b0d;
  --bg-soft: #121418;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --ink: #f4efe7;
  --muted: #c0b4a4;
  --orange: #ff6a00;
  --orange-bright: #ffb24d;
  --orange-soft: #ffefe4;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  --header-offset: 142px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
  padding-top: var(--header-offset);
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 106, 0, 0.14), transparent 18%),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.04), transparent 16%),
    linear-gradient(180deg, #07080a 0%, #0c0e12 52%, #08090b 100%);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.45);
  transition: width 120ms linear;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  width: 100%;
  margin: 0;
}

main {
  width: min(calc(100% - 44px), 1480px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(12px, 2vw, 40px);
  align-items: center;
  padding: 10px max(22px, calc((100vw - 1480px) / 2 + 22px)) 8px;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.46), rgba(8, 10, 14, 0.18));
  backdrop-filter: blur(44px) saturate(132%);
  transition: transform 0.3s ease, opacity 240ms ease, background 240ms ease, box-shadow 240ms ease;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 12px));
  opacity: 0;
}

.site-header.is-compact {
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.58), rgba(7, 8, 11, 0.26));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 106, 0, 0.18), transparent 26%);
  pointer-events: none;
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  justify-self: start;
  width: auto;
  min-width: 0;
  flex-shrink: 1;
  margin-left: 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  width: clamp(280px, 30vw, 420px);
  max-width: 100%;
  height: clamp(80px, 8vw, 124px);
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex-shrink: 1;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.66);
  transform-origin: left center;
}

.brand-logo-gif {
  position: absolute;
  inset: 0;
  opacity: 1;
  z-index: 2;
  transition: none;
}

.brand-logo-static {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: none;
}

.brand-logo-wrap {
  position: relative;
}

.brand-logo-wrap.is-blipping .brand-logo-gif,
.brand-logo-wrap.is-blipping .brand-logo-static {
  animation: logoBlink 120ms steps(2, end) 1;
}

.brand-logo-wrap.is-static .brand-logo-static {
  opacity: 1;
}

.brand-logo-wrap.is-static .brand-logo-gif {
  opacity: 0;
}

.eyebrow,
.card-kicker,
.step-number {
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.2vw, 24px);
  min-width: 0;
  overflow: visible;
  justify-self: center;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  margin: 0;
  transform: none;
  flex-shrink: 1;
}

.site-nav a,
.eyebrow,
.card-kicker,
.step-number {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.site-nav a {
  position: relative;
  padding: 16px 6px 22px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  transition: color 180ms ease, transform 180ms ease, letter-spacing 180ms ease, text-shadow 180ms ease;
  animation: navTextShimmer 6s ease-in-out infinite;
}

.site-nav a:nth-child(2) {
  animation-delay: 0.8s;
}

.site-nav a:nth-child(3) {
  animation-delay: 1.6s;
}

.site-nav a:nth-child(4) {
  animation-delay: 2.4s;
}

.site-nav a:nth-child(5) {
  animation-delay: 3.2s;
}

.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.header-cta {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 1.5vw, 20px) clamp(18px, 2.5vw, 36px);
  font-size: clamp(0.85rem, 1.1vw, 1.14rem);
  font-weight: 800;
  justify-self: end;
  margin-left: 0;
  margin-right: 0;
  transform: none;
  flex-shrink: 0;
}

.cta-pulse {
  position: relative;
  overflow: hidden;
  animation: ctaHeartbeat 2.8s ease-in-out infinite;
}

.cta-pulse::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.42) 48%, transparent 66%);
  transform: translateX(-140%) skewX(-18deg);
  animation: ctaShine 3.6s ease-in-out infinite;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0;
}

.site-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
  letter-spacing: 0.2em;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  color: #fff;
  letter-spacing: 0.18em;
  text-shadow: 0 0 16px rgba(255, 178, 77, 0.26);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-cta,
.button,
.contact-cta,
.venture-button {
  border-radius: 999px;
}

.header-cta,
.button,
.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.header-cta,
.button-primary,
.contact-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: 0 20px 42px rgba(255, 106, 0, 0.22);
}

.header-cta {
  white-space: nowrap;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
}

.panel,
.system {
  margin-top: 22px;
  border-radius: var(--radius-xl);
}

.panel {
  padding: 34px;
  box-shadow: var(--shadow);
  transition: transform 600ms ease, opacity 600ms ease;
}

.panel-dark {
  background: rgba(18, 20, 24, 0.95);
  border: 1px solid var(--line);
}

.panel-light {
  background: rgba(241, 233, 220, 0.96);
  color: #171310;
}

.panel-light .eyebrow,
.panel-light .card-kicker,
.panel-light p {
  color: #5a4b40;
}

.panel-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #fff;
}

.panel-orange .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  min-height: auto;
  align-items: center;
  padding: 18px 24px 20px 30px;
}

.hero-copy {
  width: 100%;
  max-width: none;
  align-self: center;
  padding-left: 10px;
}

.hero-copy h1,
.system-intro h2,
.section-heading h2,
.system-card h3,
.system-card strong,
.service-card h3,
.venture-panel h3,
.contact h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-copy h1 {
  font-size: clamp(4.9rem, 7vw, 8.2rem);
  max-width: 13ch;
  text-wrap: balance;
  line-height: 0.9;
  display: grid;
  gap: 4px;
}

.hero-copy h1 .hero-word {
  display: block;
  animation: heroWordGlow 7.2s ease-in-out infinite;
}

.hero-copy h1 .hero-word-a {
  animation-delay: 0s;
}

.hero-copy h1 .hero-word-b {
  animation-delay: 1.2s;
  color: var(--orange);
}

.hero-copy h1 .hero-word-c {
  animation-delay: 2.4s;
}

.hero-text,
.system-intro p,
.system-step p,
.system-card p,
.service-card p,
.venture-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 74ch;
  text-wrap: pretty;
}

.hero-text {
  max-width: 62ch;
}

.hero-art {
  min-height: 430px;
}

.hero-art-frame {
  position: relative;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 106, 0, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #17181c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(calc(var(--hero-shift-y, 0px) * 0.12));
  transition: transform 180ms ease;
}

.hero-scan,
.hero-flare,
.hero-orbit,
.hero-block,
.hero-signal,
.hero-stage-line,
.hero-caption {
  position: absolute;
}

.hero-scan {
  inset: -10% auto -10% -16%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  filter: blur(4px);
  animation: scanSweep 5s linear infinite;
}

.hero-flare {
  width: 320px;
  height: 320px;
  right: 10px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.42), rgba(255, 106, 0, 0));
  filter: blur(12px);
  animation: flarePulse 4.5s ease-in-out infinite;
}

.hero-orbit {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-orbit-a {
  width: 420px;
  height: 420px;
  top: 14px;
  right: -40px;
  animation: spinSlow 14s linear infinite;
}

.hero-orbit-b {
  width: 220px;
  height: 220px;
  left: 26px;
  bottom: 28px;
  animation: spinReverse 11s linear infinite;
}

.hero-block-main {
  top: 84px;
  right: 72px;
  width: 220px;
  height: 220px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  transform: rotate(10deg) translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0);
  box-shadow: 0 26px 60px rgba(255, 106, 0, 0.3);
  animation: heroPulse 3.8s ease-in-out infinite;
}

.hero-block-small {
  left: 30px;
  bottom: 48px;
  width: 180px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 178, 77, 0.16));
  transform: translate3d(calc(var(--hero-shift-x, 0px) * -0.5), 0, 0);
}

.hero-signal {
  left: 28px;
  top: 28px;
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transform: translate3d(calc(var(--hero-shift-x, 0px) * 0.35), calc(var(--hero-shift-y, 0px) * -0.25), 0);
  transition: transform 180ms ease;
  z-index: 2;
}

.hero-signal span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.hero-carousel {
  max-width: 340px;
  width: 340px;
  min-height: 260px;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  align-content: start;
  padding-top: 2px;
}

.hero-carousel-body {
  display: grid;
  align-content: start;
  align-items: start;
  justify-items: start;
  min-height: 148px;
  padding-top: 0;
  transition: opacity 320ms ease;
}

.hero-carousel.is-fading .hero-carousel-body {
  opacity: 0.18;
}

.hero-carousel strong {
  display: block;
  margin-top: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  min-height: 3.1rem;
}

.hero-carousel p:last-of-type {
  margin: 8px 0 0;
  color: var(--ink);
  line-height: 1.55;
  min-height: 5.1rem;
}

.hero-carousel-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.hero-carousel-rail span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-carousel-rail span.is-active {
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(1.12);
}

.hero-stage-line {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.96), rgba(255, 178, 77, 0.08));
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.18);
}

.hero-stage-line-a {
  left: 30px;
  right: 120px;
  bottom: 74px;
  transform: translateX(calc(var(--hero-shift-x, 0px) * -0.2));
}

.hero-stage-line-b {
  left: 92px;
  right: 36px;
  bottom: 42px;
  height: 8px;
  opacity: 0.64;
  transform: translateX(calc(var(--hero-shift-x, 0px) * 0.18));
}

.hero-caption {
  right: 26px;
  bottom: 102px;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  transform: translate3d(calc(var(--hero-shift-x, 0px) * -0.16), calc(var(--hero-shift-y, 0px) * 0.12), 0);
}

.hero-art-frame .hero-caption {
  display: none;
}

.system {
  padding: 42px 0 26px;
}

.system-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px 42px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding: 0 0 0 12px;
}

.system-intro-main,
.system-intro-copy {
  min-width: 0;
}

.system-intro h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  max-width: 18ch;
  text-wrap: balance;
}

.system-intro-copy {
  display: grid;
  gap: 18px;
}

.system-intro p {
  margin: 0;
  max-width: 88ch;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px 42px;
  align-items: end;
  width: 100%;
  max-width: none;
}

.section-heading-main,
.section-heading-copy {
  min-width: 0;
}

.section-heading-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 74ch;
  text-wrap: pretty;
}

.panel-light .section-heading-copy {
  color: #5a4b40;
}

.system-scroll {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  margin-top: 18px;
}

.system-track {
  display: grid;
  gap: 14px;
}

.system-step,
.system-card,
.system-footer,
.service-card,
.venture-panel {
  border-radius: var(--radius-lg);
}

.system-step {
  padding: 24px;
  background: rgba(18, 20, 24, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.system-step .step-number {
  color: var(--orange);
  font-weight: 700;
}

.system-step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.system-step h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
  line-height: 1;
}

.system-step.is-active {
  transform: translateX(10px);
  border-color: rgba(255, 106, 0, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.13), rgba(255, 255, 255, 0.02)),
    rgba(18, 20, 24, 0.96);
}

.system-stage-wrap {
  position: relative;
  min-height: 620px;
}

.system-stage {
  --progress: 0;
  position: sticky;
  top: 94px;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(16, 18, 22, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform:
    perspective(1400px)
    rotateX(calc((0.5 - var(--progress)) * 5deg))
    rotateY(calc((var(--progress) - 0.5) * 8deg))
    translateY(calc(var(--progress) * -10px))
    scale(calc(0.96 + var(--progress) * 0.04));
  transition: transform 120ms linear;
}

.system-grid,
.system-layer,
.system-card,
.system-footer {
  position: absolute;
}

.system-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: calc(0.24 + var(--progress) * 0.42);
  transform: translateY(calc(var(--progress) * 24px));
}

.system-layer-a {
  width: calc(170px + var(--progress) * 150px);
  height: calc(170px + var(--progress) * 150px);
  top: calc(78px + var(--progress) * 12px);
  left: calc(62% - var(--progress) * 3%);
  right: auto;
  border-radius: calc(50% - var(--progress) * 16%);
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: 0 26px 56px rgba(255, 106, 0, 0.3);
  transform: translateX(-50%) rotate(calc(var(--progress) * 120deg));
  transition: width 120ms linear, height 120ms linear, top 120ms linear, left 120ms linear, border-radius 120ms linear, transform 120ms linear;
}

.system-layer-b {
  left: 50%;
  bottom: calc(54px + var(--progress) * 16px);
  width: calc(220px + var(--progress) * 200px);
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 178, 77, 0.16));
  transform: translateX(-50%) scaleX(calc(0.75 + var(--progress) * 0.35));
  transform-origin: center center;
}

.system-card {
  padding: 26px;
  background: rgba(18, 20, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
  transition: transform 140ms linear, top 140ms linear, left 140ms linear, right 140ms linear, bottom 140ms linear;
}

.system-card-main {
  top: calc(38px + var(--progress) * 8px);
  left: calc(32px + var(--progress) * 8px);
  width: min(56%, 380px);
  transform:
    translateY(calc(var(--progress) * 6px))
    rotate(calc(var(--progress) * -2deg))
    scale(calc(0.96 + var(--progress) * 0.04));
}

.system-card-side {
  right: calc(36px + var(--progress) * 4px);
  bottom: calc(118px - var(--progress) * 10px);
  width: min(30%, 210px);
  transform:
    translateY(calc(var(--progress) * -6px))
    rotate(calc(var(--progress) * 2deg))
    scale(calc(0.94 + var(--progress) * 0.06));
}

.system-card h3 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.system-card strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.system-mobile-signal {
  display: none;
}

.system-blob-signal {
  display: none;
}

.system-footer {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.services .section-heading {
  align-items: center;
}

.section-heading-copy-services {
  align-self: center;
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  line-height: 1.6;
  padding-top: 4%;
}

.services .section-heading-main h2 {
  max-width: 13ch;
}

.service-card,
.venture-panel {
  padding: 24px;
  background: rgba(18, 20, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card-featured {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 183, 77, 0.26), transparent 30%),
    linear-gradient(145deg, #ff6a00, #7a2500 74%);
}

.services-grid .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 231, 204, 0.2), transparent 28%),
    linear-gradient(145deg, #ff7d1f, #8f2d00 72%);
}

.services-grid .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 208, 120, 0.2), transparent 30%),
    linear-gradient(145deg, #2d3038, #090b10 72%);
}

.services-grid .service-card:nth-child(3) {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 188, 97, 0.22), transparent 28%),
    linear-gradient(145deg, #4d1800, #16090a 76%);
}

.services-grid .service-card:nth-child(4) {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 220, 156, 0.22), transparent 28%),
    linear-gradient(145deg, #3d414b, #0d0f14 74%);
}

.services-grid .service-card:nth-child(5) {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 166, 82, 0.2), transparent 28%),
    linear-gradient(145deg, #ff9552, #6d2600 74%);
}

.services-grid .service-card:nth-child(6) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 220, 156, 0.22), transparent 30%),
    linear-gradient(145deg, #5a2a00, #17100d 76%);
}

.service-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
  min-height: 4.3rem;
  display: grid;
  place-items: center;
  color: #fff7ef;
}

.service-card p {
  color: rgba(244, 239, 231, 0.78);
}

.service-card .card-kicker {
  color: #fff7ef;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -18% auto -18% -42%;
  width: 42%;
  background: linear-gradient(110deg, transparent 26%, rgba(255, 255, 255, 0.18) 48%, transparent 68%);
  transform: translateX(-170%) skewX(-18deg);
  transition: transform 420ms ease;
  pointer-events: none;
}

.service-card-cta {
  margin-top: auto;
  padding-top: 10px;
  color: #fff5ea;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card:hover,
.venture-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.14);
}

.service-card:hover::after,
.service-card:focus-visible::after,
.service-card.is-visible::after {
  transform: translateX(430%) skewX(-18deg);
}

.service-card.is-visible {
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.16), 0 0 28px rgba(255, 178, 77, 0.12);
}

@media (min-width: 1221px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card {
    min-height: 430px;
  }

  .service-card h3 {
    font-size: clamp(2rem, 1.95vw, 2.5rem);
    min-height: 5.2rem;
  }

  .service-card p {
    font-size: 1rem;
    line-height: 1.66;
  }
}

.venture-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.24);
}

.venture-panel-large {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-bottom: 20px;
  min-height: 560px;
  grid-template-rows: auto auto auto auto 1fr;
}

.venture-panel-large .venture-presentation-stage {
  margin-top: 8px;
}

.venture-panel-large p {
  margin: 0;
}

.venture-heading-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.venture-panel-intro {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.55;
  max-width: 54ch;
}

.venture-logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  height: 220px;
  flex: 0 0 220px;
  padding: 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.venture-logo-image {
  display: block;
  width: auto;
  max-width: min(100%, 290px);
  max-height: 176px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: none;
  transition: transform 320ms ease, filter 320ms ease, opacity 260ms ease;
}

.venture-logo-stage--hot-furrs {
  padding: 14px;
}

.venture-logo-image--hot-furrs {
  max-width: min(100%, 306px);
  max-height: 184px;
  transform: none;
}

.venture-logo-stage.is-hidden {
  display: none;
}

.venture-panel-large h3 {
  font-size: clamp(2.45rem, 3.2vw, 3.7rem);
  line-height: 0.96;
  width: 100%;
  max-width: none;
  margin: 0;
  white-space: nowrap;
  text-align: right;
  color: #fff8f0;
  text-shadow: 0 0 22px rgba(255, 106, 0, 0.14);
  transition: opacity 260ms ease, transform 260ms ease, text-shadow 260ms ease, letter-spacing 260ms ease;
}

.venture-panel-copy {
  color: var(--muted);
  min-height: 5.4em;
}

.venture-panel.is-switching h3 {
  opacity: 0.16;
  transform: translateY(10px) scale(0.985);
  text-shadow: 0 0 0 rgba(255, 106, 0, 0);
}

.venture-panel:not(.is-switching) h3 {
  animation: ventureTitleShine 2.8s ease-out;
}

.venture-panel h3.is-illuminated {
  animation: ventureTitleShine 2.8s ease-out;
}

.venture-panel:not(.is-switching) .venture-logo-stage {
  border-color: rgba(255, 178, 77, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 30px rgba(255, 106, 0, 0.08);
}

.venture-panel:not(.is-switching) .venture-logo-image {
  transform: none;
  filter: none;
}

.venture-panel:not(.is-switching) .venture-logo-image--hot-furrs {
  transform: none;
}

.venture-intro {
  max-width: 62ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  text-wrap: pretty;
}

.ventures .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.1rem, 3.1vw, 3.4rem);
  letter-spacing: -0.05em;
}

.ventures .section-heading h2 span {
  display: inline;
}

.venture-intro {
  display: none;
}

.venture-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.34), rgba(255, 106, 0, 0));
  filter: blur(10px);
  animation: ventureBreath 7s ease-in-out infinite;
  pointer-events: none;
}

.venture-panel-line {
  width: min(220px, 52%);
  height: 12px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 178, 77, 0.14));
  transform-origin: left center;
  animation: linePulse 4s ease-in-out infinite;
}

.venture-panel.is-switching {
  opacity: 0.78;
  transform: translateY(10px);
}

.ventures-layout {
  display: block;
  margin-top: 18px;
}

.venture-presentation {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.venture-showcase-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.venture-side-rail {
  display: grid;
  gap: 20px;
  align-content: stretch;
  align-self: stretch;
  grid-template-rows: minmax(0, 1fr);
  min-height: 100%;
}

.venture-presentation-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.live-feed {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  height: 100%;
  min-height: 860px;
  max-height: none;
  align-self: stretch;
  align-content: start;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.live-feed-content {
  grid-row: 1;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 16px;
  overflow: hidden;
  padding-top: clamp(28px, 4vh, 44px);
}

.live-feed .card-kicker {
  margin: 0;
}

.live-feed strong {
  font-size: clamp(1.3rem, 1.75vw, 1.86rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  transition: opacity 220ms ease, transform 320ms ease;
}

.live-feed p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
  transition: opacity 220ms ease, transform 320ms ease;
}

.live-feed-media {
  display: grid;
  gap: 14px;
  min-height: 0;
  align-self: stretch;
  transition: opacity 220ms ease, transform 320ms ease;
}

.live-feed-media[hidden],
.live-feed-cta[hidden] {
  display: none;
}

.live-feed-book-release {
  display: grid;
  height: 100%;
}

.book-cover-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 184, 107, 0.18), transparent 32%),
    linear-gradient(155deg, rgba(255, 106, 0, 0.18), rgba(12, 14, 18, 0.96) 72%);
}

.book-cover-card {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.book-cover-link {
  display: inline-grid;
  justify-items: center;
  align-items: center;
  border-radius: 16px;
  transition: transform 180ms ease, filter 180ms ease;
}

.book-cover-link:hover,
.book-cover-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04) drop-shadow(0 10px 18px rgba(255, 178, 77, 0.16));
}

.book-cover-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 360px;
  max-height: 520px;
  object-fit: contain;
  border-radius: 14px;
}

.live-feed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  color: #1a0c02;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 220ms ease;
  justify-self: center;
  position: relative;
  overflow: hidden;
  animation: liveFeedCtaPulse 2.8s ease-in-out infinite;
}

.live-feed-cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -32%;
  width: 34%;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.38) 48%, transparent 78%);
  transform: translateX(-180%) skewX(-18deg);
  animation: liveFeedCtaShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

.live-feed-cta:hover,
.live-feed-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 106, 0, 0.24);
  filter: brightness(1.05);
}

.live-feed.live-feed-has-book .live-feed-content {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto minmax(320px, auto) auto auto auto;
  row-gap: 16px;
  align-items: start;
}

.live-feed.live-feed-has-book .card-kicker {
  grid-column: 1 / -1;
  grid-row: 1;
}

.live-feed.live-feed-has-book strong {
  grid-column: 1 / -1;
  grid-row: 2;
}

.live-feed.live-feed-has-book .live-feed-media {
  grid-column: 1 / -1;
  grid-row: 3;
  align-items: center;
  justify-items: center;
}

.live-feed.live-feed-has-book p:last-of-type {
  grid-column: 1 / -1;
  grid-row: 4;
}

.live-feed-details {
  display: grid;
  gap: 10px;
}

.live-feed-details[hidden] {
  display: none;
}

.live-feed.live-feed-has-book .live-feed-cta {
  grid-column: 1 / -1;
  grid-row: 6;
  justify-self: center;
}

.live-feed.live-feed-has-book .live-feed-details {
  grid-column: 1 / -1;
  grid-row: 5;
}

.live-feed-book-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.live-feed-book-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(244, 239, 231, 0.86);
  font-size: 0.98rem;
  line-height: 1.42;
}

.live-feed-book-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.24);
}

.live-feed.live-feed-has-spotlight .live-feed-content {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto minmax(420px, 1fr) auto;
}

.live-feed-rail {
  grid-row: 2;
  position: relative;
  z-index: 1;
}

.live-feed.live-feed-has-spotlight .card-kicker {
  grid-column: 1 / -1;
  grid-row: 1;
}

.live-feed.live-feed-has-spotlight strong {
  grid-column: 1 / -1;
  grid-row: 2;
}

.live-feed.live-feed-has-spotlight p:last-of-type {
  grid-column: 1 / -1;
  grid-row: 3;
}

.live-feed.live-feed-has-spotlight .live-feed-media {
  grid-column: 1 / -1;
  grid-row: 4;
}

.live-feed.live-feed-has-spotlight .live-feed-cta {
  grid-column: 1 / -1;
  grid-row: 5;
}

.live-feed-spotlight-card {
  min-height: 420px;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: stretch;
  gap: 14px;
  padding: 30px 26px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 196, 132, 0.24), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255, 106, 0, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.22), rgba(12, 14, 18, 0.96) 72%);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
}

.live-feed-spotlight-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.44;
  pointer-events: none;
}

.live-feed-spotlight-card--ai-strategy {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 196, 132, 0.26), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(255, 106, 0, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.18), rgba(14, 18, 24, 0.98) 72%);
}

.live-feed-spotlight-card--jotter-launch {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 214, 168, 0.2), transparent 26%),
    radial-gradient(circle at 80% 22%, rgba(255, 143, 61, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(255, 120, 24, 0.22), rgba(18, 20, 24, 0.98) 70%);
}

.live-feed-spotlight-card--business-support {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 198, 123, 0.2), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(255, 106, 0, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(163, 86, 22, 0.28), rgba(17, 19, 24, 0.98) 72%);
}

.live-feed-spotlight-card--marketing-growth {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 178, 77, 0.22), transparent 26%),
    radial-gradient(circle at 76% 24%, rgba(255, 106, 0, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 122, 32, 0.18), rgba(12, 14, 18, 0.96) 72%);
}

.live-feed-spotlight-kicker {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-feed-spotlight-headline {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.live-feed-spotlight-strap {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(244, 239, 231, 0.82);
  font-size: 0.98rem;
  line-height: 1.45;
}

.live-feed-spotlight-body {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(244, 239, 231, 0.86);
  font-size: 1rem;
  line-height: 1.58;
}

.live-feed-spotlight-points {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  align-content: start;
}

.live-feed-spotlight-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(244, 239, 231, 0.82);
  font-size: 0.93rem;
  line-height: 1.42;
}

.live-feed-spotlight-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.24);
}

.live-feed-spotlight-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  color: #1a0c02;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.18);
  justify-self: center;
  align-self: end;
  position: relative;
  overflow: hidden;
  animation: liveFeedCtaPulse 2.8s ease-in-out infinite;
}

.live-feed-spotlight-cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -32%;
  width: 34%;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.38) 48%, transparent 78%);
  transform: translateX(-180%) skewX(-18deg);
  animation: liveFeedCtaShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

.live-feed-spotlight-cta:hover,
.live-feed-spotlight-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 106, 0, 0.24);
  filter: brightness(1.05);
}

.live-feed-rail {
  width: min(100%, 320px);
  justify-self: center;
}

.live-feed-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
}

.live-feed-rail span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.live-feed-rail span.is-active {
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(1.08);
}

.venture-tile {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 132px;
  padding: 12px;
  border-radius: 20px;
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.venture-tile-logo {
  flex: 0 0 104px;
  width: 104px;
  height: 104px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 178, 77, 0.16));
}

.venture-tile-logo--hot-furrs {
  width: 122px;
  height: 122px;
  flex-basis: 122px;
  transform: scale(1.08);
}

.venture-tile-name {
  display: block;
  font-size: 1.02rem;
  line-height: 1.15;
}

.venture-tile.has-logo {
  justify-content: center;
  padding-inline: 10px;
}

.venture-tile:hover,
.venture-tile.active {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18), 0 0 24px rgba(255, 106, 0, 0.08);
}

.venture-tile.active .venture-tile-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(255, 178, 77, 0.22));
}

.venture-tile.active .venture-tile-logo--hot-furrs {
  transform: scale(1.16);
}

.contact {
  display: grid;
  grid-template-columns: 300px minmax(360px, 520px) 220px;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.contact-hero h2 span {
  display: block;
  white-space: nowrap;
}

.contact-hero h2 {
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  max-width: none;
  text-align: left;
  line-height: 0.96;
}

.contact-action {
  display: flex;
  justify-content: flex-start;
  align-self: center;
  justify-self: start;
  margin-left: -26px;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 18px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

@media (min-width: 861px) {
  .venture-panel-large {
    grid-template-rows: minmax(88px, auto) 220px minmax(112px, auto) minmax(148px, auto) 1fr;
  }

  .venture-heading-row {
    min-height: 88px;
    align-items: start;
  }

  .venture-panel-large h3 {
    min-height: 2.12em;
    white-space: normal;
    text-wrap: balance;
  }

  .venture-panel-intro {
    min-height: 6.2em;
  }

  .venture-panel-copy {
    min-height: 7.4em;
  }
}

.contact-details-left {
  justify-self: start;
  font-size: 1.12rem;
  line-height: 1.08;
}

.contact-details-left .eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details-left strong {
  font-weight: 800;
}

.contact-details-left a {
  text-decoration: none;
}

.contact-hero {
  justify-self: start;
  align-self: center;
  width: 100%;
  max-width: 560px;
  margin-left: -72px;
}

.contact-details-left p:last-child {
  margin-top: 10px;
  margin-left: 0;
}

.contact-details p,
.contact-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.24;
}

@media (min-width: 1221px) {
  .contact {
    grid-template-columns: 300px minmax(420px, 620px) 220px;
  }

  .contact-hero {
    justify-self: center;
    max-width: 620px;
    margin-left: -112px;
  }
}

.contact-legal {
  width: 100%;
  margin: 14px auto 0;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff6eb;
  text-shadow: 0 0 16px rgba(255, 178, 77, 0.18);
  animation: legalShimmer 5.4s ease-in-out infinite;
}

.legal-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px auto 0;
}

.legal-link {
  border: 0;
  padding: 0;
  color: rgba(255, 244, 232, 0.82);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.legal-link:hover,
.legal-link:focus-visible {
  color: var(--orange-bright);
}

.contact-legal span {
  display: inline;
}

.contact-legal span + span::before {
  content: " ";
}

.contact-cta-dark {
  color: #fff;
  background: linear-gradient(180deg, #191b20, #0f1115);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
  padding: 22px 40px;
  font-size: 1.18rem;
}

@keyframes ctaHeartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  8% {
    transform: scale(1.04);
  }
  16% {
    transform: scale(1);
  }
  24% {
    transform: scale(1.03);
  }
  32% {
    transform: scale(1);
  }
}

@keyframes ctaShine {
  0%,
  100% {
    transform: translateX(-140%) skewX(-18deg);
  }
  38%,
  62% {
    transform: translateX(180%) skewX(-18deg);
  }
}

@keyframes navTextShimmer {
  0%,
  100% {
    color: var(--muted);
    text-shadow: none;
  }
  16%,
  28% {
    color: #fff0df;
    text-shadow: 0 0 14px rgba(255, 178, 77, 0.24);
  }
  32%,
  42% {
    color: var(--orange-bright);
    text-shadow: 0 0 18px rgba(255, 106, 0, 0.38);
  }
}

@keyframes logoBlink {
  0%,
  100% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ventureTitleShine {
  0% {
    text-shadow: 0 0 0 rgba(255, 106, 0, 0);
    letter-spacing: -0.01em;
  }
  38% {
    text-shadow: 0 0 24px rgba(255, 178, 77, 0.34);
    letter-spacing: 0;
  }
  100% {
    text-shadow: 0 0 22px rgba(255, 106, 0, 0.14);
    letter-spacing: 0;
  }
}

@keyframes legalShimmer {
  0%,
  100% {
    color: #fff6eb;
    text-shadow: 0 0 14px rgba(255, 178, 77, 0.12);
  }
  38% {
    color: #ffd8b0;
    text-shadow: 0 0 18px rgba(255, 178, 77, 0.28);
  }
  58% {
    color: var(--orange-bright);
    text-shadow: 0 0 22px rgba(255, 106, 0, 0.34);
  }
}

@keyframes heroWordGlow {
  0%,
  100% {
    color: var(--ink);
  }
  20%,
  42% {
    color: var(--orange);
  }
  60% {
    color: var(--ink);
  }
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(640px, calc(100% - 24px));
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(14, 16, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.cookie-copy strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

.cookie-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cookie-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
}

.cookie-button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-banner.is-hidden {
  display: none;
}

.service-page main {
  display: grid;
  gap: 22px;
  padding-bottom: 22px;
}

.service-page .page-hero {
  display: grid;
  gap: 20px;
  align-items: end;
}

.service-page .page-hero h1,
.booking-section h2,
.page-faq-heading {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.service-page .page-hero h1 {
  max-width: 11ch;
}

.service-page .page-copy,
.service-page .page-copy p,
.service-page .page-list,
.service-page .page-list li,
.booking-section p,
.page-faq-card p,
.page-step p,
.page-card p,
.page-highlight p {
  color: var(--muted);
  line-height: 1.72;
  text-wrap: pretty;
}

.service-page .page-copy,
.service-page .page-copy p,
.booking-section p {
  margin: 0;
  font-size: 1.08rem;
}

.page-stack {
  display: grid;
  gap: 18px;
}

.page-grid,
.page-faq-grid,
.page-steps,
.sector-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.page-card,
.page-step,
.page-faq-card,
.page-highlight {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(18, 20, 24, 0.9);
}

.panel-light .page-card,
.panel-light .page-step,
.panel-light .page-faq-card,
.panel-light .page-highlight {
  background:
    linear-gradient(180deg, rgba(255, 244, 232, 0.9), rgba(250, 236, 220, 0.84));
  border-color: rgba(90, 75, 64, 0.12);
  box-shadow: 0 28px 60px rgba(46, 28, 16, 0.12);
}

.page-card h3,
.page-step h3,
.page-faq-card h3,
.page-highlight h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1;
}

.page-card p,
.page-step p,
.page-faq-card p,
.page-highlight p {
  margin: 0;
}

.panel-light .page-card p,
.panel-light .page-step p,
.panel-light .page-faq-card p,
.panel-light .page-highlight p,
.panel-light .page-list,
.panel-light .page-list li,
.panel-light .booking-section p {
  color: #5a4b40;
}

.page-card .card-kicker,
.page-step .step-number,
.page-highlight .card-kicker,
.page-faq-card .card-kicker {
  display: inline-block;
}

.page-card .card-kicker,
.page-highlight .card-kicker,
.page-faq-card .card-kicker {
  color: var(--muted);
}

.service-page .page-grid .page-card,
.service-page .sector-grid .page-card {
  background: rgba(18, 20, 24, 0.94);
  color: #fff7ef;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-page .panel-light .page-grid .page-card,
.service-page .panel-light .sector-grid .page-card {
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.service-page .page-grid .page-card::after,
.service-page .sector-grid .page-card::after {
  content: "";
  position: absolute;
  inset: -18% auto -18% -42%;
  width: 42%;
  background: linear-gradient(110deg, transparent 26%, rgba(255, 255, 255, 0.18) 48%, transparent 68%);
  transform: translateX(-170%) skewX(-18deg);
  transition: transform 420ms ease;
  pointer-events: none;
}

.service-page .page-grid .page-card:hover,
.service-page .sector-grid .page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.16), 0 0 28px rgba(255, 178, 77, 0.12);
}

.service-page .page-grid .page-card:hover::after,
.service-page .sector-grid .page-card:hover::after {
  transform: translateX(430%) skewX(-18deg);
}

.service-page .page-grid .page-card h3,
.service-page .sector-grid .page-card h3 {
  color: #fff7ef;
}

.service-page .page-grid .page-card p,
.service-page .sector-grid .page-card p {
  color: rgba(244, 239, 231, 0.82);
}

.service-page .page-grid .page-card .card-kicker,
.service-page .sector-grid .page-card .card-kicker {
  color: #fff7ef;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.service-page .page-grid .page-card:nth-child(6n + 1),
.service-page .sector-grid .page-card:nth-child(6n + 1) {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 231, 204, 0.2), transparent 28%),
    linear-gradient(145deg, #ff7d1f, #8f2d00 72%);
}

.service-page .page-grid .page-card:nth-child(6n + 2),
.service-page .sector-grid .page-card:nth-child(6n + 2) {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 208, 120, 0.2), transparent 30%),
    linear-gradient(145deg, #2d3038, #090b10 72%);
}

.service-page .page-grid .page-card:nth-child(6n + 3),
.service-page .sector-grid .page-card:nth-child(6n + 3) {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 188, 97, 0.22), transparent 28%),
    linear-gradient(145deg, #4d1800, #16090a 76%);
}

.service-page .page-grid .page-card:nth-child(6n + 4),
.service-page .sector-grid .page-card:nth-child(6n + 4) {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 220, 156, 0.22), transparent 28%),
    linear-gradient(145deg, #3d414b, #0d0f14 74%);
}

.service-page .page-grid .page-card:nth-child(6n + 5),
.service-page .sector-grid .page-card:nth-child(6n + 5) {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 166, 82, 0.2), transparent 28%),
    linear-gradient(145deg, #ff9552, #6d2600 74%);
}

.service-page .page-grid .page-card:nth-child(6n),
.service-page .sector-grid .page-card:nth-child(6n) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 220, 156, 0.22), transparent 30%),
    linear-gradient(145deg, #5a2a00, #17100d 76%);
}

.page-step .step-number {
  color: var(--orange);
  font-weight: 700;
}

.page-step-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}

.page-step-head h3 {
  margin: 0;
}

.page-highlight {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 178, 77, 0.28), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(14, 16, 20, 0.96));
}

.page-highlight::before {
  content: "";
  position: absolute;
  inset: auto -14% -32% auto;
  width: 220px;
  height: 220px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.84), rgba(255, 178, 77, 0.58));
  filter: blur(46px);
  opacity: 0.7;
  pointer-events: none;
}

.page-highlight > * {
  position: relative;
  z-index: 1;
}

.page-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 1.02rem;
}

.page-list li + li {
  margin-top: 10px;
}

.page-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.page-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
}

.page-showcase-media,
.page-showcase-copy {
  min-width: 0;
}

.page-showcase-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 244, 232, 0.12), transparent 22%),
    linear-gradient(145deg, rgba(26, 28, 34, 0.98), rgba(9, 11, 16, 0.96));
  box-shadow: var(--shadow);
}

.page-showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-showcase-copy {
  position: relative;
  z-index: 1;
}

.button {
  white-space: nowrap;
}

.booking-section {
  display: grid;
  gap: 10px;
}

.booking-section iframe {
  margin-top: 14px;
  border-radius: 26px;
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
}

.service-page .contact {
  margin-top: 0;
}

.ai-automation-page .page-hero.automation-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.ai-automation-page .automation-hero h1 {
  max-width: 16ch;
  font-size: 4.9rem;
  letter-spacing: 0;
}

.automation-hero-copy,
.automation-hero-proof {
  min-width: 0;
}

.automation-hero-proof {
  display: grid;
  gap: 16px;
}

.automation-mini-stat,
.automation-fix-card,
.automation-comparison-column,
.automation-package-card,
.automation-use-case {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.automation-mini-stat,
.automation-fix-card,
.automation-comparison-column,
.automation-package-card,
.automation-use-case {
  padding: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 178, 77, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(18, 20, 24, 0.98), rgba(8, 10, 14, 0.96));
}

.automation-mini-stat strong {
  display: block;
  margin: 14px 0 8px;
  color: #fff7ef;
  font-size: 3.1rem;
  line-height: 0.9;
}

.automation-mini-stat p,
.automation-fix-card p,
.automation-comparison-column li,
.automation-package-card p,
.automation-package-card li,
.automation-use-case p {
  color: rgba(244, 239, 231, 0.82);
  line-height: 1.62;
}

.automation-fix-grid,
.automation-comparison-widget,
.automation-package-grid,
.automation-use-case-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  min-width: 0;
}

.automation-fix-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.automation-fix-card h3,
.automation-comparison-column h3,
.automation-package-card h3,
.automation-use-case h3 {
  margin: 12px 0;
  color: #fff7ef;
  font-size: 1.65rem;
  line-height: 1.05;
}

.automation-comparison-widget {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.automation-comparison-column {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 178, 77, 0.18), transparent 28%),
    linear-gradient(145deg, #2d3038, #090b10 72%);
}

.automation-comparison-column-live {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 220, 156, 0.22), transparent 30%),
    linear-gradient(145deg, #ff7d1f, #8f2d00 72%);
}

.automation-comparison-column ul,
.automation-package-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 1.1rem;
}

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

.automation-package-card {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 178, 77, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.2), rgba(10, 12, 16, 0.96));
}

.automation-use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel-light .automation-comparison-column,
.panel-light .automation-use-case {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.16), transparent 28%),
    linear-gradient(145deg, #2d3038, #090b10 72%);
}

.automation-impact-panel,
.automation-flow-panel,
.automation-offer-panel,
.automation-packages-panel,
.automation-comparison-panel,
.automation-use-cases-panel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.automation-stat-grid,
.automation-flow,
.automation-offer-grid,
.automation-package-grid,
.automation-fix-grid,
.automation-comparison-widget,
.automation-use-case-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  min-width: 0;
}

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

.automation-stat-card,
.automation-loss-board,
.automation-flow-step,
.automation-offer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 178, 77, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(18, 20, 24, 0.98), rgba(8, 10, 14, 0.96));
  box-shadow: var(--shadow);
}

.automation-stat-card,
.automation-flow-step,
.automation-offer-card,
.automation-mini-stat,
.automation-fix-card,
.automation-comparison-column,
.automation-package-card,
.automation-use-case {
  padding: 24px;
  min-width: 0;
}

.automation-stat-card::after,
.automation-flow-step::after,
.automation-offer-card::after,
.automation-mini-stat::after,
.automation-fix-card::after,
.automation-comparison-column::after,
.automation-package-card::after,
.automation-use-case::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -45%;
  width: 42%;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.2) 48%, transparent 70%);
  transform: translateX(-170%) skewX(-18deg);
  pointer-events: none;
}

.automation-stat-card.is-visible::after,
.automation-flow-step.is-visible::after,
.automation-offer-card.is-visible::after,
.automation-mini-stat.is-visible::after,
.automation-fix-card.is-visible::after,
.automation-comparison-column.is-visible::after,
.automation-package-card.is-visible::after,
.automation-use-case.is-visible::after {
  animation: serviceScrollShine 900ms ease forwards;
}

.automation-stat-card strong {
  display: block;
  margin-top: 16px;
  color: #fff7ef;
  font-size: 4.7rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.automation-stat-card p,
.automation-stat-card a,
.automation-loss-board p,
.automation-flow-step p,
.automation-offer-card p,
.automation-package-card p,
.automation-use-case p {
  color: rgba(244, 239, 231, 0.82);
  line-height: 1.62;
}

.automation-stat-card a {
  display: inline-flex;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-loss-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  min-width: 0;
}

.automation-loss-board h3 {
  margin: 12px 0;
  font-size: 3rem;
  line-height: 0.94;
}

.automation-loss-math {
  display: grid;
  gap: 12px;
}

.automation-loss-math span {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.automation-loss-math strong {
  color: #fff7ef;
  white-space: nowrap;
}

.automation-service-number {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ef;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.automation-flow-step span {
  color: var(--orange-bright);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.automation-flow-step h3,
.automation-offer-card h3 {
  margin: 12px 0;
  color: #fff7ef;
  font-size: 1.9rem;
  line-height: 1;
}

.automation-role-cloud {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.automation-role-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  animation: automationRolePulse 4.8s ease-in-out infinite;
}

.automation-role-track-alt {
  animation-delay: 1.2s;
}

.automation-role-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ef;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.automation-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.automation-offer-card {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 178, 77, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.24), rgba(10, 12, 16, 0.96));
}

.automation-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.automation-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes automationRolePulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .ai-automation-page .page-hero.automation-hero {
    grid-template-columns: 1fr;
  }

  .ai-automation-page .automation-hero h1 {
    max-width: 18ch;
    font-size: 4rem;
  }

  .automation-stat-grid,
  .automation-flow,
  .automation-offer-grid,
  .automation-package-grid,
  .automation-fix-grid,
  .automation-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .automation-loss-board {
    grid-template-columns: 1fr;
  }

  .automation-comparison-widget {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .ai-automation-page .automation-hero h1 {
    max-width: 100%;
    font-size: 2.85rem;
  }

  .automation-stat-grid,
  .automation-flow,
  .automation-offer-grid,
  .automation-package-grid,
  .automation-fix-grid,
  .automation-use-case-grid {
    grid-template-columns: 1fr;
  }

  .automation-stat-card,
  .automation-loss-board,
  .automation-flow-step,
  .automation-offer-card,
  .automation-mini-stat,
  .automation-fix-card,
  .automation-comparison-column,
  .automation-package-card,
  .automation-use-case {
    padding: 22px;
  }

  .automation-stat-card strong {
    font-size: 3.4rem;
  }

  .automation-loss-board h3 {
    font-size: 2.2rem;
  }

  .automation-flow-step h3,
  .automation-offer-card h3 {
    font-size: 1.55rem;
  }
}

.footer-loop-link {
  margin-top: 8px;
}

.footer-loop-link a {
  color: inherit;
}

.page-faq-heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

@media (max-width: 980px) {
  .page-grid,
  .page-grid-3,
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .service-page .page-hero h1,
  .booking-section h2,
  .page-faq-heading {
    font-size: clamp(2.65rem, 10vw, 4.2rem);
  }

  .service-page .page-copy,
  .service-page .page-copy p,
  .booking-section p {
    font-size: 1rem;
  }
}

@media (max-width: 680px) {
  .page-grid,
  .page-grid-3,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .page-card,
  .page-step,
  .page-faq-card,
  .page-highlight {
    padding: 22px;
  }
}

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
}

.legal-overlay[hidden] {
  display: none;
}

.legal-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 10, 0.72);
  backdrop-filter: blur(16px);
}

.legal-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 24px));
  max-height: calc(100vh - 44px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 106, 0, 0.16), transparent 22%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(14, 16, 20, 0.98), rgba(9, 10, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.legal-overlay-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-overlay-head h2 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.94;
}

.legal-overlay-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.legal-overlay-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 28px 0;
}

.legal-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff4e8;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-tab.active {
  background: rgba(255, 106, 0, 0.14);
  border-color: rgba(255, 178, 77, 0.24);
}

.legal-overlay-body {
  overflow: auto;
  padding: 24px 28px 30px;
}

.legal-pane {
  display: none;
}

.legal-pane.active {
  display: block;
}

.legal-page {
  width: min(calc(100% - 44px), 980px);
  margin: 0 auto;
  padding: 28px 0 64px;
}

.legal-card {
  margin-top: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(18, 20, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.94;
}

.legal-card .legal-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.legal-stack {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.06;
}

.legal-section p,
.legal-section li {
  color: rgba(244, 239, 231, 0.84);
  line-height: 1.7;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.live-feed.is-sliding strong,
.live-feed.is-sliding p:not(.card-kicker),
.live-feed.is-sliding .live-feed-media,
.live-feed.is-sliding .live-feed-details,
.live-feed.is-sliding .live-feed-cta {
  opacity: 0;
  transform: translateX(-34px);
}

.lilly-shell {
  position: fixed;
  right: 22px;
  bottom: 112px;
  z-index: 39;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.lilly-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.96), rgba(255, 178, 77, 0.96));
  box-shadow: 0 24px 48px rgba(255, 106, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lilly-trigger:hover,
.lilly-trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 30px 58px rgba(255, 106, 0, 0.3);
}

.lilly-trigger-badge,
.lilly-panel-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 12, 16, 0.9);
  color: #fff6eb;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lilly-trigger-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.lilly-trigger-copy strong {
  font-size: 1rem;
  line-height: 1;
}

.lilly-trigger-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lilly-panel {
  width: min(420px, calc(100vw - 26px));
  max-height: min(78vh, 760px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 106, 0, 0.15), transparent 26%),
    linear-gradient(180deg, rgba(13, 15, 19, 0.98), rgba(9, 10, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px) saturate(120%);
}

.lilly-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lilly-panel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lilly-panel-brand strong {
  display: block;
  font-size: 1.12rem;
}

.lilly-panel-brand p,
.lilly-status p,
.lilly-message p,
.lilly-lead-title {
  margin: 0;
}

.lilly-panel-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.lilly-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lilly-status {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.48;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lilly-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.5);
  margin-top: 4px;
  flex: 0 0 10px;
}

.lilly-thread {
  overflow: auto;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.lilly-message {
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 0.97rem;
}

.lilly-message-bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #f3ecdf;
}

.lilly-message-user {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.88), rgba(255, 178, 77, 0.82));
  color: #fff;
}

.lilly-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.lilly-message-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lilly-quick-actions {
  padding: 0 18px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lilly-quick-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff6eb;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lilly-quick-actions button:hover,
.lilly-quick-actions button:focus-visible {
  background: rgba(255, 106, 0, 0.22);
  transform: translateY(-1px);
}

.lilly-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 18px 18px;
}

.lilly-input-row input,
.lilly-lead-form input,
.lilly-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
}

.lilly-input-row input::placeholder,
.lilly-lead-form input::placeholder,
.lilly-lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.lilly-input-row button,
.lilly-lead-form button {
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lilly-lead-card {
  margin: 0 18px 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lilly-lead-title {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lilly-lead-form {
  display: grid;
  gap: 10px;
}

.lilly-lead-form textarea {
  resize: vertical;
  min-height: 90px;
}

.is-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.is-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes liveFeedCursor {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes liveFeedCtaPulse {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(255, 106, 0, 0.18);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 24px 44px rgba(255, 106, 0, 0.28);
    filter: brightness(1.06);
  }
}

@keyframes liveFeedCtaShine {
  0%,
  18% {
    transform: translateX(-190%) skewX(-18deg);
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  52% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 1;
  }
  62%,
  100% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes liveFeedSocialSweep {
  0%,
  100% {
    transform: translateX(-180%) skewX(-18deg);
  }
  40%,
  60% {
    transform: translateX(620%) skewX(-18deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    box-shadow: 0 26px 60px rgba(255, 106, 0, 0.24);
  }
  50% {
    box-shadow: 0 34px 82px rgba(255, 106, 0, 0.38);
  }
}

@keyframes flarePulse {
  0%,
  100% {
    transform: scale(0.92) translate3d(0, 0, 0);
    opacity: 0.54;
  }
  50% {
    transform: scale(1.08) translate3d(-16px, 18px, 0);
    opacity: 0.92;
  }
}

@keyframes scanSweep {
  0% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  10% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.22;
  }
  100% {
    transform: translateX(460%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes ventureBreath {
  0%,
  100% {
    transform: scale(0.92) translate3d(0, 0, 0);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08) translate3d(-10px, -14px, 0);
    opacity: 0.8;
  }
}

@keyframes linePulse {
  0%,
  100% {
    transform: scaleX(0.82);
    opacity: 0.72;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 1220px) {
  .hero,
  .system-scroll,
  .system-intro,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-inline: max(18px, calc((100vw - 1480px) / 2 + 18px));
  }

  .site-nav {
    transform: none;
  }

  .header-cta {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding: 18px 20px 20px;
  }

  .hero-caption {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .system-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
  }

  .system-step {
    min-height: 246px;
    padding: 26px 22px;
  }

  .system-step-head {
    gap: 12px;
  }

  .system-step h3 {
    font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  }

  .system-step p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.56;
    max-width: none;
  }

  .system-stage {
    top: 24px;
  }

  .venture-showcase-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .live-feed {
    min-height: 780px;
  }

  .ventures .section-heading h2 {
    white-space: normal;
  }

  .brand-logo-wrap {
    width: 100%;
    height: 98px;
  }

  .brand-logo {
    transform: scale(1.42);
  }

  .site-nav a {
    font-size: 0.97rem;
    letter-spacing: 0.16em;
  }

  .contact {
    grid-template-columns: 280px minmax(320px, 1fr) 190px;
    justify-items: stretch;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
  }

  .contact-details-left {
    justify-self: start;
  }

  .contact-hero h2 {
    text-align: center;
  }

  .contact-hero {
    justify-self: center;
    align-self: center;
    max-width: 520px;
    margin-left: 0;
  }

  .contact-action {
    justify-self: end;
    justify-content: flex-end;
    align-self: center;
    margin-left: 0;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-offset: 114px;
  }

  .site-header {
    grid-template-columns: minmax(360px, 1fr) auto auto;
    gap: 12px;
    overflow: visible;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: auto;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    overflow: visible;
    justify-self: end;
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    transform: translateY(-6px);
    margin: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.94), rgba(10, 12, 16, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(22px) saturate(120%);
    opacity: 0;
    pointer-events: none;
  }

  .site-header.menu-open .site-nav {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 18px;
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  .header-cta {
    justify-self: end;
    transform: none;
  }

  .contact {
    grid-template-columns: 250px minmax(280px, 1fr) 170px;
    gap: 16px;
    align-items: center;
  }

  .system-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
  }

  .system-step {
    min-height: 252px;
    padding: 26px 22px;
  }

  .system-step h3 {
    font-size: clamp(1.78rem, 2.2vw, 2.25rem);
  }

  .system-step p {
    margin-top: 15px;
    font-size: 0.96rem;
    line-height: 1.52;
    max-width: none;
  }

  .contact-hero {
    justify-self: center;
    align-self: center;
    max-width: 440px;
    margin-left: 0;
  }

  .contact-hero h2 {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    text-align: center;
  }

  .contact-action {
    justify-self: end;
    justify-content: flex-end;
    align-self: center;
    margin-left: 0;
  }

  .contact-details-left {
    font-size: 1rem;
    line-height: 1.04;
    justify-self: start;
  }
}

/* Removed conflicting query */

/* Removed conflicting query */

@media (max-width: 860px) {
  :root {
    --header-offset: 114px;
  }

  main {
    width: min(calc(100% - 26px), 1480px);
  }

  .site-header {
    width: 100%;
  }

  .panel {
    padding: 24px;
  }

  .ventures .section-heading h2 {
    white-space: normal;
  }

  .ventures .section-heading h2 span {
    display: block;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px 18px 10px;
    overflow: visible;
  }

  .brand {
    width: min(100%, 560px);
    margin-left: -28px;
  }

  .nav-toggle {
    justify-self: end;
    position: relative;
    z-index: 4;
  }

  .site-nav {
    grid-column: auto;
    width: min(300px, calc(100vw - 34px));
    gap: 8px;
    padding: 12px;
    justify-self: end;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    transform: translateY(-6px);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px 18px;
    font-size: 1.08rem;
    letter-spacing: 0.16em;
  }

  .header-cta {
    display: inline-flex;
    justify-self: end;
    transform: none;
    padding: 12px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    min-height: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
    max-width: 100%;
  }

  .hero-art,
  .hero-art-frame {
    min-height: 340px;
  }

  .hero-orbit-a {
    width: 320px;
    height: 320px;
    right: -40px;
  }

  .hero-block-main {
    right: 36px;
    top: 72px;
    width: 180px;
    height: 180px;
  }

  .hero-signal {
    left: 20px;
    top: 20px;
    right: 20px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
    transform: scale(1.34);
  }

  .brand-logo-wrap {
    width: min(100%, 560px);
    height: 92px;
  }

  .hero-caption {
    right: 20px;
    left: 20px;
    bottom: 118px;
    max-width: none;
  }

  .hero-stage-line-a {
    right: 40px;
    left: 20px;
  }

  .hero-stage-line-b {
    left: 56px;
    right: 20px;
  }

  .system-stage-wrap {
    min-height: auto;
  }

  .system-stage {
    position: relative;
    top: auto;
    min-height: 408px;
    padding: 18px;
    display: grid;
    gap: 16px;
    transform: none;
  }

  .system-grid {
    display: none;
  }

  .system-layer-a {
    position: relative;
    inset: auto;
    width: 100%;
    height: 158px;
    border-radius: 30px;
    left: auto;
    top: auto;
    transform: none;
    animation: mobileStagePulse 3.2s ease-in-out infinite;
  }

  .system-layer-b {
    display: none;
  }

  .system-card-main,
  .system-card-side {
    position: relative;
    inset: auto;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .contact {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contact-action {
    justify-content: stretch;
  }

  .button,
  .contact-cta {
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --header-offset: 90px;
  }

  .panel,
  .site-header,
  .hero,
  .services,
  .ventures,
  .contact,
  .live-feed,
  .venture-panel,
  .system-stage {
    max-width: 100%;
    overflow-x: clip;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .services .section-heading {
    gap: 14px;
  }

  .services .section-heading-main h2 {
    font-size: clamp(2.7rem, 11vw, 3.7rem);
    line-height: 0.94;
    max-width: 11ch;
  }

  .section-heading-copy-services {
    font-size: 1.06rem;
    line-height: 1.48;
    padding-top: 0;
  }

  .service-card {
    padding: 20px;
    gap: 10px;
  }

  .service-card .card-kicker {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .service-card h3 {
    font-size: clamp(1.92rem, 8vw, 2.4rem);
    min-height: auto;
  }

  .service-card p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .service-card-cta {
    padding-top: 6px;
  }

  .service-card.is-visible {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), 0 0 36px rgba(255, 178, 77, 0.18);
  }

  .service-card.is-visible::after {
    animation: serviceScrollShine 1.2s ease-out 1;
  }

  .system-stage {
    height: 442px;
    min-height: 442px;
    padding: 18px;
    display: grid;
    grid-template-rows: 170px minmax(0, 1fr);
    gap: 16px;
  }

  .hero-scan,
  .hero-orbit-b,
  .hero-caption {
    display: none;
  }

  .brand {
    width: calc(100vw - 102px);
    min-width: 0;
    margin-left: -20px;
  }

  .brand-logo-wrap {
    width: calc(100vw - 102px);
    height: 72px;
    overflow: visible;
  }

  .brand-logo {
    transform: scale(1.72) translateX(-8px);
  }

  .system-layer-a {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(circle at 18% 24%, rgba(255, 241, 214, 0.42), transparent 16%),
      radial-gradient(circle at 82% 72%, rgba(255, 153, 18, 0.36), transparent 22%),
      linear-gradient(135deg, #ff7a12 0%, #ffb54a 100%);
    background-size: 130% 130%, 130% 130%, 180% 180%;
    animation:
      mobileBlobField 3.1s linear infinite,
      mobileBlobShell 2.8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .system-blob-signal {
    display: inline-flex;
    position: relative;
    z-index: 3;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 48px);
    min-height: 56px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(84, 33, 0, 0.34), rgba(52, 28, 12, 0.22));
    border: 1px solid rgba(255, 244, 226, 0.2);
    color: #fff4e2;
    font-size: clamp(1.02rem, 4vw, 1.28rem);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
    transform: perspective(500px) rotateX(0deg) scale(1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .system-layer-a::before,
  .system-layer-a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 88%;
    height: 78%;
    border-radius: 50%;
    background:
      radial-gradient(circle at 28% 32%, rgba(255, 247, 232, 0.7), transparent 22%),
      radial-gradient(circle at 70% 66%, rgba(255, 168, 42, 0.55), transparent 34%),
      linear-gradient(135deg, rgba(255, 120, 18, 0.56), rgba(255, 208, 128, 0.34));
    filter: blur(14px);
    mix-blend-mode: screen;
    opacity: 1;
    transform: translate(-50%, -50%);
    animation:
      mobileBlobFloatPrimary 2.2s cubic-bezier(0.64, 0.05, 0.36, 1) infinite,
      mobileBlobGlow 3.4s ease-in-out infinite;
  }

  .system-layer-a::after {
    width: 58%;
    height: 58%;
    border-radius: 58% 42% 54% 46% / 40% 60% 36% 64%;
    background:
      radial-gradient(circle at 40% 34%, rgba(255, 250, 239, 0.78), transparent 20%),
      linear-gradient(145deg, rgba(255, 132, 18, 0.66), rgba(255, 223, 156, 0.28));
    filter: blur(10px);
    opacity: 0.9;
    animation:
      mobileBlobFloatSecondary 1.9s cubic-bezier(0.6, 0, 0.4, 1) infinite,
      mobileBlobGlowSecondary 2.8s ease-in-out infinite;
  }

  .system-card-main {
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: opacity 240ms ease, transform 240ms ease;
  }

  .system-card-main h3 {
    min-height: 1.82em;
    margin-bottom: 6px;
    line-height: 0.96;
  }

  #stageText {
    min-height: 4.25em;
    margin-top: 0;
    line-height: 1.42;
  }

  .system-card-side {
    display: none;
  }

  .system-card-side strong {
    font-size: 1.2rem;
    line-height: 1.08;
  }

  .system-card p {
    line-height: 1.45;
  }

  .system-mobile-signal {
    display: none;
  }

  .system-stage.is-mobile-switching .system-card-main,
  .system-stage.is-mobile-switching .system-mobile-signal {
    opacity: 0;
  }

  .system-stage.is-mobile-switching .system-blob-signal {
    opacity: 0;
    transform: perspective(500px) rotateX(72deg) scale(0.88);
  }

  .venture-showcase-stage {
    grid-template-columns: 1fr;
  }

  .venture-panel-large {
    min-height: auto;
  }

  .venture-panel-large {
    grid-template-rows: auto auto auto auto auto;
  }

  .venture-heading-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .venture-heading-row .card-kicker {
    display: block;
    max-width: 6ch;
    line-height: 1.05;
  }

  .venture-panel-large h3 {
    font-size: clamp(2.1rem, 8vw, 3rem);
    text-align: right;
    white-space: normal;
    min-height: 2.25em;
  }

  .venture-logo-stage {
    min-height: 190px;
    padding: 12px;
  }

  .venture-logo-image {
    width: min(100%, 230px);
    max-height: 158px;
  }

  .venture-logo-image--hot-furrs {
    width: min(100%, 220px);
    max-height: 152px;
    transform: scale(1.02);
  }

  .venture-presentation-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .venture-tile {
    min-height: 92px;
    aspect-ratio: 1 / 1;
    padding: 8px;
    border-radius: 18px;
  }

  .venture-tile-logo {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .venture-tile-logo--hot-furrs {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .venture-tile.active {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), 0 0 34px rgba(255, 106, 0, 0.16);
  }

  .venture-tile.active .venture-tile-logo {
    transform: scale(1.12);
    filter: drop-shadow(0 0 24px rgba(255, 178, 77, 0.34));
  }

  .venture-tile.active .venture-tile-logo--hot-furrs {
    transform: scale(1.1);
  }

  .live-feed {
    height: 1120px;
    min-height: 1120px;
    max-height: 1120px;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
  }

  .live-feed-book-release {
    grid-template-columns: 1fr;
  }

  .book-cover-card {
    min-height: 360px;
  }

  .live-feed.live-feed-has-book {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .live-feed.live-feed-has-book .live-feed-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto minmax(360px, auto) auto auto auto;
    row-gap: 18px;
    align-items: start;
  }

  .live-feed.live-feed-has-book .card-kicker {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .live-feed.live-feed-has-book strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .live-feed.live-feed-has-book .live-feed-media {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid !important;
    align-self: stretch;
    justify-items: center;
  }

  .live-feed.live-feed-has-book p:last-of-type {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .live-feed.live-feed-has-book .live-feed-cta {
    grid-column: 1 / -1;
    grid-row: 6;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .live-feed.live-feed-has-book .live-feed-details {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .live-feed-book-points {
    gap: 8px;
  }

  .live-feed-book-points li {
    font-size: 0.96rem;
    line-height: 1.46;
    padding-left: 14px;
  }

  .live-feed.live-feed-has-spotlight .live-feed-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto minmax(460px, 1fr) auto;
  }

  .live-feed-spotlight-card {
    min-height: 460px;
    padding: 22px 20px 24px;
  }

  .live-feed-spotlight-headline {
    font-size: clamp(1.22rem, 5.6vw, 1.62rem);
  }

  .live-feed-spotlight-strap {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .live-feed-spotlight-body {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .live-feed-spotlight-points {
    gap: 6px;
  }

  .live-feed-spotlight-points li {
    font-size: 0.87rem;
    line-height: 1.4;
    padding-left: 14px;
  }

  .live-feed-spotlight-cta {
    align-self: center;
    margin-top: 8px;
    margin-bottom: 18px;
  }

  .live-feed strong {
    display: block;
    overflow: visible;
  }

  .live-feed p:last-of-type {
    display: block;
    overflow: visible;
  }

  .contact {
    grid-template-columns: 1fr 156px;
    grid-template-areas:
      "hero hero"
      "details action";
    gap: 18px 14px;
    align-items: start;
  }

  .contact-hero {
    grid-area: hero;
    margin-left: 0;
    max-width: none;
    justify-self: center;
    text-align: center;
  }

  .contact-hero h2 {
    text-align: center;
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 0.94;
  }

  .contact-details-left {
    grid-area: details;
    justify-self: start;
    font-size: 0.98rem;
    line-height: 1.02;
  }

  .contact-action {
    grid-area: action;
    justify-self: end;
    align-self: center;
    margin-left: 0;
    width: 100%;
  }

  .contact-cta {
    width: 100%;
    white-space: nowrap;
    font-size: 0.94rem;
  }

  .contact-legal {
    padding-inline: 16px;
    line-height: 1.25;
  }

  .contact-legal span {
    display: block;
  }

  .contact-legal span + span::before {
    content: none;
  }

  .legal-nav {
    padding-inline: 10px;
  }

  .legal-overlay {
    padding: 12px;
  }

  .legal-overlay-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .legal-overlay-head,
  .legal-overlay-tabs,
  .legal-overlay-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-page {
    width: min(calc(100% - 26px), 980px);
  }

  .legal-card {
    padding: 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
  }

  .lilly-shell {
    right: 12px;
    left: 12px;
    bottom: 92px;
    justify-items: stretch;
  }

  .lilly-trigger {
    justify-content: center;
  }

  .lilly-panel {
    width: 100%;
    max-height: min(72vh, 680px);
  }

  .lilly-input-row {
    grid-template-columns: 1fr;
  }

  .lilly-input-row button,
  .lilly-lead-form button {
    min-height: 50px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 10px 12px 8px;
  }

  .brand {
    width: auto;
    min-width: 0;
    margin-left: 0;
  }

  .brand-logo-wrap {
    width: min(100%, 238px);
    height: 56px;
    overflow: hidden;
  }

  .brand-logo {
    transform: scale(1.1) translateX(0);
    transform-origin: left center;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .header-cta {
    padding: 10px 14px;
    min-height: 44px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .hero {
    gap: 20px;
    padding: 16px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.92;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-art,
  .hero-art-frame {
    min-height: 300px;
  }

  .hero-signal {
    left: 16px;
    right: 16px;
    top: 16px;
    padding: 16px;
  }

  .hero-carousel {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding-top: 0;
  }

  .hero-carousel strong {
    min-height: 0;
    font-size: clamp(1.08rem, 6.4vw, 1.8rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .hero-carousel p:last-of-type {
    min-height: 0;
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .hero-carousel-rail {
    margin-top: 12px;
  }

  .system-track {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .system-step {
    min-height: 0;
    padding: 22px 18px;
  }

  .system-step h3 {
    font-size: clamp(1.52rem, 8.2vw, 2.08rem);
    line-height: 1;
  }

  .system-step p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.58;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-logo-wrap {
    width: min(100%, 154px);
    height: 42px;
  }

  .brand-logo {
    transform: scale(0.9) translateX(0);
  }

  .header-cta {
    padding: 8px 10px;
    min-height: 38px;
    font-size: 0.68rem;
    letter-spacing: 0.01em;
  }

  .hero {
    padding: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-signal {
    left: 14px;
    right: 14px;
    top: 14px;
    padding: 14px;
  }

  .hero-carousel strong {
    font-size: clamp(1rem, 6vw, 1.5rem);
  }

  .hero-carousel p:last-of-type,
  .hero-text,
  .system-step p {
    font-size: 0.94rem;
  }
}

@media (min-width: 481px) and (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand cta menu";
    align-items: center;
    gap: 10px;
    padding: 10px 12px 8px;
  }

  .brand {
    grid-area: brand;
    width: auto;
    min-width: 0;
    margin-left: 0;
    justify-self: start;
  }

  .brand-logo-wrap {
    width: clamp(236px, 54vw, 320px);
    height: clamp(54px, 11.2vw, 72px);
    overflow: hidden;
  }

  .brand-logo {
    transform: scale(1.56) translateX(-8px);
    transform-origin: left center;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
    padding: 8px 12px;
    min-height: 38px;
    font-size: 0.71rem;
    letter-spacing: 0.02em;
  }

  .nav-toggle {
    grid-area: menu;
    justify-self: end;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-toggle span {
    width: 17px;
  }

  .venture-presentation-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .venture-tile {
    min-height: 84px;
    padding: 7px;
    border-radius: 16px;
  }

  .venture-tile-logo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .venture-tile-logo--hot-furrs {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "hero hero"
      "details action";
    gap: 16px 14px;
    align-items: center;
  }

  .contact-hero {
    justify-self: center;
    text-align: center;
  }

  .contact-hero h2 {
    text-align: center;
    font-size: clamp(1.6rem, 6.8vw, 2.45rem);
    line-height: 0.94;
  }

  .contact-action {
    justify-self: end;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .contact-cta {
    width: auto;
    min-width: 128px;
    min-height: 38px;
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-offset: 74px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand cta menu";
    gap: 8px;
    padding: 8px 10px 8px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    width: 100%;
    justify-self: start;
  }

  .brand-logo-wrap {
    width: clamp(214px, 58vw, 286px);
    height: 58px;
  }

  .brand-logo {
    transform: scale(1.62) translateX(-8px);
    transform-origin: left center;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
    padding: 6px 9px;
    min-height: 34px;
    font-size: 0.61rem;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(255, 106, 0, 0.16);
  }

  .nav-toggle {
    grid-area: menu;
    justify-self: end;
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .nav-toggle span {
    width: 15px;
  }

  .system-stage-wrap {
    display: none;
  }

  .system-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .system-step {
    padding: 18px 16px;
  }

  .system-step-head {
    gap: 10px;
  }

  .step-number {
    font-size: 0.92rem;
  }

  .system-step h3 {
    font-size: clamp(1.4rem, 7.6vw, 1.9rem);
  }

  .system-step p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .venture-presentation-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .venture-tile {
    min-height: 74px;
    padding: 6px;
    border-radius: 16px;
  }

  .venture-tile-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .venture-tile-logo--hot-furrs {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .live-feed {
    height: auto;
    min-height: 960px;
    max-height: none;
  }

  .live-feed.live-feed-has-spotlight .live-feed-content {
    grid-template-rows: auto auto auto minmax(380px, auto) auto;
  }

  .live-feed-spotlight-card {
    min-height: 380px;
    padding: 18px 16px 18px;
    gap: 12px;
  }

  .live-feed-spotlight-headline {
    font-size: clamp(1.05rem, 6vw, 1.4rem);
    line-height: 1.02;
  }

  .live-feed-spotlight-strap,
  .live-feed-spotlight-body {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .live-feed-spotlight-points li,
  .live-feed-book-points li {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .live-feed-rail {
    width: min(100%, 260px);
  }

  .contact {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "hero hero"
      "details action";
    gap: 14px 12px;
  }

  .contact-hero {
    justify-self: center;
    text-align: center;
  }

  .contact-hero h2 {
    text-align: center;
    font-size: clamp(1.4rem, 8vw, 2.05rem);
    line-height: 0.96;
  }

  .contact-details-left {
    font-size: 0.92rem;
    line-height: 1.08;
  }

  .contact-action {
    justify-self: end;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .contact-cta {
    width: auto;
    min-width: 118px;
    max-width: 100%;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .contact-legal {
    padding-inline: 8px;
    font-size: 0.72rem;
    line-height: 1.2;
    text-align: center;
  }

  .contact-legal span {
    display: inline;
  }

  .contact-legal span + span::before {
    content: " ";
  }
}

@media (max-width: 390px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand cta menu";
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px;
  }

  .brand-logo-wrap {
    width: clamp(188px, 56vw, 236px);
    height: 52px;
  }

  .brand-logo {
    transform: scale(1.52) translateX(-6px);
  }

  .nav-toggle {
    justify-self: end;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .header-cta {
    justify-self: end;
    padding: 6px 8px;
    min-height: 32px;
    font-size: 0.58rem;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "hero hero"
      "details action";
    gap: 14px 10px;
  }

  .contact-action {
    justify-self: end;
    width: auto;
    justify-content: flex-end;
  }

  .contact-cta {
    min-width: 106px;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.68rem;
  }
}

@keyframes serviceScrollShine {
  0% {
    transform: translateX(-170%) skewX(-18deg);
  }
  100% {
    transform: translateX(430%) skewX(-18deg);
  }
}

@keyframes mobileBlobFloatPrimary {
  0%,
  100% {
    width: 88%;
    height: 78%;
    transform: translate(-50%, -50%) translate(-12%, -8%) rotate(-18deg) scale(0.9);
    border-radius: 50%;
  }
  22% {
    width: 98%;
    height: 40%;
    transform: translate(-50%, -50%) translate(10%, -8%) rotate(14deg) scale(1.08);
    border-radius: 26% 74% 32% 68% / 62% 28% 72% 38%;
  }
  48% {
    width: 100%;
    height: 12%;
    transform: translate(-50%, -50%) translate(0%, 26%) rotate(-8deg) scale(1.04);
    border-radius: 999px;
  }
  72% {
    width: 52%;
    height: 88%;
    transform: translate(-50%, -50%) translate(16%, -14%) rotate(20deg) scale(0.96);
    border-radius: 14% 16% 18% 14% / 18% 16% 14% 22%;
  }
}

@keyframes mobileBlobFloatSecondary {
  0%,
  100% {
    width: 58%;
    height: 58%;
    transform: translate(-50%, -50%) translate(32%, 16%) rotate(14deg) scale(0.92);
    border-radius: 46% 54% 58% 42% / 40% 62% 38% 60%;
  }
  35% {
    width: 18%;
    height: 92%;
    transform: translate(-50%, -50%) translate(-24%, -10%) rotate(-18deg) scale(1.1);
    border-radius: 999px;
  }
  68% {
    width: 70%;
    height: 14%;
    transform: translate(-50%, -50%) translate(-8%, 22%) rotate(18deg) scale(1.08);
    border-radius: 18% 82% 26% 74% / 70% 24% 76% 30%;
  }
}

@keyframes mobileBlobField {
  0%,
  100% {
    background-position: 0% 28%, 100% 74%, 0% 50%;
    filter: saturate(1.04) brightness(1);
    box-shadow: 0 20px 42px rgba(255, 106, 0, 0.22), inset 0 0 36px rgba(255, 255, 255, 0.04);
  }
  25% {
    background-position: 100% 16%, 8% 84%, 100% 22%;
    filter: saturate(1.16) brightness(1.04);
    box-shadow: 0 24px 48px rgba(255, 106, 0, 0.28), inset 0 0 42px rgba(255, 247, 231, 0.06);
  }
  50% {
    background-position: 18% 96%, 86% 8%, 26% 100%;
    filter: saturate(1.24) brightness(1.08);
    box-shadow: 0 30px 58px rgba(255, 106, 0, 0.36), inset 0 0 48px rgba(255, 247, 231, 0.08);
  }
  75% {
    background-position: 92% 34%, 0% 60%, 100% 72%;
    filter: saturate(1.18) brightness(1.05);
    box-shadow: 0 26px 52px rgba(255, 106, 0, 0.3), inset 0 0 44px rgba(255, 247, 231, 0.07);
  }
}

@keyframes mobileBlobShell {
  0%,
  100% {
    border-radius: 34px 24px 46px 24px;
  }
  25% {
    border-radius: 52px 18px 28px 46px;
  }
  50% {
    border-radius: 22px 58px 20px 52px;
  }
  75% {
    border-radius: 48px 28px 56px 16px;
  }
}

@keyframes mobileBlobGlow {
  0%,
  100% {
    filter: blur(14px) saturate(1.02) brightness(1);
    opacity: 0.88;
  }
  50% {
    filter: blur(18px) saturate(1.18) brightness(1.08);
    opacity: 0.98;
  }
}

@keyframes mobileBlobGlowSecondary {
  0%,
  100% {
    filter: blur(10px) saturate(1.04) brightness(1);
    opacity: 0.7;
  }
  50% {
    filter: blur(16px) saturate(1.16) brightness(1.1);
    opacity: 0.86;
  }
}

/* ── Services Dropdown Navigation ── */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-item .nav-services-link {
  white-space: nowrap;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 2px 4px;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.15s, transform 0.2s;
}

.nav-dropdown-toggle:hover {
  opacity: 1;
}

.nav-item.dropdown-open .nav-dropdown-toggle {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: max-content;
  max-width: calc(100vw - 48px);
  background: rgba(8, 10, 14, 0.96);
  backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 18%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(255, 178, 77, 0.16) 50%,
    rgba(255, 255, 255, 0.06) 56%,
    transparent 72%
  );
  transform: translateX(-135%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.nav-item.dropdown-open .nav-dropdown,
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-item.dropdown-open .nav-dropdown::before,
.nav-item:hover .nav-dropdown::before {
  animation: navDropdownShimmer 720ms ease forwards;
}

/* Replaced above */

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.nav-dropdown-item:hover {
  background: rgba(255, 106, 0, 0.1);
}

.nav-dropdown-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f4efe7;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-dropdown-desc {
  font-size: 0.72rem;
  color: #c0b4a4;
  line-height: 1.4;
}

@keyframes navDropdownShimmer {
  0% {
    transform: translateX(-135%) skewX(-20deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  100% {
    transform: translateX(135%) skewX(-20deg);
    opacity: 0;
  }
}

/* ── Mobile dropdown inside hamburger menu ── */

/* Removed conflicting query */

@media (min-width: 1181px) and (max-width: 1480px) {
  .site-header {
    padding-left: 22px;
    padding-right: 22px;
    gap: 12px;
  }

  .brand-logo-wrap {
    width: clamp(300px, 30vw, 420px);
    height: clamp(80px, 8vw, 124px);
  }

  .brand-logo {
    transform: scale(1.4) translateX(0);
  }

  .site-header .site-nav a {
    font-size: clamp(0.65rem, 0.8vw, 0.9rem);
    letter-spacing: 0.1em;
    padding: 12px 4px 16px;
  }

  .site-header .site-nav {
    gap: clamp(4px, 0.5vw, 12px);
  }

  .site-header .header-cta {
    padding: 12px 18px;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand cta menu";
    padding: 12px 16px;
    gap: 12px;
  }

  .brand {
    grid-area: brand;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
    margin-right: 0;
  }

  .nav-toggle {
    grid-area: menu;
    display: flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: auto;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    overflow: visible;
    justify-self: end;
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    transform: translateY(-6px);
    margin: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.98), rgba(10, 12, 16, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(22px) saturate(120%);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
  }

  .site-header.menu-open .site-nav {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 14px 18px;
    font-size: 1.1rem;
    width: 100%;
    color: #fff;
    letter-spacing: 0.16em;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-item.has-dropdown::after {
    display: none;
  }

  .nav-item .nav-services-link {
    display: block;
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: none;
  }

  .nav-dropdown {
    display: none;
  }

  .brand-logo-wrap {
    width: clamp(160px, 40vw, 220px);
    height: 60px;
  }

  .brand-logo {
    transform: scale(1.2) translateX(0);
  }
}


/* ── Desktop logo fix (1181px and above only) ── */
/* Prevents logo from being clipped at medium desktop sizes */
@media (min-width: 1181px) {
  .brand-logo-wrap {
    width: clamp(340px, 28vw, 500px);
    overflow: visible;
    flex-shrink: 0;
  }
  .brand-logo {
    transform: scale(1.3);
    transform-origin: left center;
  }
}

@media (min-width: 1441px) {
  .brand-logo-wrap {
    width: clamp(380px, 26vw, 520px);
    overflow: visible;
  }
  .brand-logo {
    transform: scale(1.5);
    transform-origin: left center;
  }
}

/* ── Medium desktop nav fix (1181px-1380px) ── */
/* Keeps nav visible and compact, no hamburger, CTA always visible */
@media (min-width: 1181px) and (max-width: 1380px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding-left: max(16px, calc((100vw - 1480px) / 2 + 16px));
    padding-right: max(16px, calc((100vw - 1480px) / 2 + 16px));
  }
  .nav-toggle {
    display: none !important;
  }
  .site-nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    gap: 4px;
    justify-self: start;
    margin: 0;
    transform: none !important;
    opacity: 1 !important;
    width: auto !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .site-nav a {
    font-size: 0.65rem;
    letter-spacing: 0.1px;
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
  }
  .header-cta {
    display: inline-flex !important;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
    justify-self: end;
  }
}

/* AI Automation page responsive containment */
body.ai-automation-page {
  overflow-x: hidden;
}

body.ai-automation-page main {
  max-width: 100vw;
  overflow-x: hidden;
}

body.ai-automation-page main .panel,
body.ai-automation-page main .section-heading,
body.ai-automation-page main .section-heading-main,
body.ai-automation-page main .section-heading-copy,
body.ai-automation-page main .page-grid,
body.ai-automation-page main .sector-grid,
body.ai-automation-page main .page-card,
body.ai-automation-page main .page-stack,
body.ai-automation-page main .page-highlight {
  min-width: 0;
  max-width: 100%;
}

body.ai-automation-page main h1,
body.ai-automation-page main h2,
body.ai-automation-page main h3,
body.ai-automation-page main p,
body.ai-automation-page main li {
  overflow-wrap: break-word;
}

body.ai-automation-page .automation-hero,
body.ai-automation-page .automation-impact-panel,
body.ai-automation-page .automation-flow-panel,
body.ai-automation-page .automation-comparison-panel,
body.ai-automation-page .automation-packages-panel,
body.ai-automation-page .automation-use-cases-panel,
body.ai-automation-page .automation-offer-panel {
  max-width: 100%;
  overflow: hidden;
}

body.ai-automation-page .automation-hero-copy,
body.ai-automation-page .automation-hero-proof,
body.ai-automation-page .automation-stat-grid,
body.ai-automation-page .automation-flow,
body.ai-automation-page .automation-offer-grid,
body.ai-automation-page .automation-package-grid,
body.ai-automation-page .automation-fix-grid,
body.ai-automation-page .automation-comparison-widget,
body.ai-automation-page .automation-use-case-grid,
body.ai-automation-page .automation-loss-board,
body.ai-automation-page .automation-role-cloud {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 981px) {
  body.ai-automation-page .automation-hero h1 {
    max-width: 16ch;
    font-size: 4.9rem;
    letter-spacing: 0;
  }
}

@media (max-width: 980px) {
  body.ai-automation-page .page-hero.automation-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.ai-automation-page .automation-hero h1 {
    max-width: 100%;
    font-size: 3.1rem;
    line-height: 0.96;
    letter-spacing: 0;
  }

  body.ai-automation-page .automation-stat-grid,
  body.ai-automation-page .automation-flow,
  body.ai-automation-page .automation-offer-grid,
  body.ai-automation-page .automation-package-grid,
  body.ai-automation-page .automation-fix-grid,
  body.ai-automation-page .automation-use-case-grid,
  body.ai-automation-page .automation-comparison-widget {
    grid-template-columns: 1fr;
  }

  body.ai-automation-page .automation-loss-board {
    grid-template-columns: 1fr;
  }

  body.ai-automation-page .automation-stat-card strong,
  body.ai-automation-page .automation-mini-stat strong {
    font-size: 3rem;
  }
}

@media (max-width: 520px) {
  body.ai-automation-page .automation-hero h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  body.ai-automation-page .automation-stat-card,
  body.ai-automation-page .automation-loss-board,
  body.ai-automation-page .automation-flow-step,
  body.ai-automation-page .automation-offer-card,
  body.ai-automation-page .automation-mini-stat,
  body.ai-automation-page .automation-fix-card,
  body.ai-automation-page .automation-comparison-column,
  body.ai-automation-page .automation-package-card,
  body.ai-automation-page .automation-use-case {
    padding: 18px;
  }

  body.ai-automation-page .automation-stat-card strong,
  body.ai-automation-page .automation-mini-stat strong {
    font-size: 2.65rem;
  }

  body.ai-automation-page .automation-loss-board h3 {
    font-size: 1.85rem;
  }

  body.ai-automation-page .automation-flow-step h3,
  body.ai-automation-page .automation-offer-card h3,
  body.ai-automation-page .automation-package-card h3,
  body.ai-automation-page .automation-use-case h3,
  body.ai-automation-page .automation-fix-card h3 {
    font-size: 1.35rem;
  }
}

/* AI Automation page section polish */
body.ai-automation-page .automation-hero {
  position: relative;
  padding-top: clamp(82px, 9vw, 112px);
}

body.ai-automation-page .automation-hero-badge,
body.ai-automation-page .automation-signal,
body.ai-automation-page .automation-problem-copy strong,
body.ai-automation-page .automation-impact-copy strong,
body.ai-automation-page .automation-comparison-copy strong,
body.ai-automation-page .automation-audience-copy strong,
body.ai-automation-page .automation-packages-copy strong,
body.ai-automation-page .automation-use-copy strong,
body.ai-automation-page .automation-offer-copy strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #ff8a1f, #ff6a00 46%, #ffd29b),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.65), transparent 32%);
  color: #160800;
  box-shadow: 0 14px 38px rgba(255, 106, 0, 0.26);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

body.ai-automation-page .automation-hero-badge {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
}

body.ai-automation-page .automation-hero h1 {
  margin-bottom: 18px;
  line-height: 0.98;
}

body.ai-automation-page .automation-hero .page-copy {
  max-width: 58rem;
  margin-top: 0;
}

body.ai-automation-page .automation-mini-stat,
body.ai-automation-page .automation-fix-card,
body.ai-automation-page .automation-stat-card,
body.ai-automation-page .automation-flow-step,
body.ai-automation-page .automation-comparison-column,
body.ai-automation-page .automation-package-card,
body.ai-automation-page .automation-use-case,
body.ai-automation-page .automation-offer-card,
body.ai-automation-page .automation-service-card,
body.ai-automation-page .automation-sector-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

body.ai-automation-page .automation-mini-stat:hover,
body.ai-automation-page .automation-fix-card:hover,
body.ai-automation-page .automation-stat-card:hover,
body.ai-automation-page .automation-flow-step:hover,
body.ai-automation-page .automation-comparison-column:hover,
body.ai-automation-page .automation-package-card:hover,
body.ai-automation-page .automation-use-case:hover,
body.ai-automation-page .automation-offer-card:hover,
body.ai-automation-page .automation-service-card:hover,
body.ai-automation-page .automation-sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, 0.55);
  box-shadow: 0 26px 68px rgba(255, 106, 0, 0.18), var(--shadow);
}

body.ai-automation-page .automation-stat-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.ai-automation-page .automation-stat-lockup strong {
  flex: 0 0 auto;
  margin: 0;
}

body.ai-automation-page .automation-problem-copy,
body.ai-automation-page .automation-impact-copy,
body.ai-automation-page .automation-comparison-copy,
body.ai-automation-page .automation-audience-copy,
body.ai-automation-page .automation-packages-copy,
body.ai-automation-page .automation-use-copy,
body.ai-automation-page .automation-offer-copy {
  display: grid;
  gap: 16px;
}

body.ai-automation-page .automation-problem-copy strong {
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

body.ai-automation-page .automation-fix-card strong {
  display: block;
  margin-bottom: 14px;
  color: #fff7ef;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.9;
}

body.ai-automation-page .automation-impact-copy strong {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

body.ai-automation-page .automation-stat-card {
  text-align: center;
}

body.ai-automation-page .automation-stat-card .card-kicker {
  justify-content: center;
}

body.ai-automation-page .automation-stat-card strong {
  margin: 18px auto;
}

body.ai-automation-page .automation-stat-card a {
  justify-content: center;
  opacity: 0.72;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

body.ai-automation-page .automation-loss-calculator {
  display: grid;
  gap: 16px;
  min-width: 0;
}

body.ai-automation-page .automation-loss-calculator label,
body.ai-automation-page .automation-loss-total {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 138, 31, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.06);
  color: rgba(244, 239, 231, 0.8);
}

body.ai-automation-page .automation-loss-calculator label span,
body.ai-automation-page .automation-loss-total span {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.ai-automation-page .automation-loss-calculator label strong,
body.ai-automation-page .automation-loss-total strong {
  color: #fff7ef;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.95;
}

body.ai-automation-page .automation-loss-total {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #ff7a16, #7f2600);
}

body.ai-automation-page .automation-loss-calculator input[type="range"] {
  width: 100%;
  accent-color: #ff7a16;
}

body.ai-automation-page .automation-disclaimer {
  margin: 0;
  color: rgba(244, 239, 231, 0.56);
  font-size: 0.76rem;
  line-height: 1.45;
}

body.ai-automation-page .automation-service-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

body.ai-automation-page .automation-service-heading h3 {
  margin: 0;
}

body.ai-automation-page .automation-service-number {
  min-height: 54px;
  padding: 12px 18px;
  background:
    linear-gradient(135deg, #ff8a1f, #ff6a00 48%, #ffd29b);
  color: #160800;
  box-shadow: 0 16px 36px rgba(255, 106, 0, 0.24);
  font-size: 1rem;
}

body.ai-automation-page .automation-flow-step:nth-child(1) {
  animation-delay: 0s;
}

body.ai-automation-page .automation-flow-step:nth-child(2) {
  animation-delay: 0.35s;
}

body.ai-automation-page .automation-flow-step:nth-child(3) {
  animation-delay: 0.7s;
}

body.ai-automation-page .automation-flow-step:nth-child(4) {
  animation-delay: 1.05s;
}

body.ai-automation-page .automation-flow-step:nth-child(5) {
  animation-delay: 1.4s;
}

body.ai-automation-page .automation-flow-step:nth-child(6) {
  animation-delay: 1.75s;
}

body.ai-automation-page .automation-flow-step,
body.ai-automation-page .automation-offer-card {
  animation-name: automationStepGlow;
  animation-duration: 5.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

body.ai-automation-page .automation-offer-card:nth-child(1) {
  animation-delay: 0s;
}

body.ai-automation-page .automation-offer-card:nth-child(2) {
  animation-delay: 0.7s;
}

body.ai-automation-page .automation-offer-card:nth-child(3) {
  animation-delay: 1.4s;
}

body.ai-automation-page .automation-comparison-column .card-kicker {
  display: flex;
  justify-content: center;
  color: #fff7ef;
  opacity: 1;
  text-align: center;
}

body.ai-automation-page .automation-comparison-column {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 138, 31, 0.3), transparent 28%),
    linear-gradient(145deg, #242932, #07090d 72%);
}

body.ai-automation-page .automation-comparison-column-live {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 237, 210, 0.32), transparent 30%),
    linear-gradient(145deg, #ff7d1f, #8f2d00 72%);
}

body.ai-automation-page .automation-sector-card,
body.ai-automation-page .automation-service-card {
  overflow: hidden;
}

body.ai-automation-page .automation-role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

body.ai-automation-page .automation-role-pills span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ef;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

body.ai-automation-page .section-heading:has(.automation-audience-copy),
body.ai-automation-page .section-heading:has(.automation-use-copy),
body.ai-automation-page .section-heading:has(.automation-offer-copy),
body.ai-automation-page .section-heading:has(.automation-packages-copy),
body.ai-automation-page .section-heading:has(.automation-comparison-copy) {
  align-items: start;
}

body.ai-automation-page .panel-light .automation-use-case h3,
body.ai-automation-page .automation-use-case h3 {
  text-align: center;
}

body.ai-automation-page .automation-use-case {
  text-align: left;
}

body.ai-automation-page .automation-pricing-panel .section-heading {
  align-items: start;
}

body.ai-automation-page .booking-section h2 {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
}

body.ai-automation-page .booking-section iframe {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@keyframes automationStepGlow {
  0%,
  72%,
  100% {
    border-color: var(--line);
    box-shadow: var(--shadow);
  }
  16% {
    border-color: rgba(255, 138, 31, 0.76);
    box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.22), 0 24px 68px rgba(255, 106, 0, 0.22), var(--shadow);
  }
}

@media (hover: none) {
  body.ai-automation-page .automation-mini-stat,
  body.ai-automation-page .automation-fix-card,
  body.ai-automation-page .automation-stat-card,
  body.ai-automation-page .automation-flow-step,
  body.ai-automation-page .automation-comparison-column,
  body.ai-automation-page .automation-package-card,
  body.ai-automation-page .automation-use-case,
  body.ai-automation-page .automation-offer-card,
  body.ai-automation-page .automation-service-card,
  body.ai-automation-page .automation-sector-card {
    box-shadow: 0 20px 56px rgba(255, 106, 0, 0.1), var(--shadow);
  }
}

@media (max-width: 980px) {
  body.ai-automation-page .automation-hero {
    padding-top: 86px;
  }

  body.ai-automation-page .automation-hero-badge {
    left: 22px;
    right: auto;
    top: 24px;
  }

  body.ai-automation-page .automation-stat-lockup,
  body.ai-automation-page .automation-service-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  body.ai-automation-page .automation-loss-board {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  body.ai-automation-page .automation-hero-badge,
  body.ai-automation-page .automation-problem-copy strong,
  body.ai-automation-page .automation-impact-copy strong,
  body.ai-automation-page .automation-comparison-copy strong,
  body.ai-automation-page .automation-audience-copy strong,
  body.ai-automation-page .automation-packages-copy strong,
  body.ai-automation-page .automation-use-copy strong,
  body.ai-automation-page .automation-offer-copy strong {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  body.ai-automation-page .automation-loss-calculator label,
  body.ai-automation-page .automation-loss-total {
    padding: 16px;
  }

  body.ai-automation-page .automation-role-pills span {
    font-size: 0.7rem;
  }
}

/* AI Automation follow-up refinements */
body.ai-automation-page .automation-hero {
  padding-top: clamp(46px, 6vw, 70px);
  grid-template-areas:
    "badge proof"
    "copy proof";
}

body.ai-automation-page .automation-hero-badge,
body.ai-automation-page .automation-problem-copy strong,
body.ai-automation-page .automation-impact-copy strong,
body.ai-automation-page .automation-build-copy strong,
body.ai-automation-page .automation-flow-copy strong,
body.ai-automation-page .automation-comparison-copy strong,
body.ai-automation-page .automation-audience-copy strong,
body.ai-automation-page .automation-packages-copy strong,
body.ai-automation-page .automation-use-copy strong,
body.ai-automation-page .automation-offer-copy strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  color: #ff7a16;
  box-shadow: none;
  text-align: center;
  text-shadow: 0 0 28px rgba(255, 106, 0, 0.28);
  font-size: clamp(1.18rem, 2.15vw, 1.95rem);
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

body.ai-automation-page .automation-hero-badge {
  position: static;
  grid-area: badge;
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  text-align: left;
}

body.ai-automation-page .automation-hero-copy {
  grid-area: copy;
}

body.ai-automation-page .automation-hero-proof {
  grid-area: proof;
}

body.ai-automation-page .automation-stat-lockup {
  gap: 22px;
}

body.ai-automation-page .automation-stat-lockup strong {
  font-size: clamp(4rem, 7vw, 6.6rem);
}

body.ai-automation-page .automation-mini-stat {
  padding: clamp(28px, 3vw, 38px);
}

body.ai-automation-page .automation-build-copy,
body.ai-automation-page .automation-flow-copy {
  display: grid;
  gap: 16px;
}

body.ai-automation-page .automation-loss-board {
  align-items: start;
  gap: clamp(24px, 4vw, 44px);
}

body.ai-automation-page .automation-loss-board > div:first-child {
  align-self: start;
}

body.ai-automation-page .automation-loss-board > div:first-child p {
  max-width: 62ch;
}

body.ai-automation-page .automation-loss-board > div:first-child p + p {
  margin-top: 14px;
}

body.ai-automation-page .automation-loss-calculator {
  align-self: start;
}

body.ai-automation-page .automation-loss-calculator label,
body.ai-automation-page .automation-loss-total {
  grid-template-columns: minmax(0, 0.92fr) auto;
  align-items: center;
  gap: 10px 18px;
  padding: clamp(18px, 2.5vw, 28px);
}

body.ai-automation-page .automation-loss-calculator input[type="range"] {
  grid-column: 1 / -1;
}

body.ai-automation-page .automation-loss-calculator label span,
body.ai-automation-page .automation-loss-total span {
  font-size: clamp(1.05rem, 2vw, 1.85rem);
  line-height: 0.95;
}

body.ai-automation-page .automation-loss-calculator label strong,
body.ai-automation-page .automation-loss-total strong {
  justify-self: end;
  font-size: clamp(3.8rem, 7vw, 6.3rem);
}

body.ai-automation-page .automation-service-number {
  background: #fff7ef;
  color: #07090d;
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}

body.ai-automation-page .automation-service-heading {
  flex-wrap: nowrap;
}

body.ai-automation-page .automation-flow-step {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 178, 77, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(36, 29, 22, 0.98), rgba(9, 11, 16, 0.96));
}

body.ai-automation-page .automation-flow-step:nth-child(2n) {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 124, 28, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(31, 34, 42, 0.98), rgba(9, 11, 16, 0.96));
}

body.ai-automation-page .page-highlight .page-button-row {
  display: flex;
  justify-content: center;
}

body.ai-automation-page .automation-sector-card:nth-child(1),
body.ai-automation-page .automation-package-card:nth-child(1),
body.ai-automation-page .automation-use-case:nth-child(1) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 205, 120, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.52), rgba(24, 8, 2, 0.96));
}

body.ai-automation-page .automation-sector-card:nth-child(2),
body.ai-automation-page .automation-package-card:nth-child(2),
body.ai-automation-page .automation-use-case:nth-child(2) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 155, 64, 0.3), transparent 30%),
    linear-gradient(145deg, rgba(37, 42, 52, 0.98), rgba(8, 10, 14, 0.96));
}

body.ai-automation-page .automation-sector-card:nth-child(3),
body.ai-automation-page .automation-package-card:nth-child(3),
body.ai-automation-page .automation-use-case:nth-child(3) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 190, 100, 0.3), transparent 30%),
    linear-gradient(145deg, rgba(72, 24, 10, 0.98), rgba(12, 8, 10, 0.96));
}

body.ai-automation-page .automation-sector-card:nth-child(4),
body.ai-automation-page .automation-use-case:nth-child(4) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 220, 160, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(44, 48, 58, 0.98), rgba(8, 10, 14, 0.96));
}

body.ai-automation-page .automation-sector-card:nth-child(5) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 226, 166, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(255, 130, 34, 0.58), rgba(45, 12, 2, 0.96));
}

body.ai-automation-page .automation-sector-card:nth-child(6) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 185, 92, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(84, 43, 8, 0.98), rgba(8, 10, 14, 0.96));
}

body.ai-automation-page .automation-package-card .card-kicker {
  display: flex;
  justify-content: center;
  text-align: center;
}

body.ai-automation-page .automation-pricing-panel .section-heading {
  align-items: start;
}

body.ai-automation-page .automation-pricing-panel .section-heading-main {
  align-self: start;
}

body.ai-automation-page .booking-section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

body.ai-automation-page .booking-section iframe {
  border-radius: 0 !important;
  outline: 0 !important;
  background: #07090d !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: inset(3px 3px 8px 3px);
}

@media (min-width: 981px) {
  body.ai-automation-page .automation-problem-copy,
  body.ai-automation-page .automation-impact-copy,
  body.ai-automation-page .automation-build-copy,
  body.ai-automation-page .automation-flow-copy,
  body.ai-automation-page .automation-comparison-copy,
  body.ai-automation-page .automation-audience-copy,
  body.ai-automation-page .automation-packages-copy,
  body.ai-automation-page .automation-use-copy,
  body.ai-automation-page .automation-offer-copy {
    align-self: start;
    padding-top: 6px;
  }
}

@media (max-width: 980px) {
  body.ai-automation-page .automation-hero {
    grid-template-areas:
      "badge"
      "copy"
      "proof";
  }

  body.ai-automation-page .automation-hero-badge {
    margin-top: 0;
  }

  body.ai-automation-page .automation-service-heading {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 640px) {
  body.ai-automation-page .automation-loss-calculator label,
  body.ai-automation-page .automation-loss-total {
    grid-template-columns: 1fr;
  }

  body.ai-automation-page .automation-loss-calculator label strong,
  body.ai-automation-page .automation-loss-total strong {
    justify-self: start;
  }
}
/* AI Automation final EOF hero raise */
body.ai-automation-page .page-hero.automation-hero {
  padding-top: clamp(6px, 1vw, 14px);
  row-gap: clamp(8px, 1vw, 12px);
}

body.ai-automation-page .automation-hero-badge {
  margin-left: clamp(14px, 2vw, 28px);
}

/* AI Automation calculator number inheritance */
body.ai-automation-page .automation-loss-calculator strong span,
body.ai-automation-page .automation-loss-total strong span {
  max-width: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* AI Automation calculator number inheritance */
body.ai-automation-page .automation-loss-calculator strong span,
body.ai-automation-page .automation-loss-total strong span {
  max-width: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* AI Automation final cascade hero raise */
body.ai-automation-page .page-hero.automation-hero {
  padding-top: clamp(18px, 2.2vw, 30px);
  row-gap: clamp(12px, 1.4vw, 18px);
}

/* AI Automation final cascade hero raise */
body.ai-automation-page .page-hero.automation-hero {
  padding-top: clamp(18px, 2.2vw, 30px);
  row-gap: clamp(12px, 1.4vw, 18px);
}

/* AI Automation final hero raise */
body.ai-automation-page .page-hero.automation-hero {
  padding-top: clamp(18px, 2.2vw, 30px);
  row-gap: clamp(12px, 1.4vw, 18px);
}

/* AI Automation hero raise */
body.ai-automation-page .page-hero.automation-hero {
  padding-top: clamp(18px, 2.2vw, 30px);
  row-gap: clamp(12px, 1.4vw, 18px);
}

/* AI Automation pricing title top alignment */
body.ai-automation-page .automation-pricing-panel .section-heading {
  align-items: start !important;
}

body.ai-automation-page .automation-pricing-panel .section-heading-main,
body.ai-automation-page .automation-pricing-panel .page-stack {
  align-self: start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.ai-automation-page .automation-pricing-panel .eyebrow {
  margin-top: 0;
}

  body.ai-automation-page .automation-pricing-panel h2 {
  margin-top: 0;
}

/* AI Automation hero vertical alignment */
body.ai-automation-page .page-hero.automation-hero {
  align-items: start;
  grid-template-areas:
    "badge proof"
    "copy proof";
  align-content: start;
  row-gap: clamp(28px, 3vw, 42px);
}

body.ai-automation-page .automation-hero-badge {
  position: relative;
  align-self: start;
  margin: 0;
  text-shadow: none;
}

body.ai-automation-page .automation-hero-badge::before {
  content: none;
}

body.ai-automation-page .automation-hero-copy {
  align-self: start;
  margin-top: 0;
}

body.ai-automation-page .automation-hero h1 {
  margin-top: 0;
}

body.ai-automation-page .automation-hero-proof {
  align-self: start;
}

@media (max-width: 980px) {
  body.ai-automation-page .page-hero.automation-hero {
    grid-template-areas:
      "badge"
      "copy"
      "proof";
  }
}

@media (max-width: 420px) {
  body.ai-automation-page .automation-service-heading {
    gap: 10px;
  }

  body.ai-automation-page .automation-service-number {
    padding-inline: 12px;
    font-size: 0.84rem;
  }
}

/* AI Automation calculator repair */
body.ai-automation-page .automation-loss-board {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

body.ai-automation-page .automation-loss-calculator label,
body.ai-automation-page .automation-loss-total {
  grid-template-columns: minmax(0, 1fr) max-content;
  min-height: auto;
  padding: clamp(18px, 2vw, 24px);
}

body.ai-automation-page .automation-loss-calculator label span,
body.ai-automation-page .automation-loss-total span {
  max-width: 12ch;
  color: rgba(244, 239, 231, 0.86);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  letter-spacing: 0.08em;
}

body.ai-automation-page .automation-loss-calculator label strong,
body.ai-automation-page .automation-loss-total strong {
  display: inline-flex;
  align-items: baseline;
  justify-self: end;
  color: #fff7ef;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

body.ai-automation-page .automation-loss-calculator input[type="range"] {
  margin-top: 4px;
}

body.ai-automation-page .automation-loss-total strong {
  font-size: clamp(2.7rem, 5vw, 4.85rem);
}

body.ai-automation-page .automation-disclaimer {
  max-width: 58ch;
}

@media (max-width: 980px) {
  body.ai-automation-page .automation-loss-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.ai-automation-page .automation-loss-calculator label,
  body.ai-automation-page .automation-loss-total {
    grid-template-columns: 1fr;
  }

  body.ai-automation-page .automation-loss-calculator label span,
  body.ai-automation-page .automation-loss-total span {
    max-width: none;
  }

  body.ai-automation-page .automation-loss-calculator label strong,
  body.ai-automation-page .automation-loss-total strong {
    justify-self: start;
  }
}

/* AI Automation final EOF hero raise */
body.ai-automation-page .page-hero.automation-hero {
  padding-top: clamp(6px, 1vw, 14px);
  row-gap: clamp(8px, 1vw, 12px);
}

body.ai-automation-page .automation-hero-badge {
  margin-left: clamp(14px, 2vw, 28px);
}
/* AI Automation calculator number inheritance */
body.ai-automation-page .automation-loss-calculator strong span,
body.ai-automation-page .automation-loss-total strong span {
  max-width: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* AI Automation tablet hero title spacing */
@media (max-width: 980px) {
  body.ai-automation-page .page-hero.automation-hero {
    row-gap: clamp(18px, 3vw, 28px);
  }

  body.ai-automation-page .automation-hero-badge {
    display: block;
    justify-self: center;
    left: auto;
    right: auto;
    margin: 0 auto clamp(12px, 2.4vw, 22px);
    font-size: clamp(1.08rem, 3vw, 1.55rem);
    line-height: 1.1;
    text-align: center;
  }
}

/* AI Automation build heading top alignment */
@media (min-width: 981px) {
  body.ai-automation-page .section-heading:has(.automation-build-copy) {
    align-items: start;
  }

  body.ai-automation-page .section-heading:has(.automation-build-copy) .section-heading-main {
    align-self: start;
  }
}

/* AI Automation desktop hero title spacing */
@media (min-width: 981px) {
  body.ai-automation-page .page-hero.automation-hero {
    row-gap: clamp(30px, 3vw, 44px);
  }
}

/* Digital Marketing page visual system */
body.digital-marketing-page {
  overflow-x: hidden;
}

body.digital-marketing-page main {
  max-width: 100vw;
  overflow-x: hidden;
}

body.digital-marketing-page main .panel,
body.digital-marketing-page main .section-heading,
body.digital-marketing-page main .section-heading-main,
body.digital-marketing-page main .section-heading-copy,
body.digital-marketing-page main .page-grid,
body.digital-marketing-page main .page-card,
body.digital-marketing-page main .page-highlight {
  min-width: 0;
  max-width: 100%;
}

body.digital-marketing-page main h1,
body.digital-marketing-page main h2,
body.digital-marketing-page main h3,
body.digital-marketing-page main p,
body.digital-marketing-page main li {
  overflow-wrap: break-word;
}

body.digital-marketing-page .page-hero.digital-marketing-hero {
  align-items: start;
  align-content: start;
  padding-top: clamp(6px, 1vw, 14px);
  row-gap: clamp(30px, 3vw, 44px);
}

body.digital-marketing-page .digital-marketing-hero-badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: #ff7a16;
  text-align: left;
  text-shadow: none;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-marketing-hero h1 {
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 0.98;
}

body.digital-marketing-page .digital-marketing-hero .page-copy {
  max-width: 58rem;
  margin-top: 0;
}

body.digital-marketing-page .page-grid .page-card,
body.digital-marketing-page .page-highlight {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

body.digital-marketing-page .page-grid .page-card:hover,
body.digital-marketing-page .page-highlight:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, 0.55);
  box-shadow: 0 26px 68px rgba(255, 106, 0, 0.18), var(--shadow);
}

body.digital-marketing-page .digital-pain-strip,
body.digital-marketing-page .digital-stat-grid,
body.digital-marketing-page .digital-deliverables-grid,
body.digital-marketing-page .digital-offer-grid,
body.digital-marketing-page .digital-role-grid,
body.digital-marketing-page .digital-channel-map,
body.digital-marketing-page .digital-presence-grid,
body.digital-marketing-page .digital-contrast-board,
body.digital-marketing-page .digital-timeline,
body.digital-marketing-page .digital-outcome-strip,
body.digital-marketing-page .digital-review-grid {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(24px, 3vw, 38px);
}

body.digital-marketing-page .digital-pain-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.digital-marketing-page .digital-stat-grid,
body.digital-marketing-page .digital-deliverables-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.digital-marketing-page .digital-deliverables-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.digital-marketing-page .digital-offer-grid,
body.digital-marketing-page .digital-role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.digital-marketing-page .digital-role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.digital-marketing-page .digital-channel-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.digital-marketing-page .digital-presence-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.digital-marketing-page .digital-contrast-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.digital-marketing-page .digital-timeline,
body.digital-marketing-page .digital-outcome-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.digital-marketing-page .digital-pain-card,
body.digital-marketing-page .digital-fix-card,
body.digital-marketing-page .digital-stat-card,
body.digital-marketing-page .digital-deliverable-card,
body.digital-marketing-page .digital-offer-card,
body.digital-marketing-page .digital-role-card,
body.digital-marketing-page .digital-channel-card,
body.digital-marketing-page .digital-presence-card,
body.digital-marketing-page .digital-contrast-column,
body.digital-marketing-page .digital-timeline-card,
body.digital-marketing-page .digital-outcome-card,
body.digital-marketing-page .digital-visibility-board {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background-color: #121418;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 185, 92, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(28, 31, 38, 0.98), rgba(8, 10, 14, 0.96));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

body.digital-marketing-page .panel-light .digital-deliverable-card,
body.digital-marketing-page .panel-light .digital-offer-card {
  color: #fff7ef;
}

body.digital-marketing-page .digital-pain-card .card-kicker,
body.digital-marketing-page .digital-fix-card .card-kicker,
body.digital-marketing-page .digital-stat-card .card-kicker,
body.digital-marketing-page .digital-deliverable-card .card-kicker,
body.digital-marketing-page .digital-offer-card .card-kicker,
body.digital-marketing-page .digital-role-card .card-kicker,
body.digital-marketing-page .digital-channel-card .card-kicker,
body.digital-marketing-page .digital-presence-card .card-kicker,
body.digital-marketing-page .digital-contrast-column .card-kicker,
body.digital-marketing-page .digital-timeline-card .card-kicker,
body.digital-marketing-page .digital-outcome-card .card-kicker,
body.digital-marketing-page .digital-booking-lead .card-kicker {
  color: #ffe1bd;
}

body.digital-marketing-page .digital-pain-card h3,
body.digital-marketing-page .digital-fix-card h3,
body.digital-marketing-page .digital-stat-card h3,
body.digital-marketing-page .digital-deliverable-card h3,
body.digital-marketing-page .digital-offer-card h3,
body.digital-marketing-page .digital-role-card h3,
body.digital-marketing-page .digital-channel-card h3,
body.digital-marketing-page .digital-presence-card h3,
body.digital-marketing-page .digital-contrast-column h3,
body.digital-marketing-page .digital-timeline-card h3,
body.digital-marketing-page .digital-outcome-card h3,
body.digital-marketing-page .digital-visibility-board h3,
body.digital-marketing-page .digital-booking-lead h3 {
  color: #fff7ef;
}

body.digital-marketing-page .digital-pain-card p,
body.digital-marketing-page .digital-fix-card p,
body.digital-marketing-page .digital-stat-card p,
body.digital-marketing-page .digital-deliverable-card p,
body.digital-marketing-page .digital-offer-card p,
body.digital-marketing-page .digital-role-card p,
body.digital-marketing-page .digital-channel-card p,
body.digital-marketing-page .digital-presence-card p,
body.digital-marketing-page .digital-contrast-column p,
body.digital-marketing-page .digital-timeline-card p,
body.digital-marketing-page .digital-outcome-card p,
body.digital-marketing-page .digital-visibility-board p,
body.digital-marketing-page .digital-booking-lead p {
  color: rgba(255, 247, 239, 0.86);
}

body.digital-marketing-page .panel-light .digital-deliverable-card p,
body.digital-marketing-page .panel-light .digital-offer-card p,
body.digital-marketing-page .panel-light .digital-contrast-column li,
body.digital-marketing-page .panel-light .digital-outcome-card p,
body.digital-marketing-page .panel-light .digital-deliverable-card h3,
body.digital-marketing-page .panel-light .digital-offer-card h3,
body.digital-marketing-page .panel-light .digital-contrast-column h3,
body.digital-marketing-page .panel-light .digital-outcome-card h3 {
  color: #fff7ef !important;
}

body.digital-marketing-page .digital-fix-card,
body.digital-marketing-page .digital-offer-card:nth-child(2),
body.digital-marketing-page .digital-deliverable-card:nth-child(3n + 1),
body.digital-marketing-page .digital-role-card:nth-child(2n),
body.digital-marketing-page .digital-channel-card:nth-child(3n + 1),
body.digital-marketing-page .digital-presence-card:nth-child(3n + 1),
body.digital-marketing-page .digital-contrast-connected,
body.digital-marketing-page .digital-timeline-card:nth-child(2n),
body.digital-marketing-page .digital-outcome-card:nth-child(2n) {
  background-color: #2a1005;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 205, 120, 0.3), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.48), rgba(30, 10, 2, 0.96));
}

body.digital-marketing-page .digital-pain-card:hover,
body.digital-marketing-page .digital-fix-card:hover,
body.digital-marketing-page .digital-stat-card:hover,
body.digital-marketing-page .digital-deliverable-card:hover,
body.digital-marketing-page .digital-offer-card:hover,
body.digital-marketing-page .digital-role-card:hover,
body.digital-marketing-page .digital-channel-card:hover,
body.digital-marketing-page .digital-presence-card:hover,
body.digital-marketing-page .digital-contrast-column:hover,
body.digital-marketing-page .digital-timeline-card:hover,
body.digital-marketing-page .digital-outcome-card:hover,
body.digital-marketing-page .digital-visibility-board:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, 0.55);
  box-shadow: 0 26px 68px rgba(255, 106, 0, 0.18), var(--shadow);
}

body.digital-marketing-page .digital-impact-copy,
body.digital-marketing-page .digital-deliverables-copy,
body.digital-marketing-page .digital-offer-copy,
body.digital-marketing-page .digital-audience-copy,
body.digital-marketing-page .digital-system-copy,
body.digital-marketing-page .digital-presence-copy,
body.digital-marketing-page .digital-random-copy,
body.digital-marketing-page .digital-timeline-copy,
body.digital-marketing-page .digital-outcome-copy {
  display: grid;
  gap: 16px;
}

body.digital-marketing-page .digital-impact-copy strong,
body.digital-marketing-page .digital-deliverables-copy strong,
body.digital-marketing-page .digital-offer-copy strong,
body.digital-marketing-page .digital-audience-copy strong,
body.digital-marketing-page .digital-system-copy strong,
body.digital-marketing-page .digital-presence-copy strong,
body.digital-marketing-page .digital-random-copy strong,
body.digital-marketing-page .digital-timeline-copy strong,
body.digital-marketing-page .digital-outcome-copy strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  color: #ff7a16;
  text-align: center;
  text-shadow: 0 0 28px rgba(255, 106, 0, 0.24);
  font-size: clamp(1.18rem, 2.15vw, 1.95rem);
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-stat-card {
  text-align: center;
}

body.digital-marketing-page .digital-stat-card strong {
  display: block;
  margin: 18px auto;
  color: #fff7ef;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

body.digital-marketing-page .digital-stat-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #c0b4a4;
  opacity: 0.76;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-pain-card h3,
body.digital-marketing-page .digital-fix-card h3,
body.digital-marketing-page .digital-deliverable-card h3,
body.digital-marketing-page .digital-offer-card h3,
body.digital-marketing-page .digital-role-card h3,
body.digital-marketing-page .digital-channel-card h3,
body.digital-marketing-page .digital-presence-card h3,
body.digital-marketing-page .digital-contrast-column h3,
body.digital-marketing-page .digital-timeline-card h3,
body.digital-marketing-page .digital-outcome-card h3 {
  margin-top: 10px;
}

body.digital-marketing-page .digital-timeline-card,
body.digital-marketing-page .digital-outcome-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

body.digital-marketing-page .digital-timeline-card span,
body.digital-marketing-page .digital-outcome-card span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: #ff7a16;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-timeline-card h3,
body.digital-marketing-page .digital-outcome-card strong {
  color: #fff7ef;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.digital-marketing-page .digital-outcome-card strong {
  display: block;
}

body.digital-marketing-page .panel-light .digital-outcome-card strong {
  color: #fff7ef;
}

body.digital-marketing-page .digital-review-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 34px);
}

body.digital-marketing-page .digital-review-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 138, 31, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ef;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-presence-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

body.digital-marketing-page .digital-presence-card span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.96);
  color: #0b0d11;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-presence-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

body.digital-marketing-page .digital-contrast-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

body.digital-marketing-page .digital-contrast-column h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.94;
}

body.digital-marketing-page .digital-contrast-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 247, 239, 0.88);
}

body.digital-marketing-page .digital-contrast-column li {
  line-height: 1.55;
}

body.digital-marketing-page .digital-contrast-random {
  background:
    radial-gradient(circle at 78% 18%, rgba(120, 130, 145, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(26, 29, 36, 0.98), rgba(8, 10, 14, 0.96));
}

body.digital-marketing-page .digital-channel-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

body.digital-marketing-page .digital-channel-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff7ef;
  color: #0b0d11;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

body.digital-marketing-page .digital-channel-card:nth-child(2),
body.digital-marketing-page .digital-channel-card:nth-child(5) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 210, 128, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(44, 50, 61, 0.98), rgba(8, 10, 14, 0.96));
}

body.digital-marketing-page .digital-channel-card:nth-child(3),
body.digital-marketing-page .digital-channel-card:nth-child(6) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 151, 52, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(62, 22, 8, 0.94), rgba(8, 10, 14, 0.96));
}

body.digital-marketing-page .digital-visibility-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

body.digital-marketing-page .digital-visibility-board h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

body.digital-marketing-page .digital-visibility-meter {
  display: grid;
  gap: 14px;
}

body.digital-marketing-page .digital-visibility-meter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 168, 72, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.06);
}

body.digital-marketing-page .digital-visibility-meter span {
  color: rgba(244, 239, 231, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.digital-marketing-page .digital-visibility-meter strong {
  color: #fff7ef;
  white-space: nowrap;
}

body.digital-marketing-page .digital-booking-lead .page-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

body.digital-marketing-page .booking-section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

body.digital-marketing-page .booking-section iframe {
  border-radius: 0 !important;
  outline: 0 !important;
  background: #07090d !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: inset(3px 3px 8px 3px);
}

@media (max-width: 980px) {
  body.digital-marketing-page .page-hero.digital-marketing-hero {
    row-gap: clamp(18px, 3vw, 28px);
  }

  body.digital-marketing-page .digital-marketing-hero-badge {
    justify-self: center;
    left: auto;
    right: auto;
    margin: 0 auto clamp(12px, 2.4vw, 22px);
    font-size: clamp(1.08rem, 3vw, 1.55rem);
    line-height: 1.1;
    text-align: center;
  }

  body.digital-marketing-page .digital-pain-strip,
  body.digital-marketing-page .digital-stat-grid,
  body.digital-marketing-page .digital-deliverables-grid,
  body.digital-marketing-page .digital-offer-grid,
  body.digital-marketing-page .digital-role-grid,
  body.digital-marketing-page .digital-channel-map,
  body.digital-marketing-page .digital-presence-grid,
  body.digital-marketing-page .digital-contrast-board,
  body.digital-marketing-page .digital-timeline,
  body.digital-marketing-page .digital-outcome-strip,
  body.digital-marketing-page .digital-visibility-board {
    grid-template-columns: 1fr;
  }

  body.digital-marketing-page .digital-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.digital-marketing-page .digital-visibility-meter div {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  body.digital-marketing-page .digital-pain-strip,
  body.digital-marketing-page .digital-stat-grid,
  body.digital-marketing-page .digital-role-grid,
  body.digital-marketing-page .digital-channel-map,
  body.digital-marketing-page .digital-presence-grid,
  body.digital-marketing-page .digital-timeline,
  body.digital-marketing-page .digital-outcome-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.digital-marketing-page .digital-deliverables-grid,
  body.digital-marketing-page .digital-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Ads CRM Funnels page visual system */
body.ads-crm-page {
  overflow-x: hidden;
}

body.ads-crm-page main {
  max-width: 100vw;
  overflow-x: hidden;
}

body.ads-crm-page main .panel,
body.ads-crm-page main .section-heading,
body.ads-crm-page main .section-heading-main,
body.ads-crm-page main .section-heading-copy,
body.ads-crm-page main .page-highlight {
  min-width: 0;
}

body.ads-crm-page main h1,
body.ads-crm-page main h2,
body.ads-crm-page main h3,
body.ads-crm-page main p,
body.ads-crm-page main li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.ads-crm-page .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(22px, 3.5vw, 46px);
  position: relative;
  z-index: 2;
  align-items: start;
  margin-bottom: clamp(22px, 3vw, 38px);
}

body.ads-crm-page .section-heading-main h2 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 4.2vw, 4.65rem);
  line-height: 0.98;
}

body.ads-crm-page .section-heading-copy {
  max-width: 70ch;
  padding-top: 0;
}

body.ads-crm-page .page-hero.ads-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 4vw, 64px);
  row-gap: clamp(16px, 2vw, 26px);
  align-items: start;
  padding-top: clamp(42px, 5vw, 72px);
}

body.ads-crm-page .ads-problem-panel,
body.ads-crm-page .ads-market-panel {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 122, 22, 0.24), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(255, 208, 92, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 132, 31, 0.18), rgba(21, 24, 31, 0.96) 42%, rgba(55, 24, 7, 0.96));
}

body.ads-crm-page .ads-calculator-panel {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 122, 22, 0.28), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(255, 198, 83, 0.26), transparent 34%),
    linear-gradient(145deg, #f2e7d5, #f7c58a 52%, #ff7a16);
}

body.ads-crm-page .ads-problem-panel,
body.ads-crm-page .ads-market-panel,
body.ads-crm-page .ads-contrast-panel,
body.ads-crm-page .ads-study-panel,
body.ads-crm-page .ads-build-panel,
body.ads-crm-page .ads-flow-panel,
body.ads-crm-page .ads-offer-panel,
body.ads-crm-page .ads-audience-panel,
body.ads-crm-page .ads-calculator-panel {
  position: relative;
  overflow: hidden;
}

body.ads-crm-page .ads-problem-panel::before,
body.ads-crm-page .ads-market-panel::before,
body.ads-crm-page .ads-contrast-panel::before,
body.ads-crm-page .ads-study-panel::before,
body.ads-crm-page .ads-build-panel::before,
body.ads-crm-page .ads-flow-panel::before,
body.ads-crm-page .ads-offer-panel::before,
body.ads-crm-page .ads-audience-panel::before,
body.ads-crm-page .ads-calculator-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 80% 18%, black, transparent 58%);
  opacity: 0.55;
  pointer-events: none;
}

body.ads-crm-page .ads-problem-panel > *,
body.ads-crm-page .ads-market-panel > *,
body.ads-crm-page .ads-contrast-panel > *,
body.ads-crm-page .ads-study-panel > *,
body.ads-crm-page .ads-build-panel > *,
body.ads-crm-page .ads-flow-panel > *,
body.ads-crm-page .ads-offer-panel > *,
body.ads-crm-page .ads-audience-panel > *,
body.ads-crm-page .ads-calculator-panel > * {
  position: relative;
  z-index: 1;
}

body.ads-crm-page .ads-hero-badge {
  grid-column: 1;
  color: #ff7a16;
  font-size: clamp(1.25rem, 2.4vw, 2.15rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 106, 0, 0.32);
}

body.ads-crm-page .ads-hero-copy {
  grid-column: 1;
  display: grid;
  gap: 16px;
  align-content: start;
}

body.ads-crm-page .ads-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.9vw, 5.9rem);
  line-height: 0.95;
}

body.ads-crm-page .ads-hero .page-copy {
  max-width: 72ch;
}

body.ads-crm-page .ads-hero-proof {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 18px;
  align-self: start;
}

body.ads-crm-page .ads-hero-proof .ads-mini-stat {
  min-height: clamp(170px, 16vw, 220px);
}

body.ads-crm-page .ads-mini-stat,
body.ads-crm-page .ads-pain-card,
body.ads-crm-page .ads-stat-card,
body.ads-crm-page .ads-contrast-column,
body.ads-crm-page .ads-study-card,
body.ads-crm-page .ads-build-card,
body.ads-crm-page .ads-flow-step,
body.ads-crm-page .ads-offer-card,
body.ads-crm-page .ads-role-card,
body.ads-crm-page .ads-slider-card,
body.ads-crm-page .ads-risk-total {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  isolation: isolate;
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: clamp(20px, 2vw, 30px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 174, 80, 0.25), transparent 32%),
    linear-gradient(145deg, rgba(28, 31, 38, 0.98), rgba(7, 9, 13, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

body.ads-crm-page .ads-mini-stat::after,
body.ads-crm-page .ads-pain-card::after,
body.ads-crm-page .ads-stat-card::after,
body.ads-crm-page .ads-slider-card::after,
body.ads-crm-page .ads-risk-total::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 38%, transparent 58%);
  transform: translateX(-140%);
  opacity: 0.9;
  pointer-events: none;
  animation: adsNumberShine 4.8s ease-in-out infinite;
}

body.ads-crm-page .ads-mini-stat::before,
body.ads-crm-page .ads-pain-card::before,
body.ads-crm-page .ads-stat-card::before,
body.ads-crm-page .ads-slider-card::before,
body.ads-crm-page .ads-risk-total::before {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: inherit;
  background:
    conic-gradient(from 90deg, rgba(255, 106, 0, 0.02), rgba(255, 196, 84, 0.38), rgba(255, 247, 239, 0.18), rgba(255, 106, 0, 0.34), rgba(255, 106, 0, 0.02));
  opacity: 0.72;
  pointer-events: none;
  animation: adsNumberAura 8s linear infinite;
}

body.ads-crm-page .ads-mini-stat,
body.ads-crm-page .ads-pain-card,
body.ads-crm-page .ads-stat-card,
body.ads-crm-page .ads-study-card,
body.ads-crm-page .ads-build-card,
body.ads-crm-page .ads-flow-step,
body.ads-crm-page .ads-offer-card,
body.ads-crm-page .ads-role-card {
  padding: clamp(24px, 3vw, 34px);
}

body.ads-crm-page .ads-mini-stat:hover,
body.ads-crm-page .ads-pain-card:hover,
body.ads-crm-page .ads-stat-card:hover,
body.ads-crm-page .ads-contrast-column:hover,
body.ads-crm-page .ads-study-card:hover,
body.ads-crm-page .ads-build-card:hover,
body.ads-crm-page .ads-flow-step:hover,
body.ads-crm-page .ads-offer-card:hover,
body.ads-crm-page .ads-role-card:hover,
body.ads-crm-page .ads-slider-card:hover,
body.ads-crm-page .ads-risk-total:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, 0.58);
  box-shadow: 0 24px 58px rgba(255, 106, 0, 0.15), 0 18px 44px rgba(0, 0, 0, 0.32);
  filter: saturate(1.08);
}

body.ads-crm-page .ads-mini-stat strong,
body.ads-crm-page .ads-pain-card strong,
body.ads-crm-page .ads-stat-card strong {
  color: #fff7ef;
  font-size: clamp(3.25rem, 5.2vw, 5.8rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-shadow: 0 0 28px rgba(255, 247, 239, 0.38), 0 12px 34px rgba(255, 106, 0, 0.26);
  z-index: 1;
}

body.ads-crm-page .ads-mini-stat .card-kicker,
body.ads-crm-page .ads-pain-card .card-kicker,
body.ads-crm-page .ads-stat-card .card-kicker,
body.ads-crm-page .ads-contrast-column .card-kicker,
body.ads-crm-page .ads-build-card .card-kicker,
body.ads-crm-page .ads-offer-card .card-kicker,
body.ads-crm-page .ads-role-card .card-kicker,
body.ads-crm-page .ads-booking-lead .card-kicker {
  color: #ff7a16;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.ads-crm-page .ads-mini-stat .card-kicker,
body.ads-crm-page .ads-pain-card .card-kicker,
body.ads-crm-page .ads-stat-card .card-kicker {
  color: #2a1004;
  text-shadow: 0 1px 14px rgba(255, 247, 239, 0.36);
}

body.ads-crm-page .ads-study-card span,
body.ads-crm-page .ads-flow-step span {
  color: #ff9b35;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.15em;
}

body.ads-crm-page .ads-pain-card h3,
body.ads-crm-page .ads-stat-card h3,
body.ads-crm-page .ads-contrast-column h3,
body.ads-crm-page .ads-study-card h3,
body.ads-crm-page .ads-build-card h3,
body.ads-crm-page .ads-flow-step h3,
body.ads-crm-page .ads-offer-card h3,
body.ads-crm-page .ads-role-card h3,
body.ads-crm-page .ads-calculator h3,
body.ads-crm-page .ads-booking-lead h3 {
  color: #fff7ef;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.ads-crm-page .panel-light .ads-calculator h3 {
  color: #0b0d11;
}

body.ads-crm-page .ads-mini-stat p,
body.ads-crm-page .ads-pain-card p,
body.ads-crm-page .ads-stat-card p,
body.ads-crm-page .ads-contrast-column li,
body.ads-crm-page .ads-study-card p,
body.ads-crm-page .ads-build-card p,
body.ads-crm-page .ads-flow-step p,
body.ads-crm-page .ads-offer-card p,
body.ads-crm-page .ads-role-card p,
body.ads-crm-page .ads-calculator p,
body.ads-crm-page .ads-booking-lead p {
  color: rgba(255, 247, 239, 0.84);
  line-height: 1.55;
}

body.ads-crm-page .panel-light .ads-calculator p,
body.ads-crm-page .panel-light .ads-contrast-column li,
body.ads-crm-page .panel-light .ads-build-card p,
body.ads-crm-page .panel-light .ads-offer-card p {
  color: rgba(11, 13, 17, 0.76);
}

body.ads-crm-page .panel-light .ads-contrast-column li,
body.ads-crm-page .panel-light .ads-build-card p,
body.ads-crm-page .panel-light .ads-offer-card p,
body.ads-crm-page .panel-light .ads-build-card h3,
body.ads-crm-page .panel-light .ads-offer-card h3,
body.ads-crm-page .panel-light .ads-contrast-column h3 {
  color: rgba(255, 247, 239, 0.9);
}

body.ads-crm-page .ads-problem-copy,
body.ads-crm-page .ads-market-copy,
body.ads-crm-page .ads-contrast-copy,
body.ads-crm-page .ads-study-copy,
body.ads-crm-page .ads-build-copy,
body.ads-crm-page .ads-flow-copy,
body.ads-crm-page .ads-offer-copy,
body.ads-crm-page .ads-audience-copy,
body.ads-crm-page .ads-calculator-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

body.ads-crm-page .ads-problem-copy strong,
body.ads-crm-page .ads-market-copy strong,
body.ads-crm-page .ads-contrast-copy strong,
body.ads-crm-page .ads-study-copy strong,
body.ads-crm-page .ads-build-copy strong,
body.ads-crm-page .ads-flow-copy strong,
body.ads-crm-page .ads-offer-copy strong,
body.ads-crm-page .ads-audience-copy strong,
body.ads-crm-page .ads-calculator-copy strong {
  color: #ff7a16;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}

body.ads-crm-page .ads-pain-grid,
body.ads-crm-page .ads-stat-grid,
body.ads-crm-page .ads-study-grid,
body.ads-crm-page .ads-build-grid,
body.ads-crm-page .ads-flow,
body.ads-crm-page .ads-offer-grid,
body.ads-crm-page .ads-role-grid,
body.ads-crm-page .ads-review-grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  min-width: 0;
}

body.ads-crm-page .ads-pain-grid,
body.ads-crm-page .ads-stat-grid,
body.ads-crm-page .ads-build-grid,
body.ads-crm-page .ads-role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.ads-crm-page .ads-study-grid,
body.ads-crm-page .ads-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.ads-crm-page .ads-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.ads-crm-page .ads-contrast-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

body.ads-crm-page .ads-contrast-column {
  grid-template-rows: auto auto auto;
  align-content: start;
  padding: clamp(28px, 4vw, 46px);
  min-height: clamp(340px, 28vw, 460px);
}

body.ads-crm-page .ads-contrast-column h3 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  max-width: 100%;
  min-height: 0;
  text-wrap: balance;
}

body.ads-crm-page .ads-contrast-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2rem;
  align-self: start;
}

body.ads-crm-page .ads-contrast-random {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 247, 239, 0.12), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(120, 130, 145, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(30, 34, 43, 0.98), rgba(7, 9, 13, 0.98));
}

body.ads-crm-page .ads-contrast-smart,
body.ads-crm-page .ads-offer-card:nth-child(2),
body.ads-crm-page .ads-build-card:nth-child(2n),
body.ads-crm-page .ads-role-card:nth-child(2n) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 197, 104, 0.33), transparent 34%),
    linear-gradient(145deg, rgba(76, 31, 6, 0.96), rgba(7, 9, 13, 0.98));
}

body.ads-crm-page .ads-stat-card {
  text-align: left;
}

body.ads-crm-page .ads-mini-stat,
body.ads-crm-page .ads-pain-card,
body.ads-crm-page .ads-stat-card {
  overflow: hidden;
  grid-template-columns: minmax(118px, 0.28fr) minmax(0, 1fr);
  column-gap: clamp(18px, 2.8vw, 34px);
  align-items: start;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 246, 215, 0.38), transparent 32%),
    linear-gradient(145deg, #ff8a1f, #ff6a00 42%, #b43600);
  box-shadow: 0 28px 68px rgba(255, 106, 0, 0.24), 0 18px 44px rgba(0, 0, 0, 0.24);
}

body.ads-crm-page .ads-mini-stat strong,
body.ads-crm-page .ads-pain-card strong,
body.ads-crm-page .ads-stat-card strong {
  grid-column: 1;
  grid-row: 1 / span 5;
  align-self: start;
  justify-self: start;
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
}

body.ads-crm-page .ads-mini-stat .card-kicker,
body.ads-crm-page .ads-mini-stat h3,
body.ads-crm-page .ads-mini-stat p,
body.ads-crm-page .ads-mini-stat a,
body.ads-crm-page .ads-pain-card .card-kicker,
body.ads-crm-page .ads-pain-card h3,
body.ads-crm-page .ads-pain-card p,
body.ads-crm-page .ads-pain-card a,
body.ads-crm-page .ads-stat-card .card-kicker,
body.ads-crm-page .ads-stat-card h3,
body.ads-crm-page .ads-stat-card p,
body.ads-crm-page .ads-stat-card a {
  grid-column: 2;
}

body.ads-crm-page .ads-mini-stat:nth-child(2n),
body.ads-crm-page .ads-pain-card:nth-child(2n),
body.ads-crm-page .ads-stat-card:nth-child(2n) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 228, 184, 0.4), transparent 34%),
    linear-gradient(145deg, #ffc85b, #ff8a1f 48%, #7d3605);
}

body.ads-crm-page .ads-pain-card:nth-child(3),
body.ads-crm-page .ads-stat-card:nth-child(3) {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 244, 221, 0.34), transparent 34%),
    linear-gradient(145deg, #ffd36c, #f2a42b 52%, #9b4700);
}

body.ads-crm-page .ads-pain-card:nth-child(4),
body.ads-crm-page .ads-stat-card:nth-child(4) {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 247, 239, 0.32), transparent 34%),
    linear-gradient(145deg, #ff6a00, #d54f00 52%, #7b1e00);
}

body.ads-crm-page .ads-stat-card a,
body.ads-crm-page .ads-pain-card a {
  color: rgba(42, 16, 4, 0.86);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

body.ads-crm-page .ads-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

body.ads-crm-page .ads-calculator-copy-block {
  display: grid;
  align-content: start;
  gap: 18px;
}

body.ads-crm-page .ads-calculator-controls {
  display: grid;
  gap: 16px;
}

body.ads-crm-page .ads-slider-card,
body.ads-crm-page .ads-risk-total {
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 247, 239, 0.32), transparent 34%),
    linear-gradient(145deg, #ffb347, #ff7a16 52%, #a83b00);
}

body.ads-crm-page .ads-slider-card span,
body.ads-crm-page .ads-risk-total span {
  color: #fff7ef;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 0.94;
  text-transform: uppercase;
}

body.ads-crm-page .ads-slider-card strong,
body.ads-crm-page .ads-risk-total strong {
  color: #fff7ef;
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

body.ads-crm-page .ads-risk-total {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 228, 184, 0.35), transparent 34%),
    linear-gradient(145deg, #ffd36c, #ff7a16 45%, #b43700);
  border-color: rgba(255, 255, 255, 0.16);
}

body.ads-crm-page .ads-mini-stat > *,
body.ads-crm-page .ads-pain-card > *,
body.ads-crm-page .ads-stat-card > *,
body.ads-crm-page .ads-slider-card > *,
body.ads-crm-page .ads-risk-total > * {
  position: relative;
  z-index: 1;
}

@keyframes adsNumberShine {
  0% {
    transform: translateX(-140%);
  }
  42% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes adsNumberAura {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body.ads-crm-page .ads-slider-card input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: #ff7a16;
}

body.ads-crm-page .ads-calculator-controls .ads-slider-card,
body.ads-crm-page .ads-calculator-controls .ads-risk-total {
  min-height: 150px;
  align-items: center;
  row-gap: 18px;
  padding: clamp(24px, 3.4vw, 34px);
}

body.ads-crm-page .ads-calculator-controls .ads-slider-card span,
body.ads-crm-page .ads-calculator-controls .ads-risk-total span {
  max-width: 12ch;
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  transform: translateY(4px);
}

body.ads-crm-page .ads-calculator-controls .ads-slider-card strong,
body.ads-crm-page .ads-calculator-controls .ads-risk-total strong {
  font-size: clamp(3.25rem, 5.8vw, 5.5rem);
  letter-spacing: -0.07em;
}

body.ads-crm-page .ads-comparison-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.ads-crm-page .ads-comparison-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(20px, 2vw, 28px);
  padding: clamp(18px, 2.5vw, 26px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
}

body.ads-crm-page .ads-comparison-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: inherit;
  background:
    conic-gradient(from 90deg, rgba(255, 106, 0, 0.03), rgba(255, 196, 84, 0.28), rgba(255, 247, 239, 0.16), rgba(255, 106, 0, 0.24), rgba(255, 106, 0, 0.03));
  opacity: 0.68;
  pointer-events: none;
  animation: adsNumberAura 8s linear infinite;
}

body.ads-crm-page .ads-comparison-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 38%, transparent 58%);
  transform: translateX(-140%);
  opacity: 0.78;
  pointer-events: none;
  animation: adsNumberShine 5.4s ease-in-out infinite;
}

body.ads-crm-page .ads-comparison-card > * {
  position: relative;
  z-index: 1;
}

body.ads-crm-page .ads-dumb-card {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 179, 71, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(31, 34, 42, 0.98), rgba(7, 9, 13, 0.98));
}

body.ads-crm-page .ads-smart-card {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 247, 239, 0.34), transparent 34%),
    linear-gradient(145deg, #ffb347, #ff7a16 52%, #a83b00);
}

body.ads-crm-page .ads-comparison-card span {
  color: #fff7ef;
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.ads-crm-page .ads-comparison-card strong {
  color: #fff7ef;
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

body.ads-crm-page .ads-comparison-card p {
  margin: 0;
  color: rgba(255, 247, 239, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.45;
}

body.ads-crm-page .ads-comparison-card small {
  color: rgba(255, 247, 239, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

body.ads-crm-page .ads-smart-card span,
body.ads-crm-page .ads-smart-card p,
body.ads-crm-page .ads-smart-card small,
body.ads-crm-page .ads-smart-card strong {
  color: #fff7ef;
}

body.ads-crm-page .panel-light .ads-comparison-card p,
body.ads-crm-page .panel-light .ads-comparison-card small {
  color: rgba(255, 247, 239, 0.88);
}

body.ads-crm-page .ads-comparison-total strong {
  font-size: clamp(4.4rem, 8vw, 7.6rem);
}

body.ads-crm-page .ads-calculator-note {
  color: rgba(11, 13, 17, 0.58);
  font-size: 0.82rem;
}

body.ads-crm-page .ads-review-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 34px);
}

body.ads-crm-page .ads-review-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 138, 31, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ef;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

body.ads-crm-page .ads-booking-lead {
  text-align: center;
}

body.ads-crm-page .ads-booking-lead .page-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

body.ads-crm-page .booking-section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

body.ads-crm-page .booking-section iframe {
  border-radius: 0 !important;
  outline: 0 !important;
  background: #07090d !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: inset(3px 3px 8px 3px);
}

@media (max-width: 980px) {
  body.ads-crm-page .section-heading {
    grid-template-columns: 1fr;
  }

  body.ads-crm-page .page-hero.ads-hero,
  body.ads-crm-page .ads-contrast-board,
  body.ads-crm-page .ads-calculator {
    grid-template-columns: 1fr;
  }

  body.ads-crm-page .ads-hero-badge,
  body.ads-crm-page .ads-hero-copy,
  body.ads-crm-page .ads-hero-proof {
    grid-column: 1;
    grid-row: auto;
  }

  body.ads-crm-page .ads-hero-badge {
    justify-self: center;
    text-align: center;
  }

  body.ads-crm-page .ads-hero h1 {
    max-width: 12ch;
  }

  body.ads-crm-page .ads-pain-grid,
  body.ads-crm-page .ads-stat-grid,
  body.ads-crm-page .ads-study-grid,
  body.ads-crm-page .ads-build-grid,
  body.ads-crm-page .ads-flow,
  body.ads-crm-page .ads-offer-grid,
  body.ads-crm-page .ads-role-grid {
    grid-template-columns: 1fr;
  }

  body.ads-crm-page .ads-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ads-crm-page .ads-slider-card,
  body.ads-crm-page .ads-risk-total {
    grid-template-columns: 1fr;
  }

  body.ads-crm-page .ads-comparison-board {
    grid-template-columns: 1fr;
  }

  body.ads-crm-page .ads-mini-stat,
  body.ads-crm-page .ads-pain-card,
  body.ads-crm-page .ads-stat-card {
    grid-template-columns: 1fr;
  }

  body.ads-crm-page .ads-mini-stat strong,
  body.ads-crm-page .ads-pain-card strong,
  body.ads-crm-page .ads-stat-card strong,
  body.ads-crm-page .ads-mini-stat .card-kicker,
  body.ads-crm-page .ads-mini-stat h3,
  body.ads-crm-page .ads-mini-stat p,
  body.ads-crm-page .ads-mini-stat a,
  body.ads-crm-page .ads-pain-card .card-kicker,
  body.ads-crm-page .ads-pain-card h3,
  body.ads-crm-page .ads-pain-card p,
  body.ads-crm-page .ads-pain-card a,
  body.ads-crm-page .ads-stat-card .card-kicker,
  body.ads-crm-page .ads-stat-card h3,
  body.ads-crm-page .ads-stat-card p,
  body.ads-crm-page .ads-stat-card a {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  body.ads-crm-page .page-hero.ads-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  }

  body.ads-crm-page .ads-pain-grid,
  body.ads-crm-page .ads-stat-grid,
  body.ads-crm-page .ads-build-grid,
  body.ads-crm-page .ads-role-grid,
  body.ads-crm-page .ads-study-grid,
  body.ads-crm-page .ads-flow,
  body.ads-crm-page .ads-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Content Creative page visual system */
body.content-creative-page {
  overflow-x: hidden;
}

body.content-creative-page main {
  max-width: 100vw;
  overflow-x: hidden;
}

body.content-creative-page main .panel,
body.content-creative-page main .section-heading,
body.content-creative-page main .section-heading-main,
body.content-creative-page main .section-heading-copy,
body.content-creative-page main .page-highlight {
  min-width: 0;
}

body.content-creative-page main .panel {
  padding: clamp(24px, 3.2vw, 42px);
}

body.content-creative-page main h1,
body.content-creative-page main h2,
body.content-creative-page main h3,
body.content-creative-page main p,
body.content-creative-page main li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.content-creative-page .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

body.content-creative-page .section-heading-main h2 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 4.2vw, 4.75rem);
  line-height: 0.96;
}

body.content-creative-page .creative-heading-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 72ch;
}

body.content-creative-page .creative-heading-copy strong {
  color: #ff7a16;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 950;
  letter-spacing: 0.055em;
  line-height: 1.04;
  text-transform: uppercase;
}

body.content-creative-page .creative-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 106, 0, 0.28), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 202, 110, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(20, 22, 28, 0.98), rgba(7, 9, 13, 0.98));
}

body.content-creative-page .creative-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

body.content-creative-page .creative-hero-badge {
  color: #ff7a16;
  font-size: clamp(1.2rem, 2.25vw, 2.05rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.06;
  text-shadow: 0 0 28px rgba(255, 106, 0, 0.34);
}

body.content-creative-page .creative-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
}

body.content-creative-page .creative-hero .page-copy {
  max-width: 72ch;
}

body.content-creative-page .creative-hero-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
  min-width: 0;
}

body.content-creative-page .creative-board-card,
body.content-creative-page .creative-split-card,
body.content-creative-page .creative-service-card,
body.content-creative-page .creative-shot,
body.content-creative-page .creative-process-ribbon article,
body.content-creative-page .creative-offer-card,
body.content-creative-page .creative-audience-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: clamp(20px, 2vw, 32px);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 183, 92, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(28, 31, 38, 0.98), rgba(7, 9, 13, 0.98));
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

body.content-creative-page .creative-board-card:hover,
body.content-creative-page .creative-split-card:hover,
body.content-creative-page .creative-service-card:hover,
body.content-creative-page .creative-shot:hover,
body.content-creative-page .creative-process-ribbon article:hover,
body.content-creative-page .creative-offer-card:hover,
body.content-creative-page .creative-audience-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, 0.58);
  box-shadow: 0 26px 64px rgba(255, 106, 0, 0.16), 0 18px 44px rgba(0, 0, 0, 0.34);
  filter: saturate(1.08);
}

body.content-creative-page .creative-board-card::after,
body.content-creative-page .creative-service-card::after,
body.content-creative-page .creative-shot::after,
body.content-creative-page .creative-offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 38%, transparent 58%);
  transform: translateX(-140%);
  opacity: 0.76;
  pointer-events: none;
  animation: creativeShine 5.6s ease-in-out infinite;
}

@keyframes creativeShine {
  0% {
    transform: translateX(-140%);
  }
  44% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}

body.content-creative-page .creative-board-card > *,
body.content-creative-page .creative-split-card > *,
body.content-creative-page .creative-service-card > *,
body.content-creative-page .creative-shot > *,
body.content-creative-page .creative-process-ribbon article > *,
body.content-creative-page .creative-offer-card > *,
body.content-creative-page .creative-audience-grid article > * {
  position: relative;
  z-index: 1;
}

body.content-creative-page .creative-board-card {
  padding: clamp(24px, 3vw, 36px);
}

body.content-creative-page .creative-board-card-main {
  grid-row: span 2;
  align-content: end;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 247, 239, 0.2), transparent 32%),
    radial-gradient(circle at 76% 20%, rgba(255, 106, 0, 0.34), transparent 34%),
    linear-gradient(145deg, #ff8a1f, #9d3100 58%, #160807);
}

body.content-creative-page .creative-board-card span,
body.content-creative-page .creative-service-card span,
body.content-creative-page .creative-shot span,
body.content-creative-page .creative-process-ribbon span,
body.content-creative-page .creative-offer-card span,
body.content-creative-page .creative-split-card .card-kicker,
body.content-creative-page .creative-booking-lead .card-kicker {
  color: #ff9b35;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

body.content-creative-page .creative-board-card strong {
  color: #fff7ef;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

body.content-creative-page .creative-board-card p,
body.content-creative-page .creative-service-card p,
body.content-creative-page .creative-shot p,
body.content-creative-page .creative-process-ribbon p,
body.content-creative-page .creative-offer-card p,
body.content-creative-page .creative-offer-card li,
body.content-creative-page .creative-audience-grid p,
body.content-creative-page .creative-split-card li {
  color: rgba(255, 247, 239, 0.86);
  line-height: 1.55;
}

body.content-creative-page .creative-problem-panel,
body.content-creative-page .creative-showcase-panel,
body.content-creative-page .creative-offer-panel {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 122, 22, 0.22), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(255, 198, 83, 0.24), transparent 34%),
    linear-gradient(145deg, #f2e7d5, #f7d3a3 58%, #ff8a1f);
}

body.content-creative-page .creative-problem-panel h2,
body.content-creative-page .creative-showcase-panel h2,
body.content-creative-page .creative-offer-panel h2 {
  color: #0b0d11;
}

body.content-creative-page .creative-problem-panel p,
body.content-creative-page .creative-showcase-panel p,
body.content-creative-page .creative-offer-panel p {
  color: rgba(11, 13, 17, 0.76);
}

body.content-creative-page .creative-split-board,
body.content-creative-page .creative-range-grid,
body.content-creative-page .creative-offer-grid,
body.content-creative-page .creative-audience-grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
}

body.content-creative-page .creative-split-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

body.content-creative-page .creative-split-card {
  padding: clamp(30px, 4vw, 48px);
}

body.content-creative-page .creative-split-card h3 {
  max-width: 100%;
  color: #fff7ef;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 0.96;
  text-wrap: balance;
}

body.content-creative-page .creative-split-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.15rem;
}

body.content-creative-page .creative-random {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 247, 239, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(120, 130, 145, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(31, 34, 42, 0.98), rgba(7, 9, 13, 0.98));
}

body.content-creative-page .creative-directed,
body.content-creative-page .creative-service-card:nth-child(2n),
body.content-creative-page .creative-offer-card:nth-child(2),
body.content-creative-page .creative-audience-grid article:nth-child(2n) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 228, 184, 0.36), transparent 34%),
    linear-gradient(145deg, rgba(112, 44, 4, 0.98), rgba(7, 9, 13, 0.98));
}

body.content-creative-page .creative-range-panel,
body.content-creative-page .creative-process-panel,
body.content-creative-page .creative-audience-panel {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 122, 22, 0.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 208, 92, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(21, 24, 31, 0.98), rgba(7, 9, 13, 0.98));
}

body.content-creative-page .creative-range-panel,
body.content-creative-page .creative-process-panel,
body.content-creative-page .creative-offer-panel,
body.content-creative-page .creative-audience-panel {
  min-height: 0;
  align-content: start;
}

body.content-creative-page .creative-range-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.content-creative-page .creative-service-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
}

body.content-creative-page .creative-service-card:nth-child(1),
body.content-creative-page .creative-service-card:nth-child(6) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 247, 239, 0.34), transparent 34%),
    linear-gradient(145deg, #ff8a1f, #ba3d00 54%, #150807);
}

body.content-creative-page .creative-service-card h3,
body.content-creative-page .creative-process-ribbon h3,
body.content-creative-page .creative-offer-card h3,
body.content-creative-page .creative-audience-grid h3,
body.content-creative-page .creative-booking-lead h3 {
  color: #fff7ef;
  font-size: clamp(1.45rem, 2.25vw, 2.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.content-creative-page .creative-marquee {
  max-width: 100%;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 42px);
}

body.content-creative-page .creative-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: creativeMarquee 28s linear infinite;
}

body.content-creative-page .creative-marquee:hover .creative-marquee-track {
  animation-play-state: paused;
}

@keyframes creativeMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

body.content-creative-page .creative-shot {
  width: clamp(280px, 30vw, 420px);
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
}

body.content-creative-page .creative-shot strong {
  color: #fff7ef;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

body.content-creative-page .creative-shot-orange {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 247, 239, 0.34), transparent 34%),
    linear-gradient(145deg, #ff8a1f, #c54600 54%, #170704);
}

body.content-creative-page .creative-shot-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 151, 52, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(28, 31, 38, 0.98), rgba(7, 9, 13, 0.98));
}

body.content-creative-page .creative-shot-paper {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 138, 31, 0.2), transparent 34%),
    linear-gradient(145deg, #fff7ef, #f6d6ad);
}

body.content-creative-page .creative-shot-paper span,
body.content-creative-page .creative-shot-paper strong,
body.content-creative-page .creative-shot-paper p {
  color: #0b0d11;
}

body.content-creative-page .creative-shot-rust {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 202, 110, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(84, 30, 6, 0.98), rgba(8, 10, 14, 0.98));
}

body.content-creative-page .creative-process-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

body.content-creative-page .creative-process-ribbon article {
  min-height: 260px;
  padding: clamp(22px, 2.5vw, 30px);
}

body.content-creative-page .creative-process-ribbon article:nth-child(3) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 247, 239, 0.3), transparent 34%),
    linear-gradient(145deg, #ff8a1f, #9b3100 58%, #110807);
}

body.content-creative-page .creative-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.content-creative-page .creative-offer-card {
  min-height: 410px;
  padding: clamp(26px, 3vw, 36px);
}

body.content-creative-page .creative-offer-card:nth-child(1) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 202, 110, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(27, 30, 38, 0.98), rgba(8, 10, 14, 0.98));
}

body.content-creative-page .creative-offer-card:nth-child(3) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 247, 239, 0.32), transparent 34%),
    linear-gradient(145deg, #ff7a16, #8f2d00 56%, #100704);
}

body.content-creative-page .creative-offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
}

body.content-creative-page .creative-audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.content-creative-page .creative-audience-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
}

body.content-creative-page .creative-audience-grid article:nth-child(1),
body.content-creative-page .creative-audience-grid article:nth-child(4) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 247, 239, 0.3), transparent 34%),
    linear-gradient(145deg, #ff8a1f, #a93700 58%, #120705);
}

body.content-creative-page .creative-booking-lead {
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 122, 22, 0.25), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255, 198, 83, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(47, 19, 8, 0.98), rgba(7, 9, 13, 0.98));
}

body.content-creative-page .creative-booking-lead h3 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

body.content-creative-page .creative-booking-lead p {
  max-width: 86ch;
  margin-inline: auto;
}

body.content-creative-page .creative-review-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

body.content-creative-page .creative-review-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 138, 31, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ef;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

body.content-creative-page .creative-booking-lead .page-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

body.content-creative-page .booking-section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

body.content-creative-page .booking-section iframe {
  border-radius: 0 !important;
  outline: 0 !important;
  background: #07090d !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: inset(3px 3px 8px 3px);
}

@media (max-width: 1180px) {
  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon,
  body.content-creative-page .creative-audience-grid,
  body.content-creative-page .creative-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.content-creative-page .creative-offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.content-creative-page .section-heading,
  body.content-creative-page .creative-hero,
  body.content-creative-page .creative-split-board {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-hero-copy {
    align-content: start;
  }

  body.content-creative-page .creative-hero-badge {
    justify-self: center;
    text-align: center;
  }

  body.content-creative-page .creative-hero h1 {
    max-width: 12ch;
  }

  body.content-creative-page .creative-hero-board {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  body.content-creative-page .creative-board-card-main {
    grid-row: auto;
    align-content: start;
  }

  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon,
  body.content-creative-page .creative-audience-grid {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.content-creative-page .creative-process-ribbon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.content-creative-page .creative-review-grid {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-shot {
    width: min(300px, calc(100vw - 72px));
  }
}

/* Content Creative page refinement pass: contrast, density, and balanced cards */
body.content-creative-page .creative-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: start;
}

body.content-creative-page .creative-hero-copy {
  align-content: start;
}

body.content-creative-page .creative-hero h1 {
  max-width: 15ch;
}

body.content-creative-page .creative-hero-board {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  align-content: start;
}

body.content-creative-page .creative-board-card {
  min-height: 0;
  padding: clamp(24px, 2.4vw, 32px);
}

body.content-creative-page .creative-board-card-main {
  grid-row: auto;
  align-content: start;
}

body.content-creative-page .creative-board-card strong {
  font-size: clamp(2.4rem, 4.2vw, 4.65rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

body.content-creative-page .creative-board-card span[data-count] {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: none;
}

body.content-creative-page .creative-board-card p {
  max-width: 46ch;
}

body.content-creative-page .creative-board-card-main span,
body.content-creative-page .creative-service-card:nth-child(1) > span,
body.content-creative-page .creative-service-card:nth-child(6) > span,
body.content-creative-page .creative-process-ribbon article:nth-child(3) > span,
body.content-creative-page .creative-offer-card:nth-child(3) > span,
body.content-creative-page .creative-audience-grid article:nth-child(1) > span,
body.content-creative-page .creative-audience-grid article:nth-child(4) > span,
body.content-creative-page .creative-shot-orange > span {
  color: rgba(255, 247, 239, 0.86);
}

body.content-creative-page .creative-problem-panel .creative-heading-copy strong,
body.content-creative-page .creative-showcase-panel .creative-heading-copy strong,
body.content-creative-page .creative-offer-panel .creative-heading-copy strong {
  color: #9d3100;
}

body.content-creative-page .creative-problem-panel .creative-heading-copy p,
body.content-creative-page .creative-showcase-panel .creative-heading-copy p,
body.content-creative-page .creative-offer-panel .creative-heading-copy p {
  color: rgba(11, 13, 17, 0.84);
}

body.content-creative-page .creative-service-card,
body.content-creative-page .creative-shot,
body.content-creative-page .creative-process-ribbon article,
body.content-creative-page .creative-offer-card,
body.content-creative-page .creative-audience-grid article {
  min-height: 0;
}

body.content-creative-page .creative-service-card p,
body.content-creative-page .creative-shot p,
body.content-creative-page .creative-process-ribbon p,
body.content-creative-page .creative-offer-card p,
body.content-creative-page .creative-audience-grid p,
body.content-creative-page .creative-split-card li {
  max-width: 58ch;
}

body.content-creative-page .creative-range-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.content-creative-page .creative-service-card {
  padding: clamp(26px, 2.8vw, 38px);
}

body.content-creative-page .creative-service-card h3 {
  max-width: 18ch;
}

body.content-creative-page .creative-process-ribbon {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

body.content-creative-page .creative-process-ribbon article {
  padding: clamp(22px, 2.2vw, 28px);
}

body.content-creative-page .creative-offer-card {
  padding: clamp(28px, 3vw, 40px);
}

body.content-creative-page .creative-offer-panel {
  padding-top: clamp(22px, 2.6vw, 34px);
  padding-bottom: clamp(22px, 2.6vw, 34px);
}

body.content-creative-page .creative-offer-panel .section-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(16px, 2.2vw, 30px);
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

body.content-creative-page .creative-offer-panel .section-heading-main h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 3.35vw, 3.6rem);
}

body.content-creative-page .creative-offer-panel .creative-heading-copy {
  gap: 8px;
}

body.content-creative-page .creative-offer-panel .creative-heading-copy strong {
  max-width: 28ch;
  color: #8f2d00;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

body.content-creative-page .creative-offer-grid {
  align-items: stretch;
  gap: clamp(12px, 1.35vw, 18px);
}

body.content-creative-page .creative-offer-card {
  display: block;
  padding: clamp(18px, 1.9vw, 26px);
  min-height: 0;
}

body.content-creative-page .creative-offer-card h3 {
  max-width: 100%;
  margin: clamp(14px, 1.5vw, 20px) 0 clamp(12px, 1.25vw, 16px);
  font-size: clamp(1.45rem, 1.9vw, 1.85rem);
  line-height: 1.03;
}

body.content-creative-page .creative-offer-card p,
body.content-creative-page .creative-offer-card li {
  color: rgba(255, 247, 239, 0.9);
  line-height: 1.42;
}

body.content-creative-page .creative-shot-orange p,
body.content-creative-page .creative-shot-dark p,
body.content-creative-page .creative-shot-rust p,
body.content-creative-page .creative-shot-orange strong,
body.content-creative-page .creative-shot-dark strong,
body.content-creative-page .creative-shot-rust strong {
  color: rgba(255, 247, 239, 0.94);
}

body.content-creative-page .creative-shot-orange span,
body.content-creative-page .creative-shot-dark span,
body.content-creative-page .creative-shot-rust span {
  color: rgba(255, 247, 239, 0.78);
}

body.content-creative-page .creative-offer-card:nth-child(3) p,
body.content-creative-page .creative-offer-card:nth-child(3) li {
  color: rgba(255, 247, 239, 0.94);
}

body.content-creative-page .creative-offer-card ul {
  display: grid;
  gap: 5px;
  margin: clamp(14px, 1.4vw, 18px) 0 0;
  padding-left: 1.1rem;
}

body.content-creative-page .creative-audience-grid article {
  padding: clamp(26px, 2.8vw, 36px);
}

@media (min-width: 1181px) {
  body.content-creative-page .creative-split-card {
    min-height: 360px;
  }

  body.content-creative-page .creative-range-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  body.content-creative-page .creative-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  body.content-creative-page .creative-hero-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.content-creative-page .creative-board-card strong {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
  }
}

@media (max-width: 980px) {
  body.content-creative-page .creative-hero h1 {
    max-width: 10.5ch;
  }

  body.content-creative-page .creative-hero-board,
  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-board-card strong {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  body.content-creative-page .creative-board-card,
  body.content-creative-page .creative-service-card,
  body.content-creative-page .creative-process-ribbon article,
  body.content-creative-page .creative-offer-card,
  body.content-creative-page .creative-audience-grid article {
    padding: clamp(24px, 6vw, 34px);
  }

  body.content-creative-page .creative-offer-panel .section-heading {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-offer-panel .section-heading-main h2,
  body.content-creative-page .creative-offer-panel .creative-heading-copy strong {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  body.content-creative-page .creative-hero-badge {
    font-size: clamp(1.05rem, 6vw, 1.45rem);
    letter-spacing: 0.065em;
  }

  body.content-creative-page .creative-heading-copy strong {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
    letter-spacing: 0.045em;
  }

  body.content-creative-page .creative-service-card h3,
  body.content-creative-page .creative-process-ribbon h3,
  body.content-creative-page .creative-offer-card h3,
  body.content-creative-page .creative-audience-grid h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.02;
  }
}

/* Content Creative compact pass: tighter cards, cleaner wrapping, consistent white numbers */
body.content-creative-page .creative-service-card > span,
body.content-creative-page .creative-process-ribbon article > span {
  color: rgba(255, 247, 239, 0.92);
}

body.content-creative-page .creative-range-grid {
  gap: clamp(14px, 1.45vw, 20px);
}

body.content-creative-page .creative-service-card {
  gap: clamp(12px, 1.4vw, 18px);
  padding: clamp(22px, 2.2vw, 30px);
  min-height: clamp(260px, 24vw, 330px);
}

body.content-creative-page .creative-service-card h3 {
  max-width: 100%;
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  line-height: 1.02;
}

body.content-creative-page .creative-service-card p {
  max-width: 50ch;
  line-height: 1.5;
}

body.content-creative-page .creative-audience-panel {
  padding-top: clamp(26px, 3.2vw, 42px);
  padding-bottom: clamp(26px, 3.2vw, 42px);
}

body.content-creative-page .creative-audience-panel .section-heading {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(18px, 2.6vw, 34px);
  margin-bottom: clamp(18px, 2vw, 26px);
}

body.content-creative-page .creative-audience-panel .section-heading-main h2 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 3.7vw, 4.1rem);
}

body.content-creative-page .creative-audience-panel .creative-heading-copy strong {
  max-width: 24ch;
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  line-height: 1.06;
}

body.content-creative-page .creative-audience-grid {
  gap: clamp(14px, 1.5vw, 20px);
}

body.content-creative-page .creative-audience-grid article {
  min-height: 0;
  gap: clamp(12px, 1.5vw, 18px);
  padding: clamp(22px, 2.25vw, 30px);
}

body.content-creative-page .creative-audience-grid h3 {
  max-width: 100%;
  font-size: clamp(1.5rem, 2.05vw, 2rem);
  line-height: 1.02;
}

body.content-creative-page .creative-audience-grid p {
  max-width: 34ch;
  line-height: 1.48;
}

body.content-creative-page .creative-booking-lead {
  padding-top: clamp(28px, 3.5vw, 48px);
  padding-bottom: clamp(28px, 3.5vw, 48px);
}

body.content-creative-page .creative-booking-lead h3 {
  max-width: 29ch;
  font-size: clamp(2rem, 3.25vw, 3.6rem);
  line-height: 0.98;
}

body.content-creative-page .creative-booking-lead p {
  max-width: 78ch;
  line-height: 1.55;
}

body.content-creative-page .creative-review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 940px;
  margin-inline: auto;
  gap: 10px;
}

body.content-creative-page .creative-review-grid span {
  min-height: 38px;
  padding: 8px 12px;
  color: #fff7ef;
}

/* Content Creative offer final compacting: remove dead vertical space */
body.content-creative-page .creative-offer-panel {
  padding-top: clamp(18px, 2.1vw, 28px);
  padding-bottom: clamp(18px, 2.1vw, 28px);
}

body.content-creative-page .creative-offer-panel .section-heading {
  gap: clamp(12px, 1.7vw, 24px);
  margin-bottom: clamp(10px, 1vw, 14px);
}

body.content-creative-page .creative-offer-panel .section-heading-main h2 {
  max-width: 20ch;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 0.98;
}

body.content-creative-page .creative-offer-panel .creative-heading-copy strong {
  font-size: clamp(1.2rem, 1.75vw, 1.7rem);
  line-height: 1.02;
}

body.content-creative-page .creative-offer-panel .creative-heading-copy p {
  max-width: 58ch;
  line-height: 1.48;
}

body.content-creative-page .creative-offer-grid {
  gap: clamp(10px, 1.15vw, 16px);
}

body.content-creative-page .creative-offer-card {
  padding: clamp(15px, 1.45vw, 20px);
  border-radius: clamp(16px, 1.6vw, 24px);
}

body.content-creative-page .creative-offer-card span {
  font-size: 0.68rem;
}

body.content-creative-page .creative-offer-card h3 {
  margin: clamp(10px, 1vw, 14px) 0 clamp(8px, 0.85vw, 12px);
  font-size: clamp(1.3rem, 1.65vw, 1.65rem);
  line-height: 1.02;
}

body.content-creative-page .creative-offer-card p,
body.content-creative-page .creative-offer-card li {
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  line-height: 1.34;
}

body.content-creative-page .creative-offer-card ul {
  gap: 3px;
  margin-top: clamp(9px, 0.9vw, 12px);
}

/* Content Creative audience final compacting: keep card titles and copy together */
body.content-creative-page .creative-audience-panel {
  padding-top: clamp(20px, 2.3vw, 32px);
  padding-bottom: clamp(20px, 2.3vw, 32px);
}

body.content-creative-page .creative-audience-panel .section-heading {
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

body.content-creative-page .creative-audience-grid {
  gap: clamp(10px, 1.2vw, 16px);
}

body.content-creative-page .creative-audience-grid article {
  gap: clamp(8px, 0.9vw, 12px);
  padding: clamp(16px, 1.65vw, 22px);
  border-radius: clamp(16px, 1.6vw, 24px);
}

body.content-creative-page .creative-audience-grid h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.02;
}

body.content-creative-page .creative-audience-grid p {
  margin: 0;
  max-width: 38ch;
  line-height: 1.36;
}

/* Content Creative booking lead: use the available width on desktop */
body.content-creative-page .creative-booking-lead h3 {
  max-width: 42ch;
}

body.content-creative-page .creative-booking-lead p {
  max-width: 112ch;
}

/* Content Creative problem panel final compacting: tighten the comparison cards */
body.content-creative-page .creative-problem-panel {
  padding-top: clamp(20px, 2.2vw, 30px);
  padding-bottom: clamp(20px, 2.2vw, 30px);
}

body.content-creative-page .creative-problem-panel .section-heading {
  gap: clamp(14px, 2vw, 26px);
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

body.content-creative-page .creative-problem-panel .section-heading-main h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
  line-height: 0.98;
}

body.content-creative-page .creative-problem-panel .creative-heading-copy strong {
  font-size: clamp(1.25rem, 1.85vw, 1.8rem);
  line-height: 1.02;
}

body.content-creative-page .creative-problem-panel .creative-heading-copy p {
  max-width: 64ch;
  line-height: 1.48;
}

body.content-creative-page .creative-split-board {
  gap: clamp(12px, 1.5vw, 20px);
}

body.content-creative-page .creative-split-card {
  gap: clamp(7px, 0.75vw, 10px);
  padding: clamp(15px, 1.55vw, 20px);
  border-radius: clamp(16px, 1.7vw, 24px);
  min-height: 0;
}

body.content-creative-page .creative-split-card .card-kicker {
  font-size: 0.68rem;
}

body.content-creative-page .creative-split-card h3 {
  max-width: 100%;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 0.98;
}

body.content-creative-page .creative-split-card ul {
  gap: 4px;
}

body.content-creative-page .creative-split-card li {
  line-height: 1.26;
}

/* Content Creative range final compacting: cards should fit the work, not waste space */
body.content-creative-page .creative-range-panel {
  padding-top: clamp(20px, 2.2vw, 30px);
  padding-bottom: clamp(20px, 2.2vw, 30px);
}

body.content-creative-page .creative-range-panel .section-heading {
  gap: clamp(14px, 2vw, 26px);
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

body.content-creative-page .creative-range-panel .section-heading-main h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 0.98;
}

body.content-creative-page .creative-range-panel .creative-heading-copy strong {
  font-size: clamp(1.25rem, 1.85vw, 1.8rem);
  line-height: 1.02;
}

body.content-creative-page .creative-range-panel .creative-heading-copy p {
  max-width: 70ch;
  line-height: 1.48;
}

body.content-creative-page .creative-range-grid {
  gap: clamp(10px, 1.15vw, 16px);
}

body.content-creative-page .creative-service-card {
  display: block;
  gap: clamp(7px, 0.8vw, 11px);
  min-height: 0;
  padding: clamp(15px, 1.55vw, 20px);
  border-radius: clamp(16px, 1.7vw, 24px);
}

body.content-creative-page .creative-service-card span {
  font-size: 0.68rem;
}

body.content-creative-page .creative-service-card h3 {
  max-width: 100%;
  margin: clamp(10px, 1vw, 13px) 0 clamp(8px, 0.8vw, 10px);
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  line-height: 1.02;
}

body.content-creative-page .creative-service-card p {
  margin: 0;
  max-width: 100%;
  line-height: 1.3;
}

/* Content Creative process final compacting: avoid skinny one-word line cards */
body.content-creative-page .creative-process-panel {
  padding-top: clamp(20px, 2.2vw, 30px);
  padding-bottom: clamp(20px, 2.2vw, 30px);
}

body.content-creative-page .creative-process-panel .section-heading {
  gap: clamp(14px, 2vw, 26px);
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

body.content-creative-page .creative-process-panel .section-heading-main h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 0.98;
}

body.content-creative-page .creative-process-panel .creative-heading-copy strong {
  font-size: clamp(1.25rem, 1.85vw, 1.8rem);
  line-height: 1.02;
}

body.content-creative-page .creative-process-panel .creative-heading-copy p {
  max-width: 74ch;
  line-height: 1.48;
}

body.content-creative-page .creative-process-ribbon {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 16px);
}

body.content-creative-page .creative-process-ribbon article {
  display: block;
  min-height: 0;
  padding: clamp(15px, 1.55vw, 20px);
  border-radius: clamp(16px, 1.7vw, 24px);
}

body.content-creative-page .creative-process-ribbon span {
  font-size: 0.68rem;
}

body.content-creative-page .creative-process-ribbon h3 {
  max-width: 100%;
  margin: clamp(10px, 1vw, 13px) 0 clamp(8px, 0.8vw, 10px);
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  line-height: 1.02;
}

body.content-creative-page .creative-process-ribbon p {
  margin: 0;
  max-width: 100%;
  line-height: 1.3;
}

body.content-creative-page .creative-process-ribbon article:nth-child(1) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 219, 164, 0.34), transparent 34%),
    linear-gradient(145deg, #ff7a16, #9f3200 58%, #120705);
}

body.content-creative-page .creative-process-ribbon article:nth-child(2) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 205, 120, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(112, 44, 4, 0.98), rgba(34, 13, 5, 0.98));
}

body.content-creative-page .creative-process-ribbon article:nth-child(3) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 247, 239, 0.34), transparent 34%),
    linear-gradient(145deg, #ff8a1f, #ba3d00 58%, #150807);
}

body.content-creative-page .creative-process-ribbon article:nth-child(4) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 184, 92, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(33, 37, 46, 0.98), rgba(78, 38, 10, 0.98));
}

body.content-creative-page .creative-process-ribbon article:nth-child(5) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 148, 86, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(91, 22, 12, 0.98), rgba(10, 9, 12, 0.98));
}

body.content-creative-page .creative-process-ribbon article:nth-child(6) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 214, 152, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(126, 57, 12, 0.98), rgba(21, 14, 10, 0.98));
}

/* Content Creative hero final balancing: keep proof cards right and numbers prominent */
body.content-creative-page .creative-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: clamp(18px, 3vw, 44px);
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

body.content-creative-page .creative-hero-copy {
  gap: clamp(10px, 1.3vw, 14px);
}

body.content-creative-page .creative-hero h1 {
  max-width: 16.5ch;
  font-size: clamp(3rem, 5.25vw, 5.15rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

body.content-creative-page .creative-hero .page-copy {
  margin: 0;
  max-width: 76ch;
  line-height: 1.48;
}

body.content-creative-page .creative-hero-board {
  align-self: start;
  gap: clamp(10px, 1.2vw, 16px);
}

body.content-creative-page .creative-board-card {
  padding: clamp(18px, 1.8vw, 24px);
  border-radius: clamp(16px, 1.7vw, 24px);
}

body.content-creative-page .creative-board-card-main strong {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.88;
}

body.content-creative-page .creative-board-card-main p {
  max-width: 54ch;
  line-height: 1.36;
}

body.content-creative-page .creative-board-card:not(.creative-board-card-main) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(10px, 1.5vw, 18px);
  row-gap: clamp(6px, 0.75vw, 10px);
  align-items: start;
}

body.content-creative-page .creative-board-card:not(.creative-board-card-main) > span {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

body.content-creative-page .creative-board-card:not(.creative-board-card-main) strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: start;
  text-align: right;
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
  line-height: 0.78;
}

body.content-creative-page .creative-board-card:not(.creative-board-card-main) p {
  grid-column: 1;
  grid-row: 2;
  max-width: 100%;
  margin: 0;
  line-height: 1.34;
}

@media (min-width: 981px) and (max-width: 1180px) {
  body.content-creative-page .creative-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
    gap: clamp(18px, 2.6vw, 32px);
  }

  body.content-creative-page .creative-hero-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.content-creative-page .creative-hero {
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vw, 30px);
  }

  body.content-creative-page .creative-hero-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: stretch;
  }

  body.content-creative-page .creative-board-card {
    padding: clamp(16px, 3.4vw, 24px);
  }

  body.content-creative-page .creative-board-card:not(.creative-board-card-main) strong {
    font-size: clamp(3rem, 9vw, 4.8rem);
  }
}

@media (max-width: 640px) {
  body.content-creative-page .creative-hero-board {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-board-card:not(.creative-board-card-main) {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.content-creative-page .creative-board-card:not(.creative-board-card-main) strong {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }
}

@media (min-width: 1181px) {
  body.content-creative-page .creative-booking-lead .page-button-row {
    margin-top: clamp(14px, 1.8vw, 22px);
  }
}

@media (max-width: 980px) {
  body.content-creative-page .creative-audience-panel .section-heading {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-audience-panel .section-heading-main h2,
  body.content-creative-page .creative-audience-panel .creative-heading-copy strong,
  body.content-creative-page .creative-audience-grid p,
  body.content-creative-page .creative-booking-lead h3,
  body.content-creative-page .creative-booking-lead p {
    max-width: 100%;
  }

  body.content-creative-page .creative-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Content Creative density doctrine: no dead space, no needless orphan lines */
body.content-creative-page .creative-problem-panel,
body.content-creative-page .creative-range-panel,
body.content-creative-page .creative-showcase-panel,
body.content-creative-page .creative-process-panel,
body.content-creative-page .creative-offer-panel,
body.content-creative-page .creative-audience-panel,
body.content-creative-page .creative-booking-lead {
  padding-top: clamp(18px, 2.3vw, 34px);
  padding-bottom: clamp(18px, 2.3vw, 34px);
}

body.content-creative-page .section-heading {
  align-items: start;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

body.content-creative-page .section-heading-main h2 {
  text-wrap: balance;
}

body.content-creative-page .creative-heading-copy {
  align-content: start;
  gap: clamp(7px, 0.8vw, 10px);
  justify-self: stretch;
}

body.content-creative-page .creative-heading-copy strong {
  display: block;
  max-width: 100%;
  text-wrap: balance;
}

body.content-creative-page .creative-heading-copy p {
  max-width: 78ch;
  margin: 0;
  line-height: 1.42;
}

body.content-creative-page .creative-split-board,
body.content-creative-page .creative-range-grid,
body.content-creative-page .creative-process-ribbon,
body.content-creative-page .creative-offer-grid,
body.content-creative-page .creative-audience-grid {
  gap: clamp(10px, 1.2vw, 16px);
}

body.content-creative-page .creative-split-card,
body.content-creative-page .creative-service-card,
body.content-creative-page .creative-process-ribbon article,
body.content-creative-page .creative-offer-card,
body.content-creative-page .creative-audience-grid article {
  gap: clamp(6px, 0.75vw, 10px);
  padding: clamp(14px, 1.55vw, 22px);
  border-radius: clamp(16px, 1.6vw, 24px);
  min-height: 0;
}

body.content-creative-page .creative-split-card h3,
body.content-creative-page .creative-service-card h3,
body.content-creative-page .creative-process-ribbon h3,
body.content-creative-page .creative-offer-card h3,
body.content-creative-page .creative-audience-grid h3 {
  max-width: 100%;
  margin: clamp(7px, 0.85vw, 11px) 0 clamp(6px, 0.7vw, 9px);
  line-height: 1.02;
  text-wrap: balance;
}

body.content-creative-page .creative-split-card p,
body.content-creative-page .creative-split-card li,
body.content-creative-page .creative-service-card p,
body.content-creative-page .creative-process-ribbon p,
body.content-creative-page .creative-offer-card p,
body.content-creative-page .creative-offer-card li,
body.content-creative-page .creative-audience-grid p {
  max-width: 100%;
  margin-top: 0;
  line-height: 1.28;
}

body.content-creative-page .creative-split-card ul,
body.content-creative-page .creative-offer-card ul {
  gap: 3px;
  margin-top: clamp(7px, 0.8vw, 10px);
}

body.content-creative-page .creative-range-grid,
body.content-creative-page .creative-audience-grid {
  align-items: stretch;
}

body.content-creative-page .creative-showcase-panel .section-heading-main h2 {
  max-width: 17ch;
}

body.content-creative-page .creative-marquee {
  overflow: visible;
}

body.content-creative-page .creative-marquee-track {
  width: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  animation: none;
}

body.content-creative-page .creative-marquee-track .creative-shot:nth-child(n + 5) {
  display: none;
}

body.content-creative-page .creative-shot {
  width: auto;
  min-height: 0;
  padding: clamp(14px, 1.55vw, 22px);
}

body.content-creative-page .creative-shot strong {
  font-size: clamp(1.35rem, 1.85vw, 1.9rem);
  line-height: 1.02;
}

body.content-creative-page .creative-shot p {
  line-height: 1.3;
}

body.content-creative-page .creative-booking-lead {
  text-align: left;
}

body.content-creative-page .creative-booking-lead h3,
body.content-creative-page .creative-booking-lead p {
  margin-inline: 0;
}

body.content-creative-page .creative-booking-lead h3 {
  max-width: 38ch;
  font-size: clamp(2rem, 3.05vw, 3.25rem);
  text-wrap: balance;
}

body.content-creative-page .creative-booking-lead p {
  max-width: 100ch;
  line-height: 1.42;
}

body.content-creative-page .creative-review-grid {
  max-width: 100%;
}

@media (min-width: 760px) {
  body.content-creative-page .creative-problem-panel .section-heading,
  body.content-creative-page .creative-range-panel .section-heading,
  body.content-creative-page .creative-showcase-panel .section-heading,
  body.content-creative-page .creative-process-panel .section-heading,
  body.content-creative-page .creative-offer-panel .section-heading,
  body.content-creative-page .creative-audience-panel .section-heading {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(20px, 3vw, 48px);
  }

  body.content-creative-page .creative-problem-panel .section-heading-copy,
  body.content-creative-page .creative-range-panel .section-heading-copy,
  body.content-creative-page .creative-showcase-panel .section-heading-copy,
  body.content-creative-page .creative-process-panel .section-heading-copy,
  body.content-creative-page .creative-offer-panel .section-heading-copy,
  body.content-creative-page .creative-audience-panel .section-heading-copy {
    padding-top: clamp(2px, 0.5vw, 8px);
  }

  body.content-creative-page .creative-split-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon,
  body.content-creative-page .creative-offer-grid,
  body.content-creative-page .creative-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.content-creative-page .creative-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon,
  body.content-creative-page .creative-offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1181px) {
  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.content-creative-page .creative-audience-grid,
  body.content-creative-page .creative-marquee-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  body.content-creative-page .section-heading {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-range-grid,
  body.content-creative-page .creative-process-ribbon,
  body.content-creative-page .creative-offer-grid,
  body.content-creative-page .creative-audience-grid,
  body.content-creative-page .creative-marquee-track {
    grid-template-columns: 1fr;
  }

  body.content-creative-page .creative-booking-lead {
    text-align: center;
  }

  body.content-creative-page .creative-booking-lead h3,
  body.content-creative-page .creative-booking-lead p {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  body.content-creative-page .creative-service-card {
    min-height: 0;
  }

  body.content-creative-page .creative-booking-lead {
    text-align: left;
  }

  body.content-creative-page .creative-booking-lead h3,
  body.content-creative-page .creative-booking-lead p {
    margin-inline: 0;
  }

  body.content-creative-page .creative-booking-lead .card-kicker {
    display: block;
    text-align: left;
  }

  body.content-creative-page .creative-review-grid {
    grid-template-columns: 1fr;
  }
}
