:root {
  /* Core design system */
  --page-max: 1760px;
  --content-max: 1440px;

  --ink: #082d32;
  --ink-strong: #050505;
  --muted: #65767a;

  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --line: rgba(8, 45, 50, 0.10);

  --blue-1: #4ab1ff;
  --blue-2: #1462cf;
  --orange-1: #ff6b38;
  --orange-2: #ff4d2e;
  --glass: rgba(9, 34, 73, 0.70);

  /* IMPORTANT:
     50% on a rectangular element creates an oval.
     999px creates the rounded-end "pill" shape from the reference. */
  --radius-pill: 999px;
  --radius-card: 26px;
  --radius-panel: 18px;

  --shadow-soft: 0 18px 45px rgba(16, 62, 116, .12);
  --shadow-button: 0 10px 30px rgba(16, 62, 116, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

img { max-width: 100%; }

.section {
  position: relative;
  overflow: hidden;
}

.section-shell {
  width: min(calc(100% - 56px), var(--content-max));
  margin-inline: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
}

/* =========================================================
   GLOBAL BUTTON SYSTEM
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    var(--shadow-button),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05) brightness(1.02);
  box-shadow:
    0 14px 34px rgba(16, 62, 116, .20),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.btn--blue {
  background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%);
}

.btn--orange {
  background: linear-gradient(135deg, var(--orange-1) 0%, var(--orange-2) 100%);
}

.btn--light {
  color: var(--ink);
  border-color: rgba(8,45,50,.08);
  background: linear-gradient(135deg, #ffffff 0%, #f1f7fb 100%);
  box-shadow:
    0 10px 26px rgba(16, 62, 116, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.button-arrow {
  font-size: 19px;
  line-height: 1;
}

/* =========================================================
   01 — HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink-strong);
  background:
    #dceafa
    url("assets/perf/hero-background-optimized.webp")
    center center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03) 0%,
      rgba(255,255,255,0) 52%,
      rgba(0,30,74,.10) 100%
    ),
    linear-gradient(
      90deg,
      rgba(3,31,73,.04) 0%,
      rgba(255,255,255,0) 42%,
      rgba(255,255,255,.04) 100%
    );
}

.hero__shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-max));
  min-height: 100svh;
  margin: 0 auto;
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  width: min(calc(100% - 56px), var(--content-max));
  height: 138px;
  margin: 0 auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand__mark {
  width: 72px;
  height: 82px;
  object-fit: contain;
  display: block;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.chevron {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(2px);
}

.calculator-btn {
  justify-self: end;
  min-width: 288px;
  min-height: 60px;
  padding-inline: 28px;
  text-transform: uppercase;
  font-size: 15px;
}

.calculator-btn svg {
  width: 18px;
  height: 18px;
}

.nav-toggle { display: none; }

.hero__main {
  width: min(calc(100% - 56px), 1230px);
  margin: 67px auto 0;
  text-align: center;
}

.review-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  height: 63px;
  margin: 0 auto 32px;
}

.review-strip__google {
  width: 134px;
  height: auto;
  object-fit: contain;
}

.review-strip__clutch {
  width: 174px;
  height: auto;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 3.64vw, 66px);
  line-height: 1.15;
  letter-spacing: -0.036em;
  font-weight: 400;
}

.hero__subtitle {
  margin: 31px auto 0;
  font-size: 21px;
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.hero__lower {
  position: absolute;
  left: max(56px, calc((100% - var(--content-max)) / 2));
  right: max(56px, calc((100% - var(--content-max)) / 2));
  bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 42px;
}

.hero__offer {
  width: min(620px, 50%);
}

.hero__offer-copy {
  padding: 18px 18px 20px;
  color: #fff;
  background: var(--glass);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-panel);
  box-shadow: 0 18px 42px rgba(9,33,69,.12);
  backdrop-filter: blur(5px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.hero__actions .btn {
  min-width: 190px;
}

.project-reel {
  position: relative;
  width: clamp(320px, 27vw, 405px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #0d3768, #0b1730);
  box-shadow: 0 24px 55px rgba(7, 32, 68, .24);
  isolation: isolate;
}

.project-reel__fallback,
.project-reel__video,
.project-reel__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-reel__fallback {
  z-index: 0;
}

.project-reel__video {
  z-index: 1;
  border: 0;
  pointer-events: none;
}

.project-reel__shade {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3,21,48,.04),
      rgba(3,21,48,.06) 48%,
      rgba(3,21,48,.42) 100%
    );
}

.project-reel__cta {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  min-height: 48px;
  padding-inline: 21px;
  font-size: 15px;
}

/* Shared fallback used when external video cannot load */
.video-fallback {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 23%, rgba(74,177,255,.56), transparent 30%),
    linear-gradient(140deg, #155a9e 0%, #0b2447 52%, #08192f 100%);
}

.video-fallback__eyebrow {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  opacity: .72;
}

.video-fallback__title {
  font-size: 20px;
  font-weight: 500;
}

.video-fallback__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #155fae;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* =========================================================
   02 — LOGO MARQUEE
   ========================================================= */

.section--logos {
  padding: 56px 0 62px;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.logo-marquee .section-kicker {
  margin-bottom: 34px;
}

.logo-marquee__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-scroll 32s linear infinite;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 76px;
  padding-right: 76px;
}

.logo-item {
  width: 170px;
  height: 74px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-item--wide {
  width: 210px;
}

.logo-item img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;

  /* Dark / neutral variation requested */
  filter: grayscale(1) brightness(.38) contrast(1.12);
  opacity: .72;
  transition: opacity .2s ease, filter .2s ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(1) brightness(.28) contrast(1.18);
}

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

/* =========================================================
   03 — CASE STUDIES
   ========================================================= */

.case-studies {
  padding: 105px 0 120px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.case-studies__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.case-studies h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 400;
}

.case-studies__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-studies__all {
  min-height: 52px;
  padding-inline: 26px;
}

.carousel-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f4f7f8;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  background: #edf3f6;
}

.case-carousel-wrap {
  width: min(100%, calc((100vw - var(--content-max)) / 2 + var(--content-max)));
  margin: 58px 0 0 auto;
  overflow: hidden;
}

.case-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-right: max(28px, calc((100vw - var(--content-max)) / 2));
}

.case-carousel::-webkit-scrollbar {
  display: none;
}

.case-card {
  position: relative;
  flex: 0 0 min(66vw, 990px);
  height: 560px;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  background: #0a2139;
  box-shadow: 0 24px 60px rgba(8,45,50,.10);
  isolation: isolate;
}

.case-card__fallback,
.case-card__video,
.case-card__overlay,
.case-card__content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-card__fallback {
  z-index: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(74,177,255,.34), transparent 30%),
    linear-gradient(140deg, #314b5e 0%, #0a2139 100%);
}

.case-card__video {
  z-index: 1;
  border: 0;
  pointer-events: none;
  transform: scale(1.08);
}

.case-card__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,20,35,.76) 0%, rgba(5,20,35,.37) 48%, rgba(5,20,35,.13) 100%),
    linear-gradient(180deg, rgba(5,20,35,.10) 0%, rgba(5,20,35,.06) 52%, rgba(5,20,35,.58) 100%);
}

.case-card__content {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 50px 42px;
  color: #fff;
}

.case-card h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 400;
}

.case-card p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.55;
}

.case-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius-pill);
  background: rgba(11,31,52,.30);
  color: rgba(255,255,255,.94);
  font-size: 15px;
  backdrop-filter: blur(8px);
}

.case-card__cta {
  min-height: 52px;
  padding-inline: 24px;
  flex: 0 0 auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: 100px 1fr auto;
    width: calc(100% - 44px);
  }

  .site-nav {
    gap: 22px;
  }

  .site-nav a {
    font-size: 15px;
    gap: 8px;
  }

  .calculator-btn {
    min-width: 245px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .hero__main {
    margin-top: 48px;
  }

  .hero__lower {
    left: 40px;
    right: 40px;
  }

  .hero__offer {
    width: 56%;
  }

  .project-reel {
    width: 345px;
  }

  .case-card {
    flex-basis: 78vw;
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: 1080px;
  }

  .hero__shell {
    min-height: 1080px;
    padding-bottom: 38px;
  }

  .site-header {
    height: 100px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 40px);
  }

  .brand__mark {
    width: 56px;
    height: 64px;
  }

  .calculator-btn {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: rgba(255,255,255,.66);
    cursor: pointer;
    backdrop-filter: blur(10px);
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 0;
    display: none;
    width: min(360px, calc(100vw - 40px));
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.94);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(22,49,82,.16);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    padding: 14px 10px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,.07);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero__main {
    width: calc(100% - 40px);
    margin-top: 54px;
  }

  h1 {
    font-size: clamp(43px, 7vw, 58px);
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .desktop-break {
    display: none;
  }

  .hero__lower {
    left: 20px;
    right: 20px;
    bottom: 34px;
    align-items: stretch;
    gap: 22px;
  }

  .hero__offer {
    width: 56%;
  }

  .project-reel {
    width: 44%;
    align-self: flex-end;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    min-width: 165px;
    flex: 1;
  }

  .case-studies {
    padding-top: 82px;
  }

  .case-studies__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-studies__controls {
    align-self: stretch;
  }

  .case-carousel-wrap {
    margin-top: 42px;
  }

  .case-card {
    flex-basis: 84vw;
    height: 520px;
  }
}

/* =========================================================
   MOBILE — all hero text/elements deliberately left aligned
   ========================================================= */

@media (max-width: 720px) {
  .section-shell {
    width: calc(100% - 30px);
  }

  .btn {
    min-height: 54px;
    padding-inline: 24px;
  }

  .hero {
    min-height: 1160px;
    background-position: 48% center;
  }

  .hero__shell {
    min-height: 1160px;
  }

  .site-header {
    width: calc(100% - 30px);
    height: 84px;
  }

  .brand__mark {
    width: 49px;
    height: 56px;
  }

  .hero__main {
    width: calc(100% - 30px);
    margin-top: 38px;
    text-align: left;
  }

  .review-strip {
    justify-content: flex-start;
    gap: 17px;
    height: 46px;
    margin: 0 0 24px;
  }

  .review-strip__google {
    width: 105px;
  }

  .review-strip__clutch {
    width: 136px;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(35px, 10vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  h1 br {
    display: none;
  }

  .hero__subtitle {
    max-width: 540px;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__lower {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero__offer,
  .project-reel {
    width: 100%;
  }

  .hero__offer-copy {
    padding: 16px;
    font-size: 15px;
    line-height: 1.58;
    border-radius: 16px;
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 12px;
  }

  .hero__actions .btn {
    flex: 0 1 auto;
    min-width: 0;
  }

  .project-reel {
    max-width: none;
    border-radius: 22px;
  }

  .section--logos {
    padding: 44px 0 50px;
  }

  .logo-marquee .section-kicker {
    margin-bottom: 26px;
  }

  .logo-marquee__group {
    gap: 42px;
    padding-right: 42px;
  }

  .logo-item {
    width: 135px;
    height: 58px;
  }

  .logo-item--wide {
    width: 165px;
  }

  .logo-item img {
    max-height: 56px;
  }

  .case-studies {
    padding: 72px 0 86px;
  }

  .case-studies h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .case-studies__controls {
    flex-wrap: wrap;
  }

  .case-studies__all {
    margin-right: auto;
  }

  .case-carousel-wrap {
    width: 100%;
    margin-top: 34px;
    padding-left: 15px;
  }

  .case-carousel {
    gap: 14px;
    padding-right: 15px;
  }

  .case-card {
    flex-basis: 88vw;
    height: 520px;
    border-radius: 22px;
  }

  .case-card__content {
    padding: 30px 25px 24px;
  }

  .case-card h3 {
    font-size: 42px;
  }

  .case-card p {
    max-width: 90%;
    font-size: 15px;
  }

  .case-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-card__cta {
    align-self: flex-start;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 1140px;
  }

  .hero__shell {
    min-height: 1140px;
  }

  .hero__main {
    margin-top: 30px;
  }

  .review-strip {
    transform-origin: left center;
    transform: scale(.92);
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: auto;
    min-width: 170px;
  }

  .project-reel__cta {
    min-height: 44px;
    padding-inline: 18px;
  }

  .case-studies__controls {
    gap: 8px;
  }

  .carousel-arrow {
    width: 48px;
    height: 48px;
  }

  .case-card {
    height: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__video {
    display: none;
  }

  .logo-marquee__track {
    animation-play-state: paused;
  }

  .btn,
  .carousel-arrow {
    transition: none;
  }
}


/* =========================================================
   04 — SERVICES
   ========================================================= */

.services-showcase {
  padding: 108px 0 118px;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-column {
  min-width: 0;
}

.service-column__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.service-column h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 3.2vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 400;
}

.service-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(255, 79, 46, .18);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-arrow:hover {
  transform: translateX(3px);
  box-shadow: 0 16px 34px rgba(255, 79, 46, .24);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 7px;
  min-height: 96px;
  margin-top: 31px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid rgba(8,45,50,.13);
  border-radius: var(--radius-pill);
  color: #7c777b;
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.service-visual {
  position: relative;
  display: block;
  height: 475px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
  box-shadow: 0 18px 48px rgba(8,45,50,.08);
}

.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.service-column:nth-child(1) .service-visual img {
  object-position: center 38%;
}

.service-column:nth-child(2) .service-visual img,
.service-column:nth-child(3) .service-visual img {
  object-position: center;
}

.service-visual:hover img {
  transform: scale(1.035);
}

/* =========================================================
   05 — EXCEPTIONAL EXPERIENCES
   ========================================================= */

.experience-section {
  color: #fff;
  background:
    radial-gradient(circle at 72% 85%, rgba(19, 53, 63, .72), transparent 42%),
    linear-gradient(180deg, #17131b 0%, #0e1d26 100%);
}

.experience-shell {
  width: min(calc(100% - 56px), var(--content-max));
  margin-inline: auto;
  padding: 112px 0 116px;
}

.experience-section h2 {
  margin: 0 auto 72px;
  max-width: 970px;
  text-align: center;
  color: #fff;
  font-size: clamp(52px, 5.2vw, 82px);
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 400;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  min-width: 0;
}

.experience-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 18px;
  background: #173449;
}

.experience-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,15,25,.03), rgba(5,15,25,.17)),
    linear-gradient(90deg, rgba(5,15,25,.06), rgba(5,15,25,0));
  pointer-events: none;
}

.experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.experience-card:hover .experience-card__media img {
  transform: scale(1.025);
}

.experience-badge {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 205px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  color: #fff;
  background: rgba(230,232,234,.34);
  font-size: 15px;
  font-weight: 500;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}

.experience-badge__icon {
  font-size: 15px;
}

.experience-badge__check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  font-size: 15px;
}

.experience-badge--metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  min-width: 245px;
  padding: 14px 20px;
}

.experience-badge--metric > span:first-child {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 15px;
  opacity: .92;
}

.experience-badge--metric strong {
  font-size: 33px;
  line-height: 1;
  font-weight: 400;
}

.experience-badge__trend {
  align-self: end;
  font-size: 26px;
  line-height: 1;
}

.experience-card h3 {
  margin: 21px 0 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 400;
}

.experience-card p {
  margin: 11px 0 0;
  max-width: 95%;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

/* =========================================================
   06 — AUDIENCE / TEAMS
   ========================================================= */

.audience-section {
  color: #fff;
  background:
    radial-gradient(circle at 22% 76%, rgba(12, 102, 108, .36), transparent 38%),
    linear-gradient(135deg, #0d1b25 0%, #063b3e 100%);
}

.audience-shell {
  width: min(calc(100% - 56px), var(--content-max));
  margin-inline: auto;
  padding: 84px 0 98px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 68px;
  align-items: stretch;
}

.quote-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 76px 56px 48px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(246, 195, 93, .95) 0%, rgba(205, 113, 130, .94) 54%, rgba(96, 202, 192, .92) 100%);
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 20px;
  width: 5px;
  background: linear-gradient(180deg, rgba(255,244,155,.9), rgba(255,255,255,.12));
  opacity: .75;
}

.quote-card blockquote {
  margin: 0;
  max-width: 510px;
  font-size: clamp(36px, 3.25vw, 55px);
  line-height: 1.17;
  letter-spacing: -.035em;
  font-weight: 400;
}

.quote-card__person {
  margin: 35px 0 0;
  color: rgba(255,255,255,.96);
  font-size: 15px;
}

.quote-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quote-card__client {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
}

.quote-card__cta {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 15px;
}

.audience-content {
  padding-top: 5px;
}

.audience-content h2 {
  margin: 0 0 54px;
  color: #fff;
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 400;
}

.audience-panels {
  display: grid;
  gap: 15px;
}

.audience-panel {
  width: 100%;
  min-height: 155px;
  padding: 28px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  color: #fff;
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease;
}

.audience-panel:hover {
  transform: translateX(2px);
  border-color: rgba(255,255,255,.38);
}

.audience-panel.is-active {
  color: var(--ink);
  background: #f4f4f2;
  border-color: #f4f4f2;
}

.audience-panel__title {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 400;
}

.audience-panel__copy {
  max-width: 720px;
  margin-top: 17px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}

.audience-panel.is-active .audience-panel__copy {
  color: rgba(8,45,50,.88);
}

/* =========================================================
   RESPONSIVE — SECTIONS 04–06
   ========================================================= */

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .service-column {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: auto auto;
    column-gap: 36px;
  }

  .service-column__head,
  .service-tags {
    grid-column: 1;
  }

  .service-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 390px;
    margin-top: 0;
  }

  .service-tags {
    min-height: 0;
    align-self: start;
  }

  .experience-grid {
    gap: 15px;
  }

  .experience-card__media {
    height: 250px;
  }

  .audience-shell {
    gap: 38px;
    grid-template-columns: .95fr 1.05fr;
  }

  .quote-card {
    min-height: 610px;
    padding-inline: 42px;
  }
}

@media (max-width: 820px) {
  .services-showcase {
    padding: 82px 0 92px;
  }

  .service-column {
    display: block;
  }

  .service-tags {
    margin-top: 25px;
  }

  .service-visual {
    height: 470px;
    margin-top: 26px;
  }

  .experience-shell {
    width: calc(100% - 40px);
    padding: 86px 0 88px;
  }

  .experience-section h2 {
    margin-bottom: 52px;
    font-size: clamp(43px, 9vw, 64px);
    text-align: left;
  }

  .experience-section h2 br {
    display: none;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-card__media {
    height: 390px;
  }

  .experience-card p {
    max-width: 620px;
  }

  .audience-shell {
    width: calc(100% - 40px);
    padding: 72px 0 80px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .quote-card {
    min-height: 560px;
  }

  .audience-content h2 {
    margin-bottom: 38px;
    font-size: clamp(43px, 9vw, 62px);
  }

  .audience-content h2 br {
    display: none;
  }
}

@media (max-width: 560px) {
  .services-showcase {
    padding-top: 72px;
  }

  .service-column h2 {
    font-size: 42px;
  }

  .service-arrow {
    width: 43px;
    height: 43px;
  }

  .service-tags {
    min-height: 0;
  }

  .service-tags span {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 15px;
  }

  .service-visual {
    height: 390px;
    border-radius: 20px;
  }

  .experience-shell,
  .audience-shell {
    width: calc(100% - 30px);
  }

  .experience-section h2 {
    font-size: 41px;
  }

  .experience-card__media {
    height: 290px;
    border-radius: 18px;
  }

  .experience-card h3 {
    font-size: 27px;
  }

  .quote-card {
    min-height: 520px;
    padding: 54px 26px 30px;
    border-radius: 20px;
  }

  .quote-card blockquote {
    font-size: 37px;
  }

  .quote-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-content h2 {
    font-size: 41px;
  }

  .audience-panel {
    min-height: 150px;
    padding: 24px 22px;
  }

  .audience-panel__title {
    font-size: 25px;
  }

  .audience-panel__copy {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-visual img,
  .experience-card__media img,
  .service-arrow,
  .audience-panel {
    transition: none;
  }
}


/* =========================================================
   07 — INSIGHTS / BLOG / RESOURCES
   ========================================================= */

.insights-section {
  padding: 105px 0 118px;
  background: #fff;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.insights-header h2 {
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(50px, 4.9vw, 78px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 400;
}

.insights-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insights-view-all {
  min-height: 52px;
  padding-inline: 29px;
}

.insights-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 42px;
  padding-bottom: 1px;
}

.insights-tab {
  min-height: 43px;
  padding: 0 20px;
  border: 1px solid rgba(8,45,50,.12);
  border-radius: var(--radius-pill);
  color: #6f7879;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.insights-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(8,45,50,.24);
}

.insights-tab.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.insights-panels {
  width: min(calc(100% - 56px), var(--content-max));
  margin: 46px auto 0;
}

.insights-panel[hidden] {
  display: none;
}

.insights-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.insight-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.insight-card__art {
  position: relative;
  height: 205px;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}

.insight-card__art::before,
.insight-card__art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insight-card__label {
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 6px;
  color: #645d60;
  background: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(0,0,0,.08);
}

.insight-card h3 {
  margin: 19px 0 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.025em;
  font-weight: 400;
}

.insight-card__cta {
  align-self: flex-start;
  min-height: 47px;
  margin-top: 18px;
  padding-inline: 23px;
  font-size: 15px;
}

/* Blog card art */
.art--wordpress {
  background:
    radial-gradient(circle at 80% 20%, rgba(61,161,255,.72), transparent 42%),
    linear-gradient(135deg, #8cc5a8, #dde9ea 48%, #6ab4ec);
}

.art--wordpress::before {
  inset: 34px 30px 20px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px) 0 0 / 46px 46px;
}

.art-icon-pair {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.art-icon-pair span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.30);
  border: 1px solid rgba(255,255,255,.58);
  font-size: 38px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(26,69,92,.13);
  backdrop-filter: blur(5px);
}

.art-icon-pair b {
  color: rgba(255,255,255,.95);
  font-size: 15px;
  font-weight: 500;
}

.art--conversion {
  background:
    radial-gradient(circle at 22% 30%, rgba(255,111,179,.78), transparent 32%),
    linear-gradient(135deg, #93446d, #e3a0c9 52%, #4c4b78);
}

.art-chart {
  position: absolute;
  inset: 46px 30px 28px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.art-chart span {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.38));
}

.art-chart span:nth-child(1) { height: 34%; }
.art-chart span:nth-child(2) { height: 55%; }
.art-chart span:nth-child(3) { height: 47%; }
.art-chart span:nth-child(4) { height: 78%; }
.art-chart span:nth-child(5) { height: 92%; }

.art--strategy {
  background:
    radial-gradient(circle at 78% 22%, rgba(106,183,255,.60), transparent 34%),
    linear-gradient(135deg, #4468ff, #75b8f0 50%, #a8d4eb);
}

.art-window {
  position: absolute;
  left: 46px;
  right: 46px;
  top: 46px;
  bottom: 34px;
  border-radius: 13px;
  background: rgba(255,255,255,.21);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 28px 0 rgba(255,255,255,.16);
}

.art-window::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 52px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.72);
  box-shadow:
    0 24px 0 rgba(255,255,255,.46),
    0 48px 0 rgba(255,255,255,.28);
}

.art--speed {
  background:
    radial-gradient(circle at 76% 30%, rgba(255,167,87,.78), transparent 37%),
    linear-gradient(135deg, #f4e1c7, #b8d9f8 50%, #2c82db);
}

.art-speed {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
}

.art-speed strong {
  font-size: 58px;
  line-height: .95;
  font-weight: 500;
}

.art-speed span {
  margin-top: 7px;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Insights art */
.art--cro {
  background: linear-gradient(135deg, #f0bd7a, #d9938c 53%, #83bbb1);
}

.art-metric {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 210px;
  padding: 19px 22px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.27);
  border: 1px solid rgba(255,255,255,.43);
  transform: translate(-50%,-50%);
  backdrop-filter: blur(8px);
}

.art-metric span {
  display: block;
  font-size: 15px;
}

.art-metric strong {
  display: block;
  margin-top: 5px;
  font-size: 42px;
  font-weight: 400;
}

.art--analytics {
  background: linear-gradient(135deg, #d4e8f3, #7db3cd 55%, #315b75);
}

.art-bars {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 32px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.art-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: rgba(255,255,255,.70);
}

.art-bars i:nth-child(1) { height: 24%; }
.art-bars i:nth-child(2) { height: 42%; }
.art-bars i:nth-child(3) { height: 38%; }
.art-bars i:nth-child(4) { height: 67%; }
.art-bars i:nth-child(5) { height: 78%; }
.art-bars i:nth-child(6) { height: 94%; }

.art--journey {
  background: linear-gradient(135deg, #8fada0, #e2d7c4 52%, #e48c65);
}

.art-path {
  position: absolute;
  inset: 0;
}

.art-path::before {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: 50%;
  height: 3px;
  background: rgba(255,255,255,.72);
  transform: translateY(-50%);
}

.art-path i {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  transform: translate(-50%,-50%);
  box-shadow: 0 10px 24px rgba(0,0,0,.09);
}

.art-path i:nth-child(1) { left: 20%; }
.art-path i:nth-child(2) { left: 50%; }
.art-path i:nth-child(3) { left: 80%; }

.art--testing {
  background: linear-gradient(135deg, #8495d6, #b4c8ef 48%, #ed9b81);
}

.art-ab {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.art-ab span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: 30px;
}

.art-ab b {
  color: #fff;
  font-size: 15px;
}

/* Resources art */
.art--checklist {
  background: linear-gradient(135deg, #aad3c2, #d8e8e4 48%, #6bb3db);
}

.art-checklist {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 9px;
  width: 205px;
  padding: 19px;
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  transform: translate(-50%,-50%);
}

.art-checklist i {
  height: 27px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  border-radius: 6px;
  color: #1a8562;
  background: #edf4f1;
  font-style: normal;
}

.art--brief {
  background: linear-gradient(135deg, #d7cbec, #f1d8df 50%, #be8da6);
}

.art-doc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 145px;
  height: 135px;
  padding: 30px 22px;
  border-radius: 12px;
  background: #fff;
  transform: translate(-50%,-50%) rotate(-3deg);
  box-shadow: 0 16px 30px rgba(66,34,60,.16);
}

.art-doc span {
  display: block;
  height: 7px;
  margin-bottom: 14px;
  border-radius: 9px;
  background: #d5d8de;
}

.art-doc span:nth-child(2) { width: 75%; }
.art-doc span:nth-child(3) { width: 52%; }

.art--calculator {
  background: linear-gradient(135deg, #f0cd7c, #f5a267 52%, #d86e55);
}

.art-calculator,
.art-score {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 190px;
  height: 120px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.50);
  transform: translate(-50%,-50%);
  backdrop-filter: blur(8px);
}

.art-calculator strong,
.art-score strong {
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.art-calculator span,
.art-score span {
  font-size: 15px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.art--audit {
  background: linear-gradient(135deg, #55798a, #72aba7 48%, #efb86f);
}

/* =========================================================
   08 — FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;
  min-height: 740px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7dec5;
}

.final-cta__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,248,241,.18), rgba(255,245,235,.12)),
    url("assets/cta-background.webp") center center / cover no-repeat;
  transform: scale(1.02);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,244,191,.30), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.10), transparent 22%, transparent 78%, rgba(255,255,255,.18));
}

.final-cta__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 900px);
  text-align: center;
}

.availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
}

.availability__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #09b96e;
  box-shadow: 0 0 0 5px rgba(9,185,110,.08);
}

.final-cta h2 {
  margin: 48px 0 0;
  color: var(--ink);
  font-size: clamp(66px, 6.8vw, 106px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 400;
}

.final-cta__button {
  min-height: 62px;
  margin-top: 68px;
  padding-inline: 34px;
  font-size: 15px;
}

/* =========================================================
   GLOBAL FOOTER
   ========================================================= */

.site-footer {
  color: #fff;
  background: #00383a;
}

.site-footer__shell {
  width: min(calc(100% - 56px), var(--content-max));
  margin-inline: auto;
  padding: 74px 0 54px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 48px;
  min-height: 340px;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.footer-brand__logo img {
  width: 53px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand__meta {
  display: grid;
  gap: 8px;
  margin-top: 45px;
  color: rgba(255,255,255,.52);
  font-size: 15px;
}

.footer-brand__meta strong {
  color: rgba(255,255,255,.93);
  font-size: 15px;
  font-weight: 400;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.footer-column__title {
  margin-bottom: 7px;
  color: rgba(255,255,255,.42);
  font-size: 15px;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.95);
  font-size: 15px;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-column a:hover {
  opacity: .7;
  transform: translateX(2px);
}

.footer-social__icon {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.52);
  font-size: 15px;
}

.footer-legal span {
  color: rgba(255,255,255,.94);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  color: rgba(255,255,255,.93);
  font-size: 15px;
}

/* =========================================================
   RESPONSIVE — SECTIONS 07–FOOTER
   ========================================================= */

@media (max-width: 1120px) {
  .insights-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .insight-card__art {
    height: 250px;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    row-gap: 52px;
  }

  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 820px) {
  .insights-section {
    padding: 82px 0 92px;
  }

  .insights-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-header h2 {
    font-size: clamp(48px, 10vw, 68px);
  }

  .insights-header__actions {
    width: 100%;
  }

  .insights-view-all {
    margin-right: auto;
  }

  .insights-tabs {
    margin-top: 32px;
  }

  .insights-panels {
    width: calc(100% - 40px);
    margin-top: 34px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta h2 {
    margin-top: 40px;
    font-size: clamp(62px, 13vw, 90px);
  }

  .final-cta__button {
    margin-top: 52px;
  }

  .site-footer__shell {
    width: calc(100% - 40px);
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0,1fr));
    min-height: 0;
  }

  .footer-brand {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .footer-brand__meta {
    margin-top: 27px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .insights-section {
    padding-top: 72px;
  }

  .insights-header h2 {
    font-size: 45px;
  }

  .insights-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .insights-tabs::-webkit-scrollbar {
    display: none;
  }

  .insights-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .insights-carousel::-webkit-scrollbar {
    display: none;
  }

  .insight-card {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .insight-card__art {
    height: 220px;
  }

  .final-cta {
    min-height: 580px;
  }

  .availability {
    font-size: 15px;
  }

  .availability__dot {
    width: 11px;
    height: 11px;
  }

  .final-cta h2 {
    margin-top: 34px;
    font-size: 58px;
  }

  .final-cta__button {
    margin-top: 46px;
  }

  .site-footer__shell {
    width: calc(100% - 30px);
    padding-top: 58px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    gap: 14px;
  }

  .site-footer__bottom {
    margin-top: 10px;
    padding-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insights-tab,
  .footer-column a {
    transition: none;
  }
}


/* =========================================================
   V7 — CONTENT / IMAGE REFINEMENTS
   ========================================================= */

/* Case studies now use project photography/static visuals instead of video. */
.case-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.case-card:hover .case-card__image {
  transform: scale(1.025);
}

.case-card__image--palmashop {
  object-position: center 48%;
}

.case-card__image--therapy {
  object-position: 66% center;
}

.case-card__image--ez {
  object-position: 60% center;
}

.case-card__image--mollers {
  object-position: center center;
}

.case-card__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4,18,31,.84) 0%, rgba(4,18,31,.58) 42%, rgba(4,18,31,.13) 80%),
    linear-gradient(180deg, rgba(5,20,35,.08) 0%, rgba(5,20,35,.08) 48%, rgba(5,20,35,.68) 100%);
}

.case-card__eyebrow {
  margin-bottom: 13px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.case-card p {
  max-width: 650px;
}

/* Remove the old video layers if any remain in cached markup. */
.case-card__video,
.case-card__fallback {
  display: none !important;
}

/* Exceptional Experiences — supplied visuals already contain their own overlays. */
.experience-section h2 {
  max-width: none;
  margin-bottom: 64px;
}

.experience-card__media {
  height: 300px;
  background: #183449;
}

.experience-card__media::after {
  background: linear-gradient(180deg, rgba(5,15,25,.02), rgba(5,15,25,.08));
}

.experience-card__media img {
  object-fit: cover;
  object-position: center;
}

/* Business / industry section */
.quote-card--business {
  background:
    radial-gradient(circle at 78% 82%, rgba(96,202,192,.92), transparent 38%),
    linear-gradient(135deg, #eeb959 0%, #c97383 55%, #538f99 100%);
}

.quote-card__eyebrow {
  margin-bottom: 32px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.quote-card__statement {
  max-width: 540px;
  font-size: clamp(38px, 3.25vw, 55px);
  line-height: 1.17;
  letter-spacing: -.04em;
  font-weight: 400;
}

.audience-panel {
  min-height: 178px;
}

.audience-panel__meta {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.55);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audience-panel.is-active .audience-panel__meta {
  color: rgba(8,45,50,.50);
}

/* Final CTA — use the newly supplied background and reduce headline scale. */
.final-cta {
  min-height: 660px;
  background: #dceafa;
}

.final-cta__background--v2 {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    url("assets/cta-background-v2.webp") center center / cover no-repeat;
  transform: none;
}

.final-cta::after {
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.05), transparent 22%, transparent 78%, rgba(255,255,255,.08));
}

.final-cta h2 {
  margin-top: 38px;
  font-size: clamp(52px, 5.1vw, 78px);
  line-height: 1.03;
}

.final-cta__button {
  margin-top: 48px;
}

@media (max-width: 820px) {
  .case-card__image--therapy {
    object-position: 70% center;
  }

  .experience-section h2 {
    margin-bottom: 46px;
  }

  .audience-panel {
    min-height: 185px;
  }

  .final-cta {
    min-height: 570px;
  }

  .final-cta h2 {
    font-size: clamp(48px, 10vw, 68px);
  }
}

@media (max-width: 560px) {
  .case-card p {
    max-width: 100%;
  }

  .case-card__eyebrow {
    font-size: 15px;
  }

  .experience-card__media {
    height: 290px;
  }

  .quote-card__statement {
    font-size: 37px;
  }

  .audience-panel__meta {
    font-size: 15px;
  }

  .final-cta {
    min-height: 530px;
  }

  .final-cta h2 {
    font-size: 50px;
  }
}


/* =========================================================
   V8 — SPACING / BUSINESS-STAGE INTERACTIONS / CTA COPY
   ========================================================= */

/* More breathing room between Exceptional Experiences cards on desktop. */
@media (min-width: 1121px) {
  .experience-grid {
    gap: 24px;
  }
}

/* Keep the audience heading to two lines on desktop. */
.audience-content h2 {
  font-size: clamp(43px, 3.7vw, 60px);
  line-height: 1.06;
  max-width: 780px;
}

/* Interactive left-hand visual states */
.audience-visual {
  position: relative;
  min-height: 650px;
}

.audience-visual__state {
  position: absolute;
  inset: 0;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 70px 52px 46px;
  border-radius: 22px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

.audience-visual__state::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .8;
}

.audience-visual__state.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* B2C: brand-aligned blue / orange */
.audience-visual__state[data-audience-state="b2c"] {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,115,58,.55), transparent 30%),
    radial-gradient(circle at 88% 90%, rgba(63,171,255,.48), transparent 34%),
    linear-gradient(135deg, #0b355d 0%, #0a4c72 44%, #173e63 100%);
}

.audience-visual__state[data-audience-state="b2c"]::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, transparent 60%, rgba(4,20,35,.24));
}

/* Professional services: restrained navy / steel */
.audience-visual__state[data-audience-state="professional"] {
  background:
    radial-gradient(circle at 78% 20%, rgba(111,151,190,.34), transparent 35%),
    linear-gradient(135deg, #0f1d2e 0%, #243d59 52%, #59728b 100%);
}

.audience-visual__state[data-audience-state="professional"]::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.05), transparent 35%),
    linear-gradient(180deg, transparent 55%, rgba(5,14,26,.30));
}

/* Agency partners: dark teal / blue with orange accent */
.audience-visual__state[data-audience-state="agency"] {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,101,47,.32), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(40,173,179,.30), transparent 35%),
    linear-gradient(135deg, #071f29 0%, #063c40 50%, #0f3452 100%);
}

.audience-visual__state[data-audience-state="agency"]::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 28%),
    linear-gradient(180deg, transparent 58%, rgba(1,15,24,.26));
}

.audience-visual__eyebrow,
.audience-visual__headline,
.audience-visual__copy,
.audience-visual__proof,
.audience-visual__footer {
  position: relative;
  z-index: 1;
}

.audience-visual__eyebrow {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.audience-visual__headline {
  margin-top: 34px;
  max-width: 560px;
  font-size: clamp(40px, 3.15vw, 54px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.audience-visual__copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.65;
}

.audience-visual__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 42px;
}

.audience-visual__proof > div {
  min-height: 105px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.audience-visual__proof strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.audience-visual__proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.45;
}

.audience-visual__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.audience-visual__footer > span {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Slightly tighten the right-hand cards to support the new copy. */
.audience-panel {
  min-height: 170px;
}

.audience-panel__title {
  font-size: 28px;
}

/* Final CTA: smaller overall type because the headline is longer. */
.final-cta h2 {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.08;
}

.final-cta__button {
  min-width: 255px;
}

@media (max-width: 1120px) {
  .audience-visual,
  .audience-visual__state {
    min-height: 610px;
  }

  .audience-visual__state {
    padding: 58px 40px 40px;
  }

  .audience-visual__proof {
    grid-template-columns: 1fr;
  }

  .audience-visual__proof > div {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .audience-visual,
  .audience-visual__state {
    min-height: 590px;
  }

  .audience-content h2 {
    font-size: clamp(40px, 8.5vw, 56px);
  }

  .audience-visual__headline {
    font-size: clamp(38px, 8vw, 50px);
  }
}

@media (max-width: 560px) {
  .audience-visual,
  .audience-visual__state {
    min-height: 640px;
  }

  .audience-visual__state {
    padding: 44px 24px 28px;
  }

  .audience-visual__headline {
    margin-top: 26px;
    font-size: 37px;
  }

  .audience-visual__copy {
    font-size: 15px;
  }

  .audience-visual__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-content h2 {
    font-size: 40px;
  }

  .final-cta h2 {
    font-size: 42px;
  }
}


/* =========================================================
   V9 — MEGA MENU / CLIENT GRID / BLOG / GLOBAL FOOTER
   ========================================================= */

.btn--dark {
  color: #fff;
  background: linear-gradient(135deg, #0b1118 0%, #172334 100%);
  border-color: rgba(0,0,0,.04);
}

/* MEGA MENU */
.site-header { z-index: 20; }
.site-nav--mega { position: relative; }
.mega-nav-item { position: static; }

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  z-index: 30;
  top: 46px;
  left: 50%;
  width: min(1120px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(8,45,50,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(19,50,78,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  backdrop-filter: blur(18px);
}

.mega-nav-item:hover .mega-menu,
.mega-nav-item:focus-within .mega-menu,
.mega-nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu__intro {
  padding: 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 20%, rgba(75,176,255,.24), transparent 32%),
    linear-gradient(145deg, #eef7ff 0%, #f9fbfd 48%, #fff3ec 100%);
}

.mega-menu__kicker,
.mega-menu__title {
  color: #768387;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.mega-menu__intro h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 400;
}

.mega-menu__intro p {
  margin: 14px 0 0;
  color: #617175;
  font-size: 15px;
  line-height: 1.6;
}

.mega-menu__cta {
  min-height: 46px;
  margin-top: 24px;
  padding-inline: 20px;
  font-size: 15px;
}

.mega-menu__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mega-menu__group > .mega-menu__title {
  margin: 5px 0 11px;
}

.mega-menu__group a {
  display: block;
  padding: 10px 11px;
  border-radius: 12px;
  white-space: normal;
  transition: background .18s ease, transform .18s ease;
}

.mega-menu__group a:hover {
  background: #f4f8fa;
  transform: translateX(2px);
}

.mega-menu__group strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.mega-menu__group span {
  display: block;
  margin-top: 4px;
  color: #7a8789;
  font-size: 15px;
  line-height: 1.45;
}

/* STATIC CLIENT GRID */
.client-grid-section {
  padding: 88px 0 98px;
  background: #fff;
}

.client-grid {
  width: min(calc(100% - 56px), var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(3, 164px);
  border-top: 1px solid #e7e3dd;
  border-left: 1px solid #e7e3dd;
}

.client-grid__cell,
.client-grid__feature {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  border-right: 1px solid #e7e3dd;
  border-bottom: 1px solid #e7e3dd;
}

.client-grid__feature {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
  align-content: center;
  text-align: center;
  padding: 42px;
}

.client-grid__cell--1 { grid-column: 1; grid-row: 1; }
.client-grid__cell--2 { grid-column: 2; grid-row: 1; }
.client-grid__cell--3 { grid-column: 5; grid-row: 1; }
.client-grid__cell--4 { grid-column: 6; grid-row: 1; }
.client-grid__cell--5 { grid-column: 1; grid-row: 2; }
.client-grid__cell--6 { grid-column: 2; grid-row: 2; }
.client-grid__cell--7 { grid-column: 5; grid-row: 2; }
.client-grid__cell--8 { grid-column: 6; grid-row: 2; }
.client-grid__cell--9 { grid-column: 1; grid-row: 3; }
.client-grid__cell--10 { grid-column: 2; grid-row: 3; }
.client-grid__cell--11 { grid-column: 3; grid-row: 3; }
.client-grid__cell--12 { grid-column: 4; grid-row: 3; }

/* Fill final two grid cells with subtle visual structure */
.client-grid::before,
.client-grid::after {
  content: "";
  display: block;
  border-right: 1px solid #e7e3dd;
  border-bottom: 1px solid #e7e3dd;
}
.client-grid::before { grid-column: 5; grid-row: 3; }
.client-grid::after { grid-column: 6; grid-row: 3; }

.client-grid__cell img {
  width: 72%;
  max-width: 180px;
  max-height: 74px;
  object-fit: contain;
  filter: grayscale(1) brightness(.35) contrast(1.08);
  opacity: .78;
}

.logo-wordmark {
  color: #454b50;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
  text-align: center;
  opacity: .86;
}

.client-grid__feature h2 {
  max-width: 510px;
  margin: 20px auto 0;
  color: var(--ink);
  font-size: clamp(31px, 2.7vw, 44px);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 400;
}

.client-grid__feature .btn {
  min-height: 50px;
  margin-top: 30px;
  padding-inline: 26px;
  font-size: 15px;
}

/* REAL BLOG CARDS */
.insight-card__art--image {
  background: #eaf2f7;
}

.insight-card__art--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.insight-card__image-link {
  display: block;
}

.insight-card__meta {
  margin-top: 16px;
  color: #849092;
  font-size: 15px;
  letter-spacing: .02em;
}

.insight-card__meta + h3 {
  margin-top: 9px;
}

/* FOOTER */
.site-footer {
  background: #334358;
}

.site-footer__top--four {
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.footer-book-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.footer-ai {
  text-align: right;
}

.footer-ai__label {
  display: block;
  margin-bottom: 11px;
  color: rgba(255,255,255,.48);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-ai__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-ai__links a {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 7px;
  color: rgba(255,255,255,.94);
  font-size: 15px;
}

@media (max-width: 1120px) {
  .mega-menu {
    width: min(920px, calc(100vw - 40px));
    gap: 18px;
    padding: 22px;
  }

  .client-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 145px;
  }

  .client-grid__feature {
    grid-column: 2 / span 2;
    grid-row: 1 / span 2;
  }

  .client-grid__cell {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .client-grid::before,
  .client-grid::after {
    display: none;
  }

  .site-footer__top--four {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .site-nav--mega {
    position: absolute;
  }

  .mega-nav-item {
    width: 100%;
  }

  .mega-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0,0,0,.07);
    font-size: 15px;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .28s ease, padding .28s ease;
  }

  .mega-nav-item.is-open .mega-menu {
    max-height: 980px;
    padding: 14px 5px 18px;
  }

  .mega-menu__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .client-grid-section {
    padding: 70px 0 80px;
  }

  .client-grid {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }

  .client-grid__feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 310px;
  }

  .site-footer__top--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-ai {
    text-align: left;
  }

  .footer-ai__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .client-grid {
    width: calc(100% - 30px);
  }

  .client-grid__feature {
    padding: 30px 22px;
  }

  .client-grid__feature h2 {
    font-size: 31px;
  }

  .client-grid__cell {
    padding: 16px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-menu__intro {
    grid-column: auto;
  }

  .site-footer__top--four {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V10 — MEGA MENU FIX / BLOG VISUALS / GRADIENT FOOTER
   ========================================================= */

/* ---------------------------------------------------------
   MEGA MENU FIX
   The previous menu inherited white-space: nowrap from
   .site-nav, which forced the intro column to become huge
   and squeezed the three service columns.
   --------------------------------------------------------- */

.mega-menu {
  width: min(1240px, calc(100vw - 72px));
  grid-template-columns: minmax(300px, 360px) repeat(3, minmax(190px, 1fr));
  gap: 18px;
  padding: 24px;
  white-space: normal;
  align-items: stretch;
}

.mega-menu__intro {
  min-width: 0;
  padding: 28px;
}

.mega-menu__intro h3 {
  max-width: 310px;
  font-size: 27px;
  line-height: 1.13;
}

.mega-menu__intro p {
  max-width: 300px;
}

.mega-menu__group {
  min-width: 0;
  padding: 8px 4px;
}

.mega-menu__group a {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  white-space: normal !important;
}

.mega-menu__group a:hover {
  border-color: rgba(8,45,50,.07);
  background: #f4f8fa;
}

.mega-menu__group strong,
.mega-menu__group span {
  white-space: normal;
}

.mega-menu__group strong {
  font-size: 15px;
  line-height: 1.2;
}

.mega-menu__group span {
  font-size: 15px;
  line-height: 1.42;
}

/* ---------------------------------------------------------
   BLOG VISUALS
   Same illustration-led language as the earlier concept,
   but now tied to the real post topics.
   --------------------------------------------------------- */

.art--agency-ranking {
  background:
    radial-gradient(circle at 78% 18%, rgba(96,183,255,.58), transparent 34%),
    linear-gradient(135deg, #90c2b1 0%, #dce8eb 47%, #6da9e5 100%);
}

.agency-ranking-art {
  position: absolute;
  inset: 0;
}

.agency-ranking-art__badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 37%;
  display: grid;
  place-items: center;
  width: 110px;
  height: 82px;
  border-radius: 20px;
  color: #fff;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.60);
  font-size: 24px;
  font-weight: 600;
  transform: translate(-50%,-50%);
  box-shadow: 0 16px 32px rgba(26,69,92,.14);
  backdrop-filter: blur(7px);
}

.agency-ranking-art__cards {
  position: absolute;
  left: 50%;
  bottom: 29px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.agency-ranking-art__cards span {
  display: grid;
  place-items: center;
  width: 55px;
  height: 58px;
  border-radius: 10px 10px 4px 4px;
  color: var(--ink);
  background: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 600;
}

.agency-ranking-art__cards span:nth-child(2) {
  transform: translateY(-13px);
}

.art--rfp {
  background:
    radial-gradient(circle at 16% 25%, rgba(246,131,188,.75), transparent 31%),
    linear-gradient(135deg, #704764 0%, #dca0c9 50%, #696188 100%);
}

.rfp-art {
  position: absolute;
  inset: 0;
}

.rfp-art__doc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 125px;
  height: 145px;
  padding: 30px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.91);
  transform: translate(-66%,-50%) rotate(-4deg);
  box-shadow: 0 18px 35px rgba(57,34,55,.18);
}

.rfp-art__doc span {
  display: block;
  height: 7px;
  margin-bottom: 13px;
  border-radius: 99px;
  background: #d5d6dd;
}

.rfp-art__doc span:nth-child(2) { width: 78%; }
.rfp-art__doc span:nth-child(3) { width: 90%; }
.rfp-art__doc span:nth-child(4) { width: 58%; }

.rfp-art__tag {
  position: absolute;
  left: 58%;
  top: 42%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 52px;
  border-radius: 12px;
  color: #fff;
  background: #092f36;
  font-size: 16px;
  font-weight: 600;
  transform: translate(-10%,-50%);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.rfp-art__arrow {
  position: absolute;
  left: 66%;
  top: 65%;
  color: rgba(255,255,255,.92);
  font-size: 30px;
}

.art--redesign-cost {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,183,86,.60), transparent 30%),
    linear-gradient(135deg, #4373dc 0%, #77b7ef 52%, #d3e7f5 100%);
}

.redesign-cost-art {
  position: absolute;
  inset: 0;
}

.redesign-cost-art__metric {
  position: absolute;
  left: 42px;
  top: 54px;
  display: grid;
  width: 128px;
  height: 104px;
  place-content: center;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.52);
  backdrop-filter: blur(7px);
}

.redesign-cost-art__metric span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
}

.redesign-cost-art__metric strong {
  margin-top: 5px;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}

.redesign-cost-art__bars {
  position: absolute;
  right: 38px;
  bottom: 36px;
  width: 120px;
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.redesign-cost-art__bars i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: rgba(255,255,255,.82);
}

.redesign-cost-art__bars i:nth-child(1) { height: 34%; }
.redesign-cost-art__bars i:nth-child(2) { height: 58%; }
.redesign-cost-art__bars i:nth-child(3) { height: 73%; }
.redesign-cost-art__bars i:nth-child(4) { height: 96%; }

.art--redesign-guide {
  background:
    radial-gradient(circle at 76% 26%, rgba(255,160,91,.72), transparent 33%),
    linear-gradient(135deg, #f1dcc4 0%, #b8d8f1 49%, #3d8ddd 100%);
}

.redesign-guide-art {
  position: absolute;
  inset: 0;
}

.redesign-guide-art__browser {
  position: absolute;
  left: 34px;
  top: 48px;
  width: 176px;
  height: 118px;
  padding: 32px 18px 18px;
  border-radius: 15px;
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: inset 0 23px 0 rgba(9,47,54,.08);
}

.redesign-guide-art__browser span {
  display: block;
  height: 7px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: #c6d1d9;
}

.redesign-guide-art__browser span:nth-child(2) { width: 75%; }
.redesign-guide-art__browser span:nth-child(3) { width: 55%; }

.redesign-guide-art__checklist {
  position: absolute;
  right: 37px;
  bottom: 37px;
  display: grid;
  gap: 7px;
  width: 103px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(6,47,54,.82);
  box-shadow: 0 15px 30px rgba(15,64,100,.14);
}

.redesign-guide-art__checklist i {
  height: 27px;
  display: flex;
  align-items: center;
  padding-left: 9px;
  border-radius: 7px;
  color: #fff;
  background: rgba(255,255,255,.13);
  font-size: 15px;
  font-style: normal;
}

/* ---------------------------------------------------------
   FOOTER — fun, modern but still dark enough for contrast
   --------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(49,154,235,.34), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255,96,47,.26), transparent 28%),
    radial-gradient(circle at 73% 95%, rgba(20,157,151,.24), transparent 30%),
    linear-gradient(135deg, #26384f 0%, #334358 43%, #24384c 70%, #163c44 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background:
    linear-gradient(115deg, rgba(255,255,255,.05), transparent 24%, transparent 71%, rgba(255,255,255,.025)),
    radial-gradient(circle at 36% 105%, rgba(105,184,255,.15), transparent 25%);
}

.site-footer__shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 1120px) {
  .mega-menu {
    width: min(960px, calc(100vw - 40px));
    grid-template-columns: minmax(250px, 310px) repeat(3, minmax(150px, 1fr));
    gap: 14px;
  }

  .mega-menu__intro h3 {
    font-size: 24px;
  }
}

@media (max-width: 980px) {
  .mega-menu {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .mega-menu {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V11 — MULTIPLE MEGA MENUS
   ========================================================= */

/* Slightly smaller trust-grid headline */
.client-grid__feature h2 {
  font-size: clamp(27px, 2.25vw, 37px);
  line-height: 1.13;
  max-width: 500px;
}

/* Each nav item owns its own mega panel */
.mega-nav-item[data-mega-item] {
  position: static;
}

.mega-nav-item[data-mega-item] > .mega-trigger {
  white-space: nowrap;
}

/* ---------------------------------------------------------
   WORK MEGA MENU
   --------------------------------------------------------- */
.mega-menu--work {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  gap: 20px;
}

.mega-menu__intro--work {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,104,48,.22), transparent 30%),
    linear-gradient(145deg, #f6f9fc 0%, #eef7ff 54%, #fff5ef 100%);
}

.mega-work-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mega-work-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(8,45,50,.08);
  border-radius: 16px;
  background: #fff;
  white-space: normal !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mega-work-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8,45,50,.14);
  box-shadow: 0 12px 28px rgba(26,61,86,.08);
}

.mega-work-card img {
  width: 104px;
  height: 76px;
  display: block;
  object-fit: cover;
  border-radius: 11px;
}

.mega-work-card > div {
  min-width: 0;
}

.mega-work-card__meta {
  display: block;
  color: #8b989a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.mega-work-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.18;
}

.mega-work-card small {
  display: block;
  margin-top: 6px;
  color: #778587;
  font-size: 15px;
  line-height: 1.4;
}

/* ---------------------------------------------------------
   WHO WE WORK WITH MEGA MENU
   --------------------------------------------------------- */
.mega-menu--audience {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  gap: 20px;
}

.mega-menu__intro--audience {
  background:
    radial-gradient(circle at 78% 18%, rgba(70,177,255,.24), transparent 31%),
    radial-gradient(circle at 14% 88%, rgba(255,105,47,.14), transparent 28%),
    linear-gradient(145deg, #eef7ff 0%, #f7fbfd 52%, #fff5ef 100%);
}

.mega-audience-content {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.mega-audience-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mega-audience-card {
  min-width: 0;
  min-height: 145px;
  padding: 16px;
  border: 1px solid rgba(8,45,50,.08);
  border-radius: 15px;
  background: #fff;
  white-space: normal !important;
  transition: transform .18s ease, background .18s ease;
}

.mega-audience-card:hover {
  transform: translateY(-2px);
  background: #f7fafb;
}

.mega-audience-card > span {
  display: block;
  color: var(--orange-2);
  font-size: 15px;
  font-weight: 600;
}

.mega-audience-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.18;
}

.mega-audience-card small {
  display: block;
  margin-top: 8px;
  color: #7b888a;
  font-size: 15px;
  line-height: 1.45;
}

.mega-industries {
  padding: 15px 16px 5px;
  border-top: 1px solid rgba(8,45,50,.08);
}

.mega-industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.mega-industries__grid a {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(8,45,50,.09);
  border-radius: 999px;
  color: #667679;
  background: #f8fafb;
  font-size: 15px;
  white-space: nowrap !important;
}

.mega-industries__grid a:hover {
  color: var(--ink);
  background: #eef5f8;
}

/* ---------------------------------------------------------
   INSIGHTS MEGA MENU
   --------------------------------------------------------- */
.mega-menu--insights {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  gap: 20px;
}

.mega-menu__intro--insights {
  background:
    radial-gradient(circle at 82% 18%, rgba(93,154,255,.24), transparent 31%),
    radial-gradient(circle at 13% 86%, rgba(248,133,193,.16), transparent 28%),
    linear-gradient(145deg, #f2f7ff 0%, #faf9fd 52%, #fff6f1 100%);
}

.mega-insights-columns {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mega-insights-column {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(8,45,50,.08);
  border-radius: 16px;
  background: #fff;
}

.mega-insights-column__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8,45,50,.07);
}

.mega-insights-column__head > span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.mega-insights-column__head > a {
  color: #879396;
  font-size: 15px;
  white-space: nowrap !important;
}

.mega-insight-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(8,45,50,.06);
  white-space: normal !important;
}

.mega-insight-link:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.mega-insight-link strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.mega-insight-link small {
  display: block;
  margin-top: 5px;
  color: #8a9698;
  font-size: 15px;
}

/* Mobile / tablet */
@media (max-width: 980px) {
  .mega-nav-item[data-mega-item] {
    width: 100%;
  }

  .mega-menu--work,
  .mega-menu--audience,
  .mega-menu--insights {
    grid-template-columns: 1fr;
  }

  .mega-work-grid,
  .mega-audience-stages,
  .mega-insights-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-insights-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .mega-work-grid,
  .mega-audience-stages,
  .mega-insights-columns {
    grid-template-columns: 1fr;
  }

  .mega-insights-column:last-child {
    grid-column: auto;
  }

  .mega-work-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .mega-work-card img {
    width: 84px;
    height: 66px;
  }
}


/* =========================================================
   V12 — REFINED WORK / AUDIENCE / INSIGHTS / RESOURCES MENUS
   ========================================================= */

/* -------------------------
   WORK: visual case-study tiles
   ------------------------- */
.mega-work-grid--visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mega-work-card--visual {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.mega-work-card--visual:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.mega-work-card__media {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-radius: 16px;
  background: #18364c;
  isolation: isolate;
}

.mega-work-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  transition: transform .35s ease;
}

.mega-work-card--visual:hover img {
  transform: scale(1.035);
}

.mega-work-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,17,28,.06), rgba(5,17,28,.15) 45%, rgba(5,17,28,.74) 100%),
    linear-gradient(90deg, rgba(5,17,28,.35), transparent 58%);
}

.mega-work-card__text {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
}

.mega-work-card__text > span {
  display: block;
  color: rgba(255,255,255,.70);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-work-card__text strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
}

.mega-work-card__text small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

/* -------------------------
   WHO WE WORK WITH:
   stacked, vertical, gradient cards
   ------------------------- */
.mega-audience-stages--vertical {
  grid-template-columns: 1fr;
  gap: 10px;
}

.mega-audience-card {
  min-height: 0;
}

.mega-audience-stages--vertical .mega-audience-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 10px 26px rgba(26,60,83,.06);
}

.mega-audience-stages--vertical .mega-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .58;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.20), transparent 28%);
}

.mega-audience-card--b2c {
  background:
    radial-gradient(circle at 80% 20%, rgba(79,179,255,.30), transparent 32%),
    linear-gradient(135deg, #dceeff 0%, #eef6fb 45%, #fff1e9 100%);
}

.mega-audience-card--professional {
  background:
    radial-gradient(circle at 82% 18%, rgba(122,155,190,.28), transparent 31%),
    linear-gradient(135deg, #edf3f8 0%, #dde7f0 52%, #eef1f4 100%);
}

.mega-audience-card--agency {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,114,57,.18), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(53,183,181,.18), transparent 32%),
    linear-gradient(135deg, #e4f3f1 0%, #eef7f6 48%, #eef2f8 100%);
}

.mega-audience-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  font-size: 15px !important;
  font-weight: 700 !important;
}

.mega-audience-stages--vertical .mega-audience-card strong {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 15px;
}

.mega-audience-stages--vertical .mega-audience-card small {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-top: 8px;
  color: #647579;
  font-size: 15px;
  line-height: 1.5;
}

/* -------------------------
   INSIGHTS: only Blog + Insights
   ------------------------- */
.mega-insights-columns--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mega-insights-column--blog,
.mega-insights-column--insights {
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(8,45,50,.06);
}

.mega-insights-column--blog {
  background:
    radial-gradient(circle at 90% 10%, rgba(91,179,255,.16), transparent 28%),
    linear-gradient(145deg, #f2f8ff 0%, #f7fbfd 100%);
}

.mega-insights-column--insights {
  background:
    radial-gradient(circle at 90% 10%, rgba(249,137,194,.14), transparent 28%),
    linear-gradient(145deg, #fff6fb 0%, #faf8fb 100%);
}

/* -------------------------
   RESOURCES: separate nav item
   ------------------------- */
.mega-menu--resources {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  gap: 20px;
}

.mega-menu__intro--resources {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,177,86,.22), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(78,180,255,.16), transparent 30%),
    linear-gradient(145deg, #fff9f3 0%, #f8fbfd 54%, #eef7ff 100%);
}

.mega-resource-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mega-resource-card {
  min-width: 0;
  display: block;
  padding: 16px;
  border: 1px solid rgba(8,45,50,.07);
  border-radius: 16px;
  white-space: normal !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

.mega-resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26,61,86,.08);
}

.mega-resource-card--checklist {
  background: linear-gradient(145deg, #eef8f5, #f7fbfa);
}

.mega-resource-card--brief {
  background: linear-gradient(145deg, #f7f2fb, #fcf9fd);
}

.mega-resource-card--cost {
  background: linear-gradient(145deg, #fff7ed, #fffaf5);
}

.mega-resource-card__visual {
  position: relative;
  height: 115px;
  display: grid;
  place-content: center;
  gap: 7px;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(255,255,255,.65);
  box-shadow: inset 0 0 0 1px rgba(8,45,50,.05);
}

.mega-resource-card__visual span {
  display: block;
  width: 130px;
  height: 22px;
  padding-left: 9px;
  border-radius: 6px;
  color: #1a8562;
  background: #e7f4ef;
  line-height: 22px;
  font-size: 15px;
  font-weight: 600;
}

.mega-resource-card__visual i {
  display: block;
  width: 125px;
  height: 7px;
  border-radius: 99px;
  background: #cfd5dd;
}

.mega-resource-card__visual i:nth-child(2) { width: 95px; }
.mega-resource-card__visual i:nth-child(3) { width: 72px; }

.mega-resource-card__visual b {
  color: #d47c27;
  font-size: 48px;
  font-weight: 500;
}

.mega-resource-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.mega-resource-card small {
  display: block;
  margin-top: 6px;
  color: #7b888a;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .mega-insights-columns--two,
  .mega-resource-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu--resources {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V13 — MEGA MENU FIXES
   ========================================================= */

/* ---------------------------------------------------------
   WORK — force the 4 highlighted items to render as a stable
   2x2 grid of mini homepage-style case-study cards.
   --------------------------------------------------------- */

.mega-menu--work {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  align-items: stretch;
}

.mega-menu--work .mega-work-grid--visual {
  min-width: 0;
  min-height: 330px;
  align-self: stretch;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(145px, 1fr));
  gap: 12px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mega-menu--work .mega-work-card--visual {
  position: relative;
  min-width: 0;
  min-height: 145px;
  display: block !important;
  overflow: visible;
  visibility: visible !important;
  opacity: 1 !important;
  border: 0;
  border-radius: 16px;
  background: #17384f;
}

.mega-menu--work .mega-work-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 145px;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.mega-menu--work .mega-work-card__media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  display: block !important;
  object-fit: cover;
  border-radius: 0 !important;
}

.mega-menu--work .mega-work-card:nth-child(1) img {
  object-position: center 48%;
}

.mega-menu--work .mega-work-card:nth-child(2) img {
  object-position: 68% center;
}

.mega-menu--work .mega-work-card:nth-child(3) img {
  object-position: 60% center;
}

.mega-menu--work .mega-work-card:nth-child(4) img {
  object-position: center;
}

.mega-menu--work .mega-work-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(3,14,24,.04) 20%, rgba(3,14,24,.22) 56%, rgba(3,14,24,.84) 100%),
    linear-gradient(90deg, rgba(3,14,24,.30), transparent 64%);
}

.mega-menu--work .mega-work-card__text {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: block;
  color: #fff;
}

.mega-menu--work .mega-work-card__text span,
.mega-menu--work .mega-work-card__text strong,
.mega-menu--work .mega-work-card__text small {
  display: block;
  color: #fff;
}

.mega-menu--work .mega-work-card__text span {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-menu--work .mega-work-card__text strong {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.1;
}

.mega-menu--work .mega-work-card__text small {
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

/* ---------------------------------------------------------
   WHO WE WORK WITH — 3 columns. Internal content remains
   vertically stacked: number → headline → description.
   --------------------------------------------------------- */

.mega-audience-stages--cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px;
  align-items: stretch;
}

.mega-audience-stages--cards .mega-audience-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 205px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(29,63,84,.07);
  white-space: normal !important;
}

.mega-audience-stages--cards .mega-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255,255,255,.22), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.26), transparent 30%);
  opacity: .75;
}

.mega-audience-stages--cards .mega-audience-card__number,
.mega-audience-stages--cards .mega-audience-card strong,
.mega-audience-stages--cards .mega-audience-card small {
  position: relative;
  z-index: 1;
}

.mega-audience-stages--cards .mega-audience-card__number {
  display: inline-flex !important;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  font-size: 15px !important;
  font-weight: 700 !important;
}

.mega-audience-stages--cards .mega-audience-card strong {
  margin-top: 16px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.18;
}

.mega-audience-stages--cards .mega-audience-card small {
  margin-top: 10px;
  color: #647579;
  font-size: 15px;
  line-height: 1.52;
}

/* ---------------------------------------------------------
   RESOURCES — equal-height vertical cards with CTA pinned
   to the bottom.
   --------------------------------------------------------- */

.mega-resource-grid {
  align-items: stretch;
}

.mega-resource-card {
  min-height: 285px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
}

.mega-resource-card__visual {
  flex: 0 0 115px;
  width: 100%;
}

.mega-resource-card > strong {
  margin-top: 16px;
  min-height: 32px;
}

.mega-resource-card > small {
  margin-top: 7px;
  min-height: 28px;
}

.mega-resource-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transition: transform .18s ease;
}

.mega-resource-card:hover .mega-resource-card__readmore {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .mega-audience-stages--cards {
    grid-template-columns: 1fr !important;
  }

  .mega-audience-stages--cards .mega-audience-card {
    min-height: 150px;
  }

  .mega-menu--work .mega-work-grid--visual {
    grid-template-columns: 1fr !important;
    grid-template-rows: none;
  }

  .mega-menu--work .mega-work-card--visual {
    min-height: 170px;
  }

  .mega-menu--work .mega-work-card__media {
    min-height: 170px;
  }
}


/* =========================================================
   V14 — MOBILE HERO + TABLET/MOBILE CLIENT GRID
   ========================================================= */

/* ---------------------------------------------------------
   Hero — requested mobile behavior starts at <= 720px
   --------------------------------------------------------- */
@media (max-width: 720px) {
  .hero,
  .hero__shell {
    min-height: 1040px;
  }

  h1 {
    font-size: 8vw;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 0 0 auto;
  }
}

/* ---------------------------------------------------------
   Client / logo grid
   From tablet down, always show the trust copy FIRST,
   then logos in rows of 3.
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .client-grid-section {
    padding: 64px 0 72px;
  }

  .client-grid {
    width: calc(100% - 40px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 116px;
  }

  .client-grid__feature {
    order: -1;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 260px;
    padding: 40px 32px;
  }

  .client-grid__feature h2 {
    max-width: 600px;
    font-size: clamp(28px, 4.5vw, 38px);
  }

  .client-grid__feature .btn {
    margin-top: 24px;
  }

  .client-grid__cell {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 116px;
    padding: 18px;
  }

  .client-grid__cell img {
    width: 74%;
    max-width: 150px;
    max-height: 58px;
  }

  .logo-wordmark {
    font-size: clamp(15px, 2.5vw, 20px);
  }

  .client-grid::before,
  .client-grid::after {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .client-grid {
    width: calc(100% - 30px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }

  .client-grid__feature {
    min-height: 245px;
    padding: 34px 22px;
  }

  .client-grid__feature h2 {
    max-width: 520px;
    font-size: clamp(25px, 6vw, 34px);
    line-height: 1.15;
  }

  .client-grid__feature .section-kicker {
    justify-content: center;
  }

  .client-grid__cell {
    min-height: 100px;
    padding: 12px;
  }

  .client-grid__cell img {
    width: 80%;
    max-width: 120px;
    max-height: 48px;
  }

  .logo-wordmark {
    font-size: clamp(15px, 3.3vw, 16px);
    line-height: 1.15;
  }
}

@media (max-width: 420px) {
  .client-grid {
    grid-auto-rows: 88px;
  }

  .client-grid__feature {
    min-height: 235px;
  }

  .client-grid__cell {
    min-height: 88px;
    padding: 9px;
  }

  .client-grid__cell img {
    max-height: 42px;
  }

  .logo-wordmark {
    font-size: 15px;
  }
}


/* =========================================================
   V15 — TABLET / MOBILE TRUST GRID + MEGA MENU FIXES
   ========================================================= */

/* ---------------------------------------------------------
   TRUST GRID
   <= 980px: keep only the eyebrow in the feature block.
   Headline + CTA are intentionally hidden.
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .client-grid__feature {
    min-height: 92px;
    padding: 24px 20px;
    align-content: center;
  }

  .client-grid__feature h2,
  .client-grid__feature .btn {
    display: none !important;
  }

  .client-grid__feature .section-kicker {
    margin: 0;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .client-grid__feature {
    min-height: 82px;
    padding: 20px 14px;
  }
}

/* ---------------------------------------------------------
   TABLET / MOBILE MEGA MENU
   Remove inherited desktop translate behavior completely.
   Keep the whole navigation and opened mega panels scrollable.
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .site-nav.is-open {
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav--mega {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mega-nav-item:hover .mega-menu,
  .mega-nav-item:focus-within .mega-menu,
  .mega-nav-item.is-open .mega-menu {
    transform: none !important;
  }

  .mega-menu,
  .mega-nav-item:hover .mega-menu,
  .mega-nav-item:focus-within .mega-menu,
  .mega-nav-item.is-open .mega-menu {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  .mega-nav-item.is-open .mega-menu {
    max-height: min(72vh, 860px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 14px 5px 18px !important;
    visibility: visible !important;
    opacity: 1 !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mega-menu__intro,
  .mega-menu__group,
  .mega-work-grid,
  .mega-audience-content,
  .mega-insights-columns,
  .mega-resource-grid {
    min-width: 0;
    width: 100%;
  }

  /* -----------------------------------------------
     WORK MENU — make all 4 case-study cards visible
     on tablet/mobile.
     ----------------------------------------------- */
  .mega-menu--work {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .mega-menu--work .mega-work-grid--visual {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 170px !important;
    grid-template-rows: none !important;
    gap: 10px !important;
    min-height: 350px !important;
    height: auto !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mega-menu--work .mega-work-card--visual {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 170px !important;
    min-height: 170px !important;
    overflow: hidden !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mega-menu--work .mega-work-card__media {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 170px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mega-menu--work .mega-work-card__media img,
  .mega-menu--work .mega-work-card__overlay,
  .mega-menu--work .mega-work-card__text {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 620px) {
  .mega-nav-item.is-open .mega-menu {
    max-height: 68vh !important;
  }

  .mega-menu--work .mega-work-grid--visual {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 176px !important;
    min-height: 734px !important;
  }

  .mega-menu--work .mega-work-card--visual,
  .mega-menu--work .mega-work-card__media {
    height: 176px !important;
    min-height: 176px !important;
  }
}


/* =========================================================
   GLOBAL — NATURAL HEADLINE WRAPPING
   ========================================================= */

h1,
h2,
h3 {
  text-wrap: balance;
}


/* =========================================================
   V45 — INSIGHTS MEGA MENU
   ========================================================= */

.mega-insight-link strong {
  font-size: 18px !important;
  line-height: 1.35;
  font-weight: 500;
}

.mega-insight-link span {
  display: none !important;
}


/* =========================================================
   V50 — DESKTOP MEGA MENU HOVER BRIDGE
   ========================================================= */

@media (min-width: 981px) {
  .mega-menu {
    overflow: visible;
  }

  .mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 22px;
    background: transparent;
    pointer-events: auto;
  }
}


/* =========================================================
   V51 — GLOBAL MEGA MENU STABILITY
   ========================================================= */

/*
 * Desktop mega menus are controlled by the global hover-intent JS.
 * Raw CSS :hover must NOT reveal sibling menus, otherwise a diagonal
 * pointer path from Services into its panel can flash/switch to Work.
 */
@media (min-width: 981px) {
  .mega-nav-item > .mega-menu,
  .mega-nav-item:hover > .mega-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
  }

  .mega-nav-item.is-open > .mega-menu,
  .mega-nav-item:focus-within > .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .mega-menu::before {
    top: -24px;
    height: 28px;
  }
}

/* =========================================================
   V51 — MOBILE / TABLET NAV: ONE FULLY SCROLLABLE CONTAINER
   ========================================================= */

@media (max-width: 980px) {
  .site-nav.is-open {
    max-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-bottom: max(56px, env(safe-area-inset-bottom)) !important;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav--mega {
    max-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  /*
   * Avoid nested scroll areas. The outer nav owns the scrolling so the
   * final item of long menus always remains reachable.
   */
  .mega-nav-item.is-open > .mega-menu {
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    padding-bottom: 26px !important;
  }
}

@media (max-width: 620px) {
  .mega-nav-item.is-open > .mega-menu {
    max-height: none !important;
  }
}

/* =========================================================
   V51 — INSIGHTS MEGA MENU: TITLES ONLY
   ========================================================= */

.mega-insight-link strong {
  font-size: 18px !important;
  line-height: 1.35;
}

.mega-insight-link small,
.mega-insight-link > span {
  display: none !important;
}

/* =========================================================
   V51 — RESOURCES MEGA MENU: COMPACT TOP-LEFT ICONS
   ========================================================= */

.mega-resource-card {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.mega-resource-card__visual {
  width: 56px !important;
  height: 56px !important;
  min-height: 56px;
  display: grid !important;
  place-items: center !important;
  margin: 0 0 15px !important;
  border-radius: 16px !important;
  overflow: hidden;
}

.mega-resource-card__visual > * {
  display: none !important;
}

.mega-resource-card__visual::before {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: 600;
}

.mega-resource-card--checklist .mega-resource-card__visual::before {
  content: "✓";
  color: #168060;
}

.mega-resource-card--brief .mega-resource-card__visual::before {
  content: "▤";
  color: #7653a5;
}

.mega-resource-card--cost .mega-resource-card__visual::before {
  content: "$";
  color: #c87527;
}

.mega-resource-card > strong {
  margin-top: 0 !important;
  font-size: 18px !important;
  line-height: 1.25;
}

.mega-resource-card > small {
  text-align: left;
}

/* =========================================================
   V51 — CLIENT LOGO GRID
   ========================================================= */

.client-grid__cell--13 {
  grid-column: 5;
  grid-row: 3;
}

.client-grid__cell--14 {
  grid-column: 6;
  grid-row: 3;
}

.client-grid::before,
.client-grid::after {
  display: none !important;
}

.client-grid__cell--2 img,
.client-grid__cell--9 img,
.client-grid__cell--13 img,
.client-grid__cell--14 img {
  width: min(82%, 180px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .client-grid__cell--13,
  .client-grid__cell--14 {
    grid-column: auto;
    grid-row: auto;
  }
}


/* =========================================================
   V52 — GLOBAL DESKTOP MEGA MENU POSITIONING
   ========================================================= */

@media (min-width: 981px) {
  .site-header {
    position: relative;
  }

  .site-nav--mega {
    position: static !important;
  }

  .mega-menu {
    top: 102px !important;
    left: 50% !important;
    right: auto !important;
    width: min(1180px, calc(100vw - 80px)) !important;
    max-width: calc(100vw - 56px);
    transform: translate(-50%, 8px) !important;
  }

  .mega-nav-item.is-open > .mega-menu,
  .mega-nav-item:focus-within > .mega-menu {
    transform: translate(-50%, 0) !important;
  }

  .mega-menu::before {
    top: -30px !important;
    height: 34px !important;
  }
}


/* =========================================================
   V53 — RESOURCE MEGA MENU ICONS + ALIGNMENT
   ========================================================= */

.mega-resource-grid {
  align-items: stretch !important;
}

.mega-resource-card {
  align-items: flex-start !important;
  justify-content: flex-start;
  text-align: left !important;
}

.mega-resource-card__visual.resource-card__icon {
  width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border-radius: 17px !important;
  overflow: visible !important;
}

.mega-resource-card__visual.resource-card__icon::before {
  display: none !important;
  content: none !important;
}

.mega-resource-card__visual.resource-card__icon svg {
  display: block !important;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-resource-card--checklist .mega-resource-card__visual {
  color: #157c67;
  background:
    radial-gradient(circle at 80% 16%,rgba(71,207,180,.22),transparent 38%),
    linear-gradient(145deg,#eefaf7,#fff) !important;
}

.mega-resource-card--brief .mega-resource-card__visual {
  color: #7153a5;
  background:
    radial-gradient(circle at 82% 15%,rgba(145,113,213,.20),transparent 38%),
    linear-gradient(145deg,#f7f2ff,#fff) !important;
}

.mega-resource-card--cost .mega-resource-card__visual {
  color: #c66b27;
  background:
    radial-gradient(circle at 82% 15%,rgba(255,160,75,.22),transparent 38%),
    linear-gradient(145deg,#fff6eb,#fff) !important;
}

.mega-resource-card > strong,
.mega-resource-card > small,
.mega-resource-card__readmore {
  width: 100%;
  text-align: left !important;
}


/* =========================================================
   V54 — RESOURCES MEGA MENU: NO VISUAL ICON BLOCK
   ========================================================= */

.mega-resource-card__visual {
  display: none !important;
}

.mega-resource-card {
  align-items: flex-start !important;
  text-align: left !important;
}

.mega-resource-card > strong {
  margin-top: 0 !important;
}


/* =========================================================
   V55 — RESOURCES MEGA MENU ICON SIZE
   ========================================================= */

.mega-resource-card__visual,
.mega-resource-card__visual.resource-card__icon {
  display: grid !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  flex: 0 0 58px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  place-items: center !important;
  overflow: hidden !important;
}

.mega-resource-card__visual.resource-card__icon svg {
  width: 28px !important;
  height: 28px !important;
}

.mega-resource-card {
  align-items: flex-start !important;
  text-align: left !important;
}

/* =========================================================
   V55 — HOMEPAGE CONTENT CAROUSELS: ALL ITEMS ACCESSIBLE
   ========================================================= */

@media (min-width: 561px) {
  .insights-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .insights-carousel::-webkit-scrollbar {
    display: none;
  }

  .insight-card {
    flex: 0 0 calc((100% - 84px) / 4);
    scroll-snap-align: start;
  }
}

@media (max-width: 1120px) and (min-width: 561px) {
  .insight-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

.insight-card__art--brand-cover {
  height: 205px;
  background: #eaf2f7;
}

.insight-card__art--brand-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.art--homepage {
  background:
    radial-gradient(circle at 82% 16%,rgba(74,177,255,.48),transparent 38%),
    linear-gradient(145deg,#edf8ff,#dde7f2);
}
.art--homepage .art-homepage {
  position:absolute; inset:58px 34px 28px;
  display:grid; grid-template-columns:1.4fr .8fr; gap:10px;
}
.art--homepage .art-homepage i {
  display:block; border-radius:12px; background:rgba(255,255,255,.82);
  box-shadow:0 10px 25px rgba(14,53,77,.08);
}
.art--homepage .art-homepage i:first-child { grid-row:span 2; }

.art--traffic {
  background:
    radial-gradient(circle at 16% 84%,rgba(255,107,56,.30),transparent 38%),
    linear-gradient(145deg,#edf8f7,#e3edf2);
}
.art--traffic .art-traffic {
  position:absolute; inset:66px 38px 34px;
  display:flex; align-items:flex-end; gap:12px;
}
.art--traffic .art-traffic i {
  flex:1; border-radius:10px 10px 3px 3px; background:#4ab1ff;
}
.art--traffic .art-traffic i:nth-child(1){height:36%}
.art--traffic .art-traffic i:nth-child(2){height:52%}
.art--traffic .art-traffic i:nth-child(3){height:47%}
.art--traffic .art-traffic i:nth-child(4){height:74%;background:#ff6b38}
.art--traffic .art-traffic i:nth-child(5){height:88%}

.art--migration {
  background:
    radial-gradient(circle at 84% 16%,rgba(74,177,255,.44),transparent 38%),
    linear-gradient(145deg,#eff7ff,#eef1f5);
}
.art--migration .art-migration {
  position:absolute; inset:68px 42px 38px;
  display:flex; align-items:center; justify-content:center; gap:22px;
}
.art--migration .art-migration span {
  width:70px;height:70px;border-radius:18px;background:rgba(255,255,255,.88);
  display:grid;place-items:center;font-size:28px;font-weight:600;color:#1462cf;
}
.art--migration .art-migration b { color:#ff6b38;font-size:30px; }

.art--landing {
  background:
    radial-gradient(circle at 15% 85%,rgba(255,107,56,.27),transparent 36%),
    linear-gradient(145deg,#f4f8fb,#eef3ff);
}
.art--landing .art-landing {
  position:absolute; inset:60px 38px 32px;
  border-radius:16px;background:rgba(255,255,255,.86);padding:16px;
}
.art--landing .art-landing i {
  display:block;height:12px;border-radius:999px;background:#dbe7ee;margin-bottom:10px;
}
.art--landing .art-landing i:first-child { width:62%;height:20px;background:#4ab1ff; }
.art--landing .art-landing i:last-child { width:38%;height:28px;background:#ff6b38;margin-top:18px; }


/* =========================================================
   V66 — PERFORMANCE OPTIMIZATION
   ========================================================= */

/* Click-to-load YouTube facade: zero YouTube JS/CSS on initial page load. */
.project-reel__fallback[data-project-reel-play] {
  z-index: 1;
  cursor: pointer;
  user-select: none;
}

.project-reel__fallback[data-project-reel-play]:focus-visible {
  outline: 3px solid rgba(255,255,255,.95);
  outline-offset: -5px;
}

.project-reel__fallback[data-project-reel-play] .video-fallback__play {
  transition: transform .18s ease, box-shadow .18s ease;
}

.project-reel__fallback[data-project-reel-play]:hover .video-fallback__play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
}

.project-reel__video--loaded {
  z-index: 1;
  border: 0;
  pointer-events: none;
}

/* Mobile intentionally uses the lightweight poster rather than decoding
   a decorative 1.3 MB autoplay background video. */
@media (max-width: 820px) {
  .hero__video {
    display: none !important;
  }
}


/* =========================================================
   V68 — AUTOPLAY SELECTED WORK REEL
   ========================================================= */

.project-reel__video--autoplay {
  z-index: 1;
  border: 0 !important;
  pointer-events: none;
  transform: scale(1.025);
  transform-origin: center;
}

.project-reel__label {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: #fff;
  background: rgba(6,25,52,.46);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.project-reel__label-eyebrow {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .16em;
  opacity: .72;
}

.project-reel__label-title {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

@media (max-width: 560px) {
  .project-reel__label {
    top: 12px;
    left: 12px;
    padding: 8px 10px;
  }

  .project-reel__label-title {
    font-size: 13px;
  }
}


/* =========================================================
   V69 — SELF-HOSTED 30S SELECTED WORK REEL
   ========================================================= */

.project-reel__video--native {
  z-index: 1;
  border: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.project-reel__video--native::-webkit-media-controls,
.project-reel__video--native::-webkit-media-controls-panel,
.project-reel__video--native::-webkit-media-controls-play-button,
.project-reel__video--native::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* Hero is intentionally image-only now. */
.hero__video {
  display: none !important;
}
