﻿/* ============================================================
   Squishy Little Agency — landing page styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { text-transform: uppercase; }

@font-face {
  font-family: 'Oswald';
  src: url('Assets/Fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --pink: #DB288D;
  --pink-2: #DB288D;
  --magenta: #DB288D;
  --blue: #031E75;
  --blue-2: #001351;
  --cyan: #00B1DA;
  --yellow: #FFD13E;
  --orange: #FF5F1F;
  --purple: #6706B9;
  --mint: #65EDD3;
  --tile-black: #111114;
  --tile-white: #F2F2F2;

  --bg: #F4F4F4;
  --bg-2: #ECECEC;
  --ink: #0E0E10;
  --muted: #5A5A5F;
  --footer: #0B0F1A;
  --footer-2: #0E1322;

  --container: 1400px;
  --gutter: 24px;

  --radius-card: 18px;
  --radius-tile: 14px;

  --display: 'Oswald', Impact, sans-serif;
  --body: 'Montserrat', sans-serif;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: #FAFBFD;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Display headings ---------- */
.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(56px, 7vw, 100px);
  color: var(--ink);
}
.display-white { color: #F5F2EE; }
.display-sm    { font-size: clamp(36px, 3.4vw, 52px); }

.dot { color: var(--pink); }
.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.eyebrow-cyan { color: var(--cyan); }
.eyebrow-pink { color: var(--pink); }

.lede { color: #cfd2e8; font-size: 15px; line-height: 1.55; margin: 18px 0 26px; }
.muted { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 18px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 9px 16px;
  position: relative;
  box-shadow: 2px 2px 0 var(--pink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover {
  box-shadow: 5px 5px 0 var(--pink);
  transform: translate(-2px, -2px);
}
.btn-pink { background: var(--pink); color: #F5F2EE; padding: 11px 18px; box-shadow: 2px 2px 0 #0E0E10; }
.btn-pink:hover { background: var(--pink); box-shadow: 5px 5px 0 #0E0E10; transform: translate(-2px, -2px); }
.btn-pink-sm { padding: 12px 22px; font-size: 12px; }
.btn-pill-dark {
  background: var(--ink);
  color: #F5F2EE;
  padding: 10px 36px;
  border: 1px solid var(--ink);
  box-shadow: 2px 2px 0 var(--pink);
}
.btn-pill-dark:hover {
  background: #1a1a1e;
  box-shadow: 5px 5px 0 var(--pink);
  transform: translate(-2px, -2px);
}
.btn-pill-white {
  background: #F5F2EE;
  color: var(--ink);
  padding: 16px 30px;
  box-shadow: 2px 2px 0 var(--pink);
}
.btn-pill-white:hover {
  background: #F5F2EE;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--pink);
}

/* ---------- Scroll-progress gradient stripe ---------- */
.progress-stripe {
  width: 100%;
  line-height: 0;
  padding: 0;
}
.progress-bar-wrap {
  position: relative;
  width: 100%;
  height: 5px;
}
.progress-main-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 0 9999px 9999px 0;
  background: linear-gradient(to right,
    #E0257E 0%,
    #A04DD6 30%,
    #3042C8 62%,
    #0BBCD8 100%
  );
  background-size: 100vw 100%;
  background-repeat: no-repeat;
}
.progress-tail {
  position: absolute;
  top: 0;
  height: 5px;
  pointer-events: none;
}
.prog-seg {
  position: absolute;
  border-radius: 9999px;
  background: currentColor;
  top: 0;
  height: 5px;
}
.prog-seg-1 {
  width: 14px;
  left: 5px;
}
.prog-seg-2 {
  width: 9px;
  left: 24px;
  opacity: 0.65;
}
.prog-seg-3 {
  width: 5px;
  left: 38px;
  opacity: 0.35;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #FAFBFD;
  padding: 0 0 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-row .btn { margin-left: 32px; }
.brand { display: block; transition: opacity .2s ease; }
.brand:hover { opacity: .72; }
.brand-mark { display: block; }
.brand-logo {
  width: clamp(96px, 9vw, 138px);
  height: auto;
  object-fit: contain;
  display: block;
}

.primary-nav {
  display: flex;
  justify-self: end;
  gap: clamp(32px, 4vw, 64px);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink);
}
.primary-nav a {
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .22s ease;
}
.primary-nav a:hover { color: var(--pink); }
.primary-nav a:hover::after { width: 100%; }

/* ---------- Burger / Mobile Nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #FAFBFD;
  padding: 8px var(--gutter) 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color .2s ease;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:nth-last-child(2) { border-bottom: none; }
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav .mobile-nav-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  text-align: center;
  padding: 14px 24px;
  font-size: 13px;
  font-family: var(--body);
  border-bottom: none !important;
  color: #fff !important;
}
.nav-open .mobile-nav { display: flex; }

/* ---------- Hero ---------- */
.hero-viewport {
  display: flex;
  flex-direction: column;
}
.hero {
  background: #FAFBFD;
  padding: clamp(120px, 14vh, 180px) 0 clamp(80px, 10vh, 140px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(480px, 1.2fr);
  gap: clamp(12px, 2vw, 32px);
  align-items: end;
}
.hero-copy {
  padding-top: 0;
  min-width: 0;
}
.hero .display {
  font-size: clamp(50px, 6.7vw, 100px);
  line-height: .95;
  transform: scaleY(1.22);
  transform-origin: bottom left;
  display: block;
}
.hero-intro {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}
.hero-copy h1 { flex: 1 1 auto; }
.hero-intro .btn-pink {
  flex: 0 0 auto;
  align-self: flex-end;
  padding: 14px 56px;
  font-size: 13px;
  margin-bottom: 4px;
}
.hero-intro .btn-pink::after { display: none; }
.hero-sub {
  font-size: 22px;
  color: #555;
  margin: 16px 0 0;
  line-height: 1.5;
  max-width: 420px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  overflow: visible;
}
.hero-frame {
  width: min(100%, 540px);
  position: relative;
  overflow: visible;
}
.hero-photo {
  width: 100%;
  height: auto;
  background: none;
  overflow: visible;
}
.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: bottom;
}

/* Floating hero icons */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}
.hero-float {
  position: absolute;
  width: 52px;
  height: 52px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.9)) drop-shadow(0 0 16px rgba(255,255,255,.6));
  transition: opacity 0.32s ease;
}
.float-1 { top: 8%;    left: 4px;  }
.float-2 { top: 6%;    right: 4px; }
.float-3 { bottom: 22%; right: 4px; }
.float-icon-img { width: 100%; height: 100%; object-fit: contain; }

/* Hero chat bubble */
.hero-chat {
  position: absolute;
  bottom: 28%;
  left: -10%;
  right: auto;
  background: rgba(209, 245, 248, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #19b8c8;
  font-family: var(--body);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  border-radius: 9999px;
  padding: 12px 26px;
  white-space: nowrap;
  box-shadow: 0 2px 18px rgba(31,200,216,.15);
  transform: scale(0);
  opacity: 0;
  transform-origin: right center;
  transition: transform 0.65s ease, opacity 0.55s ease;
  pointer-events: none;
  z-index: 5;
}
.hero-chat::after {
  display: none;
}
.hero-chat.visible {
  transform: scale(1);
  opacity: 1;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background:
    linear-gradient(
      to right,
      #F4F4F4 0%,
      #F4F4F4 calc(50% + 490px),
      #0B0F1A calc(50% + 490px),
      #0B0F1A 100%
    );
  padding: 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 280px;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.stat {
  display: flex; align-items: center; justify-content: flex-start; gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid #dcdcdc;
  cursor: default;
}
.stat:hover { background: none; }
.stat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.stat:hover .stat-icon { transform: scale(1.22) rotate(-8deg); }
.stat-icon img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.stat-icon-pink   { background: var(--pink); }
.stat-icon-cyan   { background: var(--cyan); }
.stat-icon-yellow { background: var(--yellow); }
.stat-icon-purple { background: var(--purple); }
.stat-icon-cyan   img { filter: brightness(0); }
.stat-icon-yellow img { filter: brightness(0); }
.stat-num { font-family: var(--display); font-size: clamp(28px, 2.8vw, 44px); font-weight: 700; line-height: 1; white-space: nowrap; }
.stat-num-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}
.stat-num-row .stat-icon { grid-column: 1; grid-row: 1; align-self: center; }
.stat-num-row .stat-num  { grid-column: 2; grid-row: 1; }
.stat-num-row .stat-label { grid-column: 2; grid-row: 2; }
.stat-label { font-size: 12px; color: #555; line-height: 1.35; margin-top: 4px; }
.stat-tile {
  background: #0B0F1A;
  color: #F5F2EE;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  padding: 24px 28px;
  display: flex;
  align-items: center;
}
.stat-tile .dot { color: var(--pink); }
.dot-pink { color: #F5F2EE; }

/* ---------- Liquid blob keyframes (9 unique variants, one per tile) ---------- */
@keyframes blobA {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33%       { border-radius: 40% 60% 70% 30% / 50% 60% 30% 60%; }
  66%       { border-radius: 30% 70% 40% 60% / 40% 30% 60% 70%; }
}
@keyframes blobB {
  0%, 100% { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
  33%       { border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%; }
  66%       { border-radius: 50% 50% 70% 30% / 60% 40% 30% 70%; }
}
@keyframes blobC {
  0%, 100% { border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
  33%       { border-radius: 60% 40% 40% 60% / 30% 70% 30% 70%; }
  66%       { border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%; }
}
@keyframes blobD {
  0%, 100% { border-radius: 55% 45% 35% 65% / 55% 35% 65% 45%; }
  25%       { border-radius: 35% 65% 65% 35% / 45% 55% 35% 65%; }
  50%       { border-radius: 65% 35% 45% 55% / 35% 65% 55% 45%; }
  75%       { border-radius: 45% 55% 55% 45% / 65% 35% 45% 55%; }
}
@keyframes blobE {
  0%, 100% { border-radius: 50% 50% 70% 30% / 30% 70% 50% 50%; }
  40%       { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
  80%       { border-radius: 70% 30% 30% 70% / 50% 50% 70% 30%; }
}
@keyframes blobF {
  0%, 100% { border-radius: 65% 35% 55% 45% / 45% 55% 35% 65%; }
  50%       { border-radius: 35% 65% 45% 55% / 55% 45% 65% 35%; }
}
@keyframes blobG {
  0%, 100% { border-radius: 45% 55% 65% 35% / 65% 45% 55% 35%; }
  33%       { border-radius: 55% 45% 35% 65% / 35% 65% 45% 55%; }
  66%       { border-radius: 35% 65% 55% 45% / 55% 35% 65% 45%; }
}
@keyframes blobH {
  0%, 100% { border-radius: 70% 30% 40% 60% / 40% 60% 70% 30%; }
  50%       { border-radius: 40% 60% 70% 30% / 70% 30% 40% 60%; }
}
@keyframes blobI {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
  25%       { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
  50%       { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
  75%       { border-radius: 60% 40% 50% 50% / 50% 40% 40% 60%; }
}
@keyframes blobCenter {
  0%,100% { border-radius: 68% 32% 58% 42% / 62% 58% 42% 38%; }
  16%     { border-radius: 38% 62% 34% 66% / 44% 38% 62% 56%; }
  33%     { border-radius: 72% 28% 62% 38% / 34% 66% 44% 56%; }
  50%     { border-radius: 30% 70% 44% 56% / 58% 36% 64% 42%; }
  66%     { border-radius: 62% 38% 28% 72% / 42% 70% 30% 58%; }
  83%     { border-radius: 44% 56% 70% 30% / 66% 32% 68% 34%; }
}
@keyframes satCW        { from { transform: rotate(0deg)   translateX(82px);  } to { transform: rotate(360deg)  translateX(82px);  } }
@keyframes satCCW       { from { transform: rotate(0deg)   translateX(68px);  } to { transform: rotate(-360deg) translateX(68px);  } }
@keyframes satCenterCW  { from { transform: rotate(0deg)   translateX(125px); } to { transform: rotate(360deg)  translateX(125px); } }
@keyframes satCenterCCW { from { transform: rotate(0deg)   translateX(108px); } to { transform: rotate(-360deg) translateX(108px); } }

/* ---------- Services panel ---------- */
/* Rule: full stops inside titles on blue backgrounds are yellow */
.services .dot { color: #FFD13E; }

.services {
  background: var(--blue);
  padding: 0;
}
.services-inner {
  background: none;
  border-radius: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 24px;
  padding: 56px var(--gutter);
  color: #F5F2EE;
  overflow: visible;
}
.services-copy { padding-top: 0; }

.wheel {
  position: relative;
  width: 560px;
  height: 540px;
  margin: 0 auto;
  justify-self: center;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.wheel:active { cursor: grabbing; }
.wheel-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 180px; height: 180px;
  background: #0E0E10;
  border-radius: 68% 32% 58% 42% / 62% 58% 42% 38%;
  animation: blobCenter 14s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  gap: 4px;
  cursor: default;
  overflow: hidden;
  transition: box-shadow .3s ease;
}

/* Center fill — the living colour blob that builds up */
.center-fill {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  opacity: 0;
  transition: background 0.5s ease;
  pointer-events: none;
}

/* Content wrapper inside center */
.wheel-center-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  transition: opacity .35s ease, transform .35s ease;
}

/* Burst prompt — shown when tiles are absorbed */
.wheel-center-burst {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.burst-hint {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: #F5F2EE;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* Active state: tiles have been absorbed */
.wheel-center--active {
  cursor: pointer;
}
.wheel-center--active .wheel-center-content {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}
.wheel-center--active .wheel-center-burst {
  opacity: 1;
  pointer-events: auto;
}
.wheel-center-ico {
  width: 52px; height: 52px;
  object-fit: contain;
  display: block;
  image-rendering: pixelated;
  filter: brightness(0) invert(1);
}
.wheel-slogan {
  margin: 4px 0 0;
  color: #F5F2EE;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.05;
}

/* Roulette ring — 0×0 pivot point at center */
.wheel-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.tile {
  position: absolute;
  width: 108px; height: 108px;
  left: -54px; top: -54px;
  /* orbital angle set via --ta inline style */
  transform: rotate(var(--ta, 0deg)) translateY(-215px);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: visible; /* must stay visible so .sat droplets can orbit outside the tile */
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  will-change: transform;
  border: 0;
  padding: 0;
  transition: box-shadow .25s ease;
}
.tile--absorbed {
  visibility: hidden;
  pointer-events: none !important;
}
/* Ghost tiles created by JS for fly animations */
.tile-ghost {
  position: fixed;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 9999;
  pointer-events: none;
  animation: blobCenter 2s ease-in-out infinite;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transform-origin: center center;
}
.tile-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.05;
  padding: 8px 6px;
  transition: scale .18s ease;
  will-change: transform;
}
.tile:hover:not(.tile--absorbed) { box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.tile:hover:not(.tile--absorbed) .tile-inner { scale: 1.06; }
.tile-ico-img { width: 30px; height: 30px; object-fit: contain; display: block; flex-shrink: 0; }

/* Satellite droplets */
.sat {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.82;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Tile colours + individual blob animations (staggered durations/delays) */
.tile-strategy   { background: #031e75; animation: blobA 5.0s ease-in-out infinite 0.0s; }
.tile-strategy .tile-inner { color: #F5F2EE; }
.tile-strategy .tile-ico-img { filter: brightness(0) invert(1); }
.tile-social     { background: #00B1DA;   animation: blobB 4.5s ease-in-out infinite 0.5s; }
.tile-social .tile-inner { color: #F5F2EE; }
.tile-social .tile-ico-img { filter: brightness(0) invert(1); }
.tile-creative   { background: #DB288D;   animation: blobC 6.2s ease-in-out infinite 1.0s; }
.tile-creative .tile-inner { color: #F5F2EE; }
.tile-creative .tile-ico-img { filter: brightness(0) invert(1); }
.tile-influencer { background: #6706B9; animation: blobD 4.0s ease-in-out infinite 1.5s; }
.tile-influencer .tile-inner { color: #F5F2EE; }
.tile-influencer .tile-ico-img { filter: brightness(0) invert(1); }
.tile-email      { background: #FFB179;   animation: blobE 5.5s ease-in-out infinite 0.7s; }
.tile-email .tile-inner { color: #0E0E10; }
.tile-email .tile-ico-img { filter: brightness(0); }
.tile-paid       { background: #FF5F1F; animation: blobF 4.8s ease-in-out infinite 1.2s; }
.tile-paid .tile-inner { color: #F5F2EE; }
.tile-paid .tile-ico-img { filter: brightness(0) invert(1); }
.tile-seo        { background: #FFD13E; animation: blobG 5.2s ease-in-out infinite 0.3s; }
.tile-seo .tile-inner { color: #0E0E10; }
.tile-seo .tile-ico-img { filter: brightness(0); }
.tile-websites   { background: var(--tile-white); animation: blobH 4.3s ease-in-out infinite 0.9s; }
.tile-websites .tile-inner { color: #0E0E10; }
.tile-ai         { background: var(--tile-black); animation: blobI 6.5s ease-in-out infinite 0.6s; }
.tile-ai .tile-inner { color: #F5F2EE; }

.wheel-hint {
  position: absolute;
  right: 36px; top: 36%;
  color: #F5F2EE;
  font-family: var(--display);
  font-size: 12px;
  line-height: 1.1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.wheel-hint .cursor { margin-top: 4px; }

/* ---------- Cases ---------- */
.cases { background: var(--bg); padding: 60px 0; }
.cases-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 18px;
  align-items: stretch;
}
a.case-card {
  text-decoration: none;
  color: inherit;
}
.case-card {
  position: relative;
  background: #F5F2EE;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,.13);
}
.case-img {
  height: 120px;
  background: #d8d8d8 center/cover no-repeat;
  overflow: hidden;
}
.case-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .38s ease;
}
.case-card:hover .case-img img { transform: scale(1.07); }
.case-meta { padding: 10px 12px 36px; }
.case-tag { font-size: 9px; font-weight: 800; color: var(--pink); margin: 0 0 2px; }
.case-industry { font-size: 9px; font-weight: 500; color: var(--muted); margin: 0 0 12px; }
.case-num { font-family: var(--display); font-size: 30px; line-height: 1; margin: 0 0 6px; transform: scaleX(1.05); transform-origin: left; }
.case-label { font-size: 9px; font-weight: 800; letter-spacing: normal; color: #111; line-height: 1.4; margin: 0; }
.case-arrow {
  position: absolute;
  right: 8px; bottom: 8px;
  width: 26px; height: 26px;
  background: #F5F2EE;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: background .2s ease;
}
.case-card:hover .case-arrow { background: var(--pink); }
.case-arrow-ico {
  width: 14px; height: 14px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: brightness(0);
  transition: filter .2s ease;
}
.case-card:hover .case-arrow-ico { filter: brightness(0) invert(1); }
.cases-heading { padding-left: 10px; align-self: center; }
.cases-heading .display-sm { margin: 6px 0 16px; }
.link-pink {
  color: var(--pink);
  font-weight: 800;
  font-size: 12px;
  position: relative;
  display: inline-block;
}
.link-pink::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .22s ease;
}
.link-pink:hover { color: var(--pink); }
.link-pink:hover::after { width: 100%; }

/* ---------- Testimonial ---------- */
.testimonial { background: #FAFBFD; padding: 80px 0 60px; }
.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.quote-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.quote-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.quote-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D0D0D0;
  transition: background .2s ease, transform .2s ease;
}
.quote-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}
.quote-prev,
.quote-next-btn {
  width: 34px; height: 34px;
  border: none;
  background: #F4F4F4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s ease, transform .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
.quote-prev img { transform: rotate(180deg); }
.quote-prev:hover,
.quote-next-btn:hover {
  background: var(--pink);
  transform: translate(-1px, -1px);
}
.quote-prev:hover img,
.quote-next-btn:hover img { filter: brightness(0) invert(1); }

.quote-slider { position: relative; }
.quote-card {
  display: none;
  position: relative;
  background: #F4F4F4;
  border-radius: 16px;
  padding: 60px 56px 32px 56px;
  min-height: 220px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote-card.active { display: block; }
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
}
.quote-mark-img {
  position: absolute;
  top: 24px; left: 28px;
  width: 48px;
  height: auto;
  display: block;
  image-rendering: pixelated;
  filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%);
}
.quote-text { font-size: 18px; line-height: 1.45; margin: 28px 0 28px; color: #0E0E10; min-height: 80px; }
.quote-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.quote-name { font-family: var(--display); font-size: 16px; margin: 0 0 4px; }
.quote-role { font-size: 10px; font-weight: 700; color: #555; margin: 0; line-height: 1.4; }
.quote-logo-img { height: 36px; max-width: 120px; width: auto; object-fit: contain; opacity: .7; filter: grayscale(1); }
.quote-logo-img:hover { opacity: 1; filter: none; }
.partners { background: #FAFBFD; padding: 36px 0 0; }
.partners-spacer { height: 50px; background: #FAFBFD; }
.marquee-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-list {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 0 36px;
  list-style: none;
  margin: 0;
  flex-shrink: 0;
}
.marquee-list li { display: flex; align-items: center; justify-content: center; width: 160px; height: 52px; flex-shrink: 0; }
.marquee-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter .25s ease;
}
.marquee-list img:hover { filter: grayscale(0) opacity(1); }
.logo-creative { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 11px; line-height: 1.3; color: #0E0E10; opacity: .6; }
.logo-ali { font-family: 'Montserrat', sans-serif; font-style: italic; font-size: 14px; line-height: 1.2; color: #0E0E10; opacity: .6; white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Dual CTA ---------- */
.dual-cta-wrap {
  background: linear-gradient(to right, #DB288D 50%, #001351 50%);
}
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  max-width: var(--container);
  margin: 0 auto;
}
.cta-pink {
  background: #DB288D;
  color: #F5F2EE;
  padding: 56px 64px 56px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.cta-pink:hover { background: #DB288D; }
.cta-pink .display-sm { color: #F5F2EE; line-height: .98; }
.cta-pink .display-sm .dot-white { color: #65EDD3; }
.cta-pink .btn { align-self: flex-start; margin-top: 8px; }
.cta-pink .btn { box-shadow: 2px 2px 0 #0E0E10; }
.cta-pink .btn:hover { box-shadow: 5px 5px 0 #0E0E10; }

.cta-dark {
  position: relative;
  background: #001351;
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  overflow: visible;
}

.cta-dark-text { display: flex; flex-direction: column; gap: 8px; justify-content: center; align-self: center; }
.cta-dark-text .col-head { margin-bottom: 6px; color: #F5F2EE; }
.cta-dark-body { font-size: 14px; line-height: 1.5; color: #cfd2e8; max-width: 320px; margin-top: 0; margin-bottom: 12px; }
.cta-dark .btn { align-self: flex-start; margin-top: 8px; }
.cta-dark .btn { box-shadow: 2px 2px 0 var(--pink); }
.cta-dark .btn:hover { box-shadow: 5px 5px 0 var(--pink); }
.cta-dark-photo {
  position: relative;
  height: 220px;
}
.cta-blob {
  position: absolute;
  right: 10px; top: 10px;
  width: 240px; height: 200px;
  background: radial-gradient(ellipse at 35% 35%, #DB288D 0%, #6706B9 55%, #00B1DA 100%);
  border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%;
  opacity: .95;
}
.cta-dark-photo img {
  position: absolute;
  right: -40px;
  bottom: 0;
  top: -60px;
  height: calc(100% + 60px);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.footer-contact-btn { margin-top: 8px; align-self: flex-start; }
.footer-logo-link { display: inline-block; margin-bottom: 20px; }
.footer-logo { height: auto; width: 200px; display: block; }
.footer-brand { padding-right: 12px; }
.footer-tag { font-size: 13px; line-height: 1.5; color: #cfd2e8; margin: 0 0 12px; }

.footer-col ul { display: flex; flex-direction: column; gap: 6px; margin: 0 0 16px; }
.footer-col {
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 24px;
}
.footer-col a:not(.btn) {
  color: #cfd2e8;
  font-size: 13px;
  display: inline-block;
  transition: color .18s ease, transform .18s ease;
}
.footer-col a:not(.btn):hover { color: #FFD13E; transform: translateX(4px); }
.footer-col:has(.col-head-cyan) a:not(.btn):hover { color: #00B1DA; }
.col-head { font-family: var(--display); font-size: 16px; margin: 0 0 14px; }
.col-head-cyan { color: #00B1DA; }
.col-head-yellow { color: var(--yellow); }
.col-head-magenta { color: #FF3D8A; }
.col-head-purple { color: var(--purple); }
.col-head-pink { color: #DB288D; }

.col-cta {
  font-size: 11px;
  font-weight: 800;
  display: inline-block;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease;
}
.col-cta:hover { transform: translateX(5px); opacity: 1 !important; }
.col-cta-cyan   { color: var(--cyan) !important; }
.col-cta-yellow { color: var(--yellow) !important; }
.col-cta-magenta { color: #FF3D8A !important; }
.col-cta-purple { color: var(--purple) !important; }
.col-cta-pink   { color: var(--pink) !important; }

.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 26px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item {
  display: flex; align-items: center; gap: 14px;
  transition: transform .2s ease;
  cursor: default;
}
.contact-item:hover { transform: translateX(4px); }
.contact-ico-img { filter: brightness(0) invert(1); display: block; }
.contact-ico-dark { filter: brightness(0); }
.contact-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.contact-item:hover .contact-ico { transform: scale(1.2) rotate(-10deg); }
.contact-ico-pink { background: #DB288D; }
.contact-ico-cyan { background: #00B1DA; color: #0E0E10; }
.contact-ico-purple { background: #6706B9; }
.contact-label { font-size: 10px; font-weight: 800; color: #DB288D; margin: 0 0 2px; }
.contact-item:nth-child(2) .contact-label { color: #00B1DA; }
.contact-item:nth-child(3) .contact-label { color: #6706B9; }
.contact-val { margin: 0; font-size: 13px; color: #fff; }
.contact-follow { flex-direction: row; align-items: center; gap: 10px; }
.social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .22s cubic-bezier(.34,1.56,.64,1);
}
.social:hover { background: var(--cyan); transform: scale(1.2) translateY(-2px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 12px;
  color: #8a90a3;
}
.footer-bottom a { transition: color .18s ease; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (min-width: 2000px) {
  :root {
    --container: 1800px;
    --gutter: 40px;
    --radius-card: 22px;
    --radius-tile: 18px;
  }

  /* Typography */
  .display { font-size: clamp(100px, 7vw, 130px); }
  .display-sm { font-size: clamp(52px, 3.4vw, 68px); }
  .eyebrow { font-size: 14px; }
  .lede, .muted { font-size: 17px; }

  /* Buttons */
  .btn { font-size: 14px; padding: 11px 20px; }
  .btn-pink { padding: 14px 22px; }
  .hero-intro .btn-pink { padding: 18px 68px; font-size: 15px; }
  .btn-pill-dark { padding: 13px 44px; }
  .btn-pill-white { padding: 20px 38px; }

  /* Header */
  .brand-logo { width: clamp(138px, 9vw, 172px); }
  .primary-nav { font-size: 14px; }
  .header-row { padding-top: 14px; padding-bottom: 14px; }

  /* Hero */
  .hero { padding: clamp(140px, 14vh, 220px) 0 clamp(100px, 10vh, 170px); }
  .hero-row { grid-template-columns: minmax(0, 1.4fr) minmax(600px, 1.2fr); }
  .hero-frame { width: min(100%, 680px); }
  .hero-photo img { max-height: 85vh; }
  .hero .display { font-size: clamp(80px, 6.7vw, 130px); }
  .hero-intro { gap: 60px; }
  .hero-chat { font-size: 20px; padding: 14px 32px; }
  .hero-float { width: 64px; height: 64px; }

  /* Stat strip */
  .stat-strip {
    background:
      linear-gradient(
        to right,
        #F4F4F4 0%,
        #F4F4F4 calc(50% + 580px),
        #0B0F1A calc(50% + 580px),
        #0B0F1A 100%
      );
  }
  .stat-row { grid-template-columns: repeat(4, 1fr) 340px; }
  .stat { padding: 28px 34px; gap: 18px; }
  .stat-icon { width: 54px; height: 54px; }
  .stat-num { font-size: clamp(38px, 2.8vw, 56px); }
  .stat-label { font-size: 14px; }
  .stat-tile { font-size: 26px; padding: 28px 34px; }

  /* Services */
  .services-inner { padding: 72px var(--gutter); gap: 32px; }
  .wheel { width: 780px; height: 760px; }
  .tile { width: 128px; height: 128px; left: -64px; top: -64px; transform: rotate(var(--ta, 0deg)) translateY(-300px); }
  .tile-inner { font-size: 13px; }
  .tile-ico-img { width: 38px; height: 38px; }
  .wheel-center { width: 220px; height: 220px; }
  .wheel-center-ico { width: 64px; height: 64px; }
  .wheel-slogan { font-size: 16px; }

  /* Cases */
  .cases { padding: 80px 0; }
  .case-img { height: 150px; }
  .case-meta { padding: 14px 16px 44px; }
  .case-tag { font-size: 11px; }
  .case-num { font-size: 38px; }
  .case-label { font-size: 11px; }

  /* Testimonial */
  .quote-text { font-size: 21px; }
  .quote-name { font-size: 19px; }
  .quote-role { font-size: 12px; }
  .quote-card { padding: 48px 68px 40px; }
  .quote-mark { font-size: 100px; }

  /* Dual CTA */
  .dual-cta { max-width: var(--container); }
  .cta-pink { padding: 72px 80px 72px var(--gutter); }
  .cta-dark { padding: 56px var(--gutter) 56px 72px; overflow: visible; }
  .cta-dark-body { font-size: 16px; max-width: 380px; }
  .cta-dark-photo { height: 320px; }
  .cta-dark-photo img { top: -120px; height: calc(100% + 120px); }
  .cta-blob { width: 320px; height: 280px; }

  /* Footer */
  .social { width: 48px; height: 48px; }
  .footer-logo { width: 240px; }
  .footer-tag { font-size: 15px; }
  .footer-col a:not(.btn) { font-size: 15px; }
  .col-head { font-size: 19px; }
  .contact-val { font-size: 15px; }
  .contact-label { font-size: 12px; }
  .contact-ico { width: 48px; height: 48px; }
  .footer-bottom { font-size: 14px; }
}

@media (min-width: 2560px) {
  :root {
    --container: 2200px;
    --gutter: 48px;
  }

  /* Typography */
  .display { font-size: clamp(130px, 7vw, 160px); }
  .display-sm { font-size: clamp(68px, 3.4vw, 84px); }
  .eyebrow { font-size: 16px; }
  .lede, .muted { font-size: 19px; }

  /* Buttons */
  .btn { font-size: 16px; padding: 13px 24px; }
  .btn-pink { padding: 16px 26px; }
  .hero-intro .btn-pink { padding: 22px 80px; font-size: 17px; }
  .btn-pill-dark { padding: 15px 52px; }
  .btn-pill-white { padding: 22px 44px; }

  /* Header */
  .brand-logo { width: clamp(172px, 9vw, 210px); }
  .primary-nav { font-size: 16px; }
  .header-row { padding-top: 18px; padding-bottom: 18px; }

  /* Hero */
  .hero { padding: clamp(160px, 14vh, 260px) 0 clamp(120px, 10vh, 200px); }
  .hero-row { grid-template-columns: minmax(0, 1.4fr) minmax(720px, 1.2fr); }
  .hero-frame { width: min(100%, 820px); }
  .hero-photo img { max-height: 88vh; }
  .hero .display { font-size: clamp(100px, 6.7vw, 160px); }
  .hero-intro { gap: 72px; }
  .hero-chat { font-size: 24px; padding: 16px 38px; }
  .hero-float { width: 76px; height: 76px; }

  /* Stat strip */
  .stat-strip {
    background:
      linear-gradient(
        to right,
        #F4F4F4 0%,
        #F4F4F4 calc(50% + 772px),
        #0B0F1A calc(50% + 772px),
        #0B0F1A 100%
      );
  }
  .stat-row { grid-template-columns: repeat(4, 1fr) 400px; }
  .stat { padding: 34px 42px; gap: 22px; }
  .stat-icon { width: 64px; height: 64px; }
  .stat-num { font-size: clamp(48px, 2.8vw, 68px); }
  .stat-label { font-size: 16px; }
  .stat-tile { font-size: 30px; padding: 34px 42px; }

  /* Services */
  .services-inner { padding: 88px var(--gutter); gap: 40px; }
  .wheel { width: 820px; height: 800px; }
  .tile { width: 150px; height: 150px; left: -75px; top: -75px; transform: rotate(var(--ta, 0deg)) translateY(-315px); }
  .tile-inner { font-size: 15px; }
  .tile-ico-img { width: 46px; height: 46px; }
  .wheel-center { width: 260px; height: 260px; }
  .wheel-center-ico { width: 78px; height: 78px; }
  .wheel-slogan { font-size: 18px; }

  /* Cases */
  .cases { padding: 96px 0; }
  .case-img { height: 180px; }
  .case-meta { padding: 18px 20px 52px; }
  .case-tag { font-size: 13px; }
  .case-num { font-size: 46px; }
  .case-label { font-size: 13px; }

  /* Testimonial */
  .quote-text { font-size: 24px; }
  .quote-name { font-size: 22px; }
  .quote-role { font-size: 13px; }
  .quote-card { padding: 56px 80px 48px; }
  .quote-mark { font-size: 120px; }

  /* Dual CTA */
  .dual-cta { max-width: var(--container); }
  .cta-pink { padding: 88px 96px 88px var(--gutter); }
  .cta-dark { padding: 72px var(--gutter) 72px 88px; }
  .cta-dark-body { font-size: 18px; max-width: 440px; }

  /* Footer */
  .footer-logo { width: 280px; }
  .footer-tag { font-size: 17px; }
  .footer-col a:not(.btn) { font-size: 17px; }
  .col-head { font-size: 22px; }
  .contact-val { font-size: 17px; }
  .contact-label { font-size: 13px; }
  .contact-ico { width: 56px; height: 56px; }
  .social { width: 56px; height: 56px; }
  .footer-bottom { font-size: 15px; }
}

@media (max-width: 1100px) {
  :root { --gutter: 24px; }
  .hero-row { min-height: auto; }
  .hero-copy { padding-top: 36px; }
  .hero-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .hero-copy .btn-pink {
    align-self: flex-start;
    margin-bottom: 0;
  }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-tile { grid-column: 1 / -1; margin-right: 0; }
  .services-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .wheel { width: 420px; height: 420px; }
  .wheel-hint { display: none; }
  .cases-row { grid-template-columns: repeat(2, 1fr); }
  .cases-heading { order: -1; padding-left: 0; grid-column: 1 / -1; }
  .testimonial-row { grid-template-columns: 1fr; }
  /* partners marquee constrained to container; mask handles side fades */
  .dual-cta { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: unset;
  }
  .header-row .btn-pill-dark { display: none; }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .hero { padding: clamp(80px, 10vh, 120px) 0 clamp(60px, 8vh, 100px); }
  .hero-frame { width: min(100%, 340px); }
  .hero-photo img { max-height: 60vh; }
  .hero-row { grid-template-columns: minmax(0, 1.4fr) minmax(420px, 1fr); }
  .hero-sub { font-size: 15px; max-width: 100%; text-align: left; }
  .stat-row { grid-template-columns: repeat(4, 1fr); align-items: start; }
  .stat { border-right: none; }
  .stat-tile { grid-column: 1 / -1; }
  .cta-dark {
    grid-template-columns: 1fr 220px;
    grid-template-areas: "heading heading" "body body" "cta photo";
    overflow: hidden;
    padding: 40px var(--gutter) 0;
    gap: 8px 0;
  }
  .cta-dark-text { display: contents; }
  .cta-dark-text .col-head { grid-area: heading; }
  .cta-dark-text .cta-dark-body { grid-area: body; }
  .cta-dark-text a.btn { grid-area: cta; margin-top: 8px; justify-self: start; }
  .cta-dark-photo { grid-area: photo; height: auto; align-self: end; position: relative; width: 220px; }
  .cta-dark-photo img { position: relative; right: auto; top: auto; bottom: auto; height: auto; width: 220px; }

}
@media (max-width: 720px) {
  .brand-logo { width: 94px; }
  .btn { font-size: 13px; }
  .site-header { padding-bottom: 0; }
  .hero {
    padding-top: 20px;
    padding-bottom: 48px;
  }
  .hero-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  /* display:contents lets h1, btn, and hero-visual all become direct flex
     children of .hero-row so we can reorder them independently */
  .hero-copy { display: contents; }
  .hero-intro { display: contents; }
  .hero .display {
    order: 0;
    margin-top: 40px;
    font-size: clamp(52px, 14vw, 80px);
  }
  .hero-visual {
    order: 2;
    justify-content: center;
    width: 100%;
  }
  .hero-frame { width: 100%; max-width: 260px; margin: 0 auto; }
  .hero-photo img { max-height: 280px; }
  .hero-sub { font-size: 16px; max-width: 100%; text-align: left; align-self: flex-start; order: 1; }
  .hero-intro .btn-pink {
    order: 3;
    transform: none !important;
    align-self: center;
    width: auto;
    padding: 16px 32px;
    font-size: 13px;
  }
  .hero-chat { font-size: 13px; padding: 9px 18px; left: 0; right: auto; }
  .hero-float { width: 36px; height: 36px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .stat { border-right: none; }
  .stat-num-row .stat-label { grid-column: 1 / -1; grid-row: 2; margin-top: 8px; }
  .cases-row { grid-template-columns: 1fr; }
  .cases-heading { order: -1; padding-left: 0; }
  .wheel { width: 300px; height: 300px; }
  .tile { width: 72px; height: 72px; left: -36px; top: -36px; transform: rotate(var(--ta, 0deg)) translateY(-120px); }
  .tile-inner { font-size: 8px; gap: 3px; padding: 4px; }
  .tile-ico-img { width: 20px; height: 20px; }
  .wheel-center { width: 120px; height: 120px; }
  .wheel-center-ico { width: 36px; height: 36px; }
  .wheel-slogan { font-size: 8px; }
  .svc-steps::before { display: block; }
  .cta-dark {
    grid-template-columns: 1fr 180px;
    grid-template-rows: auto auto auto;
    grid-template-areas: "heading heading" "body body" "cta photo";
    overflow: hidden;
    padding: 32px var(--gutter) 0;
    gap: 8px 0;
  }
  .cta-dark-text { display: contents; }
  .cta-dark-text .col-head { grid-area: heading; }
  .cta-dark-text .cta-dark-body { grid-area: body; }
  .cta-dark-text a.btn { grid-area: cta; margin-top: 8px; justify-self: start; }
  .cta-dark-photo { grid-area: photo; height: auto; align-self: end; position: relative; width: 180px; }
  .cta-dark-photo img { position: relative; right: auto; top: auto; bottom: auto; height: auto; width: 180px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-left: none; padding-left: 0; }
  .footer-contact { grid-template-columns: 1fr; border-top: none; border-bottom: none; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .contact-follow { margin-left: 0; justify-self: start; }
  .contact-follow .social { order: -1; }
}

/* ============================================================
   Contact Page
   ============================================================ */

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

/* ---------- Contact Section Layout ---------- */
.contact-section {
  background: #FAFBFD;
  padding: clamp(80px, 10vh, 120px) 0 clamp(60px, 8vh, 100px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* ---------- Left Column ---------- */
.contact-heading {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.92;
  margin: 0 0 28px;
}

.contact-heading-pink {
  color: var(--pink);
}

.contact-heading-heart {
  display: inline-block;
  width: clamp(30px, 3vw, 44px);
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -3px;
  image-rendering: pixelated;
}

.contact-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 40px;
}

/* ---------- Contact Card Items ---------- */
.contact-cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(14,14,16,0.09);
  transition: transform .2s ease;
  cursor: default;
}

.contact-card-item:last-child { border-bottom: none; }

.contact-card-item:hover { transform: translateX(4px); }

.contact-card-ico-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}

.contact-card-item:hover .contact-card-ico-box {
  transform: scale(1.15) rotate(-8deg);
}

.contact-card-ico-blue   { background: var(--blue); }
.contact-card-ico-cyan   { background: var(--cyan); }
.contact-card-ico-pink   { background: var(--pink); }
.contact-card-ico-yellow { background: var(--yellow); }

.contact-card-ico-img  { filter: brightness(0) invert(1); display: block; image-rendering: pixelated; }
.contact-card-ico-dark { filter: brightness(0); }

.contact-card-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 3px;
  letter-spacing: 0.04em;
}

.contact-card-val {
  font-size: 13px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

.contact-card-item--link { cursor: pointer; }

.contact-card-link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.contact-card-item--link:hover .contact-card-label,
.contact-card-item--link:hover .contact-card-val {
  color: var(--pink);
}

/* ---------- Right Column ---------- */
.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.contact-eyebrow-arrow {
  display: inline-block;
  image-rendering: pixelated;
  /* convert the SVG fill to cyan #00B1DA */
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(650%) hue-rotate(162deg) brightness(100%);
}

/* ---------- Form ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { position: relative; }

/* Service pick chips */
.service-picks {
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  margin: 0;
}

.service-picks-label {
  font-family: var(--body);
  font-size: 14px;
  color: #9a9aaa;
  padding: 0 4px;
  margin-bottom: 10px;
  display: block;
}

.service-picks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pick-chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.pick-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.pick-chip span {
  display: inline-block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #D8D8D8;
  border-radius: 20px;
  padding: 6px 14px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.pick-chip:hover span {
  border-color: var(--pink);
  color: var(--pink);
}

.pick-chip input[type="checkbox"]:checked + span {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.pick-chip input[type="checkbox"]:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(219,40,141,0.2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  background: #F4F4F4;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  display: block;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9a9aaa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(219,40,141,0.12);
}

.form-group-select { position: relative; }

.form-select {
  cursor: pointer;
  padding-right: 44px;
}

.form-select:required:invalid { color: #9a9aaa; }
.form-select:required:valid   { color: var(--ink); }

.form-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-chevron-img {
  display: block;
  image-rendering: pixelated;
  filter: brightness(0) opacity(0.45);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 28px;
  font-size: 13px;
}

.form-result {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-result--success {
  background: #d1fae5;
  color: #065f46;
  border: 1.5px solid #6ee7b7;
}
.form-result--error {
  background: #ffe4e6;
  color: #9f1239;
  border: 1.5px solid #fca5a5;
}

.contact-btn-arrow {
  display: inline-block;
  image-rendering: pixelated;
  filter: brightness(0) invert(1);
}

/* ---------- CTA Card ---------- */
.contact-cta-card {
  background: #FFD13E;
  border-radius: 16px;
  padding: 24px 24px 24px 180px;
  margin-top: 56px;
  overflow: visible;
  position: relative;
}

.contact-cta-alex {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 170px;
  width: auto;
  object-fit: contain;
  object-position: bottom left;
  display: block;
  border-bottom-left-radius: 16px;
}

.contact-cta-text {
  flex: 1;
  min-width: 0;
}

.contact-cta-heading {
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-cta-body {
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 14px;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 12px;
}

.contact-cta-heart {
  width: 52px;
  height: auto;
  flex-shrink: 0;
  image-rendering: pixelated;
  align-self: flex-start;
  display: block;
}

/* ---------- Contact Page Responsive ---------- */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-heading {
    font-size: clamp(36px, 7vw, 56px);
  }

  .contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }

  .contact-card-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 720px) {
  .contact-section {
    padding: 56px 0 60px;
  }

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

  .contact-cta-card {
    flex-wrap: wrap;
  }

  .contact-cta-heart {
    display: none;
  }
}

/* ============================================================
   Work Page + Case Study Pages
   ============================================================ */

/* ---------- Accent color tokens (applied on .cs-hero etc.) ---------- */
.cs-accent-pink   { --cs-accent: #DB288D; }
.cs-accent-cyan   { --cs-accent: #00B1DA; }
.cs-accent-orange { --cs-accent: #FF5F1F; }
.cs-accent-purple { --cs-accent: #6706B9; }
.cs-accent-yellow { --cs-accent: #FFD13E; }
.cs-accent-mint   { --cs-accent: #65EDD3; }
.cs-accent-blue   { --cs-accent: #1B2A8C; }

/* ---------- Work Hero ---------- */
.work-hero {
  background: #FAFBFD;
  padding: clamp(120px, 14vh, 180px) 0 clamp(80px, 10vh, 120px);
  overflow: hidden;
}
.work-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.work-hero-copy { padding-top: 0; }
.work-hero-copy .eyebrow { letter-spacing: 0.1em; margin-bottom: 16px; }
.work-hero-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.work-hero-heading .display-pink { display: block; }
.work-hero-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 20px 0 32px;
  max-width: 480px;
}
.work-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.work-hero-frame {
  position: relative;
  width: min(100%, 540px);
  overflow: visible;
}
.work-hero-frame img.work-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.work-sparkle {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 52px;
  height: 52px;
  image-rendering: pixelated;
  filter: brightness(0) saturate(100%) invert(88%) sepia(55%) saturate(750%) hue-rotate(345deg) brightness(105%);
  z-index: 5;
  animation: sparkleFloat 3.5s ease-in-out infinite;
}
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(15deg); }
}
.work-float {
  position: absolute;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.7));
}
.work-float img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.work-float-1 { top: 12%; left: -16px; }
.work-float-2 { bottom: 28%; right: -16px; }

/* ---------- Case Study Rows (work.html) ---------- */
.work-cases { background: #FAFBFD; padding: 60px 0 80px; }
.work-cases-inner { display: flex; flex-direction: column; gap: 0; }
.case-row {
  display: grid;
  grid-template-columns: 400px 1fr 220px;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid rgba(14,14,16,0.08);
}
.case-row:last-child { border-bottom: none; }
.case-row-img-wrap {
  overflow: hidden;
  position: relative;
  min-height: 260px;
  border-radius: 14px 0 0 14px;
}
.case-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.case-row:hover .case-row-img { transform: scale(1.05); }
.case-row-body {
  padding: 36px 44px;
  background: #FAFBFD;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.case-row-tag {
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid currentColor;
  border-radius: 9999px;
  padding: 3px 10px;
  color: var(--card-accent, var(--pink));
}
.case-row-tag--cyan   { color: var(--cyan); }
.case-row-tag--purple { color: var(--purple); }
.case-row-tag--orange { color: var(--orange); }
.case-row-tag--yellow { color: #937000; }
.case-row-tag--mint   { color: #0d8c75; }
.case-row-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 0.97;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
.case-row-headline .hl-pink,
.case-row-headline .hl-cyan,
.case-row-headline .hl-orange,
.case-row-headline .hl-purple,
.case-row-headline .hl-yellow,
.case-row-headline .hl-mint   { color: inherit; }
.case-row-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 540px;
}
.case-row-cta {
  font-family: var(--body);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--card-accent, var(--pink));
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .2s ease;
}
.case-row-cta:hover { gap: 12px; }
.case-row-cta-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  -webkit-mask: url('Assets/Pixel Icons/Arrow.svg') no-repeat center / contain;
  mask: url('Assets/Pixel Icons/Arrow.svg') no-repeat center / contain;
  background-color: currentColor;
}
.case-row-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 24px;
  background: var(--stat-bg, transparent);
  border-radius: 0 16px 16px 0;
  align-self: stretch;
  justify-content: center;
}
.cs-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cs-stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-stat-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: brightness(0) invert(1);
  display: block;
}
.cs-stat-icon--pink   { background: var(--pink); }
.cs-stat-icon--cyan   { background: var(--cyan); }
.cs-stat-icon--orange { background: var(--orange); }
.cs-stat-icon--purple { background: var(--purple); }
.cs-stat-icon--yellow { background: var(--yellow); }
.cs-stat-icon--yellow img { filter: brightness(0); }
.cs-stat-icon--mint   { background: var(--mint); }
.cs-stat-icon--mint img { filter: brightness(0); }
.cs-stat-icon--blue   { background: var(--blue); }
.cs-stat-body { min-width: 0; }
.cs-stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 4px;
}
.cs-stat-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   Individual Case Study Pages
   ============================================================ */

/* ---------- Tags bar ---------- */
.cs-tags-bar {
  background: #FAFBFD;
  border-bottom: 1px solid rgba(14,14,16,0.08);
  padding: 14px 0;
}
.cs-tags-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cs-tag-pill {
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1.5px solid currentColor;
  border-radius: 9999px;
  padding: 4px 12px;
  color: var(--muted);
}
.cs-tag-pill--active { color: var(--pink); border-color: var(--pink); }
.cs-tag-pill--cyan   { color: var(--cyan); border-color: var(--cyan); }
.cs-tag-dot { color: var(--muted); font-weight: 400; font-size: 14px; }

/* ---------- Case Study Hero ---------- */
.cs-hero {
  background: #FAFBFD;
  padding: 0;
}
.cs-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.cs-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: clamp(32px, 3vw, 56px);
  padding-top: clamp(40px, 5vh, 72px);
  padding-bottom: clamp(40px, 5vh, 72px);
}
.cs-hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.cs-hero-headline .hl { color: var(--ink); }
.cs-hero-headline .cs-hero-dot { color: var(--cs-accent, var(--pink)); }
.cs-hero-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.cs-hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ink);
  color: #F5F2EE;
  padding: 16px 20px;
  border-radius: 10px;
  gap: 10px;
  align-self: flex-start;
}
.cs-hero-badge-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.0;
  text-transform: uppercase;
}
.cs-hero-badge-arrow {
  width: 28px;
  height: 28px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}

/* Case hero visual (right photo column) */
.cs-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}
.cs-hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}
.cs-hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0 0 0 16px;
}
.cs-hero-photo-bg--pink   { background: linear-gradient(145deg, #DB288D 0%, #00B1DA 100%); }
.cs-hero-photo-bg--cyan   { background: linear-gradient(145deg, #00B1DA 0%, #6706B9 100%); }
.cs-hero-photo-bg--orange { background: linear-gradient(145deg, #FF5F1F 0%, #FFD13E 100%); }
.cs-hero-photo-bg--purple { background: linear-gradient(145deg, #6706B9 0%, #DB288D 100%); }
.cs-hero-photo-bg--yellow { background: linear-gradient(145deg, #FFD13E 0%, #FF5F1F 100%); }
.cs-hero-photo-bg--mint   { background: linear-gradient(145deg, #65EDD3 0%, #00B1DA 100%); }
.cs-hero-photo-bg--blue   { background: linear-gradient(145deg, #1B2A8C 0%, #DB288D 100%); }
.cs-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  border-radius: 0 0 0 16px;
}

/* Stats overlay on the hero image */
.cs-hero-stats-overlay {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 16px 28px 20px 28px;
  border-radius: 14px 14px 0 0;
  min-width: 200px;
}
.cs-hero-stat {
  padding: 14px 0;
  border-bottom: 1px solid var(--pink);
}
.cs-hero-stat:first-child { border-top: none; }
.cs-hero-stat:last-child { border-bottom: none; }
.cs-hero-stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 4px;
}
.cs-hero-stat-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

/* ---------- Body text section ---------- */
.cs-body {
  background: #FAFBFD;
  padding: clamp(60px, 8vh, 100px) 0;
}
.cs-body-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.cs-body-eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cs-accent, var(--pink));
  margin: 0 0 10px;
}
.cs-body-heading {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.05;
}
.cs-body-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 12px;
}
.cs-body-text:last-child { margin-bottom: 0; }

/* ---------- Quote section ---------- */
.cs-quote {
  background: #001351;
  padding: clamp(60px, 8vh, 100px) 0;
}
.cs-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cs-quote-mark-img {
  width: 64px;
  height: auto;
  display: block;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.cs-quote-text {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0 0 24px;
}
.cs-quote-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #00B1DA;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.cs-quote-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #00B1DA;
  margin: 0;
}
.cs-quote-photo-wrap {
  position: relative;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: 16/9;
}
.cs-quote-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 24px;
}
.cs-quote-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  border-radius: 24px;
}
.cs-quote-photo-mark {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
  width: 56px;
  height: auto;
  display: block;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

/* ---------- Numbers section ---------- */
.cs-numbers {
  background: #FAFBFD;
  padding: clamp(60px, 8vh, 100px) 0;
}
.cs-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.cs-numbers-left { padding-top: 8px; }
.cs-numbers-eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cs-accent, var(--pink));
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-numbers-poll-icon {
  width: 20px;
  height: 20px;
  image-rendering: pixelated;
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2800%) hue-rotate(308deg) brightness(94%) contrast(104%);
}
.cs-numbers-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.cs-numbers-heading .hl { color: var(--ink); }
.cs-numbers-heading .dot { color: var(--cs-accent, var(--pink)); }
.cs-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.cs-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink);
}
.cs-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}


/* ============================================================
   Work & Case page responsive
   ============================================================ */
@media (max-width: 1100px) {
  .work-hero-row { grid-template-columns: 1fr; }
  .work-hero-visual { display: none; }
  .case-row { grid-template-columns: 300px 1fr; }
  .case-row-stats { display: none; }
  .cs-hero-grid { grid-template-columns: 1fr 1fr; }
  .cs-hero-stats-overlay { min-width: 170px; }
  .cs-numbers-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .work-cases { padding: 40px 0 60px; }
  .case-row { grid-template-columns: 1fr; gap: 0; }
  .case-row-img-wrap { aspect-ratio: 16/9; }
  .case-row-body { padding: 20px 0 0; }
  .case-row-stats { display: none; }
  .cs-hero-grid { grid-template-columns: 1fr; }
  .cs-hero-copy { padding-left: var(--gutter); padding-right: var(--gutter); }
  .cs-hero-visual { display: none; }
  .cs-body-cols { grid-template-columns: 1fr; }
  .cs-quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-quote-photo-wrap { display: block; }
  .cs-numbers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Phase-2 visual refinements (merged from styles-v2-overrides)
   ============================================================ */

/* ── Work hero: reduced spacing, image column ── */
.work-hero { padding: clamp(40px, 5vh, 64px) 0 clamp(50px, 6vh, 80px); }
.work-hero-row { grid-template-columns: 1fr 14%; gap: 0; }
.work-hero-frame { width: 100%; }
.work-hero-visual { margin-left: -220px; }
.work-sparkle { top: 24%; right: 148px; left: auto; }
.work-float-1 { top: 10%; left: 18px; }
.work-float-2 { top: 66%; bottom: auto; right: 130px; left: auto; }
.work-hero-copy { padding-top: clamp(20px, 3vh, 40px); }
.work-hero-copy .eyebrow { margin-bottom: 6px; }

/* ── Case rows: remove dividers, add gap ── */
.work-cases { padding: 40px 0 60px; }
.work-cases-inner { gap: 16px; }
.case-row {
  grid-template-columns: 300px 1fr 220px;
  padding: 0;
  border-bottom: none;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
}

/* ── Per-card tinted backgrounds + CSS accent variable ── */
.case-row--pink   { --card-accent: var(--pink);   --card-dot: var(--cyan);    --stat-bg: var(--pink); }
.case-row--cyan   { --card-accent: var(--cyan);   --card-dot: var(--purple);  --stat-bg: var(--cyan); }
.case-row--orange { --card-accent: var(--orange); --card-dot: var(--pink);    --stat-bg: var(--orange); }
.case-row--purple { --card-accent: var(--purple); --card-dot: var(--pink);    --stat-bg: var(--purple); }
.case-row--yellow { --card-accent: var(--yellow);  --card-dot: var(--purple);  --stat-bg: var(--yellow); }

/* ============================================================
   Blog — Listing & Article Pages
   ============================================================ */

/* ---------- Blog dot colour variants ---------- */
.dot-cyan   { color: var(--cyan);   }
.dot-yellow { color: var(--yellow); }
.dot-orange { color: var(--orange); }
.dot-purple { color: var(--purple); }
.dot-mint   { color: var(--mint);   }
.dot-blue   { color: var(--cyan);   }

/* ---------- Category badge ---------- */
.cat-tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--ink);
  margin-bottom: 8px;
}
.cat-tag--strategy    { color: var(--cyan);    }
.cat-tag--social      { color: var(--pink);    }
.cat-tag--content     { color: #9a6e00;        }
.cat-tag--paidads     { color: var(--orange);  }
.cat-tag--influencers { color: var(--purple);  }
.cat-tag--email       { color: #0a7c66;        }
.cat-tag--websites    { color: var(--cyan);    }
.cat-tag--seo         { color: #9a6e00;        }

/* ---------- Blog listing — hero ---------- */
.blog-hero {
  background: #FAFBFD;
  padding: clamp(72px, 8vh, 100px) 0 clamp(56px, 6vh, 72px);
}
.blog-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.blog-hero-copy { min-width: 0; }
.blog-hero-copy .display {
  font-size: clamp(52px, 6vw, 90px);
  line-height: .92;
  margin-bottom: 18px;
}
.blog-hero-copy .display-pink { display: inline; }
.blog-hero-copy .lede { max-width: 480px; color: var(--muted); margin: 20px 0 32px; }
.blog-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: visible;
}
.blog-hero-frame {
  width: min(100%, 640px);
  position: relative;
  overflow: visible;
  border-radius: 24px;
}
.blog-hero-img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Floating icons on blog hero */
.blog-hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}
.blog-hero-float {
  position: absolute;
  width: 52px;
  height: 52px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: floatBob 3.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.18));
}
.blog-hero-float:nth-child(2) { animation-delay: -1.2s; }
.blog-hero-float:nth-child(3) { animation-delay: -2.5s; }
.blog-hero-float .float-icon-img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.blog-hero-float-1 { top: 80px;   left: 55px; }
.blog-hero-float-2 { top: 60px;   right: 190px; }
.blog-hero-float-3 { bottom: 20%; right: 170px; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0);     }
  50%       { transform: translateY(-11px); }
}

/* ---------- Browse by Topic ---------- */
.topic-section {
  background: #F4F4F4;
  padding: 44px 0 48px;
  border-top: 1px solid #e8e8ee;
}
.topic-section-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
.topic-section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.97;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.topic-section-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.topic-section-header .eyebrow { margin-bottom: 0; display: none; }
.topic-clear-btn {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  display: none;
  align-items: center;
  gap: 5px;
  transition: color .15s ease;
}
.topic-clear-btn.visible { display: inline-flex; }
.topic-clear-btn:hover { color: var(--pink); }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.topic-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px 12px;
  background: #F6F6F8;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  text-align: center;
}
.topic-tile:hover {
  background: #F4F4F4;
  border-color: var(--topic-color, var(--pink));
  transform: translateY(-2px);
}
.topic-tile--active {
  background: #F4F4F4;
  border-color: var(--topic-color, var(--pink));
}
.topic-tile-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.topic-radio { display: none; }
.topic-tile-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.topic-tile-icon img {
  width: 44px; height: 44px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.topic-tile-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}
.topic-tile-name {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s ease;
}
.topic-tile--active .topic-tile-name,
.topic-tile:hover .topic-tile-name {
  color: var(--topic-color, var(--pink));
}
.topic-count {
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
}

/* Per-topic colour variables */
.topic-tile--strategy    { --topic-color: var(--cyan);   }
.topic-tile--social      { --topic-color: var(--pink);   }
.topic-tile--content     { --topic-color: var(--yellow); }
.topic-tile--paidads     { --topic-color: var(--orange); }
.topic-tile--influencers { --topic-color: var(--purple); }
.topic-tile--email       { --topic-color: var(--mint);   }
.topic-tile--websites    { --topic-color: var(--blue);   }
.topic-tile--seo         { --topic-color: var(--yellow); }

/* Default: greyed-out icons on inactive tiles */
.topic-tile .topic-tile-icon img { filter: grayscale(100%) opacity(.35); transition: filter .2s ease; }

/* Active/hover: full topic colour */
.topic-tile--active .topic-tile-icon img,
.topic-tile:hover   .topic-tile-icon img { transition: filter .2s ease; }
.topic-tile--strategy.topic-tile--active    .topic-tile-icon img,
.topic-tile--strategy:hover                 .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%);  }
.topic-tile--social.topic-tile--active      .topic-tile-icon img,
.topic-tile--social:hover                   .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2800%) hue-rotate(308deg) brightness(94%) contrast(104%);  }
.topic-tile--content.topic-tile--active     .topic-tile-icon img,
.topic-tile--content:hover                  .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(88%) sepia(55%) saturate(750%) hue-rotate(345deg) brightness(105%) contrast(102%); }
.topic-tile--paidads.topic-tile--active     .topic-tile-icon img,
.topic-tile--paidads:hover                  .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(1500%) hue-rotate(10deg) brightness(100%) contrast(100%); }
.topic-tile--influencers.topic-tile--active .topic-tile-icon img,
.topic-tile--influencers:hover              .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(14%) sepia(99%) saturate(4000%) hue-rotate(275deg) brightness(85%) contrast(115%); }
.topic-tile--email.topic-tile--active       .topic-tile-icon img,
.topic-tile--email:hover                    .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(82%) sepia(40%) saturate(800%) hue-rotate(120deg) brightness(100%);                 }
.topic-tile--websites.topic-tile--active    .topic-tile-icon img,
.topic-tile--websites:hover                 .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(9%)  sepia(86%) saturate(2000%) hue-rotate(213deg) brightness(90%) contrast(110%);  }
.topic-tile--seo.topic-tile--active         .topic-tile-icon img,
.topic-tile--seo:hover                      .topic-tile-icon img { filter: brightness(0) saturate(100%) invert(88%) sepia(55%) saturate(750%) hue-rotate(345deg) brightness(105%) contrast(102%); }

/* ---------- Featured Article ---------- */
.featured-section {
  background: #001351;
  padding: 64px 0;
}
.featured-section .eyebrow { margin-bottom: 26px; }
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #F4F4F4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.07);
  text-decoration: none;
  color: inherit;
}

.featured-article-img {
  overflow: hidden;
  align-self: stretch;
}
.featured-article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.featured-article-body {
  padding: 44px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.featured-article-body .cat-tag { margin-bottom: 18px; }
.featured-article-title {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.0;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--ink);
}
.featured-article-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 380px;
}
.featured-article-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--pink);
  letter-spacing: .05em;
  transition: gap .15s ease;
}

.featured-arrow-btn { display: none; }

.featured-arrow-btn img { width: 18px; height: 18px; filter: brightness(0) invert(1); image-rendering: pixelated; }

/* ---------- Latest Articles ---------- */
.articles-section {
  background: #FAFBFD;
  padding: 64px 0 80px;
}
.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.articles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}
.articles-header .link-pink {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.blog-card {
  background: #F4F4F4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,.06);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.blog-card.hidden { display: none; }
.blog-card-img {
  height: 190px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-icon {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: #F4F4F4;
  border-radius: 50%;
  border: 1.5px solid rgba(14,14,16,.1);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  display: none;
  padding: 7px;
}
.blog-card-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.blog-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 10px;
}
.blog-card-cat--strategy    { color: #031e75;       }
.blog-card-cat--social      { color: #00B1DA;       }
.blog-card-cat--content     { color: #DB288D;       }
.blog-card-cat--paidads     { color: var(--orange); }
.blog-card-cat--influencers { color: var(--purple); }
.blog-card-cat--email       { color: #FFB179;       }
.blog-card-cat--websites    { color: #65EDD3;       }
.blog-card-cat--seo         { color: #FFD13E;       }

.blog-card-title {
  font-family: var(--display);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink);
}
.blog-card-excerpt {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-cta {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .05em;
  margin-top: auto;
  transition: gap .15s ease;
}
.blog-card-body:has(.blog-card-cat--strategy)    .blog-card-cta { color: #031e75;       }
.blog-card-body:has(.blog-card-cat--social)      .blog-card-cta { color: #00B1DA;       }
.blog-card-body:has(.blog-card-cat--content)     .blog-card-cta { color: #DB288D;       }
.blog-card-body:has(.blog-card-cat--paidads)     .blog-card-cta { color: var(--orange); }
.blog-card-body:has(.blog-card-cat--influencers) .blog-card-cta { color: var(--purple); }
.blog-card-body:has(.blog-card-cat--email)       .blog-card-cta { color: #FFB179;       }
.blog-card-body:has(.blog-card-cat--websites)    .blog-card-cta { color: #65EDD3;       }
.blog-card-body:has(.blog-card-cat--seo)         .blog-card-cta { color: #FFD13E;       }
.blog-card:hover .blog-card-cta { gap: 9px; }
/* --- Per-category blog card icon + CTA colours --- */
.blog-card[data-category="strategy"] .blog-card-icon { background: rgba(3,30,117,.10); border-color: #031e75; }
.blog-card[data-category="strategy"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%); }
.blog-card[data-category="strategy"] .blog-card-cta { color: #031e75; }
.blog-card[data-category="social"] .blog-card-icon { background: rgba(0,177,218,.10); border-color: #00B1DA; }
.blog-card[data-category="social"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%); }
.blog-card[data-category="social"] .blog-card-cta { color: #00B1DA; }
.blog-card[data-category="seo"] .blog-card-icon { background: rgba(255,209,62,.15); border-color: #FFD13E; }
.blog-card[data-category="seo"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(38%) sepia(72%) saturate(800%) hue-rotate(28deg) brightness(95%) contrast(105%); }
.blog-card[data-category="seo"] .blog-card-cta { color: #FFD13E; }
.blog-card[data-category="influencers"] .blog-card-icon { background: rgba(103,6,185,.10); border-color: var(--purple); }
.blog-card[data-category="influencers"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(14%) sepia(99%) saturate(4000%) hue-rotate(275deg) brightness(85%) contrast(115%); }
.blog-card[data-category="influencers"] .blog-card-cta { color: var(--purple); }
.blog-card[data-category="paidads"] .blog-card-icon { background: rgba(255,95,31,.10); border-color: var(--orange); }
.blog-card[data-category="paidads"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(2000%) hue-rotate(11deg) brightness(110%) contrast(105%); }
.blog-card[data-category="paidads"] .blog-card-cta { color: var(--orange); }
.blog-card[data-category="email"] .blog-card-icon { background: rgba(255,177,121,.15); border-color: #FFB179; }
.blog-card[data-category="email"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(700%) hue-rotate(100deg) brightness(97%) contrast(105%); }
.blog-card[data-category="email"] .blog-card-cta { color: #FFB179; }
.blog-card[data-category="content"] .blog-card-icon { background: rgba(219,40,141,.10); border-color: #DB288D; }
.blog-card[data-category="content"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(38%) sepia(72%) saturate(800%) hue-rotate(28deg) brightness(95%) contrast(105%); }
.blog-card[data-category="content"] .blog-card-cta { color: #DB288D; }
.blog-card[data-category="websites"] .blog-card-icon { background: rgba(101,237,211,.15); border-color: #65EDD3; }
.blog-card[data-category="websites"] .blog-card-icon img { filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(2000%) hue-rotate(213deg) brightness(90%) contrast(110%); }
.blog-card[data-category="websites"] .blog-card-cta { color: #65EDD3; }

/* ---------- Blog newsletter CTA strip ---------- */
.blog-cta-strip {
  background: var(--footer);
  padding: 60px 0;
}
.blog-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.blog-cta-copy .display-sm { color: #F4F4F4; line-height: .95; }
.blog-cta-copy .display-sm .dot { color: var(--pink); }
.blog-cta-copy p { color: #cfd2e8; font-size: 13px; margin: 10px 0 0; }
.blog-cta-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.blog-cta-input {
  padding: 12px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9999px;
  color: #F4F4F4;
  font-family: var(--body);
  font-size: 13px;
  width: 260px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.blog-cta-input::placeholder { color: rgba(255,255,255,.4); }
.blog-cta-input:focus { border-color: var(--cyan); background: rgba(255,255,255,.12); }
.blog-cta-email-ico {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-cta-email-ico img { width: 24px; height: 24px; filter: brightness(0) invert(1); image-rendering: pixelated; }

/* ============================================================
   Individual Blog Article Page
   ============================================================ */

/* Breadcrumb */
.blog-breadcrumb {
  background: #F4F4F4;
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
}
.blog-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.blog-breadcrumb-inner a { color: var(--muted); transition: color .15s; }
.blog-breadcrumb-inner a:hover { color: var(--pink); }
.blog-breadcrumb-inner .sep { color: #ccc; }
.blog-breadcrumb-inner .current { color: var(--ink); font-weight: 500; }

/* Article hero — full-width 50/50 split */
.blog-article-hero {
  background: var(--blue-2);
  padding: 0;
}
.blog-article-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  height: clamp(437px, 60vh, 667px);
  max-height: clamp(437px, 60vh, 667px);
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden;
}
.blog-article-hero-visual {
  overflow: hidden;
  height: 100%;
}
.blog-article-hero-copy {
  min-width: 0;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  background: var(--blue-2);
  padding: clamp(48px, 7vh, 88px) clamp(32px, 5vw, 80px) clamp(48px, 7vh, 88px) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.blog-article-hero-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 54px);
  font-weight: 700;
  line-height: .96;
  text-transform: uppercase;
  margin: 14px 0 20px;
  color: #F4F4F4;
}
.blog-article-hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 460px;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  letter-spacing: .04em;
}
.blog-article-meta-item img {
  width: 15px; height: 15px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: brightness(0) invert(1) opacity(.5);
  display: block;
  flex-shrink: 0;
}
.blog-article-hero-visual {
  position: relative;
  overflow: hidden;
}
.blog-article-hero-frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.blog-article-hero-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Floating icons — hidden in new split layout */
.blog-article-hero-floats { display: none; }

/* Article two-column layout */
.blog-layout-section {
  background: #FAFBFD;
  padding: 60px 0 88px;
  border-top: 1px solid #e8e8ee;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}
.blog-body { min-width: 0; }

/* Article content */
.article-content { color: var(--ink); }
.article-content p {
  font-size: 16px;
  line-height: 1.72;
  color: #2a2a30;
  margin: 0 0 20px;
}
.article-content h2 {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blog-accent, var(--pink));
}
.article-content h2:first-child { margin-top: 0; }

/* Checklist */
.article-checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Inline pixel icon used as text separator */
.inline-icon {
  display: none;
}

.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a30;
}
.article-checklist li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23DB288D' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pull quote */
.article-quote {
  background: var(--bg-2);
  border-left: 4px solid var(--blog-accent, var(--pink));
  border-radius: 0 12px 12px 0;
  padding: 26px 32px;
  margin: 32px 0;
}
.article-quote p {
  font-family: var(--body);
  font-size: 17px !important;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink) !important;
  margin: 0 !important;
  position: relative;
  padding-left: 38px;
}
.article-quote p::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -8px;
  font-size: 54px;
  color: var(--blog-accent, var(--pink));
  line-height: 1;
  font-family: Georgia, serif;
}

/* Icon row infographic */
.article-icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #F4F4F4;
  border-radius: 14px;
  padding: 28px 20px;
  margin: 32px 0;
  box-shadow: 0 3px 12px rgba(0,0,0,.06);
}
.article-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.article-icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-icon-circle img {
  width: 22px; height: 22px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  filter: brightness(0) invert(1);
}
.article-icon-label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}

/* Mid-article image */
.article-image {
  width: 100%;
  margin: 32px 0;
  position: relative;
}
.article-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Floating icons on mid-article image */
/* CTA link in article */
.article-cta-link {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  transition: color .15s ease;
}
.article-cta-link:hover { color: #a0186a; }

/* ---------- Sidebar ---------- */
.blog-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sidebar-card {
  background: #F4F4F4;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 3px 14px rgba(0,0,0,.07);
}

/* Author */
.sidebar-author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin-bottom: 14px;
}
.sidebar-author-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink);
  margin: 0 0 8px;
}
.sidebar-author-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 4px;
  color: var(--ink);
}
.sidebar-author-role {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin: 0 0 12px;
}
.sidebar-author-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
.sidebar-author-cta {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--pink);
  letter-spacing: .04em;
  display: inline-block;
  position: relative;
}
.sidebar-author-cta::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .2s;
}
.sidebar-author-cta:hover::after { width: 100%; }

/* TOC */
.sidebar-toc-label {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-2);
}
.sidebar-toc-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  counter-reset: toc-counter;
}
.sidebar-toc-list li {
  counter-increment: toc-counter;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.sidebar-toc-list li::before {
  content: counter(toc-counter);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blog-accent, var(--pink));
  min-width: 18px;
  flex-shrink: 0;
}
.sidebar-toc-list a { color: var(--muted); transition: color .15s; }
.sidebar-toc-list a:hover { color: var(--pink); }

/* Blog accent colour variable (set on article element) */
.blog-accent-cyan   { --blog-accent: var(--cyan);   }
.blog-accent-pink   { --blog-accent: var(--pink);   }
.blog-accent-yellow { --blog-accent: var(--yellow); }
.blog-accent-orange { --blog-accent: var(--orange); }
.blog-accent-purple { --blog-accent: var(--purple); }
.blog-accent-mint   { --blog-accent: var(--mint);   }
.blog-accent-blue   { --blog-accent: var(--blue);   }

/* ---------- Blog responsive ---------- */
@media (max-width: 1100px) {
  .topic-grid           { grid-template-columns: repeat(4, 1fr); }
  .blog-grid            { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-row        { grid-template-columns: 1fr; }
  .blog-hero-visual     { justify-content: flex-start; }
  .blog-hero-frame      { width: 100%; }
  .featured-article     { grid-template-columns: 1fr; }
  .featured-article-img { height: 260px; }
  .featured-article-body { padding: 24px 20px; }
  .blog-layout          { grid-template-columns: 1fr; }
  .blog-sidebar         { position: static; }
  .sidebar-card:has(.sidebar-toc-label) { display: none; }
  .blog-cta-inner       { grid-template-columns: 1fr; gap: 24px; }
  .blog-article-hero-row { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .blog-article-hero-copy { padding-top: 36px; padding-bottom: 32px; }
  .blog-article-hero-visual { height: 300px; }
  .blog-article-hero-img { height: 100%; }
  .article-icon-row     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .topic-grid    { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .topic-section { overflow: hidden; }
  .topic-section-layout { grid-template-columns: 1fr; gap: 16px; }
  .topic-section-title { font-size: 24px; }
  .topic-section-header { margin-bottom: 12px; }
  /* pill multiselect layout */
  .topic-grid { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
  .topic-tile {
    flex-direction: row;
    aspect-ratio: unset;
    border-radius: 999px;
    padding: 7px 14px 7px 10px;
    gap: 7px;
    width: auto;
    flex: 0 0 auto;
    background: #fff;
    border: 1.5px solid #e0e0e8;
  }
  .topic-tile--active, .topic-tile[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
  }
  .topic-tile-top { width: auto; }
  .topic-tile-icon { width: 18px; height: 18px; }
  .topic-tile-icon img { width: 18px; height: 18px; }
  .topic-tile-footer { flex-direction: row; align-items: center; gap: 3px; width: auto; }
  .topic-tile-name { font-size: 10px; }
  .topic-count { font-size: 10px; }
  .blog-grid     { grid-template-columns: 1fr; }
  .articles-header { flex-direction: column; align-items: flex-start; }
  .blog-cta-form   { flex-direction: column; width: 100%; }
  .blog-cta-input  { width: 100%; }
  .article-icon-row { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-float { width: 38px; height: 38px; }
  .blog-hero-float-1 { top: auto; bottom: 16px; left: 8px; right: auto; }
  .blog-hero-float-2 { top: 16px; right: 8px; left: auto; bottom: auto; }
  .blog-hero-float-3 { bottom: 28%; right: 8px; left: auto; top: auto; }
}
.case-row--mint   { --card-accent: var(--mint);    --card-dot: var(--pink);    --stat-bg: var(--mint); }

/* ── Tags: flat text with dot separators (no pill borders) ── */
.case-row-tags { gap: 0; align-items: center; }
.case-row-tag {
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--card-accent, var(--pink));
}
.case-row-tag + .case-row-tag::before {
  content: '\00B7';
  margin: 0 7px;
  color: var(--card-accent, var(--pink));
}
/* ── cs-tag-pill on case pages: flat text, no border ── */
.cs-tag-pill { border: none; border-radius: 0; padding: 0; color: var(--muted); }
.cs-tag-pill--active { border: none; color: var(--cs-accent, var(--pink)); }
.cs-tag-pill--cyan   { border: none; }
.cs-tag-dot { color: var(--cs-accent, var(--pink)); font-size: 12px; }
/* ── Tags & CTA link inherit card accent ── */
.case-row-headline .hl-pink,
.case-row-headline .hl-cyan,
.case-row-headline .hl-orange,
.case-row-headline .hl-purple,
.case-row-headline .hl-yellow,
.case-row-headline .hl-mint  { color: inherit; }
.case-row-cta                { color: var(--card-accent, var(--pink)); }

/* ── CTA arrow inherits currentColor from .case-row-cta — no per-card filter needed ── */

/* ── Stats icons: no coloured square backdrop, full-size colourised SVG ── */
.cs-stat-icon { border-radius: 0; background: none !important; width: auto; height: auto; }
.cs-stat-icon img { width: 36px; height: 36px; filter: none; }
.cs-stat-icon--pink   img { filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2800%) hue-rotate(308deg) brightness(94%) contrast(104%); }
.cs-stat-icon--cyan   img { filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%); }
.cs-stat-icon--orange img { filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(2000%) hue-rotate(11deg) brightness(110%) contrast(105%); }
.cs-stat-icon--purple img { filter: brightness(0) saturate(100%) invert(14%) sepia(90%) saturate(5000%) hue-rotate(275deg) brightness(85%) contrast(120%); }
.cs-stat-icon--yellow img { filter: brightness(0) saturate(100%) invert(43%) sepia(76%) saturate(2000%) hue-rotate(20deg) brightness(90%) contrast(110%); }
.cs-stat-icon--mint   img { filter: brightness(0) saturate(100%) invert(82%) sepia(40%) saturate(800%) hue-rotate(120deg) brightness(100%); }
.cs-stat-icon--blue   img { filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(1600%) hue-rotate(228deg) brightness(85%) contrast(115%); }

/* ── All stat icons follow the section's cs-accent colour ── */
.cs-accent-pink   .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2800%) hue-rotate(308deg) brightness(94%) contrast(104%) !important; }
.cs-accent-cyan   .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%) !important; }
.cs-accent-orange .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(2000%) hue-rotate(11deg) brightness(110%) contrast(105%) !important; }
.cs-accent-purple .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(14%) sepia(90%) saturate(5000%) hue-rotate(275deg) brightness(85%) contrast(120%) !important; }
.cs-accent-yellow .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(43%) sepia(76%) saturate(2000%) hue-rotate(20deg) brightness(90%) contrast(110%) !important; }
.cs-accent-mint   .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(82%) sepia(40%) saturate(800%) hue-rotate(120deg) brightness(100%) !important; }
.cs-accent-blue   .cs-stat-icon img { filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(1600%) hue-rotate(228deg) brightness(85%) contrast(115%) !important; }

/* ── Coloured end-of-title dots — always contrast the text ── */
.display-pink .dot            { color: var(--cyan); }
.display-white .dot           { color: var(--yellow); }
.work-hero-heading > .dot     { color: var(--ink); }
/* ── Colored dot at end of each card headline ── */
.case-row-headline::after {
  content: '.';
  color: var(--card-accent, var(--cyan));
}
/* ── Stats overlay sits over image, no clipping needed ── */
/* ── Stats panel text: white on coloured backgrounds, dark on yellow/mint ── */
.case-row .cs-stat-num   { color: #fff; }
.case-row .cs-stat-label { color: rgba(255,255,255,0.75); }
.case-row--yellow .cs-stat-num   { color: var(--ink); }
.case-row--yellow .cs-stat-label { color: var(--muted); }
.case-row--mint .cs-stat-num   { color: var(--ink); }
.case-row--mint .cs-stat-label { color: var(--muted); }
/* ── Card stats icons all match card accent colour ── */
.case-row--pink   .cs-stat-icon img { filter: brightness(0) invert(1) !important; }
.case-row--cyan   .cs-stat-icon img { filter: brightness(0) invert(1) !important; }
.case-row--orange .cs-stat-icon img { filter: brightness(0) invert(1) !important; }
.case-row--purple .cs-stat-icon img { filter: brightness(0) invert(1) !important; }
.case-row--yellow .cs-stat-icon img { filter: brightness(0) !important; }
.case-row--mint   .cs-stat-icon img { filter: brightness(0) !important; }

/* ── NDA ribbon (shared base) ── */
.case-row-nda-tape,
.cs-nda-tape {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  color: #6706B9;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  z-index: 10;
  border-top: 1.5px solid rgba(103, 6, 185, 0.45);
  border-bottom: 1.5px solid rgba(103, 6, 185, 0.45);
  pointer-events: none;
}
.case-row-nda-tape {
  top: 28px;
  right: -32px;
  width: 148px;
  font-size: 9px;
  letter-spacing: 0.16em;
  padding: 8px 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-nda-tape {
  top: 28px;
  right: -54px;
  width: 220px;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 9px 0;
}

/* ── Individual case study pages ── */
.cs-hero-logo  { height: 40px !important; width: auto; max-width: 200px; object-fit: contain; object-position: left center; display: block; margin: 0; }
.cs-hero-badge { display: none; }
.cs-quote      { padding: clamp(36px, 4vh, 52px) 0; }
.cs-quote-grid { grid-template-columns: 1.4fr 0.8fr; gap: 48px; }
.cs-quote-photo-wrap { aspect-ratio: 16/9; }
.cs-numbers-grid { grid-template-columns: 1fr 2.5fr; }

/* ── Responsive overrides (phase-2) ── */
@media (max-width: 1100px) {
  .work-hero-row   { grid-template-columns: 1fr; }
  .work-hero-visual { display: none; }
  .case-row { grid-template-columns: 300px 1fr; }
  .case-row--pink, .case-row--cyan, .case-row--orange,
  .case-row--purple, .case-row--yellow, .case-row--mint { padding: 0; }
}
@media (max-width: 720px) {
  .work-cases { padding: 30px 0 50px; }
  .work-cases-inner { gap: 28px; }
  .case-row { grid-template-columns: 1fr; border-bottom: none; }
  .case-row-img-wrap { aspect-ratio: 16/9; min-height: 0; border-radius: 14px 14px 0 0; }
  .case-row-body { padding: 20px 20px 0; }
  .case-row-cta { margin-bottom: 12px; }
  .case-row-stats { display: flex; flex-direction: row; gap: 12px; padding: 16px 20px 20px; border-left: none; border-top: 1px solid rgba(14,14,16,0.09); border-radius: 0 0 14px 14px; }
  .cs-stat { flex: 1; flex-direction: column; align-items: flex-start; gap: 6px; }
  .cs-quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-quote-photo-wrap { display: block; }
  .cs-numbers-grid { grid-template-columns: 1fr; }
  /* Case study hero: show image above the title on mobile */
  .cs-hero-visual { display: block; order: -1; min-height: 260px; }
  .cs-hero-photo-wrap { min-height: 260px; }
  .cs-hero-photo-bg { border-radius: 0; }
  .cs-hero-photo { border-radius: 0; }
  .cs-hero-stats-overlay { display: none; }
  .cs-hero-copy { padding-top: clamp(24px, 3vh, 36px); padding-bottom: 20px; }
  .cs-body { padding: clamp(32px, 4vh, 48px) 0; }
}

/* ============================================================
   Pricing Page
   ============================================================ */

/* ---------- Pricing Hero ---------- */
.pricing-hero {
  background: #FAFBFD;
  padding: clamp(40px, 5vh, 64px) 0 clamp(50px, 6vh, 80px);
  overflow: hidden;
}
.pricing-hero-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.pricing-hero-copy { padding-top: clamp(20px, 3vh, 40px); }
.pricing-hero-copy .eyebrow { letter-spacing: 0.1em; margin-bottom: 6px; }
.pricing-hero-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.pricing-hero-heading .display-pink { display: block; }
.pricing-hero-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 20px 0 32px;
  max-width: 480px;
}

/* Pricing hero visual + frame */
.pricing-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.pricing-hero-frame {
  position: relative;
  width: min(100%, 520px);
  overflow: visible;
}
.pricing-hero-img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

/* 3 floating icons ON the image (inside frame) */
.pricing-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}
.pricing-float {
  position: absolute;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBob 3.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.18));
}
.pricing-float:nth-child(2) { animation-delay: -1.3s; }
.pricing-float:nth-child(3) { animation-delay: -2.6s; }
.pricing-float img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; display: block; }
.pricing-float-1 { top: 30%;  right: 120px; }
.pricing-float-3 { bottom: 22%; right: 56px; }

/* 3 ambient icons AROUND the image (outside frame, inside visual wrapper) */
.pricing-ambient {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.pricing-ambient-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBob 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.14));
}
.pricing-ambient-icon:nth-child(2) { animation-delay: -1.8s; }
.pricing-ambient-icon:nth-child(3) { animation-delay: -3.2s; }
.pricing-ambient-icon img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.pricing-amb-1 { top: 54%;  left: 36px; }



/* ---------- Plans Section ---------- */
.pricing-plans {
  background: var(--bg);
  padding: 72px 0 80px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}
.plan-card--blue { border-bottom: 5px solid var(--blue); }
.plan-card--cyan  { border-bottom: 5px solid var(--cyan); }
.plan-card--pink  { border-bottom: 5px solid var(--pink); }
.plan-card--dark  { border-bottom: 5px solid var(--yellow); }
.plan-card-header {
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.plan-card--blue .plan-card-header  { background: #FAFBFD; }
.plan-card--cyan .plan-card-header  { background: #FAFBFD; }
.plan-card--pink .plan-card-header  { background: #FAFBFD; }
.plan-card--dark .plan-card-header  { background: #0B0F1A; }
.plan-card-header::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 2px;
  width: 25%;
}
.plan-card--blue .plan-card-header::after  { background: var(--blue); }
.plan-card--cyan .plan-card-header::after  { background: var(--cyan); }
.plan-card--pink .plan-card-header::after  { background: var(--pink); }
.plan-card--dark .plan-card-header::after  { background: var(--yellow); }

/* Icon: no background box — raw SVG at full 44px */
/* Icon: circular coloured background */
.plan-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.plan-card:hover .plan-card-icon { transform: scale(1.18) rotate(-10deg); }
.plan-card--blue .plan-card-icon { background: var(--blue); }
.plan-card--cyan .plan-card-icon { background: var(--cyan); }
.plan-card--pink .plan-card-icon { background: var(--pink); }
.plan-card--dark .plan-card-icon { background: var(--yellow); }
.plan-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.plan-card-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 4px 0;
  line-height: 1;
}
.plan-card--dark .plan-card-name { color: #fff; }
.plan-card-name::after { content: '.'; }
.plan-card--blue .plan-card-name::after { color: var(--blue); }
.plan-card--cyan .plan-card-name::after { color: var(--cyan); }
.plan-card--pink .plan-card-name::after { color: var(--pink); }
.plan-card--dark .plan-card-name::after { color: var(--yellow); }
.plan-card-body {
  background: #FAFBFD;
  padding: 14px 24px 44px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}
.plan-card--dark .plan-card-body { background: #0B0F1A; }
.plan-card-desc {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  min-height: 58px;
}
.plan-card--dark .plan-card-desc { color: #c8cbdc; }
.plan-card-divider {
  height: 1px;
  background: rgba(14,14,16,0.1);
  margin: 0;
}
.plan-card--dark .plan-card-divider { background: rgba(255,255,255,0.15); }
.plan-perfect-label {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}
.plan-card--blue  .plan-perfect-label { color: var(--blue);   }
.plan-card--cyan  .plan-perfect-label { color: var(--cyan);   }
.plan-card--pink  .plan-perfect-label { color: var(--pink);   }
.plan-card--dark  .plan-perfect-label { color: var(--yellow); }
.plan-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plan-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-family: var(--body);
}
.plan-card--dark .plan-check-item { color: #c8cbdc; }

/* Check icon: no background — raw SVG */
.plan-check-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.plan-card--blue .plan-check-ico { filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(2000%) hue-rotate(213deg) brightness(90%) contrast(110%) !important; }
.plan-card--cyan .plan-check-ico { filter: brightness(0) saturate(100%) invert(56%) sepia(82%) saturate(2000%) hue-rotate(171deg) brightness(93%) contrast(101%) !important; }
.plan-card--pink .plan-check-ico { filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2800%) hue-rotate(308deg) brightness(94%) contrast(104%) !important; }
.plan-card--dark .plan-check-ico { filter: brightness(0) saturate(100%) invert(88%) sepia(55%) saturate(750%) hue-rotate(345deg) brightness(105%) contrast(102%) !important; }

/* ---------- Included in Every Plan ---------- */
.every-plan-section {
  background: #0B0F1A;
  padding: clamp(48px, 6vh, 72px) 0;
}
.every-plan-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.every-plan-eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin: 0 0 6px;
}
.every-plan-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.97;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0;
}
.plan-features-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* =====================================================================
   SERVICES PAGES — Hub + Individual Service Pages
   ===================================================================== */

/* ---------- Eyebrow colour helpers ---------- */
.eyebrow-pink   { color: var(--pink); }
.eyebrow-orange { color: var(--orange); }
.eyebrow-purple { color: var(--purple); }
.eyebrow-mint   { color: var(--mint); }

/* ---------- Core Services Grid ---------- */
.svc-core {
  background: var(--bg);
  padding: 80px 0;
}
.svc-section-head { margin-bottom: 48px; }
.svc-section-head .eyebrow { margin-bottom: 12px; }
.svc-section-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}
.svc-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease;
  background: none;
  overflow: visible;
}
.svc-card:hover {
  transform: translateY(-4px);
}
.svc-card-img-wrap {
  flex: 0 0 54%;
  position: relative;
  overflow: hidden;
  border-radius: 50% 22px 22px 50%;
  aspect-ratio: 3/4;
  order: 2;
}
.svc-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
  display: block;
}
.svc-card:hover .svc-card-img-wrap img { transform: scale(1.06); }
.svc-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  order: 1;
}
.svc-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.svc-card:hover .svc-card-ico { transform: scale(1.18) rotate(-10deg); }
.svc-card-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  filter: brightness(0) invert(1);
}
.svc-card-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 20px);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.svc-card-desc {
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.svc-card-link {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  transition: gap .18s ease;
}
.svc-card:hover .svc-card-link { gap: 8px; }

/* ============================================================
   SERVICES PAGE — Style 1: 3D Portrait Card Carousel
   ============================================================ */
.svc-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.svc-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 48px 0 40px;
}
.svc-slider-track {
  display: flex;
  gap: 24px;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.svc-slide {
  flex: 0 0 380px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94),
              opacity .45s ease,
              box-shadow .45s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  user-select: none;
}
.svc-slide.is-active {
  opacity: 1;
  transform: none;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  cursor: default;
}
.svc-slide.is-peek-left {
  opacity: .6;
  transform: perspective(900px) rotateY(20deg) scale(.86) translateX(16px);
}
.svc-slide.is-peek-right {
  opacity: .6;
  transform: perspective(900px) rotateY(-20deg) scale(.86) translateX(-16px);
}
.svc-slide.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.svc-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.svc-slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.48) 42%,
    transparent 100%
  );
}
.svc-slide-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.svc-slide-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.05;
}
.svc-slide-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin: 0 0 16px;
}
.svc-slide-link {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .18s ease;
}
.svc-slide-link:hover { gap: 10px; }
.svc-slider-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #0E0E10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 2px 2px 0 rgba(0,0,0,.3);
}
.svc-slider-arrow:hover {
  background: var(--pink);
  transform: scale(1.08);
  box-shadow: 4px 4px 0 #0E0E10;
}
.svc-slider-arrow:disabled {
  opacity: .3;
  cursor: not-allowed;
  transform: none;
}
.svc-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(14,14,16,.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}
.svc-dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--ink);
}

/* ============================================================
   SERVICES PAGE — Style 2: Vertical Accordion Rows
   ============================================================ */
.svc-accordion-section {
  padding: 80px 0 100px;
  background: #F4F4F4;
}
.svc-accordion-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: 480px;
}
input[name^="svc-row"] { display: none; }

/* Card base */
.svc-ac-card {
  position: relative;
  flex: 0 0 80px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex .7s cubic-bezier(.28,-.03,0,.99);
  background-color: var(--svc-col, var(--blue));
  background-image: var(--svc-img);
  background-size: cover;
  background-position: center center;
}
/* Colour overlay — hides hero image when collapsed */
.svc-ac-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--svc-col, var(--blue));
  transition: opacity .7s ease;
  z-index: 1;
}
input:checked + .svc-ac-card { flex: 1; cursor: default; }
input:checked + .svc-ac-card::before { opacity: 0; }

/* Collapsed badge — spans full card height: big fill-text + icon */
.svc-ac-badge-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 18px;
  gap: 10px;
  z-index: 3;
  pointer-events: none;
  /* no transition — badge snaps so text never rotates during card animation */
}
input:checked + .svc-ac-card .svc-ac-badge-wrap { opacity: 0; }

/* Vertical label — large fill text (76px fills the 80px column width) */
.svc-ac-vert-name {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  flex-shrink: 0;
  pointer-events: none;
}
.svc-ac-card--text-dark .svc-ac-vert-name { color: #0E0E10; }

/* Circle icon badge */
.svc-ac-icon-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--svc-col, var(--blue));
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-ac-card--text-dark .svc-ac-icon-dot { border-color: rgba(0,0,0,.2); }
.svc-ac-icon-dot img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: brightness(0) invert(1);
  display: block;
}
.svc-ac-card--text-dark .svc-ac-icon-dot img { filter: brightness(0); }

/* Expanded content overlay */
.svc-ac-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 32px 40px;
  background: linear-gradient(to top, rgba(1,19,81,.88) 0%, rgba(1,19,81,.55) 45%, rgba(1,19,81,.2) 70%, transparent 100%);
  z-index: 4;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease 0s, transform .25s ease 0s;
  pointer-events: none;
}
input:checked + .svc-ac-card .svc-ac-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease .3s, transform .5s ease .3s;
  pointer-events: auto;
}
.svc-ac-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.05;
}
.svc-ac-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 16px;
  max-width: 400px;
  text-shadow: 0 1px 8px rgba(0,0,0,.55), 0 2px 20px rgba(0,0,0,.4);
}
.svc-ac-link {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .18s ease, opacity .18s ease;
}
.svc-ac-link:hover { gap: 10px; opacity: .75; }

/* Colour modifier classes */
.svc-ac-card--blue   { --svc-col: var(--blue); }
.svc-ac-card--pink   { --svc-col: var(--pink); }
.svc-ac-card--orange { --svc-col: var(--orange); }
.svc-ac-card--purple { --svc-col: var(--purple); }
.svc-ac-card--yellow { --svc-col: var(--yellow); }
.svc-ac-card--cyan   { --svc-col: var(--cyan); }
.svc-ac-card--peach  { --svc-col: #FFB078; }
.svc-ac-card--mint   { --svc-col: var(--mint); }

@media (max-width: 720px) {
  .svc-accordion-row {
    flex-direction: column;
    height: auto;
  }
  .svc-ac-card {
    flex: 0 0 68px;
    border-radius: 16px;
  }
  input:checked + .svc-ac-card {
    flex: 0 0 260px;
  }
  .svc-ac-badge-wrap {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
  }
  .svc-ac-vert-name {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 18px;
  }
}

/* ---------- Process Section ---------- */
.svc-process {
  background: #FAFBFD;
  padding: clamp(64px, 8vh, 100px) 0;
}
.svc-process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.svc-process-left { min-width: 0; }
.svc-process-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.svc-process-heading .hl-pink { color: inherit; }

/* Vertical timeline */
.svc-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink), var(--blue), var(--cyan), var(--yellow), var(--purple));
  z-index: 0;
}

/* Step color nodes */
.svc-step-ico.svc-step-ico--pink   { background: var(--pink);   }
.svc-step-ico.svc-step-ico--blue   { background: var(--blue);   }
.svc-step-ico.svc-step-ico--cyan   { background: var(--cyan);   }
.svc-step-ico.svc-step-ico--yellow { background: var(--yellow); }
.svc-step-ico.svc-step-ico--purple { background: var(--purple); }

/* Each step row */
.svc-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.25,.46,.45,.94);
}
.svc-step:last-child { padding-bottom: 0; }
.svc-steps.is-visible .svc-step { opacity: 1; transform: translateY(0); }
.svc-steps.is-visible .svc-step:nth-child(1) { transition-delay: 0s; }
.svc-steps.is-visible .svc-step:nth-child(2) { transition-delay: .1s; }
.svc-steps.is-visible .svc-step:nth-child(3) { transition-delay: .2s; }
.svc-steps.is-visible .svc-step:nth-child(4) { transition-delay: .3s; }
.svc-steps.is-visible .svc-step:nth-child(5) { transition-delay: .4s; }

.svc-step-ico {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.svc-step:hover .svc-step-ico { transform: scale(1.2) rotate(-10deg); }
.svc-step-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.svc-step-content {
  padding-top: 6px;
}
.svc-step-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 4px;
}
.svc-step-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 8px;
}
.svc-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 768px) {
  .svc-process-layout { grid-template-columns: 1fr; }
  .svc-process-left { position: static; margin-bottom: 40px; }
}

/* ---------- Project Managers Section ---------- */
.svc-pm {
  background: #001351;
  color: #F5F2EE;
  padding: 80px 0;
}
.svc-pm-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.svc-pm-copy .eyebrow { color: var(--cyan); margin-bottom: 16px; }
.svc-pm-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 0.92;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0 0 22px;
}
.svc-pm-heading .hl-pink { color: inherit; }
.svc-pm-body {
  font-size: 14px;
  line-height: 1.65;
  color: #cfd2e8;
  margin: 0 0 14px;
  max-width: 480px;
}
.svc-pm-body strong { color: var(--cyan); }
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s ease, transform .2s ease;
}
.svc-feature-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.svc-feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.svc-feature-card:hover .svc-feature-ico { transform: scale(1.18) rotate(-10deg); }
.svc-feature-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  filter: brightness(0) invert(1);
}
.svc-feature-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0;
}
.svc-feature-desc {
  font-size: 12px;
  line-height: 1.55;
  color: #cfd2e8;
  margin: 0;
}

/* ---------- Individual Service Page — Detail Body ---------- */
.svc-detail-body {
  background: #FAFBFD;
  padding: 80px 0;
}
.svc-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.svc-detail-col .eyebrow { margin-bottom: 12px; }
.svc-detail-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.svc-detail-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 12px;
}

/* ---------- Individual Service Page — Deliverables ---------- */
.svc-deliverables {
  background: #FAFBFD;
  padding: 80px 0;
}
.svc-del-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.svc-del-item {
  background: #F4F4F4;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-del-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.svc-del-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-del-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.svc-del-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.svc-del-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------- Individual Service Page — Stats ---------- */
.svc-stats-section {
  background: var(--blue);
  color: #F5F2EE;
  padding: 80px 0;
}
.svc-stats-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.svc-stats-copy .eyebrow { color: var(--yellow); margin-bottom: 14px; }
.svc-stats-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.92;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0 0 20px;
}
.svc-stats-heading .hl-pink { color: inherit; }
.svc-stats-body {
  font-size: 14px;
  line-height: 1.65;
  color: #cfd2e8;
  margin: 0;
}
.svc-stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 22px 20px;
  transition: background .2s ease;
}
.svc-stat-card:hover { background: rgba(255,255,255,0.13); }
.svc-stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1;
  color: #F5F2EE;
  margin: 0 0 4px;
}
.svc-stat-label {
  font-size: 12px;
  color: #cfd2e8;
  margin: 0;
  line-height: 1.45;
}

/* ---------- Individual Service Page — Related Services ---------- */
.svc-related {
  background: #FAFBFD;
  padding: 80px 0;
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* ---------- Responsive — Services pages ---------- */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-steps { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .svc-pm-row { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-row { grid-template-columns: 1fr; }
  .svc-stats-row { grid-template-columns: 1fr; gap: 40px; }
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-del-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) and (min-width: 721px) {
  .svc-steps::before { display: none; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { flex-direction: row; align-items: center; gap: 10px; }
  .svc-card-img-wrap { flex: 0 0 45%; aspect-ratio: 4/5; order: 1; border-radius: 18px; margin: 0; }
  .svc-card-body { order: 2; flex: 1; gap: 4px; }
  .svc-card-ico { justify-content: flex-start; margin-bottom: 0; }
  .svc-card-body { order: 2; }
  .svc-steps { grid-template-columns: 1fr 1fr; }
  .svc-del-grid { grid-template-columns: 1fr; }
  .svc-stats-cards { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-related-grid { grid-template-columns: 1fr; }
  .svc-detail-body { padding: 40px 0; }
  .svc-deliverables { padding: 40px 0; }
}
.plan-feature-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 clamp(14px, 1.6vw, 24px);
  border-left: 1px solid rgba(245,242,238,.1);
}
.plan-feature-col:first-child {
  padding-left: 0;
  border-left: none;
}

/* Feature icon: circular frame with colour tint */
.plan-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F5F2EE;
  border: 1.5px solid rgba(14,14,16,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
.plan-feature-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
/* Per-column colour tints */
.plan-features-row .plan-feature-col:nth-child(1) .plan-feature-icon { background: var(--blue);   border-color: var(--blue); }
.plan-features-row .plan-feature-col:nth-child(2) .plan-feature-icon { background: var(--pink);   border-color: var(--pink); }
.plan-features-row .plan-feature-col:nth-child(3) .plan-feature-icon { background: var(--cyan);   border-color: var(--cyan); }
.plan-features-row .plan-feature-col:nth-child(4) .plan-feature-icon { background: var(--mint);     border-color: var(--mint); }
.plan-features-row .plan-feature-col:nth-child(5) .plan-feature-icon { background: var(--purple); border-color: var(--purple); }
.plan-features-row .plan-feature-col:nth-child(1) .plan-feature-icon img,
.plan-features-row .plan-feature-col:nth-child(2) .plan-feature-icon img,
.plan-features-row .plan-feature-col:nth-child(3) .plan-feature-icon img,
.plan-features-row .plan-feature-col:nth-child(5) .plan-feature-icon img { filter: brightness(0) invert(1) !important; }
.plan-features-row .plan-feature-col:nth-child(4) .plan-feature-icon img { filter: brightness(0) !important; }
.plan-feature-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0;
  line-height: 1.1;
}
.plan-feature-title::after { content: '.'; }
.plan-feature-col:nth-child(1) .plan-feature-title::after { color: var(--blue); }
.plan-feature-col:nth-child(2) .plan-feature-title::after { color: var(--pink); }
.plan-feature-col:nth-child(3) .plan-feature-title::after { color: var(--cyan); }
.plan-feature-col:nth-child(4) .plan-feature-title::after { color: var(--mint); }
.plan-feature-col:nth-child(5) .plan-feature-title::after { color: var(--purple); }
.plan-feature-desc {
  font-size: 12px;
  line-height: 1.55;
  color: #c8cbdc;
  margin: 0;
}

/* ---------- Pricing FAQ ---------- */
.pricing-faq {
  background: #FAFBFD;
  padding: 80px 0;
}
.pricing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.pricing-faq-copy { padding-top: 8px; }
.pricing-faq-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 22px;
}
.pricing-faq-subtitle {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 340px;
}
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-item { border-bottom: 1px solid rgba(14,14,16,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(14,14,16,0.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 14px);
  text-transform: uppercase;
  color: var(--ink);
  transition: color .18s ease;
}
.faq-question:hover { color: var(--pink); }
.faq-plus {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1.5px solid rgba(14,14,16,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .25s ease;
}
.faq-item--open .faq-question { color: var(--pink); }
.faq-item--open .faq-plus {
  background: var(--pink);
  border-color: var(--pink);
  color: #F5F2EE;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 32px 18px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  font-family: var(--body);
  max-width: 560px;
}
.faq-item--open .faq-answer { display: block; }

/* ---------- Pricing Bottom CTA ---------- */
.pricing-bottom-cta {
  background: var(--pink);
  padding: 52px 0;
}
.pricing-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pricing-bottom-cta-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.0;
}
.pricing-bottom-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.55;
  max-width: 560px;
}
.pricing-bottom-cta .btn-pink {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  box-shadow: 2px 2px 0 rgba(255,255,255,.35);
  white-space: nowrap;
}
.pricing-bottom-cta .btn-pink:hover { box-shadow: 5px 5px 0 rgba(255,255,255,.35); }
.pricing-bottom-cta .btn-pill-white { box-shadow: 2px 2px 0 #0E0E10; }
.pricing-bottom-cta .btn-pill-white:hover { box-shadow: 5px 5px 0 #0E0E10; }
.pricing-cta-arrow {
  width: 14px;
  height: 14px;
  image-rendering: pixelated;
  filter: brightness(0) invert(1);
  display: inline-block;
}

/* ---------- Pricing Responsive ---------- */
@media (max-width: 1100px) {
  .pricing-hero-row    { grid-template-columns: 1fr; }
  .pricing-hero-visual { display: none; }
  .plans-grid          { grid-template-columns: repeat(2, 1fr); }
  .every-plan-inner    { grid-template-columns: 1fr; gap: 36px; }
  .plan-features-row   { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
  .plan-feature-col    { border-left: none; padding-left: 0; }
  .pricing-faq-grid    { grid-template-columns: 1fr; }
  .pricing-bottom-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 720px) {
  .plans-grid          { grid-template-columns: 1fr; }
  .plan-features-row   { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .plan-feature-col    { border-left: none; padding-left: 0; }
  .pricing-faq { padding: 56px 0; }
  .pricing-bottom-cta  { padding: 40px 0; }
}

/* ============================================================
   About Us Page
   ============================================================ */

/* -- Shared highlight spans (general heading accents) ------ */
.hl-pink, .hl-cyan, .hl-yellow, .hl-orange, .hl-purple, .hl-mint { color: inherit; }

/* -- Extra contact-ico color variants ---------------------- */
.contact-ico-yellow { background: var(--yellow); }
.contact-ico-orange { background: var(--orange); }
.contact-ico-mint   { background: var(--mint); }

/* -- About hero -------------------------------------------- */
.about-hero {
  background: #FAFBFD;
  padding: clamp(40px, 5vh, 64px) 0 clamp(50px, 6vh, 80px);
  overflow: hidden;
}
.about-hero-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.about-hero-copy { padding-top: clamp(20px, 3vh, 40px); }
.about-hero-copy .eyebrow { letter-spacing: 0.1em; margin-bottom: 6px; }
.about-hero-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.about-hero-heading .display-pink { display: block; }
.about-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 20px 0 32px;
  max-width: 480px;
}
.about-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 340px;
  overflow: visible;
}
.about-hero-floats {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-float-icon {
  position: absolute;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.13));
  animation: floatBob 3.5s ease-in-out infinite;
}
.about-float-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.about-float-1 { top: 18%; left: 12%; animation-delay: 0s; }
.about-float-2 { top: 8%;  right: 18%; animation-delay: 0.7s; }
.about-float-3 { bottom: 22%; left: 28%; animation-delay: 1.2s; }
.about-float-4 { bottom: 12%; right: 14%; animation-delay: 1.9s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* -- Values strip ------------------------------------------ */
.about-vstrip {
  background: #0B0F1A;
  padding: clamp(48px, 6vh, 72px) 0;
}
.about-vstrip-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.about-vstrip-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.97;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0;
}
.about-vstrip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.about-vstrip-card {
  padding: 0 clamp(14px, 1.6vw, 24px);
  border-left: 1px solid rgba(245,242,238,.1);
}
.about-vstrip-card:last-child {
  border-right: none;
}
.about-vstrip-card:first-child {
  border-left: none;
  padding-left: 0;
}
.about-vstrip-ico {
  margin-bottom: 14px;
  border-radius: 50%;
}
.about-vstrip-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0 0 8px;
}
.about-vstrip-body {
  font-size: 12px;
  color: rgba(245,242,238,.5);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .about-vstrip-inner { grid-template-columns: 1fr; }
  .about-vstrip-grid { grid-template-columns: repeat(3, 1fr); border-left: none; }
  .about-vstrip-card { padding: 20px 0; border-right: none; border-left: none; }
}
@media (max-width: 540px) {
  .about-vstrip-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .about-vstrip-card { border-left: none; }
}

/* -- Team grid --------------------------------------------- */
.about-team {
  background: #F4F4F4;
  padding: clamp(64px, 8vh, 100px) 0;
}
.about-team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(40px, 5vh, 60px);
}
.about-team-heading {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.about-team-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(14,14,16,.55);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
  align-self: end;
}
@media (max-width: 700px) {
  .about-team-intro { grid-template-columns: 1fr; }
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-team-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.about-team-photo {
  position: relative;
  background: transparent;
}
.about-team-arch {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 78%;
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
.about-team-photo img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.about-team-deco {
  position: absolute;
  bottom: 15px;
  right: 14px;
  pointer-events: none;
  z-index: 4;
}
.about-team-deco img {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.about-team-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  overflow: hidden;
  background: #0B0F1A;
  border-radius: 0;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 16px;
  z-index: 3;
}
.about-team-card:hover .about-team-banner {
  height: 100%;
  border-radius: 50% 50% 0 0;
}
.about-team-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0 0 4px;
  line-height: 1.1;
}
.about-team-role {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin: 0;
}
.about-team-desc {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 86px;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s;
}
.about-team-card:hover .about-team-desc {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 700px) {
  .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 420px) {
  .about-team-grid { grid-template-columns: 1fr; }
}

/* -- Mission section --------------------------------------- */
.about-mission {
  background: var(--blue);
  padding: clamp(64px, 8vh, 100px) 0;
  color: #F5F2EE;
}
.about-mission .dot { color: var(--yellow); }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about-mission-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.97;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0 0 20px;
}
.about-values-heading { color: var(--ink); }
.about-mission-body {
  font-size: 14px;
  line-height: 1.65;
  color: #cfd2e8;
  margin: 0;
  max-width: 420px;
}
.about-mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease, transform 0.22s ease;
}
.about-pillar:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.about-pillar-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5F2EE;
  margin: 0;
  line-height: 1.1;
}
.about-pillar-body {
  font-size: 13px;
  line-height: 1.6;
  color: #cfd2e8;
  margin: 0;
}

/* -- Values section --------------------------------------- */
.about-values {
  background: var(--bg);
  padding: clamp(64px, 8vh, 100px) 0;
}
.about-values-head { margin-bottom: 48px; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-value-card {
  background: #F5F2EE;
  border-radius: var(--radius-card);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.about-value-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.about-value-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* -- About stats strip ------------------------------------ */
.about-stats {
  background: linear-gradient(
    to right,
    #F5F2EE 0%, #F5F2EE 50%,
    #0E0E10 50%, #0E0E10 100%
  );
  padding: 0;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
}
.about-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 28px;
}
.about-stat-item:nth-child(1),
.about-stat-item:nth-child(2) { border-right: 1px solid #dcdcdc; }
.about-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); }
.about-stat-ico {
  flex-shrink: 0;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.about-stat-item:hover .about-stat-ico { transform: scale(1.22) rotate(-8deg); }
.about-stat-num {
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1;
}
.about-stat-label {
  font-size: 11px;
  line-height: 1.35;
  margin-top: 3px;
}
.about-stat-item:nth-child(1) .about-stat-num,
.about-stat-item:nth-child(2) .about-stat-num { color: var(--ink); }
.about-stat-item:nth-child(1) .about-stat-label,
.about-stat-item:nth-child(2) .about-stat-label { color: #555; }
.about-stat-item:nth-child(3) .about-stat-num,
.about-stat-item:nth-child(4) .about-stat-num { color: #F5F2EE; }
.about-stat-item:nth-child(3) .about-stat-label,
.about-stat-item:nth-child(4) .about-stat-label { color: #cfd2e8; }

/* -- About dual CTA --------------------------------------- */
.about-cta-wrap {
  background: linear-gradient(to right, var(--pink) 50%, var(--blue-2) 50%);
}
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  max-width: var(--container);
  margin: 0 auto;
}
.about-cta-left {
  background: var(--pink);
  color: #F5F2EE;
  padding: 56px 64px 56px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.about-cta-left .display-sm { color: #F5F2EE; line-height: .98; }
.about-cta-left .dot { color: var(--mint); }
.about-cta-left .btn { align-self: flex-start; margin-top: 8px; box-shadow: 2px 2px 0 #0E0E10; }
.about-cta-left .btn:hover { box-shadow: 5px 5px 0 #0E0E10; }
.about-cta-right {
  background: var(--blue-2);
  color: #F5F2EE;
  padding: 56px var(--gutter) 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.about-cta-right .display-sm { color: #F5F2EE; line-height: .98; }
.about-cta-right .dot { color: var(--cyan); }
.about-cta-right .btn { align-self: flex-start; margin-top: 8px; }

/* -- About responsive ------------------------------------- */
@media (max-width: 1100px) {
  .about-mission-pillars { grid-template-columns: 1fr 1fr; }
  .about-values-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  .about-hero-row        { grid-template-columns: 1fr; }
  .about-hero-visual     { display: none; }
  .about-mission-inner   { grid-template-columns: 1fr; }
  .about-team-grid       { grid-template-columns: 1fr 1fr; }
  .about-cta-wrap        { background: var(--pink); }
  .about-cta-inner       { grid-template-columns: 1fr; }
  .about-cta-right       { background: var(--blue-2); padding-left: var(--gutter); }
}
@media (max-width: 700px) {
  .about-mission-pillars { grid-template-columns: 1fr; }
  .about-values-grid     { grid-template-columns: 1fr; }
  .about-team-grid       { grid-template-columns: 1fr; }
  .about-stats-row       { grid-template-columns: 1fr 1fr; background: #F5F2EE; }
  .about-stats           { background: #F5F2EE; }
  .about-stat-item       { border-right: 1px solid #dcdcdc !important; border-bottom: 1px solid #dcdcdc; }
  .about-stat-item:nth-child(3) .about-stat-num,
  .about-stat-item:nth-child(4) .about-stat-num  { color: var(--ink); }
  .about-stat-item:nth-child(3) .about-stat-label,
  .about-stat-item:nth-child(4) .about-stat-label { color: #555; }
}

/* ============ SISTER AGENCY CALLOUT (service-websites.html) ============ */
.svc-sister-callout {
  background: var(--blue-2);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid rgba(101,237,211,.2);
  border-bottom: 1px solid rgba(101,237,211,.2);
}
.svc-sister-inner {
  max-width: 720px;
}
.svc-sister-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 18px;
}
.svc-sister-heading {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 700;
  color: #F4F4F4;
  line-height: .96;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.svc-sister-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 0 32px;
}
.svc-sister-body strong {
  color: #F4F4F4;
  font-weight: 700;
}
.svc-sister-btn {
  display: inline-block;
  background: var(--mint);
  color: #031E75;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: box-shadow .18s, transform .18s;
}
.svc-sister-btn:hover {
  box-shadow: 5px 5px 0 rgba(101,237,211,.4);
  transform: translateY(-1px);
  color: #031E75;
}

/* ── Cookie Consent Banner ─────────────────────────────────────────────── */
#sla-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0e0e10;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
#sla-cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
  line-height: 1.5;
}
#sla-cookie-banner a {
  color: var(--pink);
  text-decoration: underline;
}
.sla-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
