/* =========================================================
   Jens Infotech — 360° Digital Solutions Provider
   Built with GSAP, vanilla CSS Grid + Flex, custom properties
   ========================================================= */

/* ---------- 1. ROOT TOKENS ---------- */
:root {
  --bg: #0a0a0f;
  --bg-2: #0f0f17;
  --bg-3: #15151f;
  --surface: #1a1a26;
  --surface-2: #20202e;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);

  --ink: #f5f1ea;
  --ink-dim: #b6b1a8;
  --ink-mute: #6e6a63;

  --accent: #6a4dff;        /* electric violet */
  --accent-2: #18d4d4;      /* cyan */
  --accent-3: #d4ff3a;      /* lime */
  --accent-warm: #ff7a45;   /* warm orange */

  --grad-1: linear-gradient(135deg, #6a4dff 0%, #18d4d4 100%);
  --grad-2: linear-gradient(135deg, #6a4dff 0%, #ff3d80 50%, #ffb33d 100%);
  --grad-text: linear-gradient(90deg, #6a4dff, #18d4d4, #d4ff3a);

  --radius: 14px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  --shadow-glow: 0 0 60px -10px rgba(106,77,255,.45);

  /* Whole site uses Poppins.
     Display = Poppins italic 600/700 (still feels editorial via italic + tighter tracking).
     UI = Poppins regular/500.
     Mono retained as JetBrains Mono ONLY for the code-window mockup — switching it to
     Poppins would visually break the "code editor" illusion. Everything else = Poppins. */
  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-ui:      'Poppins', system-ui, -apple-system, sans-serif;
  --font-mono:    'Poppins', system-ui, -apple-system, sans-serif;
  --font-code:    'JetBrains Mono', 'Courier New', monospace;

  --max: 1380px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.65,.05,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;                   /* Poppins reads bigger than Space Grotesk — tune body to 15px for comfortable density */
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;          /* Poppins benefits from tiny negative tracking */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* Grain overlay (global) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- 3. TYPOGRAPHY ---------- */
/* Display headlines: Poppins 600 needs more line-height than Instrument Serif
   because the letterforms are wider/blockier — 1.02 felt cramped. */
.h-display, h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(44px, 7.5vw, 132px); }    /* was 48 / 9 / 168 */
h2 { font-size: clamp(34px, 5vw, 76px); }        /* was 40 / 6 / 96 */
h3 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);              /* was 22 / 2.3 / 32 */
  letter-spacing: -0.01em;
  line-height: 1.25;
}
h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;                                /* was 18px */
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.italic-serif { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
section { position: relative; padding: clamp(60px, 7vw, 110px) 0; }
.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
  margin: 0;
}

/* ---------- 5. CUSTOM CURSOR ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s;
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 56px; height: 56px; background: var(--accent-2); }
.cursor.is-text  { width: 4px; height: 28px; border-radius: 2px; }
@media (hover:none) { .cursor { display: none; } body { cursor: auto; } button, a { cursor: pointer; } }

/* ---------- 6. PRELOADER / INTRO ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.preloader__counter {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);   /* was 80 / 18 / 240 */
  line-height: 1;
  letter-spacing: -0.03em;
}
.preloader__bar {
  width: min(540px, 70vw);
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.preloader__bar > i {
  position: absolute;
  inset: 0;
  background: var(--grad-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease);
}
.preloader__bar.full > i { transform: scaleX(1); }
.preloader__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* =========================================================
   7. NAV — sticky header, scroll-aware, fully responsive
   ========================================================= */
/* =========================================================
   NAV — frosted glass, persistent presence, no bleed
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,15,0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02), 0 8px 32px -16px rgba(0,0,0,0.5);
  transition: transform .4s var(--ease), background .35s var(--ease), padding .3s var(--ease), border-color .35s, box-shadow .35s;
}

/* Subtle accent gradient line at the bottom edge — visual anchor */
.nav::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(106,77,255,0.35) 25%, rgba(24,212,212,0.35) 50%, rgba(212,255,58,0.35) 75%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(10,10,15,0.88);
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 12px 40px -16px rgba(0,0,0,0.6);
}
.nav.is-scrolled::after { opacity: 0.85; }

.nav.is-hidden { transform: translateY(-110%); }

/* Light theme — bone-paper frosted glass */
body.theme-light .nav {
  background: rgba(245,241,234,0.78);
  border-bottom-color: rgba(10,10,15,0.08);
  box-shadow: 0 1px 0 rgba(10,10,15,0.02), 0 8px 32px -16px rgba(20,20,30,0.10);
}
body.theme-light .nav.is-scrolled {
  background: rgba(245,241,234,0.94);
  border-bottom-color: rgba(10,10,15,0.12);
  box-shadow: 0 1px 0 rgba(10,10,15,0.03), 0 12px 40px -16px rgba(20,20,30,0.18);
}
body.theme-light .nav::after {
  background: linear-gradient(90deg, transparent 0%, rgba(90,61,255,0.30) 25%, rgba(15,176,176,0.30) 50%, rgba(122,156,0,0.40) 75%, transparent 100%);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  padding: 4px 6px;
  border-radius: 12px;
  transition: background .3s var(--ease);
}
.nav__logo:hover { background: rgba(255,255,255,0.04); }
body.theme-light .nav__logo:hover { background: rgba(10,10,15,0.04); }

.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(106,77,255,0.35));
  transition: transform .5s var(--ease), filter .5s var(--ease);
  position: relative;
  z-index: 2;
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 6px 18px rgba(106,77,255,0.55)) drop-shadow(0 0 12px rgba(24,212,212,0.35));
}

/* Glow halo behind logo on hover */
.nav__logo::before {
  content: "";
  position: absolute;
  top: 50%; left: 24px;
  transform: translate(-50%, -50%) scale(0.4);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,77,255,0.5) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: transform .55s var(--ease), opacity .4s;
  z-index: 1;
  filter: blur(18px);
}
.nav__logo:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* When nav is scrolled — logo shrinks slightly so it doesn't dominate */
.nav.is-scrolled .nav__logo-img {
  height: 48px;
  filter: drop-shadow(0 2px 10px rgba(106,77,255,0.30));
}

/* Mobile breakpoints — see overrides below at 960/480/380 */

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}

/* Desktop links */
.nav__links {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 9px 16px;
  border-radius: 99px;
  transition: color .3s, background .3s;
  white-space: nowrap;
}
.nav__links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.06);
}
body.theme-light .nav__links a:hover { background: rgba(10,10,15,0.05); }

.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-3);
  transform: translateX(-50%) scale(0);
  transition: transform .35s var(--ease);
  box-shadow: 0 0 8px var(--accent-3);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: translateX(-50%) scale(1); }
.nav__links a.is-active {
  background: rgba(212,255,58,0.08);
  color: var(--ink);
}
body.theme-light .nav__links a.is-active { background: rgba(122,156,0,0.10); }

/* Desktop CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .3s;
  box-shadow: 0 6px 20px -4px rgba(106,77,255,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(106,77,255,0.7), 0 0 0 4px rgba(106,77,255,0.15), inset 0 1px 0 rgba(255,255,255,0.25);
  color: #fff;
  filter: saturate(1.15);
}
.nav__cta:hover::before { transform: translateX(100%); }
.nav__cta .arrow { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.nav__cta:hover .arrow { transform: translate(2px, -2px); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  padding: 0;
  align-items: center;
  flex-shrink: 0;
  transition: background .3s;
}
.nav__burger:hover { background: rgba(255,255,255,0.1); }
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, width .35s var(--ease);
  transform-origin: center;
}
.nav__burger span:nth-child(2) { width: 16px; align-self: center; }
.nav__burger:hover span:nth-child(2) { width: 22px; }

/* Burger animates to X when menu open */
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); width: 22px; }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); width: 22px; }

/* Mobile breakpoint */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; } /* CTA inside mobile menu instead */
  .nav__burger { display: flex; }
  .nav__logo-img { height: 52px; }
  .nav.is-scrolled .nav__logo-img { height: 42px; }
}
@media (max-width: 480px) {
  .nav__logo-img { height: 44px; }
  .nav.is-scrolled .nav__logo-img { height: 36px; }
  .nav { padding: 12px 0; }
  .nav.is-scrolled { padding: 8px 0; }
}

/* =========================================================
   MOBILE MENU — full-screen overlay
   ========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110; /* above nav (100) so close button is clickable */
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .35s var(--ease);
}

/* Subtle gradient orb in the background */
.mobile-menu::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.18;
  top: -100px;
  right: -150px;
  pointer-events: none;
}
.mobile-menu::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent-2);
  filter: blur(120px);
  opacity: 0.15;
  bottom: -100px;
  left: -150px;
  pointer-events: none;
}

.mobile-menu__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(106,77,255,0.35));
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s var(--ease);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.12); transform: rotate(90deg); }

/* Big nav links */
.mobile-menu__links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 16px var(--gutter);
  flex: 1;
}
.mobile-menu__links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(24px, 5.6vw, 36px);   /* was 28 / 7 / 44 — svc-row */
  line-height: 1.05;
  letter-spacing: -0.01em;
  transition: color .25s, padding-left .35s var(--ease);
  opacity: 0;
  transform: translateX(-20px);
}
.mobile-menu.is-open .mobile-menu__links a {
  animation: mobileSlideIn .55s var(--ease-out) forwards;
  animation-delay: calc(0.08s * var(--i, 0) + 0.1s);
}
@keyframes mobileSlideIn {
  to { opacity: 1; transform: translateX(0); }
}
.mobile-menu__links a:hover,
.mobile-menu__links a.is-active {
  color: var(--accent-3);
  padding-left: 12px;
}
.mobile-menu__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 500;
  width: 28px;
  flex-shrink: 0;
}
.mobile-menu__label { flex: 1; }
.mobile-menu__arrow { color: var(--ink-mute); flex-shrink: 0; }
.mobile-menu__links a:hover .mobile-menu__arrow,
.mobile-menu__links a.is-active .mobile-menu__arrow { color: var(--accent-3); }

/* Footer of mobile menu — CTA + contact */
.mobile-menu__foot {
  position: relative;
  z-index: 2;
  padding: 24px var(--gutter) 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
}
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-dim);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s;
}
.mobile-menu__contact a:hover { color: var(--accent-3); }
.mobile-menu__contact a svg { color: var(--accent-2); flex-shrink: 0; }
.mobile-menu__locations {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Lock body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ---------- 8. HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.hero__orb--1 { width: 520px; height: 520px; background: var(--accent); top: -120px; left: -100px; }
.hero__orb--2 { width: 420px; height: 420px; background: var(--accent-2); bottom: -60px; right: -80px; opacity: .5; }
.hero__orb--3 { width: 280px; height: 280px; background: var(--accent-warm); top: 30%; left: 45%; opacity: .35; }

/* Floating film-poster montage in the hero background */
.hero__posters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__poster {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  opacity: 0.35;
  filter: saturate(1.05) blur(0.5px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: transform;
}
.hero__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Right-side stack — large posters peeking from edges */
.hero__poster--1 { width: 220px; height: 290px; top: 14%;  right: 4%;  transform: rotate(8deg); }
.hero__poster--2 { width: 170px; height: 230px; top: 50%;  right: 22%; transform: rotate(-6deg); opacity: .25; }
.hero__poster--3 { width: 140px; height: 190px; top: 8%;   right: 28%; transform: rotate(-12deg); opacity: .2; }
.hero__poster--4 { width: 180px; height: 240px; bottom: 12%; right: 8%;  transform: rotate(4deg); opacity: .3; }
.hero__poster--5 { width: 130px; height: 175px; bottom: 28%; right: 32%; transform: rotate(-3deg); opacity: .2; }
.hero__poster--6 { width: 110px; height: 150px; top: 35%;  right: 1%;  transform: rotate(14deg); opacity: .22; }

@media (max-width: 1100px) {
  .hero__poster--3, .hero__poster--5, .hero__poster--6 { display: none; }
  .hero__poster--1 { width: 170px; height: 220px; opacity: .25; }
  .hero__poster--2 { width: 130px; height: 175px; opacity: .18; }
  .hero__poster--4 { width: 140px; height: 190px; opacity: .22; }
}
@media (max-width: 700px) {
  .hero__posters { display: none; } /* keep hero clean on mobile */
}

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta i {
  width: 6px; height: 6px; background: var(--accent-3); border-radius: 50%; font-style: normal;
  display: inline-block;
}
.hero__title {
  font-size: clamp(52px, 9.5vw, 168px);   /* was 56 / 12 / 220 — Poppins 600 felt oversized at the top */
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero__title .row { display: block; overflow: hidden; }
.hero__title .row span { display: inline-block; }
.hero__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__base {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.hero__lead {
  max-width: 480px;
  font-size: 16px;                 /* was 18px — Poppins reads bigger */
  color: var(--ink-dim);
  line-height: 1.6;
}
.hero__cta-row { display: flex; gap: 14px; }
@media (max-width: 700px) {
  .hero__base { grid-template-columns: 1fr; }
  .hero__cta-row { flex-wrap: wrap; }
}

/* ---------- 9. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;            /* was 18 30 — slightly tighter for Poppins */
  border-radius: 99px;
  font-size: 13.5px;              /* was 14 — Poppins button text felt heavy at 14 */
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease), border-color .35s;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-1);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { border-color: transparent; color: #fff; }
.btn--primary {
  background: var(--ink);
  color: #000;
  border-color: transparent;
}
.btn--primary::before { background: var(--grad-1); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .4s var(--ease);
}
.btn:hover .arrow { transform: translate(4px, -4px); }

/* ---------- 10. MARQUEE ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-2);
}
.marquee__track {
  display: inline-flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 56px);   /* was 38 / 6 / 72 */
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 50px; }
.marquee__track i {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  font-style: normal;
  display: inline-block;
}
.marquee__track em {
  font-style: italic;
  color: var(--ink-dim);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- 11. SECTION HEADERS ---------- */
.s-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: end;
}
.s-head__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
  align-self: end;
  padding-bottom: 8px;
  white-space: nowrap;
}
.s-head__title { font-size: clamp(34px, 4.6vw, 68px); }   /* was 40 / 6 / 88 */
.s-head__title em { font-style: italic; color: var(--ink-dim); }
@media (max-width: 800px) {
  .s-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .s-head__num { padding-bottom: 0; }
}

/* ---------- 12. SERVICES ---------- */
.services {
  background: var(--bg-2);
}
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  gap: 30px;
  align-items: center;
  position: relative;
  transition: padding .4s var(--ease);
}
.svc-row:hover { padding: 50px 0; }
.svc-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
}
.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.svc-row__title em { font-style: italic; }
.svc-row:hover .svc-row__title { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.svc-row__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 380px;
  justify-content: flex-end;
}
.svc-row__tags span {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  font-size: 12px;
  color: var(--ink-dim);
}
.svc-row__arrow {
  width: 50px; height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.svc-row:hover .svc-row__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-45deg);
}
.svc-row__media {
  position: absolute;
  right: 110px;
  top: 50%;
  transform: translateY(-50%) scale(.8);
  width: 220px;
  height: 140px;
  border-radius: var(--radius);
  background: var(--grad-1);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease-out);
  overflow: hidden;
  z-index: 5;
}
.svc-row:hover .svc-row__media { opacity: 1; transform: translateY(-50%) scale(1); }
@media (max-width: 800px) {
  .svc-row { grid-template-columns: 40px 1fr 40px; }
  .svc-row__tags { display: none; }
  .svc-row__media { display: none; }
}

/* ---------- 13. STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 60px 30px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);   /* was 60 / 8 / 120 */
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-start;
}
.stat__num small {
  font-size: 0.4em;
  margin-left: 8px;
  margin-top: 0.2em;
  color: var(--accent-3);
}
.stat__label {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- 14. WORK / PORTFOLIO (image-driven) ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: none;
  background: var(--surface);
  isolation: isolate;
}
.work-card:nth-child(1) { grid-column: span 7; aspect-ratio: 16 / 10; }
.work-card:nth-child(2) { grid-column: span 5; aspect-ratio: 4 / 3; }
.work-card:nth-child(3) { grid-column: span 5; }
.work-card:nth-child(4) { grid-column: span 7; aspect-ratio: 16 / 10; }
.work-card:nth-child(5) { grid-column: span 6; }
.work-card:nth-child(6) { grid-column: span 6; }
.work-card:nth-child(7) { grid-column: span 4; }
.work-card:nth-child(8) { grid-column: span 8; aspect-ratio: 16 / 10; }
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card { grid-column: 1 / -1 !important; aspect-ratio: 4 / 3 !important; }
}

/* Poster-friendly grid — used on home for Twitter trending campaigns.
   Uniform 3-col layout, all posters same proportion, no force-crop. */
.work-grid--posters {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-grid--posters .work-card {
  grid-column: auto !important;
  aspect-ratio: 3 / 4 !important;
}
.work-grid--posters .work-card__img {
  object-position: center top;
}
@media (max-width: 1024px) {
  .work-grid--posters { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .work-grid--posters { grid-template-columns: 1fr; gap: 16px; }
  .work-grid--posters .work-card { aspect-ratio: 4 / 5 !important; }
}

/* Image media (real portfolio shots) */
.work-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .5s var(--ease);
  filter: saturate(1.05) contrast(1.05);
}
.work-card:hover .work-card__img { transform: scale(1.06); filter: saturate(1.2) contrast(1.1); }

/* Always-on tint at bottom for legibility */
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: background .4s var(--ease);
  pointer-events: none;
}
.work-card:hover::after { background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, rgba(106,77,255,0.25) 60%, transparent 100%); }

/* Fallback gradient media (used when no image specified) */
.work-card__media {
  position: absolute;
  inset: 0;
  background: var(--grad-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 80px);
  color: rgba(255,255,255,.6);
  letter-spacing: -0.02em;
  transition: transform .8s var(--ease-out);
  filter: saturate(.9);
}
.work-card:hover .work-card__media { transform: scale(1.06); }

/* Overlay content (always visible at bottom) */
.work-card__overlay {
  position: absolute;
  inset: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  transform: translateY(0);
  transition: transform .5s var(--ease-out);
}
.work-card:hover .work-card__overlay { transform: translateY(-4px); }
.work-card__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 99px;
  align-self: flex-start;
}
.work-card__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}
.work-card__sub {
  color: rgba(245,241,234,0.85);
  font-size: 14px;
  margin-top: 6px;
  max-width: 360px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.work-card:hover .work-card__sub { opacity: 1; transform: translateY(0); }

/* ---------- 15. PROCESS ---------- */
.process { background: var(--bg-2); }
.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: clamp(60px, 7vw, 110px);
  line-height: 1;
  color: var(--ink-mute);
}
.process-step.is-active .process-step__num {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-step__title { font-size: clamp(24px, 2.8vw, 38px); font-family: var(--font-display); line-height: 1.1; }
.process-step__body { color: var(--ink-dim); font-size: 15px; line-height: 1.6; }
@media (max-width: 800px) {
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step__body { grid-column: 2; }
}

/* ---------- 16. TESTIMONIALS ---------- */
.test-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.test-rail::-webkit-scrollbar { display: none; }
.test-card {
  flex: 0 0 min(440px, 80vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .4s, transform .4s var(--ease);
}
.test-card:hover { border-color: var(--accent); transform: translateY(-6px); }
.test-card__stars { color: var(--accent-3); display: flex; gap: 4px; font-size: 18px; }
.test-card__quote {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.test-card__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.test-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
}
.test-card__name { font-weight: 500; font-size: 15px; }
.test-card__role { font-size: 13px; color: var(--ink-dim); }

/* ---------- 17. CTA BLOCK ---------- */
.cta-block {
  padding: clamp(60px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-block__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.cta-block__title {
  font-size: clamp(40px, 6.2vw, 108px);   /* was 48 / 8 / 144 */
  letter-spacing: -0.04em;
  line-height: 1.04;                       /* was 0.92 — Poppins needs more */
}
.cta-block__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-block__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 14px;
}
.cta-block__side p { color: var(--ink-dim); font-size: 17px; line-height: 1.55; max-width: 360px; }
@media (max-width: 800px) {
  .cta-block__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   18. FOOTER — fully responsive
   ========================================================= */
.footer {
  padding: clamp(60px, 8vw, 100px) 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
}
.footer__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer__brand-link {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.footer__brand-link:hover { transform: scale(1.05) rotate(-3deg); }
.footer__brand-img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(106,77,255,0.4));
  display: block;
  transition: filter .4s var(--ease);
}
.footer__brand-link:hover .footer__brand-img {
  filter: drop-shadow(0 8px 22px rgba(106,77,255,0.6)) drop-shadow(0 0 14px rgba(24,212,212,0.35));
}
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.6;
}
.footer__big {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 196px);   /* was 70 / 16 / 260 */
  letter-spacing: -0.04em;
  line-height: 0.95;                      /* was 0.85 — Poppins-friendly */
  margin-bottom: 60px;
  color: var(--ink);
  word-break: break-word;
}
.footer__big em { font-style: italic; color: var(--ink-mute); }
.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a, .footer__col p {
  display: block;
  color: var(--ink-dim);
  font-size: 15px;
  padding: 4px 0;
  transition: color .3s, padding-left .3s var(--ease);
  line-height: 1.55;
  text-decoration: none;
}
.footer__col a:hover { color: var(--accent-3); padding-left: 4px; }
.footer__col p { transition: none; }
.footer__col p:hover { padding-left: 0; }

/* Bottom row */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer__bottom .muted { color: var(--ink-mute); }

/* Social icons */
.footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: background .25s, color .25s, transform .3s var(--ease), border-color .25s;
}
.footer__social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__col--studio { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; gap: 30px; }
  .footer__col--studio { grid-column: auto; }
  .footer__top { gap: 14px; }
  .footer__brand-img { height: 40px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }
  .footer__big { margin-bottom: 40px; }
}

/* ---------- 19. FLOATING WHATSAPP ---------- */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 12px 40px rgba(37,211,102,.4);
  transition: transform .3s var(--ease);
}
.fab-wa:hover { transform: scale(1.1) rotate(-8deg); }
.fab-wa::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-ring 1.8s var(--ease) infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- 20. ABOUT PAGE ---------- */
.about-hero {
  padding: 200px 0 80px;
  position: relative;
}
.about-hero__title {
  font-size: clamp(48px, 8.5vw, 152px);   /* was 56 / 11 / 200 */
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.about-hero__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-2col p {
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 1.2em;
  line-height: 1.6;
}
.about-2col p strong { color: var(--ink); font-weight: 500; }
@media (max-width: 800px) {
  .about-2col { grid-template-columns: 1fr; gap: 30px; }
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color .4s, transform .4s var(--ease);
  background: var(--surface);
}
.value:hover { border-color: var(--accent-2); transform: translateY(-4px); }
.value__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.value h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 28px; line-height: 1.1; }
.value p { color: var(--ink-dim); font-size: 15px; }
@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }

/* ---------- 21. SERVICE PAGE GRID ---------- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .4s, background .4s, transform .4s var(--ease);
}
.svc-card:hover {
  border-color: transparent;
  background: var(--grad-1);
  transform: translateY(-6px);
}
.svc-card:hover * { color: #fff !important; }
.svc-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  transition: background .3s, color .3s;
}
.svc-card:hover .svc-card__icon { background: rgba(255,255,255,.18); color: #fff; }
.svc-card h3 { font-family: var(--font-display); font-size: 30px; line-height: 1.05; }
.svc-card p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; flex: 1; }
.svc-card__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 900px) { .svc-cards { grid-template-columns: 1fr; } }

/* ---------- 22. CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.contact-info__item:last-child { border-bottom: 1px solid var(--line); }
.contact-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);   /* was 24 / 3 / 36 */
  line-height: 1.25;
}
.contact-info__value a { color: inherit; transition: color .3s; }
.contact-info__value a:hover { color: var(--accent-2); }
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form__row {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}
.form__row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
.form__row.two > div { display: grid; gap: 6px; }
@media (max-width: 700px) { .form__row.two { grid-template-columns: 1fr; } }
.form label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 16px;
  transition: border-color .3s, background .3s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--accent-2);
  background: var(--bg-3);
}
.form textarea { resize: vertical; min-height: 140px; }
.form__success {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(36,211,170,.12);
  color: #4adfb6;
  font-size: 14px;
  border: 1px solid rgba(36,211,170,.3);
  display: none;
}
.form__success.show { display: block; }
.form__error {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,90,90,.12);
  color: #ff8b8b;
  font-size: 14px;
  border: 1px solid rgba(255,90,90,.3);
  display: none;
}
.form__error.show { display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form { padding: 28px; }
}

/* About page hero with world map background */
.about-head {
  position: relative;
  overflow: hidden;
}
.about-head__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.about-head__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: invert(1) hue-rotate(180deg) saturate(1.2);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.about-head__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.about-head__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-head__stats strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);    /* was 36 / 5 / 60 */
  font-weight: 600;                        /* Poppins needs weight */
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-head__stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 700px) {
  .about-head__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 23. PAGE HEADER (sub pages) ---------- */
.page-head {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head__crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 30px;
}
.page-head__crumb a { color: var(--accent-2); }
.page-head__title {
  font-size: clamp(46px, 7.5vw, 132px);   /* was 56 / 10 / 180 */
  letter-spacing: -0.04em;
  line-height: 1.05;                       /* was 0.9 */
}
.page-head__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head__lead {
  margin-top: 30px;
  max-width: 640px;
  font-size: 19px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ---------- 24. FEATURE GRID (service detail pages) ---------- */
.fgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fitem {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .4s, transform .4s var(--ease);
}
.fitem:hover { border-color: var(--accent); transform: translateY(-4px); }
.fitem__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent-3);
  margin-bottom: 16px;
}
.fitem h3 { font-family: var(--font-display); font-size: 30px; line-height: 1.1; margin-bottom: 12px; }
.fitem p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }
@media (max-width: 800px) { .fgrid { grid-template-columns: 1fr; } }

/* ---------- 25. INDUSTRIES STRIP ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.ind {
  padding: 40px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s;
}
.ind:hover { background: var(--bg-3); }
.ind:nth-child(4n) { border-right: 0; }
.ind__icon { color: var(--accent-2); }
.ind__title { font-family: var(--font-display); font-size: 22px; line-height: 1.15; }
.ind__list { font-size: 13px; color: var(--ink-dim); line-height: 1.55; }
@media (max-width: 800px) {
  .industries { grid-template-columns: repeat(2, 1fr); }
  .ind:nth-child(4n) { border-right: 1px solid var(--line); }
  .ind:nth-child(2n) { border-right: 0; }
}

/* ---------- 26. CLIENT LOGOS (image grid + text fallback) ---------- */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.logo-cell {
  border-right: 1px solid var(--line);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--ink-dim);
  transition: color .3s, background .3s, transform .3s var(--ease);
  text-align: center;
  line-height: 1;
  min-height: 120px;
  position: relative;
}
.logo-cell:hover { color: var(--ink); background: var(--bg-3); transform: translateY(-2px); }
.logo-cell:last-child { border-right: 0; }

/* Real client logo images.
   For JPGs with white backgrounds we use blend modes + greyscale so
   logos appear properly on the dark canvas. Hover reveals full colour. */
.logo-cell img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.2) contrast(1.1);
  opacity: 0.75;
  transition: filter .35s var(--ease), opacity .35s var(--ease), transform .35s var(--ease), mix-blend-mode .35s;
}
.logo-cell:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 800px) {
  .logos { grid-template-columns: repeat(3, 1fr); }
  .logo-cell:nth-child(3n) { border-right: 0; }
  .logo-cell:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 500px) {
  .logos { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- 27. FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: none;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 28px);    /* was 22 / 3 / 36 — faq-q */
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 32px;
  transition: transform .35s var(--ease);
  color: var(--accent-2);
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
  transition: max-height .5s var(--ease), padding .35s;
  padding: 0;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}

/* ---------- 28. SCROLL REVEAL HELPERS ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.is-in { opacity: 1; transform: translateY(0); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.split-line { display: block; overflow: hidden; }
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
}

/* ---------- 29. UTILITY ---------- */
.mt-xl { margin-top: clamp(60px, 8vw, 120px); }
.mb-xl { margin-bottom: clamp(60px, 8vw, 120px); }
.muted { color: var(--ink-dim); }
.center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

/* ---------- 30. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   31. BLOG — index, list rows, cards
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .4s, transform .4s var(--ease);
  min-height: 280px;
}
.blog-card:hover { border-color: var(--accent-2); transform: translateY(-4px); }
.blog-card__cat {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0a0a0f;
  font-weight: 600;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
}
.blog-card__excerpt { color: var(--ink-dim); font-size: 14px; line-height: 1.55; flex: 1; }
.blog-card__meta {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
}

.blog-list { border-top: 1px solid var(--line); }
.blog-row {
  display: grid;
  grid-template-columns: 1fr auto 50px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease);
}
.blog-row:hover { padding: 30px 0; }
.blog-row__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);     /* was 20 / 2.4 / 30 */
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.blog-row:hover .blog-row__title { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.blog-row.is-stub .blog-row__title { color: var(--ink-mute); }
.blog-row.is-stub:hover .blog-row__title { -webkit-text-stroke: 1px var(--ink-mute); }
.blog-row__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.blog-row:hover .blog-row__arrow {
  background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(-45deg);
}
.pill {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 99px;
}
.pill--live { background: rgba(36,211,170,.12); color: #4adfb6; border: 1px solid rgba(36,211,170,.3); }
.pill--soon { background: rgba(255,255,255,.04); color: var(--ink-mute); border: 1px solid var(--line); }
@media (max-width: 700px) {
  .blog-row { grid-template-columns: 1fr 40px; }
  .blog-row__state { display: none; }
}

/* =========================================================
   32. POST — single article page (long-form readable)
   ========================================================= */
.post { padding-bottom: 40px; }
.post-head {
  padding: 200px 0 60px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.post-head__inner { max-width: 860px; margin: 0 auto; }
.post-head__crumb {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 24px;
}
.post-head__crumb a { color: var(--accent-2); }
.post-head__cat {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0a0a0f;
  font-weight: 600;
  margin-bottom: 24px;
}
.post-head__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 56px);   /* was 36 / 5.5 / 72 */
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.post-head__lead { font-size: 19px; color: var(--ink-dim); line-height: 1.55; max-width: 720px; }
.post-head__meta {
  margin-top: 30px;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.post-body { padding: 60px 0; max-width: 860px; }
.post-cover { margin: 0 auto 50px; border-radius: var(--radius-lg); overflow: hidden; }
.post-cover img { display: block; width: 100%; height: auto; }

/* Long-form prose */
.post-prose { font-size: 16px; line-height: 1.75; color: var(--ink-dim); }   /* was 18px — Poppins reads bigger */
.post-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);   /* was 28 / 3.8 / 44 */
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 50px 0 18px;
}
.post-prose h3 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 36px 0 14px;
}
.post-prose p { margin: 0 0 1.2em; }
.post-prose strong { color: var(--ink); font-weight: 600; }
.post-prose em { font-family: var(--font-display); font-style: italic; color: var(--ink); }
.post-prose a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .25s;
}
.post-prose a:hover { color: var(--accent-3); }
.post-prose ul, .post-prose ol { margin: 0 0 1.4em 1.4em; padding: 0; }
.post-prose li { margin-bottom: 8px; }
.post-prose li::marker { color: var(--accent-2); }
.post-prose blockquote {
  margin: 30px 0;
  padding: 24px 30px;
  border-left: 3px solid var(--accent-2);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.post-prose code {
  background: var(--bg-3);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.92em;
  color: var(--accent-3);
  font-family: var(--font-mono);
}
.post-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}
.post-prose th, .post-prose td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.post-prose th { background: var(--bg-3); color: var(--ink); font-weight: 500; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.post-prose td { color: var(--ink-dim); }
.post-prose figure { margin: 30px 0; }
.post-prose figure img { border-radius: 12px; width: 100%; }
.post-prose figcaption { font-size: 13px; color: var(--ink-mute); margin-top: 10px; text-align: center; }

/* Inline mid-post CTA box (used inside post body via .inline-cta) */
.inline-cta {
  margin: 50px 0;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(106,77,255,.08), rgba(24,212,212,.06));
}
.inline-cta__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent-3);
  margin-bottom: 8px;
}
.inline-cta h4 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--ink);
}
.inline-cta p { font-size: 15px; color: var(--ink-dim); margin-bottom: 18px; }

/* Bottom hero CTA */
.post-cta {
  margin: 60px 0;
  padding: 48px 40px;
  background: linear-gradient(135deg, #6a4dff 0%, #18d4d4 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
}
.post-cta__icon { font-size: 32px; margin-bottom: 12px; }
.post-cta__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);    /* was 28 / 3.6 / 42 */
  line-height: 1.2;
  margin-bottom: 12px;
}
.post-cta__sub { font-size: 16px; line-height: 1.55; opacity: .95; max-width: 560px; margin: 0 auto 24px; }
.post-cta__row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.post-cta .btn--primary { background: #fff; color: #0a0a0f; }
.post-cta .btn--primary::before { background: #0a0a0f; }
.post-cta .btn--primary:hover { color: #fff; }
.post-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }

.post-faqs { margin: 60px 0; }
.post-faqs h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);     /* was 28 / 3.8 / 44 */
  margin-bottom: 24px;
}

.post-related { margin: 60px 0 0; padding-top: 60px; border-top: 1px solid var(--line); }
.post-related h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);     /* was 28 / 3.8 / 44 */
  margin-bottom: 30px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .4s, transform .4s var(--ease);
}
.related-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.related-card__cat {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--accent-3);
}
.related-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  flex: 1;
}
.related-card__more {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
}

/* =========================================================
   32b. PRODUCT SHOWCASE — real screenshots, device-mockup style
   Used on portfolio page for SaaS/web/app builds (vs film posters above)
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
/* When there's an odd number of cards, the last one spans both columns
   so it becomes a featured wide card instead of looking lonely. */
.products .product-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
@media (max-width: 800px) {
  .products .product-card:last-child:nth-child(odd) { grid-column: auto; }
}
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  padding: 36px 32px 0;
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease), box-shadow .4s var(--ease);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--accent);
  filter: blur(140px);
  opacity: 0.18;
  z-index: 0;
  transition: opacity .5s, transform .8s var(--ease);
  pointer-events: none;
}
.product-card:nth-child(2)::before { background: var(--accent-2); }
.product-card:nth-child(3)::before { background: var(--accent-warm); }
.product-card:nth-child(4)::before { background: var(--accent-3); opacity: 0.12; }
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}
.product-card:hover::before { opacity: 0.32; transform: translate(-30px, 30px); }

.product-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.product-card__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.product-card__stars { color: var(--accent-3); font-size: 14px; }
.product-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.product-card__sub {
  position: relative;
  z-index: 2;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}
.product-card__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.product-card__meta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
}
.product-card__media {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: -1px;
  padding-top: 14px;
}
.product-card__media img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(8px) scale(1.02);
  transition: transform .8s var(--ease);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
}
.product-card:hover .product-card__media img {
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 800px) {
  .products { grid-template-columns: 1fr; gap: 20px; }
  .product-card { padding: 28px 24px 0; min-height: 380px; }
  .product-card__title { font-size: 24px; }
  .product-card__media { margin-left: -24px; margin-right: -24px; }
}

/* =========================================================
   33. COMPREHENSIVE RESPONSIVE OVERRIDES
   Final block — fixes anything that survived the per-section media queries.
   Breakpoints: 1024 (tablet), 768 (small tablet), 600 (mobile L), 380 (mobile S)
   ========================================================= */

/* Tablet & small desktop */
@media (max-width: 1024px) {
  :root { --gutter: clamp(20px, 4vw, 40px); }
  section { padding: clamp(60px, 9vw, 120px) 0; }
  .s-head { margin-bottom: 50px; }
}

/* Tablet portrait & below */
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(40px, 11vw, 72px); }
  h2 { font-size: clamp(34px, 8vw, 56px); }
  section { padding: 60px 0; }

  /* Hero */
  .hero { padding: 110px 0 60px; min-height: auto; align-items: center; }
  .hero__meta { flex-wrap: wrap; gap: 8px; margin-bottom: 36px; font-size: 10px; }
  .hero__meta > span { font-size: 10px; }
  .hero__title { font-size: clamp(48px, 12vw, 84px); }
  .hero__base { margin-top: 36px; gap: 24px; }
  .hero__lead { font-size: 16px; max-width: 100%; }
  .hero__cta-row { flex-wrap: wrap; gap: 10px; }
  .hero__cta-row .btn { flex: 1; min-width: 140px; justify-content: center; }

  /* Section headers */
  .s-head__title { font-size: clamp(34px, 8vw, 56px); }

  /* Marquee */
  .marquee { padding: 18px 0; }
  .marquee__track { font-size: clamp(28px, 7vw, 48px); gap: 30px; }
  .marquee__track span { gap: 30px; }
  .marquee__track i { width: 10px; height: 10px; }

  /* Service rows */
  .svc-row { grid-template-columns: 36px 1fr 36px !important; gap: 16px !important; padding: 22px 0 !important; }
  .svc-row:hover { padding: 22px 0 !important; }
  .svc-row__title { font-size: clamp(24px, 6vw, 40px); }
  .svc-row__tags { display: none; }
  .svc-row__media { display: none !important; }
  .svc-row__arrow { width: 36px; height: 36px; font-size: 14px; }

  /* Stats */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 30px 18px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat__num { font-size: clamp(46px, 10vw, 72px); }

  /* Work grid — single column, equal aspect */
  .work-grid { gap: 16px; }
  .work-card { aspect-ratio: 4/5 !important; grid-column: 1/-1 !important; }
  .work-card__overlay { padding: 18px 20px; }
  .work-card__name { font-size: 22px; }
  .work-card__sub { opacity: 1; transform: translateY(0); font-size: 13px; }

  /* Testimonials */
  .test-card { padding: 26px; flex: 0 0 min(340px, 85vw); }
  .test-card__quote { font-size: 19px; }

  /* CTA block */
  .cta-block { padding: 60px 0; }
  .cta-block__inner { gap: 30px; }
  .cta-block__title { font-size: clamp(36px, 10vw, 64px); }

  /* Process steps */
  .process-step { padding: 36px 0; gap: 16px 24px; }
  .process-step__num { font-size: clamp(40px, 9vw, 64px); }
  .process-step__title { font-size: clamp(22px, 5vw, 32px); }
  .process-step__body { font-size: 14px; }

  /* About */
  .about-2col { gap: 24px; }
  .about-2col p { font-size: 16px; }

  /* Page head (about, services, contact, blog, etc.) */
  .page-head { padding: 130px 0 50px; }
  .page-head__title { font-size: clamp(42px, 11vw, 80px); }
  .page-head__lead { font-size: 16px; }
  .about-head__stats { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
  .about-head__stats strong { font-size: clamp(32px, 8vw, 48px); }

  /* Industries strip */
  .industries { grid-template-columns: 1fr 1fr; }
  .ind { padding: 28px 18px; }
  .ind:nth-child(odd) { border-right: 1px solid var(--line); }
  .ind:nth-child(even) { border-right: 0; }

  /* Service cards */
  .svc-cards { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 28px 24px; }

  /* FAQ */
  .faq-item { padding: 22px 0; }
  .faq-q { font-size: clamp(18px, 4.5vw, 24px); gap: 16px; }
  .faq-q::after { font-size: 26px; }

  /* Forms (contact) */
  .form { padding: 24px 20px; }
  .form input, .form select, .form textarea { padding: 14px 16px; font-size: 16px; /* prevents iOS zoom */ }

  /* Contact grid */
  .contact-grid { gap: 36px; }
  .contact-info__value { font-size: clamp(20px, 5vw, 28px); }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 13px; }

  /* Logos strip */
  .logos { grid-template-columns: repeat(3, 1fr); }
  .logo-cell { padding: 28px 14px; min-height: 90px; }
  .logo-cell img { max-height: 50px; }
  .logo-cell:nth-child(3n) { border-right: 0; }
  .logo-cell:nth-child(n+4) { border-top: 1px solid var(--line); }

  /* Process list */
  .process-list { border-top: 0; }

  /* WhatsApp FAB — slightly smaller, lower */
  .fab-wa { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .fab-wa svg { width: 24px; height: 24px; }

  /* Cursor — disable on touch is already handled, but disable layout shift */
  body { cursor: auto; }
  .cursor { display: none; }

  /* Blog */
  .post-head { padding: 130px 0 40px; }
  .post-body { padding: 36px 0; }
  .post-prose { font-size: 16px; line-height: 1.7; }
  .post-prose h2 { font-size: clamp(26px, 6vw, 36px); margin: 36px 0 14px; }
  .post-cta { padding: 32px 22px; }
  .post-cta__title { font-size: clamp(24px, 6vw, 32px); }

  /* Blog list/grid */
  .blog-row { gap: 14px; padding: 18px 0; }
  .blog-row:hover { padding: 18px 0; }
  .blog-row__title { font-size: 16px; }
  .blog-row__arrow { width: 36px; height: 36px; font-size: 13px; }

  /* Industries on services page need to be stable */
  .ind__title { font-size: 18px; }
  .ind__list { font-size: 12px; }
}

/* Mobile L */
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn { width: 100%; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 26px 14px; }
  .stat__label { font-size: 10px; }

  /* Logos strip drops to 2 cols on small mobile */
  .logos { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { padding: 24px 12px; min-height: 80px; }
  .logo-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:nth-child(n+3) { border-top: 1px solid var(--line); }

  /* Industries -> single col on tiny screens (only if 4-col was original) */
  .industries { grid-template-columns: 1fr 1fr; }

  /* Form 2-col splits */
  .form__row.two { grid-template-columns: 1fr; gap: 16px; }

  /* CTA block */
  .cta-block__title { font-size: clamp(32px, 11vw, 56px); }

  /* Service cards padding */
  .svc-card { padding: 24px 20px; }
  .svc-card h3 { font-size: 22px; }

  /* About head stats — 2 columns is fine */
  .about-head__stats { gap: 16px; padding-top: 24px; margin-top: 30px; }

  /* Process step number narrower */
  .process-step { grid-template-columns: 50px 1fr !important; }
  .process-step__body { grid-column: 2; font-size: 13px; }

  /* Footer big text */
  .footer__big { font-size: clamp(56px, 18vw, 120px); margin-bottom: 36px; }
  .footer { padding: 60px 0 28px; }

  /* Blog cards */
  .blog-card { padding: 24px 20px; min-height: auto; }
  .blog-card__title { font-size: 22px; }

  /* Section headers — tighter */
  .s-head { margin-bottom: 36px; }
  .s-head__num { font-size: 11px; }
}

/* Tiny phones (iPhone SE etc.) */
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .hero__title { font-size: clamp(40px, 13vw, 60px); }
  .nav__logo-img { height: 38px; }
  .nav__burger { width: 40px; height: 40px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer__brand-img { height: 36px; }
  .stats { grid-template-columns: 1fr; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-right: 0; }
}

/* Landscape phone — keep mobile menu scrollable */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-menu__links a { padding: 10px 4px; font-size: 22px; }
  .mobile-menu__head { padding: 12px var(--gutter); }
  .mobile-menu__foot { padding: 14px var(--gutter); }
}

/* Touch device tweaks (any screen size with no fine pointer) */
@media (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
  .work-card__sub { opacity: 1; transform: translateY(0); }
  /* Remove hover-only effects that look broken on touch */
  .svc-row:hover { padding: 30px 0; }
  .svc-row:hover .svc-row__title { color: inherit; -webkit-text-stroke: 0; }
}

/* =========================================================
   34. HOME PAGE ENHANCEMENTS — restructured layout fixes
   ========================================================= */

/* Hero meta — graceful wrap, no awkward space-between on mobile */
.hero__meta {
  flex-wrap: wrap;
  gap: 14px 28px;
  row-gap: 12px;
}
@media (max-width: 720px) {
  .hero__meta {
    justify-content: flex-start;
    margin-bottom: 32px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .hero__meta span { font-size: 10px; }
  .hero__meta-mid { order: 3; width: 100%; opacity: 0.75; }
}

/* Hero base — give hero CTAs room and stack cleanly */
.hero__base {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 36px 60px;
}
@media (max-width: 900px) {
  .hero__base { grid-template-columns: 1fr; align-items: stretch; gap: 24px; }
}

/* About lead paragraph — highlight in larger size, cleaner */
.about-2col__lead {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}
.about-2col__lead strong { color: var(--ink); font-weight: 500; }

/* Hero scroll-cue indicator */
.hero__cue {
  position: absolute;
  bottom: 14px;
  left: var(--gutter);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
  z-index: 3;
  transition: color .3s;
}
.hero__cue:hover { color: var(--accent-3); }
.hero__cue-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--ink-mute) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--accent-2), transparent 80%);
  transform: translateY(-100%);
  animation: cue-drop 1.8s var(--ease) infinite;
}
@keyframes cue-drop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 720px) {
  .hero__cue { display: none; }
}

/* Stats on home — header tighter, no double padding above hr */
.stats-section { padding: 0 0 clamp(60px, 8vw, 120px); }
.stats-section .container { padding-top: 0; }

/* Home industries: 4-col with subtle hover lift, only top border (logos handles bottom) */
.home-industries {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.home-industries .ind {
  padding: 32px 24px;
  gap: 14px;
  position: relative;
  background: transparent;
}
.home-industries .ind::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.home-industries .ind:hover { background: var(--bg-3); }
.home-industries .ind:hover::after { transform: scaleX(1); }
.home-industries .ind__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(106,77,255,0.14);
  border: 1px solid rgba(106,77,255,0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.home-industries .ind:hover .ind__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
@media (max-width: 1100px) {
  .home-industries { grid-template-columns: repeat(3, 1fr); }
  .home-industries .ind:nth-child(4n) { border-right: 1px solid var(--line); }
  .home-industries .ind:nth-child(3n) { border-right: 0; }
}
@media (max-width: 800px) {
  .home-industries { grid-template-columns: repeat(2, 1fr); }
  .home-industries .ind:nth-child(3n) { border-right: 1px solid var(--line); }
  .home-industries .ind:nth-child(2n) { border-right: 0; }
  .home-industries .ind { padding: 24px 18px; }
}
@media (max-width: 460px) {
  .home-industries { grid-template-columns: 1fr; }
  .home-industries .ind { border-right: 0 !important; }
}

/* Section CTA helper — replaces inline-styled centred buttons */
.section-cta {
  margin-top: clamp(36px, 5vw, 60px);
  display: flex;
  justify-content: center;
}

/* Trusted-by section: tighter top padding (it follows testimonials) */
.trusted-section { padding-top: 0; }

/* Logo cells — slightly cleaner image rendering on home */
.trusted-section .logos { background: var(--bg-2); border-radius: var(--radius); overflow: hidden; }

/* Products: keep two-col but breathe more on big screens */
@media (min-width: 1200px) {
  .products { gap: 32px; }
  .product-card { min-height: 500px; }
}

/* Section heading on home — slightly tighter bottom margin */
.s-head { margin-bottom: clamp(50px, 7vw, 80px); }

/* Hero — make sure orbs don't bleed visual noise on tablets */
@media (max-width: 1024px) {
  .hero__orb--3 { display: none; }
  .hero__orb--1 { width: 380px; height: 380px; }
  .hero__orb--2 { width: 320px; height: 320px; }
}

/* Marquee — slightly faster + bolder em colour for better contrast */
.marquee__track em { color: var(--accent-3); opacity: 0.85; }

/* Service rows — first row gets a top border for clean opening */
.svc-list { border-top: 1px solid var(--line-strong); }

/* Testimonials rail — gradient fade on edges so cards don't get clipped harshly */
.test-rail {
  padding-inline: 4px;
  scroll-padding-inline: 4px;
}
.test-card { transition: border-color .4s, transform .4s var(--ease), box-shadow .4s var(--ease); }
.test-card:hover { box-shadow: 0 30px 60px -25px rgba(106,77,255,0.35); }

/* FAQ: open animation — make it smoother, no overflow snap */
.faq-a { transition: max-height .55s var(--ease), padding .35s var(--ease), opacity .35s; opacity: 0.9; }
.faq-item.is-open .faq-a { opacity: 1; }

/* Mobile fine-tunes for new home sections */
@media (max-width: 768px) {
  /* Section CTA centred buttons */
  .section-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Stats section above mobile breakpoint inherits from existing rules */
  .stats-section { padding-bottom: 60px; }

  /* Trusted strip should not be flush against testimonials */
  .trusted-section { padding-top: 20px; }

  /* FAQ reset */
  .faq-q { padding-right: 8px; }
}

/* =========================================================
   35. HERO — split layout (dev mocks left, posters right, text centered)
   ========================================================= */

/* Centered hero inner — text sits between the two visual columns */
.hero--split { align-items: center; padding: 130px 0 80px; }
.hero__inner--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__meta--centered {
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 40px;
}
.hero__title--centered {
  text-align: center;
  width: 100%;
  font-size: clamp(54px, 11vw, 200px);
  letter-spacing: -0.045em;
}
.hero__title--centered .row { text-align: center; }
.hero__base--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  grid-template-columns: none;
}
.hero__base--centered .hero__lead {
  max-width: 620px;
  text-align: center;
  font-size: clamp(15px, 1.4vw, 18px);
}
.hero__base--centered .hero__cta-row { justify-content: center; }

/* Legacy .hero__caps / .hero__cap rules removed — replaced by .caps-wrap/.caps-row/.caps-pill (Section 53). */

/* ============ LEFT-SIDE DEV MOCKUPS ============ */
.hero__devstack {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.dev-mock {
  position: absolute;
  background: rgba(20, 20, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  will-change: transform;
  opacity: 0.92;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

/* Browser mock — top-left */
.dev-mock--browser {
  width: 280px;
  top: 16%;
  left: 3%;
  transform: rotate(-6deg);
}
.dev-mock--browser .dev-mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dev-mock__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}
.dev-mock__dot:nth-child(2) { background: #febc2e; }
.dev-mock__dot:nth-child(3) { background: #28c840; }
.dev-mock__url, .dev-mock__file {
  margin-left: 10px;
  font-family: var(--font-code);   /* keep monospaced — this is the address bar / file tab */
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dev-mock__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dev-mock__hero-bar {
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: relative;
  overflow: hidden;
}
.dev-mock__hero-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: dev-shimmer 2.4s var(--ease) infinite;
}
@keyframes dev-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.dev-mock__line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}
.dev-mock__line--short { width: 60%; }
.dev-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.dev-mock__grid span {
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.dev-mock__grid span:nth-child(2) { background: rgba(106,77,255,0.22); }
.dev-mock__cta {
  height: 14px;
  width: 100px;
  border-radius: 99px;
  background: var(--accent-3);
  margin-top: 4px;
  align-self: flex-start;
}

/* Code mock — middle-left, smaller, lower */
.dev-mock--code {
  width: 260px;
  bottom: 12%;
  left: 8%;
  transform: rotate(4deg);
}
.dev-mock__chrome--dark { background: rgba(0,0,0,0.4); }
.dev-mock__code {
  margin: 0;
  padding: 14px 14px 16px;
  font-family: var(--font-code);   /* keep monospaced for code-window illusion */
  font-size: 11px;
  line-height: 1.6;
  color: #b6b1a8;
  white-space: pre;
  overflow: hidden;
}
.dev-mock__code .cl-c { color: #6e6a63; }
.dev-mock__code .cl-k { color: var(--accent); }
.dev-mock__code .cl-f { color: var(--accent-2); }
.dev-mock__code .cl-t { color: var(--accent-3); }
.dev-mock__code .cl-s { color: var(--accent-warm); }

/* Phone mock — between the two on the left, smaller */
.dev-mock--phone {
  width: 130px;
  height: 250px;
  top: 32%;
  left: 21%;
  transform: rotate(-3deg);
  border-radius: 22px;
  padding: 6px;
  background: linear-gradient(160deg, #2a2a3a, #15151f);
  border: 1px solid rgba(255,255,255,0.14);
}
.dev-mock__phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 14px;
  background: #000;
  border-radius: 99px;
  z-index: 2;
}
.dev-mock__phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0a0a0f 0%, #15151f 100%);
  border-radius: 16px;
  padding: 22px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dev-mock__app-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--ink-dim);
  padding: 0 4px;
}
.dev-mock__app-icons { display: inline-flex; gap: 3px; }
.dev-mock__app-icons i {
  width: 4px; height: 4px;
  border-radius: 1px;
  background: var(--ink-dim);
  display: inline-block;
}
.dev-mock__app-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}
.dev-mock__app-pill {
  width: 30px; height: 5px;
  border-radius: 99px;
  background: var(--accent);
}
.dev-mock__app-pill.alt { background: var(--accent-2); }
.dev-mock__app-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.dev-mock__app-line.short { width: 60%; }
.dev-mock__app-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 6px 4px 2px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dev-mock__app-tabbar span {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.dev-mock__app-tabbar span.active { background: var(--accent-3); }

/* Analytics / SaaS dashboard mock — sits between browser and phone */
.dev-mock--analytics {
  width: 200px;
  top: 6%;
  left: 22%;
  transform: rotate(5deg);
  padding: 14px 14px 12px;
  background: linear-gradient(155deg, rgba(24,212,212,0.08), rgba(15,15,23,0.92));
  border: 1px solid rgba(24,212,212,0.22);
  border-radius: 14px;
  box-shadow: 0 12px 28px -10px rgba(24,212,212,0.18);
}
.dev-mock__analytics-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.dev-mock__analytics-trend {
  color: var(--accent-3);
  font-weight: 600;
}
.dev-mock__analytics-num {
  font-family: var(--font-display, 'Instrument Serif'), serif;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.dev-mock__sparkline {
  display: block;
  width: 100%;
  height: 32px;
  margin-bottom: 8px;
}
.dev-mock__analytics-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 4px;
  height: 24px;
}
.dev-mock__analytics-bars i {
  display: block;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--accent-2) 0%, rgba(24,212,212,0.25) 100%);
  border-radius: 2px 2px 0 0;
}

/* AI Chat bubble mock — bottom-mid of left zone */
.dev-mock--chat {
  width: 210px;
  bottom: 28%;
  left: 24%;
  transform: rotate(-4deg);
  padding: 10px 10px 12px;
  background: linear-gradient(160deg, rgba(106,77,255,0.10), rgba(15,15,23,0.94));
  border: 1px solid rgba(106,77,255,0.26);
  border-radius: 14px;
  box-shadow: 0 12px 28px -10px rgba(106,77,255,0.22);
}
.dev-mock__chat-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 2px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.dev-mock__chat-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: #0a0a0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dev-mock__chat-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.dev-mock__chat-name em {
  color: var(--accent-3);
  font-style: normal;
  font-weight: 600;
}
.dev-mock__chat-msg {
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  max-width: 88%;
  word-wrap: break-word;
}
.dev-mock__chat-msg--in {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  border-top-left-radius: 2px;
}
.dev-mock__chat-msg--out {
  background: var(--accent);
  color: #fff;
  margin-left: auto;
  border-top-right-radius: 2px;
}
.dev-mock__chat-typing {
  display: inline-flex;
  gap: 3px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border-top-left-radius: 2px;
  width: fit-content;
}
.dev-mock__chat-typing i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-dim);
  animation: chat-typing 1.2s ease-in-out infinite;
}
.dev-mock__chat-typing i:nth-child(2) { animation-delay: 0.15s; }
.dev-mock__chat-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-2px); }
}

/* Floating capability chips drifting in the hero */
.hero__chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(20,20,30,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: chip-bob 6s ease-in-out infinite;
  will-change: transform;
}
.hero__chip--1 { top: 8%;  left: 28%; color: var(--accent-2); border-color: rgba(24,212,212,0.35); animation-delay: 0s; }
.hero__chip--2 { top: 64%; left: 35%; color: var(--accent-3); border-color: rgba(212,255,58,0.32); animation-delay: 1.2s; }
.hero__chip--3 { top: 22%; right: 32%; color: var(--accent-warm); border-color: rgba(255,122,69,0.32); animation-delay: 2.4s; }
.hero__chip--4 { bottom: 22%; right: 30%; color: var(--accent); border-color: rgba(106,77,255,0.4); animation-delay: 3.6s; }

@keyframes chip-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ============ RESPONSIVE: hero split layout ============ */

/* Tablet: shrink mocks, hide phone (it overlaps text) */
@media (max-width: 1200px) {
  .dev-mock--browser   { width: 230px; left: 1%; }
  .dev-mock--code      { width: 220px; left: 4%; }
  .dev-mock--phone     { width: 110px; height: 210px; left: 18%; top: 38%; }
  .dev-mock--analytics { width: 170px; left: 19%; top: 4%; }
  .dev-mock--chat      { width: 180px; left: 21%; bottom: 26%; }
  .hero__chip { font-size: 10px; padding: 5px 12px; }
  .hero__chip--1 { left: 25%; }
  .hero__chip--3 { right: 28%; }
}

@media (max-width: 1024px) {
  .dev-mock--browser   { opacity: 0.7; width: 200px; }
  .dev-mock--code      { opacity: 0.6; width: 200px; }
  .dev-mock--phone     { display: none; }
  .dev-mock--analytics { display: none; }
  .dev-mock--chat      { display: none; }
  .hero__chip--2 { display: none; }
  .hero__chip--4 { display: none; }
}

/* Phone: keep posters and dev-stack from cluttering — bring text front and center */
@media (max-width: 820px) {
  .hero__devstack { display: none; }
  .hero__chips    { display: none; }
  .hero--split { padding: 120px 0 60px; }
  .hero__title--centered { font-size: clamp(46px, 12vw, 84px); }
  .hero__base--centered { margin-top: 32px; gap: 22px; }
}

@media (max-width: 480px) {
  .hero__meta--centered { font-size: 9.5px; gap: 8px 16px; }
}

/* =========================================================
   36. WORK GRID — Twitter trending campaign cards (additions)
   ========================================================= */

/* Section intro paragraph above the grid */
.work-intro {
  max-width: 640px;
  margin: -40px 0 40px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* Products section intro — establishes "we built these end-to-end, not just parts" */
.products-intro {
  max-width: 760px;
  margin: -30px 0 50px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--ink-dim);
  border-left: 2px solid var(--accent-3);
  background: linear-gradient(90deg, color-mix(in oklab, var(--accent-3) 6%, transparent) 0%, transparent 100%);
  border-radius: 0 12px 12px 0;
}
.products-intro strong {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 60%, color-mix(in oklab, var(--accent-3) 38%, transparent) 60%);
  padding: 0 2px;
}
body.theme-light .products-intro {
  color: var(--ink);
  background: linear-gradient(90deg, color-mix(in oklab, var(--accent-3) 14%, transparent) 0%, transparent 100%);
}
@media (max-width: 700px) {
  .products-intro { margin: -20px 0 36px; padding: 18px 20px; font-size: 14.5px; }
}

/* Live-trending badge (top-right of each card) */
.work-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0f;
  background: var(--accent-3);
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(212,255,58,0.25);
  font-weight: 600;
}
.work-card__badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0f;
  display: inline-block;
  animation: badge-pulse 1.6s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

/* Hashtag row — sits between cat and sub */
.work-card__hash {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent-3);
  margin-top: 6px;
  opacity: 0.92;
  word-break: break-word;
}

/* Tighten overlay slightly so hashtag fits cleanly */
.work-grid--posters .work-card__overlay { padding: 22px 22px 20px; }
.work-grid--posters .work-card__name { font-size: clamp(20px, 2.2vw, 26px); }
.work-grid--posters .work-card__sub { font-size: 13px; }

/* Mobile sizing for badge so it doesn't crowd small cards */
@media (max-width: 560px) {
  .work-card__badge { top: 10px; right: 10px; font-size: 9px; padding: 4px 8px; letter-spacing: 0.1em; }
  .work-card__hash  { font-size: 10.5px; }
  .work-intro       { margin: -28px 0 28px; font-size: 14.5px; }
}
/* =========================================================
   37. SERVICES & PORTFOLIO PAGE COMPONENTS
   ========================================================= */

/* ---- Pillars (Software vs Marketing split on Services page) ---- */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: linear-gradient(165deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .4s, transform .4s var(--ease);
}
.pillar:hover { border-color: var(--accent); transform: translateY(-4px); }
.pillar--mkt:hover { border-color: var(--accent-3); }

.pillar__head { display: flex; flex-direction: column; gap: 10px; }
.pillar__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-3);
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid rgba(212,255,58,0.32);
  border-radius: 99px;
}
.pillar--mkt .pillar__tag { color: var(--accent-2); border-color: rgba(24,212,212,0.32); }
.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pillar__sub { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }

.pillar__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.pillar__row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding .35s var(--ease), color .3s;
}
.pillar__row:hover { padding-left: 12px; }
.pillar__row:last-child { border-bottom: 0; }
.pillar__row-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.pillar__row-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.pillar__row-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  white-space: nowrap;
}
.pillar__row-arrow {
  font-size: 16px;
  color: var(--ink-mute);
  transition: transform .35s var(--ease), color .3s;
}
.pillar__row:hover .pillar__row-arrow { color: var(--accent-3); transform: translate(4px, -4px); }
.pillar--mkt .pillar__row:hover .pillar__row-arrow { color: var(--accent-2); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 18px; }
  .pillar { padding: 28px 24px; }
  .pillar__row { grid-template-columns: 28px 1fr 28px; gap: 12px; }
  .pillar__row-tag { display: none; }
}

/* ---- Approach grid (Services page) ---- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.approach-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--surface);
  transition: border-color .4s, transform .4s var(--ease), background .4s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.approach-card:hover { border-color: var(--accent-2); transform: translateY(-4px); background: var(--surface-2); }
.approach-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
  color: var(--ink-mute);
  letter-spacing: -0.03em;
}
.approach-card:hover .approach-card__num {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.approach-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.approach-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 600px) { .approach-grid { grid-template-columns: 1fr; } }

/* ---- Bundles (Services page packaged offerings) ---- */
.bundles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bundle {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .4s, transform .4s var(--ease);
  position: relative;
  isolation: isolate;
}
.bundle:hover { border-color: var(--accent); transform: translateY(-4px); }
.bundle--featured {
  border-color: var(--accent-3);
  background: linear-gradient(165deg, rgba(212,255,58,0.05) 0%, var(--surface) 60%);
}
.bundle--featured::before {
  content: "★";
  position: absolute;
  top: 16px; right: 18px;
  font-size: 14px;
  color: var(--accent-3);
}
.bundle__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.bundle__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 4px 10px;
  border: 1px solid rgba(212,255,58,0.32);
  border-radius: 99px;
}
.bundle--featured .bundle__tag { background: var(--accent-3); color: #0a0a0f; border-color: var(--accent-3); }
.bundle__price {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bundle__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.bundle__sub { color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; }
.bundle__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.bundle__list li {
  font-size: 14px;
  color: var(--ink-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.bundle__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-3);
  font-family: var(--font-mono);
}
.bundle__cta {
  margin-top: auto;
  padding-top: 14px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  transition: color .3s, border-color .3s;
}
.bundle__cta:hover { color: var(--accent-3); border-color: var(--accent-3); }
@media (max-width: 800px) {
  .bundles { grid-template-columns: 1fr; gap: 16px; }
  .bundle { padding: 26px 22px 22px; }
}

/* =========================================================
   38. PORTFOLIO PAGE COMPONENTS
   ========================================================= */

/* ---- Quick stats strip in hero ---- */
.port-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.port-stats__item {
  padding: 28px 18px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.port-stats__item:last-child { border-right: 0; }
.port-stats__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
}
.port-stats__num small {
  font-size: 0.45em;
  margin-left: 6px;
  margin-top: 0.15em;
  color: var(--accent-3);
}
.port-stats__label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 900px) {
  .port-stats { grid-template-columns: repeat(3, 1fr); }
  .port-stats__item:nth-child(3) { border-right: 0; }
  .port-stats__item:nth-child(n+4) { border-top: 1px solid var(--line); }
  .port-stats__item:nth-child(4) { border-right: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .port-stats { grid-template-columns: repeat(2, 1fr); }
  .port-stats__item { padding: 20px 14px; }
  .port-stats__item:nth-child(2n) { border-right: 0; }
  .port-stats__item:nth-child(2n+1) { border-right: 1px solid var(--line); }
  .port-stats__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---- Filter pills row ---- */
.port-filter-section { padding: clamp(24px, 4vw, 40px) 0; border-bottom: 1px solid var(--line); }
.port-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.port-filter__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 6px;
}
.port-filter__pill {
  padding: 9px 16px;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s;
}
.port-filter__pill:hover { color: var(--ink); border-color: var(--ink); }
.port-filter__pill.is-active {
  background: var(--accent-3);
  color: #0a0a0f;
  border-color: var(--accent-3);
}
@media (hover: none) { .port-filter__pill { cursor: pointer; } }

/* ---- Other products mini-grid ---- */
.other-products { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line); }
.other-products__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.other-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.other-product {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .4s, transform .4s var(--ease);
}
.other-product:hover { border-color: var(--accent-2); transform: translateY(-3px); }
.other-product__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-3);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.other-product__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.other-product__body { font-size: 14px; line-height: 1.55; color: var(--ink-dim); }
@media (max-width: 900px) { .other-products__grid { grid-template-columns: 1fr; } }

/* ---- Case study block (Portfolio page) ---- */
.case {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.case__media {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  isolation: isolate;
}
.case__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(106,77,255,0.18), transparent 60%);
  pointer-events: none;
}
.case__media img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.05);
}
.case__body { display: flex; flex-direction: column; gap: 22px; }
.case__client {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.case__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.case__metric { display: flex; flex-direction: column; gap: 4px; }
.case__metric-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1;
  color: var(--accent-3);
  letter-spacing: -0.02em;
}
.case__metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.case__copy { color: var(--ink-dim); font-size: 16px; line-height: 1.6; }
.case__stack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case__stack li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.case__cta { margin-top: 8px; }
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; gap: 28px; }
  .case__metrics { grid-template-columns: 1fr 1fr; }
  .case__metrics .case__metric:nth-child(3) { grid-column: 1 / -1; }
}

/* ---- Reels grid (Portfolio Instagram showcase) ---- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  isolation: isolate;
  transition: transform .4s var(--ease);
  border: 1px solid var(--line);
}
.reel:hover { transform: translateY(-6px); border-color: var(--accent-3); }
.reel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(1.1);
}
.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.05) 50%, rgba(10,10,15,0.4) 100%);
  z-index: 1;
}
.reel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  z-index: 2;
  transition: background .3s, transform .3s var(--ease);
}
.reel:hover .reel__play { background: var(--accent-3); color: #0a0a0f; transform: translate(-50%, -50%) scale(1.08); border-color: var(--accent-3); }
.reel__metric {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-3);
  border: 1px solid rgba(212,255,58,0.32);
}
.reel__caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.reel__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.7);
}
.reel__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) { .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 500px) { .reels-grid { grid-template-columns: 1fr 1fr; } .reel__play { width: 48px; height: 48px; font-size: 18px; } }

/* =========================================================
   39. LIGHT THEME
   Toggleable via body.theme-light. Persisted in localStorage.
   ========================================================= */

body.theme-light {
  /* Bone paper canvas, ink-black text */
  --bg:        #f5f1ea;
  --bg-2:      #efeae0;
  --bg-3:      #e8e2d4;
  --surface:   #ffffff;
  --surface-2: #faf6ee;
  --line:        rgba(10,10,15,0.10);
  --line-strong: rgba(10,10,15,0.20);

  --ink:      #15151f;
  --ink-dim:  #4a4a55;
  --ink-mute: #76747a;

  /* Slightly tone-down accents on light bg so they don't blow out */
  --accent:      #5a3dff;
  --accent-2:    #0fb0b0;
  --accent-3:    #7a9c00;
  --accent-warm: #e25a25;

  --grad-1: linear-gradient(135deg, #5a3dff 0%, #0fb0b0 100%);
  --grad-2: linear-gradient(135deg, #5a3dff 0%, #ff3d80 50%, #ff8a3d 100%);
  --grad-text: linear-gradient(90deg, #5a3dff, #0fb0b0, #7a9c00);

  --shadow: 0 20px 60px -20px rgba(20,20,30,.18);
  --shadow-glow: 0 0 60px -10px rgba(90,61,255,.30);
}

/* Body & global */
body.theme-light { background: var(--bg); color: var(--ink); }
body.theme-light::selection,
body.theme-light *::selection { background: var(--accent); color: #fff; }

/* Grain overlay tone-down */
body.theme-light::before { opacity: .025; mix-blend-mode: multiply; }

/* Custom cursor — keep visible on light bg */
body.theme-light .cursor { mix-blend-mode: difference; background: var(--ink); }
body.theme-light .cursor.is-hover { background: var(--accent); }

/* ---- NAV ---- */
body.theme-light .nav {
  background: linear-gradient(180deg, rgba(245,241,234,0.8) 0%, rgba(245,241,234,0.0) 100%);
}
body.theme-light .nav.is-scrolled {
  background: rgba(245,241,234,0.92);
  border-bottom: 1px solid var(--line);
}
body.theme-light .nav__cta { color: #fff; }
body.theme-light .nav__burger { background: rgba(10,10,15,0.05); }
body.theme-light .nav__burger:hover { background: rgba(10,10,15,0.10); }
body.theme-light .nav__burger span { background: var(--ink); }

/* ---- MOBILE MENU ---- */
body.theme-light .mobile-menu {
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 100%);
}
body.theme-light .mobile-menu__close { background: rgba(10,10,15,0.05); }
body.theme-light .mobile-menu__close:hover { background: rgba(10,10,15,0.12); }

/* ---- HERO orbs — desaturate on light bg (else looks neon) ---- */
body.theme-light .hero__orb { opacity: .25; filter: blur(90px); }
body.theme-light .hero__orb--1 { background: var(--accent); }
body.theme-light .hero__orb--2 { background: var(--accent-2); }
body.theme-light .hero__orb--3 { background: var(--accent-warm); }

/* Hero posters & dev mocks — bring contrast back */
body.theme-light .hero__poster { box-shadow: 0 30px 60px -20px rgba(20,20,30,0.25), 0 0 0 1px rgba(10,10,15,0.06); }
body.theme-light .dev-mock {
  background: rgba(255,255,255,0.92);
  border-color: rgba(10,10,15,0.10);
  box-shadow: 0 30px 60px -20px rgba(20,20,30,0.25);
}
body.theme-light .dev-mock__chrome { background: rgba(10,10,15,0.04); border-bottom-color: rgba(10,10,15,0.08); }
body.theme-light .dev-mock__line { background: rgba(10,10,15,0.10); }
body.theme-light .dev-mock__grid span { background: rgba(10,10,15,0.05); border-color: rgba(10,10,15,0.06); }
body.theme-light .dev-mock__chrome--dark { background: #15151f; }
body.theme-light .dev-mock__code { background: #15151f; color: #b6b1a8; }

/* Hero chips */
body.theme-light .hero__chip {
  background: rgba(255,255,255,0.85);
  border-color: rgba(10,10,15,0.14);
  color: var(--ink);
}

/* Hero capability pills (legacy hero__cap) — light-theme overrides removed; new .caps-pill handles theme via Section 53. */

/* ---- BUTTONS ---- */
body.theme-light .btn { color: var(--ink); border-color: var(--line-strong); }
body.theme-light .btn:hover { color: #fff; border-color: transparent; }
body.theme-light .btn--primary { background: var(--ink); color: var(--bg); }
body.theme-light .btn--primary:hover { color: #fff; }
body.theme-light .btn--ghost { background: transparent; color: var(--ink); }

/* ---- MARQUEE ---- */
body.theme-light .marquee { background: var(--bg-2); border-color: var(--line); }
body.theme-light .marquee__track em { color: var(--ink-mute); }

/* ---- SERVICES section bg (was darker grey) ---- */
body.theme-light section.services { background: var(--bg-2); }
body.theme-light section.process  { background: var(--bg-2); }

/* Service rows */
body.theme-light .svc-row__title em { color: var(--ink-dim); }
body.theme-light .svc-row:hover .svc-row__title { -webkit-text-stroke: 1px var(--ink); color: transparent; }
body.theme-light .svc-row:hover .svc-row__arrow { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---- WORK CARDS ---- */
body.theme-light .work-card { background: var(--surface); }
/* keep image overlay dark — images are photos, need legibility */
body.theme-light .work-card__overlay { color: #fff; }
body.theme-light .work-card__cat { background: rgba(10,10,15,0.6); }
body.theme-light .work-card__name { color: #fff; }
body.theme-light .work-card__sub { color: rgba(255,255,255,0.85); }
body.theme-light .work-card__hash { color: var(--accent-3); opacity: 1; }
body.theme-light .work-card__badge {
  background: var(--accent-3);
  color: #15151f;
}

/* ---- STATS strip ---- */
body.theme-light .stat__num small { color: var(--accent-3); }

/* ---- TESTIMONIAL CARDS ---- */
body.theme-light .test-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 8px 24px -12px rgba(20,20,30,0.10);
}
body.theme-light .test-card:hover { border-color: var(--accent); box-shadow: 0 30px 60px -25px rgba(90,61,255,0.30); }

/* ---- PROCESS ---- */
body.theme-light .process-step__num { color: var(--ink-mute); }

/* ---- LOGOS strip — JPG logos: switch from screen-blend to multiply ---- */
body.theme-light .logos { background: var(--bg-2); }
body.theme-light .logo-cell img {
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.85;
}
body.theme-light .logo-cell:hover img {
  mix-blend-mode: normal;
  filter: grayscale(0) contrast(1);
  opacity: 1;
}
body.theme-light .logo-cell:hover { background: var(--bg-3); color: var(--ink); }

/* ---- CTA BLOCK ---- */
body.theme-light .cta-block { background: var(--bg-2); }

/* ---- FOOTER ---- */
body.theme-light .footer { background: var(--bg); border-top-color: var(--line); }
body.theme-light .footer__big em { color: var(--ink-mute); }
body.theme-light .footer__brand-img { filter: drop-shadow(0 4px 12px rgba(90,61,255,0.20)); }
body.theme-light .footer__social a { border-color: var(--line); color: var(--ink-dim); }
body.theme-light .footer__social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---- WHATSAPP FAB stays green (good contrast both themes) ---- */

/* ---- PAGE HEAD (about / services / portfolio / contact) ---- */
body.theme-light .page-head__crumb a { color: var(--accent-2); }

/* ---- ABOUT ---- */
body.theme-light .about-2col p strong { color: var(--ink); }

/* ---- VALUES ---- */
body.theme-light .value { background: var(--surface); border-color: var(--line); box-shadow: 0 8px 24px -12px rgba(20,20,30,0.08); }
body.theme-light .value:hover { border-color: var(--accent-2); }

/* ---- SERVICE CARDS (services page grid) ---- */
body.theme-light .svc-card { background: var(--surface); border-color: var(--line); box-shadow: 0 8px 24px -12px rgba(20,20,30,0.08); }
body.theme-light .svc-card:hover { background: var(--grad-1); }
body.theme-light .svc-card__icon { background: var(--bg-3); }

/* ---- PILLARS (services) ---- */
body.theme-light .pillar { background: var(--surface); border-color: var(--line); box-shadow: 0 8px 24px -12px rgba(20,20,30,0.08); }
body.theme-light .pillar__row { color: var(--ink); }
body.theme-light .pillar__row-tag { color: var(--ink-dim); border-color: var(--line); }

/* ---- APPROACH cards ---- */
body.theme-light .approach-card { background: var(--surface); border-color: var(--line); box-shadow: 0 6px 20px -12px rgba(20,20,30,0.08); }
body.theme-light .approach-card:hover { background: var(--surface-2); border-color: var(--accent-2); }
body.theme-light .approach-card__num { color: var(--ink-mute); }
body.theme-light .approach-card__title { color: var(--ink); }

/* ---- BUNDLES ---- */
body.theme-light .bundle { background: var(--surface); border-color: var(--line); box-shadow: 0 8px 24px -12px rgba(20,20,30,0.08); }
body.theme-light .bundle--featured { background: linear-gradient(165deg, rgba(122,156,0,0.07) 0%, var(--surface) 60%); }
body.theme-light .bundle__cta { color: var(--ink); border-bottom-color: var(--ink); }

/* ---- BLOG CARDS ---- */
body.theme-light .blog-card { background: var(--surface); border-color: var(--line); box-shadow: 0 8px 24px -12px rgba(20,20,30,0.08); }
body.theme-light .blog-card:hover { border-color: var(--accent-2); }
body.theme-light .blog-card__title { color: var(--ink); }

/* ---- PRODUCT CARDS ---- */
body.theme-light .product-card {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  border-color: var(--line);
  box-shadow: 0 12px 30px -16px rgba(20,20,30,0.12);
}
body.theme-light .product-card__title { color: var(--ink); }

/* ---- OTHER PRODUCTS (small text-card grid) ---- */
body.theme-light .other-product { background: var(--surface); border-color: var(--line); }
body.theme-light .other-product__icon { background: var(--bg-3); }

/* ---- CASE STUDY ---- */
body.theme-light .case__media { background: var(--bg-2); border-color: var(--line-strong); }
body.theme-light .case__stack li { background: var(--bg-2); border-color: var(--line); color: var(--ink-dim); }

/* ---- PORTFOLIO STATS ---- */
body.theme-light .port-stats { border-color: var(--line); }
body.theme-light .port-stats__item { border-color: var(--line); }
body.theme-light .port-stats__num { color: var(--ink); }

/* ---- PORTFOLIO FILTER pills ---- */
body.theme-light .port-filter__pill { color: var(--ink-dim); border-color: var(--line-strong); }
body.theme-light .port-filter__pill:hover { color: var(--ink); border-color: var(--ink); }
body.theme-light .port-filter__pill.is-active { background: var(--accent-3); color: #15151f; border-color: var(--accent-3); }

/* ---- INDUSTRIES (home + services) ---- */
body.theme-light .home-industries { background: var(--bg-2); }
body.theme-light .home-industries .ind:hover { background: var(--bg-3); }
body.theme-light .ind { border-color: var(--line); }

/* ---- FAQ ---- */
body.theme-light .faq-list, body.theme-light .faq-item { border-color: var(--line); }

/* ---- FORM ---- */
body.theme-light .form { background: var(--surface); border-color: var(--line); }
body.theme-light .form input, body.theme-light .form select, body.theme-light .form textarea {
  background: var(--bg-2);
  border-color: var(--line);
  color: var(--ink);
}
body.theme-light .form input::placeholder, body.theme-light .form textarea::placeholder { color: var(--ink-mute); }

/* ---- CONTACT INFO ---- */
body.theme-light .contact-info__item { border-color: var(--line); }

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  cursor: none;
  transition: background .3s, color .3s, transform .35s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { background: rgba(255,255,255,0.06); transform: rotate(20deg); }
body.theme-light .theme-toggle:hover { background: rgba(10,10,15,0.05); }
.theme-toggle svg { width: 18px; height: 18px; transition: transform .4s var(--ease), opacity .3s; }

/* Sun icon visible in dark mode (clicking switches to light) */
.theme-toggle .icon-sun  { display: inline-block; }
.theme-toggle .icon-moon { display: none; }
body.theme-light .theme-toggle .icon-sun  { display: none; }
body.theme-light .theme-toggle .icon-moon { display: inline-block; }

/* Mobile-menu version of toggle */
.mobile-menu .theme-toggle { margin-right: 0; }
@media (hover: none) { .theme-toggle { cursor: pointer; } }

/* Pulse on toggle press */
.theme-toggle.is-spinning svg { transform: rotate(180deg); }

/* Smooth theme transition for everything */
body, body * {
  transition-property: background-color, color, border-color, fill, stroke;
  transition-duration: .3s;
  transition-timing-function: var(--ease);
}
/* Don't apply the global transition to elements that have their own animations (it interferes) */
body .marquee__track,
body .work-card__img,
body [data-magnetic],
body .hero__poster,
body .dev-mock,
body .hero__chip,
body .hero__orb,
body .preloader,
body .preloader__bar,
body .preloader__bar > i {
  transition-property: none;
}

/* =========================================================
   40. LEAD MODAL — popup contact form (every page)
   ========================================================= */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lead-modal.is-open { display: flex; }

.lead-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,5,10,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.lead-modal.is-open .lead-modal__backdrop { opacity: 1; }
body.theme-light .lead-modal__backdrop { background: rgba(245,241,234,0.82); }

.lead-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
body.theme-light .lead-modal__dialog {
  box-shadow: 0 40px 80px -20px rgba(20,20,30,0.25);
}

/* Subtle accent stripe at top */
.lead-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--grad-1);
  border-radius: 0 0 4px 4px;
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background .3s, transform .35s var(--ease), border-color .3s;
  z-index: 2;
}
.lead-modal__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}
body.theme-light .lead-modal__close { background: rgba(10,10,15,0.05); }
body.theme-light .lead-modal__close:hover { background: var(--accent); }
@media (hover: none) { .lead-modal__close { cursor: pointer; } }

.lead-modal__head {
  margin-bottom: 24px;
  padding-right: 36px; /* avoid close button */
}
.lead-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 5px 10px;
  border: 1px solid rgba(212,255,58,0.32);
  border-radius: 99px;
  margin-bottom: 14px;
}
body.theme-light .lead-modal__eyebrow { color: var(--accent-3); border-color: rgba(122,156,0,0.32); }
.lead-modal__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.lead-modal__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-modal__sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

/* Form tweaks inside modal */
.lead-modal__form { background: transparent; border: 0; padding: 0; }
.lead-modal__form .form__row { margin-bottom: 16px; }
.lead-modal__form label {
  font-size: 10.5px;
}
.lead-modal__form input,
.lead-modal__form select,
.lead-modal__form textarea {
  background: var(--bg-2);
  padding: 12px 14px;
  font-size: 14px;
}
body.theme-light .lead-modal__form input,
body.theme-light .lead-modal__form select,
body.theme-light .lead-modal__form textarea {
  background: var(--bg);
}

.lead-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.lead-modal__alt {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lead-modal__alt > span { flex-shrink: 0; }
.lead-modal__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  font-family: var(--font-ui);
  transition: opacity .3s;
}
.lead-modal__wa:hover { opacity: 0.8; }

/* Body lock when modal open */
body.lead-modal-open { overflow: hidden; }

/* Mobile fine-tunes */
@media (max-width: 600px) {
  .lead-modal { padding: 0; align-items: flex-end; }
  .lead-modal__dialog {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 92vh;
    transform: translateY(60px);
  }
  .lead-modal__head { padding-right: 50px; }
  .lead-modal__title { font-size: 26px; }
  .lead-modal__form .form__row.two { grid-template-columns: 1fr; gap: 14px; }
  .lead-modal__alt { flex-wrap: wrap; gap: 8px; }
}

/* =========================================================
   41. CONTACT PAGE — restructured (form first)
   ========================================================= */

.page-head--compact { padding-bottom: 30px; }
.contact-section { padding-top: 40px; }

/* Form takes 1.2fr, side info takes 1fr */
.contact-section .contact-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-section .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Right side rail — quick channels + locations + hours */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-side__quick {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-side__heading {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.contact-side__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.contact-side__channel:hover {
  border-color: var(--accent-2);
  transform: translateX(4px);
  background: rgba(24,212,212,0.04);
}
.contact-side__channel--wa { color: #25d366; }
.contact-side__channel--wa:hover { border-color: #25d366; background: rgba(37,211,102,0.06); }
.contact-side__channel svg { flex-shrink: 0; }
.contact-side__channel-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.contact-side__channel-val {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: inherit;
}

.contact-side__locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.contact-side__loc { display: flex; flex-direction: column; gap: 6px; }
.contact-side__loc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-side__loc-addr {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

.contact-side__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
}
.contact-side__hours-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-side__hours-val {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Map full-width */
.contact-map {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.contact-map iframe {
  display: block;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(1.1) brightness(0.95);
}
body.theme-light .contact-map iframe { filter: none; }
@media (max-width: 700px) { .contact-map { margin-top: 32px; } }

/* =========================================================
   42. FOOTER v2 — redesigned, more attractive, SEO-rich
   ========================================================= */

.footer--v2 {
  padding: clamp(60px, 8vw, 100px) 0 28px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Top accent gradient line — visual edge between page & footer */
.footer--v2::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(106,77,255,0.4) 25%, rgba(24,212,212,0.4) 50%, rgba(212,255,58,0.4) 75%, transparent 100%);
  opacity: 0.6;
}
body.theme-light .footer--v2::before {
  background: linear-gradient(90deg, transparent 0%, rgba(90,61,255,0.3) 25%, rgba(15,176,176,0.3) 50%, rgba(122,156,0,0.4) 75%, transparent 100%);
}

/* Ambient orb glow in background */
.footer--v2::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,77,255,0.10), transparent 70%);
  filter: blur(80px);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
  opacity: 0.7;
}
body.theme-light .footer--v2::after {
  background: radial-gradient(circle, rgba(90,61,255,0.08), transparent 70%);
}

/* ---- BIG WORDMARK ---- */
.footer--v2 .footer__big {
  font-family: var(--font-display);
  font-size: clamp(58px, 12vw, 180px);   /* was 70 / 16 / 240 */
  letter-spacing: -0.04em;
  line-height: 0.95;                       /* was 0.85 */
  margin-bottom: 56px;
  color: var(--ink);
  word-break: break-word;
  position: relative;
  z-index: 2;
}
.footer--v2 .footer__big em { font-style: italic; color: var(--ink-mute); }

/* ---- INTRO GRID — brand left, newsletter right ---- */
.footer__intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
  align-items: start;
}
.footer__intro-brand { display: flex; flex-direction: column; gap: 18px; }
.footer__intro-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 360px;
}

.footer__contact-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer__contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.footer__contact-pill:hover {
  border-color: var(--accent-2);
  background: rgba(24,212,212,0.06);
  transform: translateY(-2px);
}
body.theme-light .footer__contact-pill { background: rgba(10,10,15,0.03); }
body.theme-light .footer__contact-pill:hover { background: rgba(15,176,176,0.08); }

/* ---- NEWSLETTER ---- */
.footer__intro-news {
  background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.footer__intro-news::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,58,0.20), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
body.theme-light .footer__intro-news {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(255,255,255,0) 100%);
  box-shadow: 0 8px 24px -12px rgba(20,20,30,0.10);
}
.footer__intro-news > * { position: relative; z-index: 1; }
.footer__news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 4px 10px;
  border: 1px solid rgba(212,255,58,0.32);
  border-radius: 99px;
  margin-bottom: 12px;
}
body.theme-light .footer__news-eyebrow { border-color: rgba(122,156,0,0.32); }
.footer__news-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.footer__news-title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__news-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin-bottom: 16px;
}
.footer__news-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px 4px 4px 18px;
  transition: border-color .3s;
}
.footer__news-form:focus-within { border-color: var(--accent-2); }
body.theme-light .footer__news-form { background: var(--bg); }
.footer__news-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  font-family: var(--font-ui);
  padding: 10px 0;
  outline: none;
  min-width: 0;
}
.footer__news-form input::placeholder { color: var(--ink-mute); }
.footer__news-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  background: var(--accent-3);
  color: #0a0a0f;
  font-size: 13px;
  font-weight: 600;
  border: 0;
  cursor: none;
  transition: transform .3s, filter .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__news-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
@media (hover: none) { .footer__news-btn { cursor: pointer; } }
body.theme-light .footer__news-btn { color: #ffffff; background: var(--accent-3); }
.footer__news-status {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-3);
  min-height: 16px;
}

/* ---- DIVIDER ---- */
.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 0 0 50px;
  position: relative;
  z-index: 2;
}

/* ---- COLUMNS ---- */
.footer--v2 .footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
  border: 0;
}
.footer--v2 .footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.footer--v2 .footer__col a {
  display: block;
  color: var(--ink-dim);
  font-size: 14.5px;
  padding: 5px 0;
  transition: color .3s, padding-left .3s var(--ease);
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}
.footer--v2 .footer__col a::before {
  content: "→";
  position: absolute;
  left: -14px;
  top: 5px;
  font-family: var(--font-mono);
  color: var(--accent-3);
  opacity: 0;
  transition: opacity .25s, left .3s var(--ease);
}
.footer--v2 .footer__col a:hover {
  color: var(--ink);
  padding-left: 14px;
}
.footer--v2 .footer__col a:hover::before { opacity: 1; left: 0; }

.footer__addr {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.footer__addr strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.footer__addr--muted strong { color: var(--ink-dim); }

/* ---- AREAS WE SERVE ---- */
.footer__areas {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.footer__areas-head { margin-bottom: 28px; max-width: 700px; }
.footer__areas-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(24,212,212,0.32);
  border-radius: 99px;
}
.footer__areas-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);    /* was 28 / 3.5 / 44 */
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.footer__areas-title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__areas-sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.footer__area-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.footer__area-row:last-child { border-bottom: 0; }
.footer__area-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 6px;
  position: sticky;
  top: 100px;
}
.footer__area-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer__area-list li {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 12.5px;
  color: var(--ink-dim);
  background: rgba(255,255,255,0.02);
  transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease);
  cursor: default;
}
body.theme-light .footer__area-list li { background: rgba(10,10,15,0.02); }
.footer__area-list li:hover {
  color: var(--ink);
  border-color: var(--accent-2);
  background: rgba(24,212,212,0.06);
  transform: translateY(-1px);
}
body.theme-light .footer__area-list li:hover { background: rgba(15,176,176,0.08); }

/* ---- KEYWORD CLOUD ---- */
.footer__keywords {
  margin-top: 36px;
  padding: 30px 0 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.footer__keywords-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.footer__keywords-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer__keywords-list li {
  padding: 4px 11px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: color .25s, border-color .25s, background .25s;
  cursor: default;
}
body.theme-light .footer__keywords-list li { background: rgba(10,10,15,0.02); }
.footer__keywords-list li:hover {
  color: var(--ink);
  border-color: var(--accent-3);
  background: rgba(212,255,58,0.06);
}
body.theme-light .footer__keywords-list li:hover { background: rgba(122,156,0,0.08); }

/* ---- TRUST STRIP ---- */
.footer__trust {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.footer__trust-item {
  padding: 8px 16px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__trust-item:last-child { border-right: 0; }
.footer__trust-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: flex-start;
}
.footer__trust-num small {
  font-size: 0.5em;
  color: var(--accent-3);
  margin-left: 2px;
  margin-top: 0.15em;
}
.footer__trust-lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer__trust-item--badge { gap: 6px; }
.footer__trust-badge {
  display: inline-block;
  padding: 5px 10px;
  background: var(--accent-3);
  color: #0a0a0f;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  align-self: flex-start;
}

/* ---- BOTTOM ROW ---- */
.footer--v2 .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  gap: 18px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.footer__legal { display: flex; gap: 8px; align-items: center; }
.footer__legal a { color: var(--ink-mute); text-decoration: none; transition: color .3s; }
.footer__legal a:hover { color: var(--ink); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer__intro { grid-template-columns: 1fr; gap: 32px; }
  .footer--v2 .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer__trust { grid-template-columns: repeat(3, 1fr); }
  .footer__trust-item:nth-child(3n) { border-right: 0; }
  .footer__trust-item:nth-child(n+4) { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 8px; }
}

@media (max-width: 700px) {
  .footer--v2 { padding-top: 60px; }
  .footer--v2 .footer__big { font-size: clamp(56px, 18vw, 100px); margin-bottom: 36px; }
  .footer__intro-news { padding: 22px 20px; }
  .footer__news-form { padding: 4px; padding-left: 14px; }
  .footer__news-form input { font-size: 14px; padding: 10px 4px; }
  .footer__news-btn { padding: 10px 14px; font-size: 12px; }
  .footer__news-btn span { display: none; }

  .footer--v2 .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 20px; }

  .footer__area-row { grid-template-columns: 1fr; gap: 8px; padding: 14px 0; }
  .footer__area-label { position: static; padding-top: 0; }
  .footer__area-list li { font-size: 11.5px; padding: 4px 10px; }

  .footer__keywords-list li { font-size: 10.5px; padding: 3px 9px; }

  .footer__trust { grid-template-columns: repeat(2, 1fr); }
  .footer__trust-item { padding: 8px 12px; }
  .footer__trust-item:nth-child(2n) { border-right: 0; }
  .footer__trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .footer__trust-item:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }

  .footer--v2 .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .footer--v2 .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__contact-row { flex-direction: column; }
  .footer__contact-pill { justify-content: center; }
}

/* Override the OLD footer rules so we don't double-render styles
   (.footer was the previous block — we now use .footer.footer--v2) */
.footer--v2 .footer__top { display: none; } /* old top with logo+tagline removed; now in __intro */

/* =========================================================
   43. SCROLL-TO-TOP BUTTON
   Floating circular button. Appears after 400px scroll.
   Stacks above the WhatsApp FAB.
   ========================================================= */

.fab-top {
  position: fixed;
  right: 28px;
  bottom: 130px; /* well above WhatsApp FAB (which sits at bottom: 28px, height 60px) */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20,20,30,0.85);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 49;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition: opacity .35s var(--ease), transform .4s var(--ease), visibility 0s linear .35s, background .3s, border-color .3s, color .3s;
  padding: 0;
}
.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity .35s var(--ease), transform .4s var(--ease), visibility 0s, background .3s, border-color .3s, color .3s;
}
.fab-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.fab-top:active { transform: translateY(0) scale(0.96); }
@media (hover: none) { .fab-top { cursor: pointer; } }

/* The arrow icon */
.fab-top > svg:first-of-type {
  position: relative;
  z-index: 2;
  transition: transform .4s var(--ease);
}
.fab-top:hover > svg:first-of-type { transform: translateY(-3px); }

/* Progress ring shows scroll percentage */
.fab-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: rotate(-90deg);
  z-index: 1;
}
.fab-top__ring circle {
  fill: none;
  stroke: var(--accent-3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: var(--scroll-pct, 100);
  transition: stroke-dashoffset .15s linear;
  filter: drop-shadow(0 0 4px rgba(212,255,58,0.4));
}

/* Light theme */
body.theme-light .fab-top {
  background: rgba(255,255,255,0.92);
  border-color: rgba(10,10,15,0.12);
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(20,20,30,0.20);
}
body.theme-light .fab-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
body.theme-light .fab-top__ring circle {
  stroke: var(--accent-3);
  filter: drop-shadow(0 0 4px rgba(122,156,0,0.5));
}

/* Mobile — slightly smaller, tighter to FAB */
@media (max-width: 700px) {
  .fab-top {
    width: 42px; height: 42px;
    right: 16px;
    bottom: 110px;
  }
  .fab-top svg:first-of-type { width: 18px; height: 18px; }
}

/* =========================================================
   44. PROCESS STEPS — v2 UPGRADE
   Curved connectors, animated reveals, hover lift, position chip.
   Targets existing markup — no HTML changes needed.
   ========================================================= */

.process-list {
  position: relative;
  border-top: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical hairline behind the numbers — visual spine */
.process-list::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 70px;
  bottom: 70px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--line-strong) 8%,
    var(--line-strong) 92%,
    transparent 100%
  );
  pointer-events: none;
}

/* Each step becomes a relative container so we can position the curve overlay */
.process-step {
  display: grid;
  grid-template-columns: 180px 1.2fr 1.5fr;   /* widened from 130px to fit the big numerals */
  gap: 48px;
  padding: 56px 0 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  position: relative;
  transition: padding .45s var(--ease), background .35s var(--ease);
}
.process-step:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: linear-gradient(90deg, transparent 0%, rgba(106,77,255,0.04) 50%, transparent 100%);
}
body.theme-light .process-step:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(90,61,255,0.05) 50%, transparent 100%);
}

/* Number — outline-style by default, fills on active/hover */
.process-step__num {
  font-family: var(--font-display);
  font-size: clamp(64px, 7.5vw, 120px);    /* reduced upper from 140 → 120 so it fits */
  line-height: 0.9;
  font-weight: 600;                          /* Poppins needs more weight to feel bold */
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-mute);
  position: relative;
  z-index: 2;
  padding-left: 4px;                         /* breathing room — no left clipping */
  transition: -webkit-text-stroke-color .5s var(--ease), transform .5s var(--ease);
}

/* Decorative dot beside the number — sits on the spine line */
.process-step__num::before {
  content: "";
  position: absolute;
  left: -64px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--line-strong);
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
  z-index: 3;
}
body.theme-light .process-step__num::before { background: var(--bg-2); }

/* Active state — number gets gradient fill, dot pulses with brand colours */
.process-step.is-active .process-step__num,
.process-step:hover .process-step__num {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.5px transparent;
  transform: translateX(2px);
}
.process-step.is-active .process-step__num::before,
.process-step:hover .process-step__num::before {
  background: var(--accent-3);
  border-color: var(--accent-3);
  box-shadow: 0 0 0 6px rgba(212,255,58,0.15), 0 0 20px var(--accent-3);
  transform: translate(-50%, -50%) scale(1.15);
}

/* Title — slide right slightly + colour shift on hover */
.process-step__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  position: relative;
  transition: transform .45s var(--ease), color .35s;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.process-step:hover .process-step__title { transform: translateX(6px); }

/* Position chip after the title (e.g. "STEP 01 / 04") */
.process-step__title::after {
  content: "Step " counter(step) " / " var(--total, "04");
  counter-increment: step;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255,255,255,0.02);
  font-weight: 500;
  transition: color .35s, border-color .35s, background .35s;
}
body.theme-light .process-step__title::after { background: rgba(10,10,15,0.02); }
.process-step:hover .process-step__title::after,
.process-step.is-active .process-step__title::after {
  color: var(--accent-3);
  border-color: rgba(212,255,58,0.4);
  background: rgba(212,255,58,0.08);
}
.process-list { counter-reset: step; }

.process-step__body {
  color: var(--ink-dim);
  font-size: 16.5px;
  line-height: 1.6;
  transition: color .35s;
}
.process-step:hover .process-step__body { color: var(--ink); }

/* ============ CURVED SVG ARROW CONNECTORS ============
   Drawn as a pure-CSS pseudo-element using SVG-encoded background.
   Sits in the gutter on the right of one step, connecting down to the next.
   Animates on scroll-in via stroke-dashoffset trick using mask-position. */

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: -34px;
  width: 100px;
  height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 70' fill='none'><path d='M 5 0 Q 5 35 50 35 T 95 70' stroke='%236a4dff' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4' opacity='0.45'/><path d='M 88 60 L 96 70 L 86 72' stroke='%236a4dff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none' opacity='0.7'/></svg>") no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  z-index: 1;
}
.process-step.is-active:not(:last-child)::after,
.process-step:not(:last-child):hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* On every other step, flip the curve so it zigzags */
.process-step:nth-child(even):not(:last-child)::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 70' fill='none'><path d='M 95 0 Q 95 35 50 35 T 5 70' stroke='%2318d4d4' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4' opacity='0.45'/><path d='M 12 60 L 4 70 L 14 72' stroke='%2318d4d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none' opacity='0.7'/></svg>") no-repeat center;
  background-size: contain;
  right: auto;
  left: 32px;
}

/* Light-theme: replace stroke colours via filter (cheap + works) */
body.theme-light .process-step:not(:last-child)::after {
  filter: hue-rotate(0deg) brightness(0.7);
}

/* ============ SCROLL-IN reveal ============
   Title + body slide up + fade. Number scales in. */

.process-step:not(.is-active) .process-step__title {
  /* baseline; GSAP/ScrollTrigger handles is-active toggle */
}

/* Subtle pulse ring on active step's dot */
.process-step.is-active .process-step__num::after {
  content: "";
  position: absolute;
  left: -64px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent-3);
  animation: process-pulse 2s ease-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes process-pulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .process-step {
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 38px 0;
    align-items: start;
  }
  .process-step__num { font-size: clamp(56px, 14vw, 80px); }
  .process-step__num::before { display: none; } /* hide spine dot on mobile */
  .process-step.is-active .process-step__num::after { display: none; }
  .process-list::before { display: none; } /* hide spine on mobile */

  .process-step__title {
    font-size: clamp(24px, 6vw, 32px);
    gap: 12px;
  }
  .process-step__title::after {
    font-size: 9.5px;
    padding: 3px 8px;
  }

  .process-step__body {
    grid-column: 2;
    font-size: 15px;
  }

  /* Hide curve connectors on mobile — they create awkward overlaps */
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 540px) {
  .process-step { grid-template-columns: 60px 1fr; gap: 18px; padding: 30px 0; }
  .process-step__num { font-size: 48px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .process-step,
  .process-step__num,
  .process-step__title,
  .process-step__body,
  .process-step::after { transition: none !important; animation: none !important; }
}

/* =========================================================
   45. VISUAL POLISH v2
   Studio intro / Capabilities rows / Industries grid /
   Trending campaign cards — animations, hover states, depth
   ========================================================= */

/* ============ A. STUDIO INTRO (about-2col) ============ */

.about-2col {
  position: relative;
  gap: 80px;
}

/* Decorative gradient stripe between the two columns */
.about-2col::before {
  content: "";
  position: absolute;
  left: calc(50% - 0.5px);
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106,77,255,0.0) 0%,
    rgba(106,77,255,0.32) 25%,
    rgba(24,212,212,0.32) 50%,
    rgba(212,255,58,0.32) 75%,
    transparent 100%
  );
  pointer-events: none;
  display: block;
}
@media (max-width: 800px) {
  .about-2col::before { display: none; }
}

/* The big lead paragraph — pull-quote feel */
.about-2col__lead {
  position: relative;
  padding-left: 18px;
  border-left: 3px solid transparent;
  background-image: linear-gradient(180deg, var(--accent), var(--accent-2));
  background-clip: padding-box;
  background-origin: border-box;
  background-size: 3px 100%;
  background-repeat: no-repeat;
  background-position: left center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
  transition: padding-left .35s var(--ease);
}
.about-2col__lead:hover { padding-left: 24px; }
.about-2col__lead strong {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

/* Sub-paragraphs — better rhythm */
.about-2col p:not(.about-2col__lead) {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-dim);
}
.about-2col p strong {
  color: var(--ink);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.about-2col p strong::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 6px;
  background: linear-gradient(180deg, transparent 50%, rgba(212,255,58,0.32) 50%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.about-2col p strong:hover::after,
.about-2col[data-revealed] p strong::after { transform: scaleX(1); }

/* ============ B. CAPABILITIES (svc-row) ============ */

.svc-list { border-top: 1px solid var(--line-strong); }

.svc-row {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  gap: 30px;
  align-items: center;
  position: relative;
  transition: padding .45s var(--ease), background .35s var(--ease);
  isolation: isolate;
  overflow: hidden;
}

/* Background sweep stripe — slides in from left on hover */
.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(106,77,255,0.08) 0%, rgba(106,77,255,0.02) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s var(--ease-out);
  z-index: -1;
}
.svc-row:hover::before { transform: translateX(0); }

/* Per-row brand colour rotation (different gradient per row for variety) */
.svc-row:nth-child(1)::before { background: linear-gradient(90deg, rgba(106,77,255,0.10) 0%, rgba(106,77,255,0.02) 60%, transparent 100%); }
.svc-row:nth-child(2)::before { background: linear-gradient(90deg, rgba(24,212,212,0.10) 0%, rgba(24,212,212,0.02) 60%, transparent 100%); }
.svc-row:nth-child(3)::before { background: linear-gradient(90deg, rgba(212,255,58,0.10) 0%, rgba(212,255,58,0.02) 60%, transparent 100%); }
.svc-row:nth-child(4)::before { background: linear-gradient(90deg, rgba(255,122,69,0.10) 0%, rgba(255,122,69,0.02) 60%, transparent 100%); }
.svc-row:nth-child(5)::before { background: linear-gradient(90deg, rgba(255,61,128,0.10) 0%, rgba(255,61,128,0.02) 60%, transparent 100%); }
.svc-row:nth-child(6)::before { background: linear-gradient(90deg, rgba(106,77,255,0.10) 0%, rgba(24,212,212,0.04) 60%, transparent 100%); }

.svc-row:hover {
  padding: 44px 0 44px 18px;
}

.svc-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  position: relative;
  transition: color .35s, transform .35s var(--ease);
}
.svc-row__num::before {
  content: "0";
  opacity: 0.3;
  margin-right: 2px;
  display: none;
}
.svc-row:hover .svc-row__num {
  color: var(--accent-3);
  transform: translateX(4px);
}

.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 48px);   /* was 32 / 5 / 64 */
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color .45s var(--ease);
}
.svc-row__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Hover: title becomes outline */
.svc-row:hover .svc-row__title {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}
body.theme-light .svc-row:hover .svc-row__title {
  -webkit-text-stroke: 1px var(--ink);
}

/* Tags row — animated chips */
.svc-row__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 380px;
  justify-content: flex-end;
  align-items: center;
}
.svc-row__tags span {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  font-size: 12px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  transition: border-color .35s, color .35s, background .35s, transform .35s var(--ease);
}
.svc-row:hover .svc-row__tags span {
  border-color: var(--accent-2);
  color: var(--ink);
  background: rgba(24,212,212,0.06);
}
.svc-row:hover .svc-row__tags span:nth-child(1) { transition-delay: 0s;    transform: translateY(-3px); }
.svc-row:hover .svc-row__tags span:nth-child(2) { transition-delay: .05s;  transform: translateY(-3px); }
.svc-row:hover .svc-row__tags span:nth-child(3) { transition-delay: .1s;   transform: translateY(-3px); }
.svc-row:hover .svc-row__tags span:nth-child(4) { transition-delay: .15s;  transform: translateY(-3px); }

/* Arrow — circular frame with glow on hover */
.svc-row__arrow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: background .4s var(--ease), color .4s, transform .4s var(--ease), border-color .4s, box-shadow .4s var(--ease);
  position: relative;
}
.svc-row:hover .svc-row__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-45deg) scale(1.05);
  box-shadow: 0 8px 24px -8px rgba(106,77,255,0.55), 0 0 0 6px rgba(106,77,255,0.10);
}
/* Per-row arrow colour to match stripe */
.svc-row:nth-child(2):hover .svc-row__arrow { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 8px 24px -8px rgba(24,212,212,0.55), 0 0 0 6px rgba(24,212,212,0.12); }
.svc-row:nth-child(3):hover .svc-row__arrow { background: var(--accent-3); border-color: var(--accent-3); color: #0a0a0f; box-shadow: 0 8px 24px -8px rgba(212,255,58,0.55), 0 0 0 6px rgba(212,255,58,0.14); }
.svc-row:nth-child(4):hover .svc-row__arrow { background: var(--accent-warm); border-color: var(--accent-warm); box-shadow: 0 8px 24px -8px rgba(255,122,69,0.55), 0 0 0 6px rgba(255,122,69,0.14); }

@media (max-width: 800px) {
  .svc-row { grid-template-columns: 40px 1fr 40px; gap: 16px; }
  .svc-row:hover { padding: 30px 0 30px 12px; }
  .svc-row__tags { display: none; }
  .svc-row__arrow { width: 40px; height: 40px; font-size: 14px; }
}

/* ============ C. INDUSTRIES GRID (home-industries) ============ */

.home-industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}

.home-industries .ind {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  background: transparent;
  transition: background .4s var(--ease), transform .4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}

/* Gradient corner glow on hover */
.home-industries .ind::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,77,255,0.20), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  z-index: 0;
}
.home-industries .ind:hover::before {
  opacity: 1;
  transform: translate(-30px, 30px);
}

/* Per-cell colour variation */
.home-industries .ind:nth-child(2)::before { background: radial-gradient(circle, rgba(24,212,212,0.20), transparent 70%); }
.home-industries .ind:nth-child(3)::before { background: radial-gradient(circle, rgba(212,255,58,0.18), transparent 70%); }
.home-industries .ind:nth-child(4)::before { background: radial-gradient(circle, rgba(255,122,69,0.18), transparent 70%); }
.home-industries .ind:nth-child(5)::before { background: radial-gradient(circle, rgba(255,61,128,0.18), transparent 70%); }
.home-industries .ind:nth-child(6)::before { background: radial-gradient(circle, rgba(106,77,255,0.20), transparent 70%); }
.home-industries .ind:nth-child(7)::before { background: radial-gradient(circle, rgba(24,212,212,0.20), transparent 70%); }
.home-industries .ind:nth-child(8)::before { background: radial-gradient(circle, rgba(212,255,58,0.18), transparent 70%); }

/* Bottom accent line — slides in on hover */
.home-industries .ind::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
  z-index: 1;
}
.home-industries .ind:hover::after { transform: scaleX(1); }

.home-industries .ind:hover {
  background: var(--bg-3);
  transform: translateY(-2px);
}

/* Icon — with frame, animates on hover */
.home-industries .ind__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(106,77,255,0.12);
  border: 1px solid rgba(106,77,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  transition: background .4s, color .4s, transform .45s var(--ease), border-color .4s, box-shadow .4s;
  position: relative;
  z-index: 2;
}
.home-industries .ind:hover .ind__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 24px -8px rgba(106,77,255,0.55);
}

/* Per-cell hover colour for icons */
.home-industries .ind:nth-child(2):hover .ind__icon { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 8px 24px -8px rgba(24,212,212,0.55); }
.home-industries .ind:nth-child(3):hover .ind__icon { background: var(--accent-3); border-color: var(--accent-3); color: #0a0a0f; box-shadow: 0 8px 24px -8px rgba(212,255,58,0.55); }
.home-industries .ind:nth-child(4):hover .ind__icon { background: var(--accent-warm); border-color: var(--accent-warm); box-shadow: 0 8px 24px -8px rgba(255,122,69,0.55); }
.home-industries .ind:nth-child(5):hover .ind__icon { background: #ff3d80; border-color: #ff3d80; box-shadow: 0 8px 24px -8px rgba(255,61,128,0.55); }
.home-industries .ind:nth-child(7):hover .ind__icon { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 8px 24px -8px rgba(24,212,212,0.55); }
.home-industries .ind:nth-child(8):hover .ind__icon { background: var(--accent-3); border-color: var(--accent-3); color: #0a0a0f; box-shadow: 0 8px 24px -8px rgba(212,255,58,0.55); }

.home-industries .ind__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  z-index: 2;
  transition: color .35s;
}
.home-industries .ind:hover .ind__title { color: var(--ink); }

.home-industries .ind__list {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
  position: relative;
  z-index: 2;
  transition: color .35s;
}
.home-industries .ind:hover .ind__list { color: var(--ink); }

/* Light-theme override — accent-3 text on chartreuse looks washed out otherwise */
body.theme-light .home-industries .ind:nth-child(3):hover .ind__icon { color: #ffffff; }
body.theme-light .home-industries .ind:nth-child(8):hover .ind__icon { color: #ffffff; }

@media (max-width: 1100px) {
  .home-industries { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .home-industries { grid-template-columns: repeat(2, 1fr); }
  .home-industries .ind { padding: 24px 18px; }
}
@media (max-width: 460px) {
  .home-industries { grid-template-columns: 1fr; }
}

/* ============ D. TRENDING CAMPAIGN CARDS ============ */

/* Sharper #1 INDIA badge */
.work-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0f;
  background: var(--accent-3);
  border-radius: 99px;
  font-weight: 600;
  box-shadow: 0 8px 22px -6px rgba(212,255,58,0.4), 0 0 0 1px rgba(212,255,58,0.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.work-card:hover .work-card__badge {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(212,255,58,0.6), 0 0 0 1px rgba(212,255,58,0.7);
}
.work-card__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a0a0f;
  display: inline-block;
  position: relative;
  animation: trend-blink 1.6s ease-in-out infinite;
}
.work-card__badge i::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,15,0.5);
  animation: trend-ring 1.8s ease-out infinite;
}
@keyframes trend-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
@keyframes trend-ring {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Hashtag row inside overlay — color + copy emphasis */
.work-card__hash {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent-3);
  margin-top: 6px;
  opacity: 0.95;
  word-break: break-word;
  text-shadow: 0 0 12px rgba(212,255,58,0.3);
}

/* Card hover lift — sharper than default */
.work-grid--posters .work-card {
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.work-grid--posters .work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,255,58,0.25);
}
body.theme-light .work-grid--posters .work-card:hover {
  box-shadow: 0 30px 60px -20px rgba(20,20,30,0.30), 0 0 0 1px rgba(122,156,0,0.30);
}

/* Image zoom on hover */
.work-grid--posters .work-card__img {
  transition: transform 1s var(--ease-out), filter .5s var(--ease);
}
.work-grid--posters .work-card:hover .work-card__img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05);
}

/* Brighter overlay on hover */
.work-grid--posters .work-card::after {
  transition: background .5s var(--ease);
}
.work-grid--posters .work-card:hover::after {
  background: linear-gradient(to top,
    rgba(10,10,15,0.92) 0%,
    rgba(10,10,15,0.5) 35%,
    rgba(212,255,58,0.10) 70%,
    transparent 100%);
}

/* ============ E. SECTION HEADER (s-head__title) — gradient on em ============ */

.s-head__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svc-row, .svc-row::before, .svc-row__title, .svc-row__arrow,
  .home-industries .ind, .home-industries .ind__icon,
  .work-card, .work-card__img, .work-card__badge,
  .about-2col__lead { transition: none !important; animation: none !important; }
  .work-card__badge i, .work-card__badge i::after { animation: none !important; }
}

/* =========================================================
   46. DIGITAL TRANSFORMATION + AI SERVICES PAGES
   Journey timeline · AI cards · vs-grid
   ========================================================= */

/* ============ A. JOURNEY TIMELINE ============ */

.journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 30px;
}

/* Vertical spine */
.journey::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106,77,255,0.3) 8%,
    rgba(24,212,212,0.3) 35%,
    rgba(212,255,58,0.4) 65%,
    rgba(255,122,69,0.3) 92%,
    transparent 100%
  );
  pointer-events: none;
}

.journey__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0 36px 0;
  position: relative;
  align-items: start;
}

.journey__step + .journey__step {
  border-top: 1px dashed var(--line);
}

/* Number badge */
.journey__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: var(--bg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink-mute);
  position: relative;
  z-index: 2;
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}

/* Per-step gradient when reached */
.journey__step:nth-child(1) .journey__step-num,
.journey__step:nth-child(2) .journey__step-num,
.journey__step:nth-child(3) .journey__step-num { --step-color: var(--accent); }
.journey__step:nth-child(4) .journey__step-num,
.journey__step:nth-child(5) .journey__step-num,
.journey__step:nth-child(6) .journey__step-num { --step-color: var(--accent-2); }
.journey__step:nth-child(7) .journey__step-num,
.journey__step:nth-child(8) .journey__step-num { --step-color: var(--accent-warm); }
.journey__step--ai .journey__step-num { --step-color: var(--accent-3) !important; }

.journey__step:hover .journey__step-num,
.journey__step.is-revealed .journey__step-num {
  background: var(--step-color, var(--accent));
  border-color: var(--step-color, var(--accent));
  color: #0a0a0f;
  transform: scale(1.05);
  box-shadow: 0 8px 28px -8px var(--step-color, rgba(106,77,255,0.5)), 0 0 0 6px rgba(255,255,255,0.04);
}

/* AI step gets extra emphasis */
.journey__step--ai .journey__step-num::before {
  content: "★";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-3);
  color: #0a0a0f;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 0 3px var(--bg);
  animation: ai-star-pulse 2.5s ease-in-out infinite;
}
@keyframes ai-star-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.15) rotate(30deg); }
}

.journey__step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 6px;
}

.journey__step-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(24,212,212,0.08);
  border: 1px solid rgba(24,212,212,0.32);
}
.journey__step-tag--ai {
  color: var(--accent-3);
  background: rgba(212,255,58,0.10);
  border-color: rgba(212,255,58,0.42);
}

.journey__step-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.journey__step-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
}
.journey__step-content p strong { color: var(--ink); font-weight: 500; }
.journey__step-content p em { font-style: italic; color: var(--ink); }

.journey__step-deliverables {
  list-style: none;
  margin: 8px 0 0;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.theme-light .journey__step-deliverables { background: rgba(10,10,15,0.02); }
.journey__step-deliverables li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.journey__step-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-3);
  font-weight: bold;
}

.journey__step--ai .journey__step-deliverables {
  border-color: rgba(212,255,58,0.3);
  background: rgba(212,255,58,0.04);
}

@media (max-width: 700px) {
  .journey::before { left: 24px; }
  .journey__step { grid-template-columns: 56px 1fr; gap: 18px; padding: 28px 0; }
  .journey__step-num { width: 48px; height: 48px; font-size: 20px; }
  .journey__step--ai .journey__step-num::before { width: 20px; height: 20px; font-size: 10px; top: -6px; right: -6px; }
  .journey__step-title { font-size: 22px; }
  .journey__step-content p { font-size: 14.5px; }
  .journey__step-deliverables { padding: 12px 14px; }
  .journey__step-deliverables li { font-size: 11px; }
}

/* ============ B. AI CARDS ============ */

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
@media (max-width: 1024px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ai-grid { grid-template-columns: 1fr; } }

.ai-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .45s, transform .45s var(--ease), box-shadow .45s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
body.theme-light .ai-card {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(255,255,255,0) 100%);
  box-shadow: 0 8px 24px -12px rgba(20,20,30,0.10);
}

/* Decorative gradient blob */
.ai-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,58,0.18), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.ai-card:nth-child(2)::before { background: radial-gradient(circle, rgba(106,77,255,0.20), transparent 70%); }
.ai-card:nth-child(3)::before { background: radial-gradient(circle, rgba(24,212,212,0.22), transparent 70%); }
.ai-card:nth-child(4)::before { background: radial-gradient(circle, rgba(255,122,69,0.20), transparent 70%); }
.ai-card:nth-child(5)::before { background: radial-gradient(circle, rgba(255,61,128,0.18), transparent 70%); }
.ai-card:nth-child(6)::before { background: radial-gradient(circle, rgba(212,255,58,0.18), transparent 70%); }

.ai-card:hover {
  border-color: var(--accent-3);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,255,58,0.25);
}
body.theme-light .ai-card:hover {
  box-shadow: 0 30px 60px -25px rgba(20,20,30,0.30), 0 0 0 1px rgba(122,156,0,0.30);
}
.ai-card:hover::before {
  opacity: 1;
  transform: translate(-30px, 30px);
}

.ai-card > * { position: relative; z-index: 1; }

.ai-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,255,58,0.14);
  border: 1px solid rgba(212,255,58,0.32);
  color: var(--accent-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease), background .4s, color .4s;
}
.ai-card:nth-child(2) .ai-card__icon { background: rgba(106,77,255,0.14); border-color: rgba(106,77,255,0.32); color: var(--accent); }
.ai-card:nth-child(3) .ai-card__icon { background: rgba(24,212,212,0.14); border-color: rgba(24,212,212,0.32); color: var(--accent-2); }
.ai-card:nth-child(4) .ai-card__icon { background: rgba(255,122,69,0.14); border-color: rgba(255,122,69,0.32); color: var(--accent-warm); }
.ai-card:nth-child(5) .ai-card__icon { background: rgba(255,61,128,0.14); border-color: rgba(255,61,128,0.32); color: #ff3d80; }

.ai-card:hover .ai-card__icon {
  transform: rotate(-8deg) scale(1.08);
}

.ai-card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.ai-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ai-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  flex: 1;
}

.ai-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
}
.ai-card__meta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
}

.ai-card__price {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent-3);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

/* ============ C. VS-GRID (one team vs many agencies) ============ */

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 800px) { .vs-grid { grid-template-columns: 1fr; gap: 18px; } }

.vs-col {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body.theme-light .vs-col {
  box-shadow: 0 8px 24px -12px rgba(20,20,30,0.08);
}

.vs-col--bad {
  background: linear-gradient(165deg, rgba(255,61,128,0.03) 0%, var(--surface) 100%);
  border-color: rgba(255,61,128,0.14);
}
.vs-col--good {
  background: linear-gradient(165deg, rgba(212,255,58,0.04) 0%, var(--surface) 100%);
  border-color: rgba(212,255,58,0.32);
  box-shadow: 0 12px 36px -16px rgba(212,255,58,0.18);
}

.vs-col__head { display: flex; flex-direction: column; gap: 10px; }
.vs-col__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
}
.vs-col--bad .vs-col__tag { color: #ff3d80; border-color: rgba(255,61,128,0.32); }
.vs-col--good .vs-col__tag { color: var(--accent-3); border-color: rgba(212,255,58,0.42); background: rgba(212,255,58,0.06); }

.vs-col h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.vs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.vs-col--bad .vs-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff3d80;
  font-weight: bold;
  font-size: 16px;
}
.vs-col--good .vs-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-3);
  font-weight: bold;
  font-size: 16px;
}

.vs-list__total {
  margin-top: 14px;
  padding-top: 14px;
  padding-left: 0 !important;
  border-top: 1px solid var(--line);
  font-size: 15px !important;
  color: var(--ink) !important;
}
.vs-list__total::before { display: none !important; }
.vs-list__total strong { color: var(--ink); font-weight: 500; }

@media (max-width: 600px) {
  .vs-col { padding: 24px 22px; }
  .vs-col h3 { font-size: 22px; }
  .vs-list li { font-size: 13.5px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .journey__step-num, .ai-card, .ai-card::before, .ai-card__icon { transition: none !important; animation: none !important; }
}

/* =========================================================
   47. HERO ANNOUNCEMENT BANNER + clickable caps
   Highlights the Digital Transformation page from the home hero.
   ========================================================= */

.hero__announce {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 14px;
  margin-bottom: 28px;
  border-radius: 99px;
  border: 1px solid rgba(212,255,58,0.32);
  background: rgba(212,255,58,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, background .35s, box-shadow .35s var(--ease);
}
.hero__announce:hover {
  transform: translateY(-2px);
  border-color: var(--accent-3);
  background: rgba(212,255,58,0.10);
  box-shadow: 0 8px 24px -8px rgba(212,255,58,0.45);
}
body.theme-light .hero__announce { background: rgba(122,156,0,0.08); border-color: rgba(122,156,0,0.32); }
body.theme-light .hero__announce:hover { background: rgba(122,156,0,0.12); border-color: var(--accent-3); }

/* Shimmer sweep on hover */
.hero__announce::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(212,255,58,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
  pointer-events: none;
}
.hero__announce:hover::before { transform: translateX(100%); }

.hero__announce-tag {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--accent-3);
  color: #0a0a0f;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.hero__announce-text {
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero__announce-text strong {
  font-weight: 600;
  color: var(--ink);
}

.hero__announce-arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,255,58,0.18);
  border: 1px solid rgba(212,255,58,0.42);
  color: var(--accent-3);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.hero__announce:hover .hero__announce-arrow {
  transform: translateX(4px);
  background: var(--accent-3);
  color: #0a0a0f;
}
body.theme-light .hero__announce-arrow {
  background: rgba(122,156,0,0.14);
  border-color: rgba(122,156,0,0.32);
  color: var(--accent-3);
}

/* Mobile — stack tag above text */
@media (max-width: 700px) {
  .hero__announce {
    padding: 8px 12px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
  }
  .hero__announce-text { font-size: 12.5px; flex: 1 1 100%; order: 2; }
  .hero__announce-tag { order: 1; }
  .hero__announce-arrow { order: 3; }
}

/* Legacy clickable hero__cap rules removed — replaced by .caps-pill (Section 53). */

/* =========================================================
   48. BUSINESS AUTOMATION PAGE — auto-card grid
   Each card has: number, icon, tag, title, description,
   workflow flow list, price.
   ========================================================= */

.auto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}
@media (max-width: 1024px) { .auto-grid { grid-template-columns: 1fr; } }

.auto-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-3) 100%);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto auto auto;
  gap: 12px 18px;
  align-items: start;
  transition: border-color .45s, transform .45s var(--ease), box-shadow .45s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
body.theme-light .auto-card {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(255,255,255,0) 100%);
  box-shadow: 0 8px 24px -12px rgba(20,20,30,0.10);
}

/* Decorative gradient blob — corner */
.auto-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,77,255,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.auto-card:nth-child(2)::before { background: radial-gradient(circle, rgba(24,212,212,0.20), transparent 70%); }
.auto-card:nth-child(3)::before { background: radial-gradient(circle, rgba(255,122,69,0.18), transparent 70%); }
.auto-card:nth-child(4)::before { background: radial-gradient(circle, rgba(255,61,128,0.18), transparent 70%); }
.auto-card:nth-child(5)::before { background: radial-gradient(circle, rgba(106,77,255,0.18), transparent 70%); }
.auto-card:nth-child(6)::before { background: radial-gradient(circle, rgba(212,255,58,0.20), transparent 70%); }
.auto-card:nth-child(7)::before { background: radial-gradient(circle, rgba(24,212,212,0.20), transparent 70%); }

.auto-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5), 0 0 0 1px rgba(106,77,255,0.20);
}
body.theme-light .auto-card:hover {
  box-shadow: 0 30px 60px -25px rgba(20,20,30,0.30), 0 0 0 1px rgba(90,61,255,0.30);
}
.auto-card:hover::before { opacity: 1; transform: translate(-30px, 30px); }

.auto-card > * { position: relative; z-index: 1; }

/* Big serif number — top-left */
.auto-card__num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
  color: var(--ink-mute);
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px var(--line-strong);
  color: transparent;
  align-self: start;
  padding-top: 4px;
  transition: color .45s, -webkit-text-stroke-color .45s;
}
.auto-card:hover .auto-card__num {
  color: var(--accent-3);
  -webkit-text-stroke: 1px transparent;
}

.auto-card__icon {
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(106,77,255,0.12);
  border: 1px solid rgba(106,77,255,0.28);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease), background .4s, color .4s, border-color .4s;
  align-self: start;
}
.auto-card:nth-child(2) .auto-card__icon { background: rgba(24,212,212,0.12); border-color: rgba(24,212,212,0.28); color: var(--accent-2); }
.auto-card:nth-child(3) .auto-card__icon { background: rgba(255,122,69,0.12); border-color: rgba(255,122,69,0.28); color: var(--accent-warm); }
.auto-card:nth-child(4) .auto-card__icon { background: rgba(255,61,128,0.12); border-color: rgba(255,61,128,0.28); color: #ff3d80; }
.auto-card:nth-child(6) .auto-card__icon { background: rgba(212,255,58,0.14); border-color: rgba(212,255,58,0.32); color: var(--accent-3); }
.auto-card:nth-child(7) .auto-card__icon { background: rgba(24,212,212,0.12); border-color: rgba(24,212,212,0.28); color: var(--accent-2); }

.auto-card:hover .auto-card__icon {
  transform: rotate(-8deg) scale(1.08);
}

.auto-card__tag {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.auto-card__tag--featured {
  color: var(--accent-3);
  padding: 4px 10px;
  background: rgba(212,255,58,0.10);
  border: 1px solid rgba(212,255,58,0.32);
  border-radius: 99px;
  align-self: start;
  display: inline-block;
  font-weight: 600;
}

.auto-card h3 {
  grid-column: 1 / -1;
  grid-row: 3;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 6px;
}

.auto-card p {
  grid-column: 1 / -1;
  grid-row: 4;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* Workflow flow list — vertical stack with dots */
.auto-card__flow {
  grid-column: 1 / -1;
  grid-row: 5;
  list-style: none;
  margin: 6px 0 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
body.theme-light .auto-card__flow { background: rgba(10,10,15,0.02); }

.auto-card__flow li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.auto-card__flow li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-3);
  font-family: var(--font-mono);
  font-weight: bold;
}

.auto-card__price {
  grid-column: 1 / -1;
  grid-row: 6;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent-3);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

/* Featured card — flagship Sales Force Automation */
.auto-card--featured {
  border-color: rgba(212,255,58,0.32);
  background: linear-gradient(165deg, rgba(212,255,58,0.05) 0%, var(--surface) 60%, var(--bg-3) 100%);
  box-shadow: 0 12px 36px -16px rgba(212,255,58,0.15);
}
.auto-card--featured:hover {
  border-color: var(--accent-3);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,255,58,0.4);
}
.auto-card--featured .auto-card__num {
  -webkit-text-stroke: 1px rgba(212,255,58,0.4);
  color: rgba(212,255,58,0.18);
}
.auto-card--featured:hover .auto-card__num {
  color: var(--accent-3);
}
.auto-card--featured::after {
  content: "★";
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 18px;
  color: var(--accent-3);
  z-index: 2;
  animation: ai-star-pulse 2.5s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 600px) {
  .auto-card { padding: 24px 22px; gap: 10px 14px; }
  .auto-card__num { font-size: 38px; }
  .auto-card__icon { width: 38px; height: 38px; }
  .auto-card h3 { font-size: 20px; }
  .auto-card__flow { padding: 12px 14px; }
  .auto-card__flow li { font-size: 11px; padding-left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .auto-card, .auto-card::before, .auto-card__icon, .auto-card__num,
  .auto-card--featured::after { transition: none !important; animation: none !important; }
}

/* =========================================================
   49. HERO COMPACT — fit everything in 100vh, no scroll
   Brings down title, paddings, and gaps so the entire hero
   (announce → meta → title → caps → lead → CTA) fits in
   one viewport on common screens (1080p, 1440p, laptops).
   ========================================================= */

/* Wrapper: at least viewport tall, but can grow if content needs it.
   STRICT 100vh lock removed — content was overflowing on shorter screens. */
.hero.hero--with-posters.hero--split {
  min-height: 100vh;
  height: auto;
  max-height: none;
  padding: 90px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner column — vertical centred, tighter gaps */
.hero__inner--centered {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Announcement banner — slim it down */
.hero__inner--centered .hero__announce {
  margin-bottom: 16px;
  padding: 6px 6px 6px 12px;
  font-size: 12.5px;
}
.hero__inner--centered .hero__announce-text { font-size: 12.5px; }
.hero__inner--centered .hero__announce-arrow { width: 24px; height: 24px; font-size: 12px; }

/* Meta row */
.hero__meta--centered {
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 18px;          /* was 40px */
  font-size: 10.5px;
}
.hero__meta--centered span { font-size: 10.5px; }

/* TITLE — biggest savings here.
   Was clamp(54px, 11vw, 200px). New scale fits 3 lines comfortably in middle of viewport. */
.hero__title--centered {
  font-size: clamp(36px, 5.8vw, 92px);   /* was 40 / 7.2 / 116 — pulled down for Poppins density */
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 0;
}
/* Each line of the title is wrapped in .row { overflow: hidden } for the slide-up reveal,
   which clips italic descenders (g, p, y) at small line-heights. Push them visible. */
.hero__title--centered .row {
  padding-bottom: 0.05em;
  line-height: 1.1;
}

/* Capability pill row legacy block removed — see Section 53 (.caps-row). */

/* Base block — lead text + CTAs */
.hero__base--centered {
  margin-top: 18px;             /* was 44px */
  gap: 16px;                     /* was 28px */
}
.hero__base--centered .hero__lead {
  max-width: 580px;
  font-size: clamp(13px, 1.05vw, 15.5px);
  line-height: 1.5;
}
.hero__base--centered .hero__cta-row { gap: 10px; }
.hero__base--centered .btn {
  padding: 12px 22px;
  font-size: 13px;
}

/* Scroll cue — pin to bottom of hero, smaller */
.hero__inner--centered .hero__cue {
  position: absolute;
  bottom: 14px;
  left: var(--gutter);
  font-size: 9.5px;
}
.hero__inner--centered .hero__cue-line { height: 36px; }

/* ========== TALLER LAPTOPS / DESKTOPS (>=1100px) — slightly bigger title ========== */
@media (min-height: 880px) and (min-width: 1100px) {
  .hero.hero--with-posters.hero--split { padding: 100px 0 60px; }
  .hero__title--centered { font-size: clamp(40px, 6.2vw, 104px); }    /* was 48 / 7.8 / 132 */
  .hero__base--centered { margin-top: 24px; gap: 18px; }
  .hero__meta--centered { margin-bottom: 22px; }
}

/* ========== SHORT LAPTOPS (height <= 760px, 13"–14" screens) — extra compact ========== */
@media (max-height: 780px) and (min-width: 700px) {
  .hero.hero--with-posters.hero--split { padding: 80px 0 40px; }
  .hero__inner--centered .hero__announce { margin-bottom: 10px; padding: 4px 4px 4px 10px; }
  .hero__meta--centered { margin-bottom: 12px; font-size: 10px; }
  .hero__title--centered { font-size: clamp(30px, 4.8vw, 68px); }    /* was 36 / 6 / 86 */
  .hero__base--centered { margin-top: 12px; gap: 12px; }
  .hero__base--centered .hero__lead { font-size: 13px; }
  .hero__base--centered .btn { padding: 10px 18px; font-size: 12.5px; }
  .hero__inner--centered .hero__cue { display: none; } /* hide on really short screens */
}

/* ========== MOBILE — auto height, allow scroll if needed ========== */
@media (max-width: 820px) {
  .hero.hero--with-posters.hero--split {
    min-height: 100vh;
    height: auto;             /* let content breathe on narrow phones */
    max-height: none;
    padding: 110px 0 60px;
  }
  .hero__title--centered { font-size: clamp(32px, 9vw, 52px); }    /* was 38 / 11 / 64 */
  .hero__inner--centered .hero__announce {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-bottom: 14px;
  }
  .hero__base--centered { margin-top: 14px; }
  .hero__base--centered .hero__cta-row { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__base--centered .hero__cta-row .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero.hero--with-posters.hero--split { padding: 100px 0 50px; }
  .hero__title--centered { font-size: clamp(28px, 10vw, 46px); }    /* was 34 / 12 / 56 */
  .hero__base--centered .hero__lead { font-size: 13.5px; }
}

/* =========================================================
   50. HERO MISC FIX
   Hide decorative floating chips (APPS/SAAS/BRAND) — they bleed
   into the title in compact hero.
   ========================================================= */
.hero__chips { display: none !important; }

/* =========================================================
   51. HERO LAYERING
   Bring text content firmly above posters/dev-mocks.
   ========================================================= */

.hero--with-posters .hero__inner,
.hero--with-posters .hero__inner--centered {
  position: relative;
  z-index: 10;
}

.hero__inner--centered .hero__base {
  position: relative;
  z-index: 11;
}

.hero__bg,
.hero__posters,
.hero__devstack,
.hero__chips {
  z-index: 1 !important;
}

/* Side decorations — visible but blurred so center content owns the focus.
   Stays non-interactive (parent uses pointer-events: none in Section 35), so no need
   to manage hover or click-through here. */
.hero--with-posters .hero__poster {
  opacity: 0.55;
  filter: blur(5px) saturate(0.85);
}
.hero--with-posters .dev-mock {
  opacity: 0.6;
  filter: blur(4.5px) saturate(0.9);
}

/* (Sections 50/52 cap-specific rules removed — replaced by Section 53 .caps-* classes.) */

/* =========================================================
   53. CAPS ROW v4 — DEAD SIMPLE
   Flat structure: .caps-wrap > .caps-row > .caps-pill (direct <a>).
   No <ul>/<li>, no inline-block, no baseline math.
   GSAP intro must use clearProps:'all' — see js/main.js.
   ========================================================= */

.caps-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 22px;
  position: relative;
  z-index: 12;
}

.caps-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;          /* every pill perfectly v-centered */
  justify-content: center;
  column-gap: 3px;
  row-gap: 4px;
  padding: 5px;
  max-width: min(880px, calc(100vw - 32px));
  background: rgba(15,15,23,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 99px;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 22px -8px rgba(0,0,0,0.55);
}
body.theme-light .caps-row {
  background: rgba(245,241,234,0.92);
  border-color: rgba(10,10,15,0.10);
  box-shadow: 0 6px 22px -8px rgba(20,20,30,0.18);
}

.caps-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 13px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink-dim);
  background: transparent;
  box-sizing: border-box;
  transition: color .25s, background .25s, filter .25s;
  /* Defensive: GSAP intro uses clearProps, but if anything sneaks
     through, this keeps the row perfectly aligned. */
  transform: none;
}
.caps-pill:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.06);
}
body.theme-light .caps-pill:hover { background: rgba(10,10,15,0.05); }

/* Featured pill — chartreuse fill */
.caps-pill--star {
  background: var(--accent-3);
  color: #0a0a0f;
  font-weight: 700;
}
.caps-pill--star::before {
  content: "★";
  font-size: 10px;
  margin-right: 1px;
}
.caps-pill--star:hover {
  background: var(--accent-3);
  color: #0a0a0f;
  filter: brightness(1.06);
}
.caps-pill--star .caps-pill__dot {
  background: #0a0a0f;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* Color dots */
.caps-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 6px var(--accent-3);
  flex-shrink: 0;
}
.caps-pill__dot--cyan   { background: var(--accent-2);    box-shadow: 0 0 6px var(--accent-2); }
.caps-pill__dot--violet { background: var(--accent);      box-shadow: 0 0 6px var(--accent); }
.caps-pill__dot--orange { background: var(--accent-warm); box-shadow: 0 0 6px var(--accent-warm); }
.caps-pill__dot--sky    { background: #1da1f2;            box-shadow: 0 0 6px #1da1f2; }
.caps-pill__dot--pink   { background: #ff3d80;            box-shadow: 0 0 6px #ff3d80; }

/* Mobile */
@media (max-width: 620px) {
  .caps-wrap { margin-top: 16px; }
  .caps-row  { padding: 4px; column-gap: 3px; row-gap: 4px; max-width: calc(100vw - 24px); }
  .caps-pill { height: 28px; padding: 0 11px; font-size: 9.5px; letter-spacing: 0.12em; }
}
@media (max-width: 420px) {
  .caps-pill { height: 26px; padding: 0 10px; font-size: 9px; }
}

/* =========================================================
   54. INDUSTRIES v2 — premium magazine cards
   Asymmetric, animated, with corner numbering, slide-in arrow,
   gradient mesh on hover, draw-on accent line.
   Overrides Section 5601 (legacy .home-industries).
   ========================================================= */

.ind-intro {
  max-width: 620px;
  margin: -10px 0 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-style: italic;
}
body.theme-light .ind-intro { color: var(--ink); }

/* Container — drop the bordered box, use spacing instead */
.home-industries--v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

/* Reset all inherited legacy rules from Sections 1692/2581/5603 */
.home-industries--v2 .ind {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 22px 22px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, var(--bg-2) 0%, var(--bg-3) 100%);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform .55s var(--ease), border-color .4s, box-shadow .55s var(--ease);
  /* override legacy ::before/::after positions */
}

.home-industries--v2 .ind::before,
.home-industries--v2 .ind::after { content: none; } /* nuke legacy pseudos */

/* Animated mesh background — appears on hover */
.home-industries--v2 .ind .ind__mesh,
.home-industries--v2 .ind > .ind__icon::before { /* trick: re-add via icon */ }

/* Per-card accent var (drives glow + arrow + number color) */
.home-industries--v2 .ind--c1 { --c-accent: var(--accent); }            /* violet */
.home-industries--v2 .ind--c2 { --c-accent: var(--accent-2); }          /* cyan */
.home-industries--v2 .ind--c3 { --c-accent: var(--accent-3); }          /* chartreuse */
.home-industries--v2 .ind--c4 { --c-accent: var(--accent-warm); }       /* orange */
.home-industries--v2 .ind--c5 { --c-accent: #ff3d80; }                  /* pink */
.home-industries--v2 .ind--c6 { --c-accent: var(--accent); }            /* violet */
.home-industries--v2 .ind--c7 { --c-accent: var(--accent-2); }          /* cyan */
.home-industries--v2 .ind--c8 { --c-accent: var(--accent-3); }          /* chartreuse */

/* Glow blob in top-right corner — always faintly visible, intensifies on hover */
.home-industries--v2 .ind {
  background-image:
    radial-gradient(220px 180px at 100% 0%, color-mix(in oklab, var(--c-accent) 14%, transparent) 0%, transparent 70%),
    linear-gradient(155deg, var(--bg-2) 0%, var(--bg-3) 100%);
  background-blend-mode: normal;
  background-repeat: no-repeat;
}

/* Corner number — big, ghosted, like editorial */
.home-industries--v2 .ind__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  opacity: 0.55;
  transition: color .4s, opacity .4s, transform .4s var(--ease);
  z-index: 3;
}

/* Icon — square with accent tint */
.home-industries--v2 .ind__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--c-accent) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--c-accent) 28%, transparent);
  color: var(--c-accent);
  position: relative;
  z-index: 2;
  transition: transform .5s var(--ease), background .35s, border-color .35s, color .35s, box-shadow .55s var(--ease);
}

/* Title */
.home-industries--v2 .ind__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  z-index: 2;
  margin: 0;
}

/* List */
.home-industries--v2 .ind__list {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  position: relative;
  z-index: 2;
  flex: 1;
}

/* Footer meta row — count + arrow */
.home-industries--v2 .ind__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px dashed color-mix(in oklab, var(--line) 100%, transparent);
  position: relative;
  z-index: 2;
}
.home-industries--v2 .ind__count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .35s;
}
.home-industries--v2 .ind__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), background .35s, color .35s, border-color .35s;
}

/* ===== HOVER STATE — orchestrated ===== */
.home-industries--v2 .ind:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklab, var(--c-accent) 50%, transparent);
  box-shadow:
    0 20px 50px -20px color-mix(in oklab, var(--c-accent) 35%, transparent),
    0 0 0 1px color-mix(in oklab, var(--c-accent) 22%, transparent);
}

.home-industries--v2 .ind:hover .ind__num {
  color: var(--c-accent);
  opacity: 1;
  transform: translateY(-2px);
}

.home-industries--v2 .ind:hover .ind__icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #0a0a0f;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--c-accent) 60%, transparent);
}

/* Chartreuse needs ink-on-light contrast; cyan/orange/violet need #0a0a0f or #fff */
.home-industries--v2 .ind--c1:hover .ind__icon,
.home-industries--v2 .ind--c5:hover .ind__icon,
.home-industries--v2 .ind--c6:hover .ind__icon { color: #fff; }

.home-industries--v2 .ind:hover .ind__count {
  color: var(--c-accent);
}

.home-industries--v2 .ind:hover .ind__arrow {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #0a0a0f;
  transform: translateX(4px) rotate(-45deg);   /* point up-right */
}
.home-industries--v2 .ind--c1:hover .ind__arrow,
.home-industries--v2 .ind--c5:hover .ind__arrow,
.home-industries--v2 .ind--c6:hover .ind__arrow { color: #fff; }

/* Bottom accent line — draws across on hover */
.home-industries--v2 .ind {
  background-position: 0 0, 0 0;
}
.home-industries--v2 .ind > * { position: relative; }

/* Decorative line drawn via inset border-bottom on a pseudo-element.
   We re-create ::after now (after the legacy `content: none` reset is overridden by specificity below). */
.home-industries--v2 .ind .ind__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 28px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: transform .55s var(--ease), width .55s var(--ease);
}
.home-industries--v2 .ind:hover .ind__title::after {
  transform: scaleX(1);
  width: 56px;
}

/* Note: scroll-in stagger animation is handled by GSAP via [data-reveal-stagger] in main.js.
   No CSS-based opacity:0 initial state — would conflict with GSAP's gsap.from(). */

/* Light theme tuning */
body.theme-light .home-industries--v2 .ind {
  background:
    radial-gradient(220px 180px at 100% 0%, color-mix(in oklab, var(--c-accent) 22%, transparent) 0%, transparent 70%),
    linear-gradient(155deg, #ffffff 0%, var(--bg-2) 100%);
  border-color: var(--line-strong);
}
body.theme-light .home-industries--v2 .ind:hover {
  background:
    radial-gradient(260px 220px at 100% 0%, color-mix(in oklab, var(--c-accent) 28%, transparent) 0%, transparent 70%),
    linear-gradient(155deg, #ffffff 0%, var(--bg-3) 100%);
}

/* Responsive */
@media (max-width: 1100px) {
  .home-industries--v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .home-industries--v2 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .home-industries--v2 .ind { padding: 22px 18px 18px; min-height: 200px; }
  .home-industries--v2 .ind__title { font-size: 19px; }
  .home-industries--v2 .ind__icon { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .home-industries--v2 { grid-template-columns: 1fr; }
  .home-industries--v2 .ind { min-height: 0; }
}

/* =========================================================
   55. CEO / FOUNDER QUOTE (about.php)
   Photo card on the left, large pull-quote on the right.
   ========================================================= */

.ceo-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.ceo-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,77,255,0.10), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.ceo-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,212,212,0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---- LEFT: Photo card ---- */
.ceo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.ceo-card__photo {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
}
.ceo-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1s var(--ease);
}
.ceo-card:hover .ceo-card__photo img { transform: scale(1.04); }

/* Animated accent ring around the photo */
.ceo-card__ring {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent-warm), var(--accent));
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity .55s ease;
  animation: ceo-ring-spin 8s linear infinite;
}
.ceo-card:hover .ceo-card__ring { opacity: 0.55; }
@keyframes ceo-ring-spin {
  to { transform: rotate(360deg); }
}

.ceo-card__meta { width: 100%; }
.ceo-card__eyebrow {
  margin-bottom: 14px;
  color: var(--accent-3);
}
.ceo-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.ceo-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 18px;
}
.ceo-card__socials {
  display: inline-flex;
  gap: 10px;
}
.ceo-card__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  transition: color .3s, background .3s, border-color .3s, transform .35s var(--ease);
}
.ceo-card__socials a:hover {
  color: #0a0a0f;
  background: var(--accent-3);
  border-color: var(--accent-3);
  transform: translateY(-2px);
}

/* ---- RIGHT: Pull-quote ---- */
.ceo-quote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);  /* was clamp(28,4vw,52) — Poppins italic 500 reads big */
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  padding-left: 60px;
}
.ceo-quote__mark {
  position: absolute;
  top: -30px;
  left: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 140px;
  line-height: 1;
  color: var(--accent-3);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}
.ceo-quote__text { display: inline; }
.ceo-quote__sig {
  display: block;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.ceo-quote__sig::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-3);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* Light theme tweaks */
body.theme-light .ceo-section {
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 50%, var(--bg) 100%);
}
body.theme-light .ceo-card__photo {
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -25px rgba(20,20,30,0.18);
}

/* Responsive */
@media (max-width: 1024px) {
  .ceo-grid { grid-template-columns: 280px 1fr; gap: 50px; }
  .ceo-card__photo { width: 280px; height: 280px; }
}
@media (max-width: 800px) {
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .ceo-card { align-items: flex-start; }
  .ceo-card__photo { width: 240px; height: 240px; }
  .ceo-quote {
    padding-left: 40px;
    font-size: clamp(18px, 4vw, 24px);
  }
  .ceo-quote__mark { font-size: 100px; top: -22px; }
}

/* =========================================================
   56. TRUSTED BRANDS v2 — premium 3×3 grid
   Big boxes, brand-name reveal on hover, animated section
   header with accent line, scroll-stagger entrance.
   ========================================================= */

.trusted-v2 {
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.trusted-v2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,77,255,0.06), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.trusted-v2 .container { position: relative; z-index: 2; }

/* ---- Section head ---- */
.trusted-v2__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.trusted-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid color-mix(in oklab, var(--accent-3) 32%, transparent);
  background: color-mix(in oklab, var(--accent-3) 10%, transparent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 22px;
}
.trusted-v2__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 10px var(--accent-3);
  animation: trusted-dot-pulse 2s ease-in-out infinite;
}
@keyframes trusted-dot-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.trusted-v2__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 18px;
}
.trusted-v2__title em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trusted-v2__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Grid: 4×3 (10 logos + "200+" CTA + "Be next" CTA = 12 cells) ---- */
.trusted-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-3) 100%);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform .55s var(--ease), border-color .4s, box-shadow .55s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated mesh on hover (top-right glow) */
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px 200px at 100% 0%, rgba(106,77,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .55s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.brand-card:hover::before { opacity: 1; }

/* Bottom accent line — draws across on hover */
.brand-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
  z-index: 3;
}
.brand-card:hover::after { transform: scaleX(1); }

/* The actual logo image — desaturated by default, full colour on hover */
.brand-card img {
  position: relative;
  z-index: 2;
  max-width: 60%;
  max-height: 55%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.7;
  mix-blend-mode: screen;                  /* drops most JPG/PNG white backgrounds */
  transition: filter .55s var(--ease), opacity .55s var(--ease), transform .55s var(--ease);
}
.brand-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}
body.theme-light .brand-card img {
  mix-blend-mode: multiply;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.6;
}
body.theme-light .brand-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Bottom-left tag pill — appears on hover */
.brand-card__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .45s var(--ease);
}
.brand-card:hover .brand-card__label {
  opacity: 1;
  transform: translateY(0);
}

/* Top-right brand name reveal */
.brand-card[data-name]::before { /* reuse for label, see hover handler below */ }
.brand-card[data-name] {
  /* attach the brand name as a top-right corner reveal via pseudo content */
}

/* Card lift on hover */
.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,255,58,0.40);
  box-shadow:
    0 24px 60px -22px rgba(212,255,58,0.20),
    0 0 0 1px rgba(212,255,58,0.18);
}

/* ---- "More" cell: 200+ brands link ---- */
.brand-card--more {
  background: linear-gradient(155deg, color-mix(in oklab, var(--accent-3) 16%, var(--bg-2)) 0%, var(--bg-3) 100%);
  border-color: color-mix(in oklab, var(--accent-3) 30%, transparent);
}
.brand-card--more::before {
  background: radial-gradient(280px 200px at 100% 0%, rgba(212,255,58,0.18), transparent 60%);
  opacity: 0.6;
}
.brand-card--more::after { display: none; }
.brand-card--more:hover {
  border-color: var(--accent-3);
  box-shadow:
    0 24px 60px -22px rgba(212,255,58,0.35),
    0 0 0 1px rgba(212,255,58,0.4);
}
.brand-card__more-text {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.brand-card__more-text strong {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent-3);
}
.brand-card__more-text > span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.brand-card__more-link {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  transition: color .3s, background .3s, border-color .3s, transform .35s var(--ease);
}
.brand-card--more:hover .brand-card__more-link {
  background: var(--accent-3);
  border-color: var(--accent-3);
  color: #0a0a0f;
  transform: translateX(2px);
}

/* ---- "Be next" CTA cell: violet-tinted, invites the visitor ---- */
.brand-card--cta {
  background: linear-gradient(155deg, color-mix(in oklab, var(--accent) 16%, var(--bg-2)) 0%, var(--bg-3) 100%);
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
}
.brand-card--cta::before {
  background: radial-gradient(280px 200px at 100% 0%, rgba(106,77,255,0.22), transparent 60%);
  opacity: 0.6;
}
.brand-card--cta::after { display: none; }
.brand-card--cta:hover {
  border-color: var(--accent);
  box-shadow:
    0 24px 60px -22px rgba(106,77,255,0.40),
    0 0 0 1px rgba(106,77,255,0.45);
}
.brand-card__cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-card__cta-arrow {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin: 6px 0;
  transition: transform .45s var(--ease), color .35s;
}
.brand-card--cta:hover .brand-card__cta-arrow {
  color: var(--accent);
  transform: translateX(6px) rotate(-12deg);
}
.brand-card--cta:hover .brand-card__more-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .trusted-v2__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
  .trusted-v2__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card { aspect-ratio: 16 / 11; }
  .brand-card__more-text strong { font-size: 36px; }
}
@media (max-width: 460px) {
  .trusted-v2__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-card img { max-width: 70%; }
  .brand-card__label { font-size: 8.5px; left: 12px; bottom: 10px; }
}
