/* ═══════════════════════════════════════════════════════════════
   DIGITECULTRA — Premium UI  2026
   "Digital growth, engineered for scale."
═══════════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; background: none; border: none; color: inherit; }

/* ── Design Tokens ── */
:root {
  /* Light palette */
  --bg:        #fafafa;
  --bg-2:      #f4f4f6;
  --surface:   #ffffff;
  --border:    rgba(0,0,0,.07);
  --border-md: rgba(0,0,0,.12);

  /* Dark palette */
  --dark:      #09090f;
  --dark-2:    #111119;
  --dark-3:    #1a1a27;
  --dark-border: rgba(255,255,255,.08);

  /* Brand */
  --indigo:    #5c5ce6;
  --indigo-2:  #7b7bf5;
  --cyan:      #00c9d4;
  --violet:    #a855f7;
  --coral:     #ff6b6b;
  --emerald:   #10d98a;

  /* Text */
  --text:      #0a0a14;
  --text-2:    #3d3d5c;
  --muted:     #7a7a9d;
  --text-inv:  #ffffff;

  /* Gradients */
  --g-primary:  linear-gradient(135deg, #5c5ce6 0%, #a855f7 100%);
  --g-cyan:     linear-gradient(135deg, #00c9d4 0%, #5c5ce6 100%);
  --g-text:     linear-gradient(135deg, #5c5ce6 0%, #a855f7 50%, #00c9d4 100%);
  --g-warm:     linear-gradient(135deg, #ff6b6b 0%, #a855f7 100%);
  --g-dark:     linear-gradient(160deg, #111119 0%, #09090f 100%);

  /* Shadows */
  --s1: 0 1px 2px rgba(0,0,0,.05);
  --s2: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  --s3: 0 4px 16px rgba(0,0,0,.08), 0 20px 48px rgba(0,0,0,.1);
  --s4: 0 8px 24px rgba(0,0,0,.1), 0 40px 80px rgba(0,0,0,.14);
  --s-glow: 0 0 40px rgba(92,92,230,.25), 0 0 80px rgba(92,92,230,.1);
  --s-glow-sm: 0 0 20px rgba(92,92,230,.2);

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Radii */
  --r-sm:   8px;
  --r:      14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  /* Spacing */
  --sp-xs: .5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: 1.3rem; letter-spacing: -.015em; }
h4 { font-size: 1rem; }
p  { color: var(--text-2); line-height: 1.7; }

.grad-text {
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-cyan {
  background: var(--g-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.display {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--g-primary);
  border-radius: 2px;
}

.eyebrow-inv {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.eyebrow-inv::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--g-cyan);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: var(--sp-xl) 0; }
.section-dark { background: var(--dark); color: var(--text-inv); }
.section-dark p { color: rgba(255,255,255,.6); }
.section-alt  { background: var(--bg-2); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-top: .5rem; }
.section-header p { margin-top: 1rem; font-size: 1.1rem; max-width: 560px; }
.section-header.center p { margin: 1rem auto 0; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--r-full);
  font-size: .92rem;
  font-weight: 600;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--g-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(92,92,230,.4), 0 1px 3px rgba(92,92,230,.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92,92,230,.5), 0 2px 6px rgba(92,92,230,.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--border-md);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(92,92,230,.05);
  transform: translateY(-1px);
}

.btn-outline-inv {
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.btn-outline-inv:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-icon { width: 46px; height: 46px; padding: 0; border-radius: 50%; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: stretch;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glass pill nav */
.nav-glass {
  position: absolute;
  inset: 10px 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 12px 32px rgba(0,0,0,.1);
  transition: box-shadow .3s, background .3s, border-color .3s;
  z-index: -1;
}
.nav.scrolled .nav-glass {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,.1), 0 20px 48px rgba(0,0,0,.12);
  border-color: rgba(0,0,0,.1);
}

/* On dark hero — dark tinted */
.nav-dark .nav-glass {
  background: rgba(9,9,15,.85);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 2px 8px rgba(0,0,0,.3), 0 12px 32px rgba(0,0,0,.4);
}
.nav-dark.scrolled .nav-glass {
  background: rgba(9,9,15,.95);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--text);
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo .accent { color: var(--indigo); }
.nav-logo .tld {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  margin-left: 1px;
  letter-spacing: .02em;
  align-self: flex-end;
  margin-bottom: 1px;
}
.nav-dark .nav-logo { color: #fff; }
.nav-dark .nav-logo .tld { color: rgba(255,255,255,.4); }

.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  padding: .5rem .85rem;
  border-radius: var(--r-full);
  transition: all .18s;
}
.nav-link:hover { color: var(--indigo); background: rgba(92,92,230,.07); }
.nav-link.active { color: var(--indigo); }
.nav-dark .nav-link { color: rgba(255,255,255,.75); }
.nav-dark .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--s4);
  padding: .5rem;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  font-size: .85rem;
  color: var(--text-2);
  border-radius: var(--r-sm);
  font-weight: 500;
  transition: all .15s;
}
.nav-dropdown-menu a:hover { background: var(--bg-2); color: var(--indigo); }

.nav-cta { margin-left: .75rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav-dark .nav-hamburger span { background: #fff; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: var(--s3);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .7rem 0;
  border-bottom: 1px solid var(--bg-2);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-2);
}
.nav-mobile a:hover { color: var(--indigo); }
.nav-mobile .btn { display: block; text-align: center; margin-top: 1rem; }

/* ══════════════════════════════════════
   HERO  (dark, dramatic)
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 0;
}

/* Radial grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat var(--dur, 10s) ease-in-out infinite;
}
.hero-orb-1 { width: 700px; height: 700px; background: rgba(92,92,230,.18); top: -200px; left: -150px; --dur: 14s; }
.hero-orb-2 { width: 500px; height: 500px; background: rgba(168,85,247,.12); top: 50px; right: -100px; --dur: 18s; animation-delay: -4s; }
.hero-orb-3 { width: 400px; height: 400px; background: rgba(0,201,212,.1); bottom: -50px; left: 35%; --dur: 22s; animation-delay: -8s; }

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.06); }
  66%      { transform: translate(-25px,25px) scale(.96); }
}

.hero .container { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 6rem; }
.hero-layout { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }

/* Status pill */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  padding: .45rem 1.1rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
}
.hero-status .dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16,217,138,.25);
  animation: statusPulse 2.5s infinite;
}
@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(16,217,138,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(16,217,138,.08); }
}

.hero-text h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-text h1 .line-2 {
  display: block;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-proof-lbl { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: .2rem; font-weight: 500; }
.hero-proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* Floating widget panel */
.hero-widgets { display: flex; flex-direction: column; gap: 1rem; }

.widget {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  animation: widgetFloat var(--wd, 6s) ease-in-out infinite;
}
.widget-sm { padding: .9rem 1.2rem; }
@keyframes widgetFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.widget:nth-child(1) { --wd: 6s; animation-delay: 0s; }
.widget:nth-child(2) { --wd: 7s; animation-delay: -2s; }
.widget:nth-child(3) { --wd: 5.5s; animation-delay: -4s; }

.widget-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .6rem;
}
.widget-metric {
  font-size: 2rem;
  font-weight: 800;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .25rem;
}
.widget-sub { font-size: .78rem; color: rgba(255,255,255,.5); }
.widget-change {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16,217,138,.12);
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  margin-top: .5rem;
}

/* Mini bar chart */
.widget-bars { display: flex; align-items: flex-end; gap: 3px; height: 36px; margin-top: .75rem; }
.widget-bar {
  flex: 1;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  transition: background .2s;
}
.widget-bar.active { background: var(--g-primary); }

/* Client stack */
.widget-clients {
  display: flex;
  align-items: center;
}
.client-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
}
.ca-1 { background: linear-gradient(135deg,#5c5ce6,#a855f7); }
.ca-2 { background: linear-gradient(135deg,#00c9d4,#5c5ce6); }
.ca-3 { background: linear-gradient(135deg,#ff6b6b,#a855f7); }
.ca-4 { background: linear-gradient(135deg,#10d98a,#00c9d4); }
.client-count { font-size: .78rem; color: rgba(255,255,255,.6); margin-left: 16px; }

/* ══════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════ */
.marquee-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 0 2rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  transition: color .2s;
}
.marquee-item:hover { color: rgba(255,255,255,.8); }
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--indigo);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   STATS  (bento grid, dark)
══════════════════════════════════════ */
.stats-section { background: var(--dark); padding: var(--sp-xl) 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
.bento-cell {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.bento-cell:hover {
  border-color: rgba(92,92,230,.3);
  background: rgba(255,255,255,.06);
}
.bento-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92,92,230,.5), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.bento-cell:hover::before { opacity: 1; }

.bc-1 { grid-column: span 4; }
.bc-2 { grid-column: span 4; }
.bc-3 { grid-column: span 4; }
.bc-wide { grid-column: span 8; }
.bc-narrow { grid-column: span 4; }

.bento-number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 800;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .75rem;
}
.bento-label { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: .4rem; }
.bento-sub   { font-size: .85rem; color: rgba(255,255,255,.35); line-height: 1.5; }

.bento-icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: rgba(92,92,230,.15);
  border: 1px solid rgba(92,92,230,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

/* retention ring */
.retention-ring {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 1rem;
}
.retention-ring svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 8; }
.ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1);
}
.ring-fill.animated { stroke-dashoffset: 17; }
.ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.ring-text span { font-size: .6rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-primary);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { background: var(--dark); }
.service-card:hover::before { opacity: .06; }
.service-card:hover .sc-num  { color: var(--indigo-2); }
.service-card:hover .sc-title { color: #fff; }
.service-card:hover .sc-desc  { color: rgba(255,255,255,.55); }
.service-card:hover .card-link { color: var(--cyan); }

.sc-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--indigo);
  margin-bottom: 1.5rem;
  transition: color .3s;
  display: block;
}
.sc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: rgba(92,92,230,.08);
  border: 1px solid rgba(92,92,230,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all .3s;
}
.service-card:hover .sc-icon {
  background: rgba(92,92,230,.2);
  border-color: rgba(92,92,230,.35);
}
.sc-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; transition: color .3s; }
.sc-desc  { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; transition: color .3s; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: .02em;
  transition: all .2s;
}
.card-link:hover, .service-card:hover .card-link { gap: .7rem; }
.card-link-arrow { transition: transform .2s; }
.card-link:hover .card-link-arrow { transform: translateX(3px); }

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries-section { background: var(--bg-2); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}
.industry-pill {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--s1);
  transition: all .25s;
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(92,92,230,.04);
  transform: translateY(-2px);
  box-shadow: var(--s-glow-sm), var(--s2);
}
.industry-pill .ie { font-size: 1.15rem; line-height: 1; }

/* ══════════════════════════════════════
   CASE STUDIES  (dark section)
══════════════════════════════════════ */
.work-section { background: var(--dark); padding: var(--sp-xl) 0; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.case-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.case-card:hover {
  border-color: rgba(92,92,230,.35);
  transform: translateY(-6px);
  box-shadow: var(--s-glow), 0 30px 60px rgba(0,0,0,.4);
}
.case-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92,92,230,.6), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.case-card:hover::after { opacity: 1; }

.case-header {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}
.case-bg {
  position: absolute;
  inset: 0;
  opacity: .9;
}
.ch-1 .case-bg { background: linear-gradient(135deg, #1a1a6e 0%, #5c5ce6 100%); }
.ch-2 .case-bg { background: linear-gradient(135deg, #0a3d55 0%, #00c9d4 100%); }
.ch-3 .case-bg { background: linear-gradient(135deg, #3d0a55 0%, #a855f7 100%); }

.case-noise {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}
.case-client-tag {
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  position: relative; z-index: 1;
}
.case-headline {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  position: relative; z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.case-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.case-desc { font-size: .88rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; flex: 1; line-height: 1.7; }

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r);
  overflow: hidden;
}
.case-metric {
  background: rgba(255,255,255,.03);
  padding: .9rem 1rem;
  text-align: center;
}
.cm-num {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.cm-lbl { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: .25rem; font-weight: 500; }

/* ══════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════ */
.testimonial-section { background: var(--bg); overflow: hidden; }
.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--s4);
}
.testimonial-left {
  background: var(--g-primary);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-left::before {
  content: '\201C';
  position: absolute;
  font-size: 18rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.08);
  top: -40px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 2rem; position: relative; z-index: 1; }
.testimonial-quote {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.65;
  position: relative; z-index: 1;
  flex: 1;
}
.testimonial-author { margin-top: 2.5rem; position: relative; z-index: 1; }
.testimonial-author strong { display: block; color: #fff; font-size: .95rem; margin-bottom: .15rem; }
.testimonial-author span { font-size: .82rem; color: rgba(255,255,255,.6); }

.testimonial-right {
  background: var(--dark);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.testimonial-right .eyebrow-inv { margin-bottom: 0; }
.testimonial-right h3 { color: #fff; font-size: 1.6rem; }
.testimonial-right p  { color: rgba(255,255,255,.5); font-size: .92rem; }

.tstat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tstat-icon { font-size: 1.5rem; }
.tstat-num { font-family: var(--font-mono); font-size: 1.35rem; font-weight: 800; background: var(--g-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tstat-lbl { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   NEWSLETTER  (dramatic)
══════════════════════════════════════ */
.newsletter-section {
  background: var(--dark);
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-glow {
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(92,92,230,.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.newsletter-inner h2 { color: #fff; margin-bottom: .75rem; }
.newsletter-inner > p { color: rgba(255,255,255,.5); font-size: 1rem; margin-bottom: 2.5rem; }
.newsletter-form {
  display: flex;
  gap: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full);
  padding: .4rem .4rem .4rem 1.5rem;
  backdrop-filter: blur(12px);
  max-width: 500px;
  margin: 0 auto 1rem;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .92rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.btn-glow {
  background: var(--g-primary);
  color: #fff;
  padding: .7rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(92,92,230,.4);
  transition: all .2s;
}
.btn-glow:hover { box-shadow: 0 8px 25px rgba(92,92,230,.6); transform: translateY(-1px); }
.newsletter-note { font-size: .75rem; color: rgba(255,255,255,.3); font-family: var(--font-mono); letter-spacing: .05em; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--bg-2); }
.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-intro h2 { margin-bottom: 1rem; }
.faq-intro p  { margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s1);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: rgba(92,92,230,.25);
  box-shadow: var(--s2), 0 0 0 3px rgba(92,92,230,.06);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg-2); }
.faq-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: var(--indigo);
  transition: all .25s;
  font-style: normal;
}
.faq-item.open .faq-icon { background: var(--indigo); color: #fff; border-color: var(--indigo); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: var(--dark);
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(92,92,230,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.5); font-size: 1.1rem; max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-note {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.cta-note::before { content: '✓'; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: #06060d; padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo .accent { color: var(--indigo-2); }
.footer-logo .tld { color: rgba(255,255,255,.2); }
.footer-brand > p { font-size: .88rem; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: all .2s;
}
.social-btn:hover { background: var(--indigo); border-color: var(--indigo); color: #fff; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: .86rem;
  color: rgba(255,255,255,.35);
  margin-bottom: .6rem;
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-office { margin-bottom: 1.25rem; }
.footer-office strong { display: block; font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: .3rem; }
.footer-office span { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.65; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════
   STICKY CTA STRIP
══════════════════════════════════════ */
.sticky-strip {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--g-primary);
  padding: .75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 900;
  box-shadow: 0 -8px 30px rgba(92,92,230,.4);
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.sticky-strip strong { color: #fff; }
.sticky-strip a {
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: .35rem 1.1rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .8rem;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .2s;
}
.sticky-strip a:hover { background: rgba(255,255,255,.28); }
.sticky-strip-close {
  position: absolute;
  right: 1.5rem;
  color: rgba(255,255,255,.5);
  font-size: 1.3rem;
  line-height: 1;
  padding: .2rem;
  transition: color .2s;
}
.sticky-strip-close:hover { color: #fff; }

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 4.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--s4);
  z-index: 800;
  display: none;
}
.cookie-banner.show { display: block; animation: slideUp .4s cubic-bezier(.4,0,.2,1); }
@keyframes slideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
.cookie-banner p { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; line-height: 1.6; }
.cookie-banner p a { color: var(--indigo-2); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .75rem; }
.cookie-accept {
  flex: 1;
  background: var(--g-primary);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .84rem;
  transition: opacity .2s;
}
.cookie-accept:hover { opacity: .88; }
.cookie-decline {
  padding: .6rem 1rem;
  color: rgba(255,255,255,.4);
  font-size: .84rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  transition: all .2s;
}
.cookie-decline:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); }

/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: calc(70px + 4.5rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.page-hero-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(92,92,230,.15) 0%, transparent 70%);
  top: -200px; left: -100px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.5); font-size: 1.1rem; max-width: 580px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--indigo-2); }
.breadcrumb-sep { opacity: .3; }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-grid { display: grid; gap: 1.25rem; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-2); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1.1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(92,92,230,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a9d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.checkbox-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--text-2); cursor: pointer; }
.checkbox-item input[type="checkbox"] { accent-color: var(--indigo); width: 15px; height: 15px; flex-shrink: 0; }
.form-submit .btn { width: 100%; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r);
  font-size: .88rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.alert-success { background: rgba(16,217,138,.08); border: 1px solid rgba(16,217,138,.2); color: #065f46; }
.alert-error   { background: rgba(239,68,68,.08);  border: 1px solid rgba(239,68,68,.2);  color: #7f1d1d; }

/* ══════════════════════════════════════
   CARD  (generic reusable)
══════════════════════════════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--s2);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--s4); border-color: rgba(92,92,230,.18); }

/* ══════════════════════════════════════
   TEAM  (inner page)
══════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--s2);
  transition: all .3s;
  overflow: hidden;
  position: relative;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-primary);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--s4); }
.team-card:hover::before { transform: scaleX(1); }
.team-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--g-primary);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(92,92,230,.3);
}
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.team-role { font-size: .75rem; color: var(--indigo); font-weight: 700; font-family: var(--font-mono); margin-bottom: .75rem; letter-spacing: .03em; }
.team-bio { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s2);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--s4); border-color: rgba(92,92,230,.2); }
.blog-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.blog-thumb-bg { position: absolute; inset: 0; }
.bt-1 { background: linear-gradient(135deg, #1a1a6e, #5c5ce6); }
.bt-2 { background: linear-gradient(135deg, #0a3d55, #00c9d4); }
.bt-3 { background: linear-gradient(135deg, #3d0a55, #a855f7); }
.bt-4 { background: linear-gradient(135deg, #3d2a00, #ff6b6b); }
.bt-5 { background: linear-gradient(135deg, #0a3d20, #10d98a); }
.bt-6 { background: linear-gradient(135deg, #1a0a3d, #5c5ce6); }
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .65rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  font-family: var(--font-mono);
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .72rem; color: var(--muted); margin-bottom: .75rem; font-family: var(--font-mono); }
.blog-card h3 { font-size: .98rem; line-height: 1.45; margin-bottom: .6rem; }
.blog-card p  { font-size: .84rem; flex: 1; margin-bottom: 1rem; }
.blog-read { font-size: .82rem; font-weight: 700; color: var(--indigo); display: inline-flex; align-items: center; gap: .3rem; }
.blog-read:hover { gap: .55rem; }

/* ══════════════════════════════════════
   CAREERS
══════════════════════════════════════ */
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--s1);
  transition: all .25s;
}
.job-card:hover { border-color: var(--indigo); box-shadow: var(--s2), var(--s-glow-sm); transform: translateX(4px); }
.job-info { flex: 1; }
.job-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.job-desc  { font-size: .85rem; color: var(--muted); }
.job-badges { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.badge { font-size: .7rem; font-weight: 700; padding: .2rem .65rem; border-radius: var(--r-full); font-family: var(--font-mono); letter-spacing: .04em; }
.badge-loc  { background: rgba(0,201,212,.1); color: var(--cyan); }
.badge-type { background: rgba(92,92,230,.08); color: var(--indigo); }

/* ══════════════════════════════════════
   FREE TOOLS
══════════════════════════════════════ */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tool-full { grid-column: 1 / -1; }
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--s2);
}
.tool-tag { font-family: var(--font-mono); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--indigo); margin-bottom: .5rem; display: block; }
.tool-card h3 { margin-bottom: .5rem; }
.tool-card > p { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; }
.tool-result {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
}
.result-num { font-size: 2rem; font-weight: 800; background: var(--g-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.score-bar  { height: 8px; background: var(--bg-2); border-radius: var(--r-full); overflow: hidden; margin: .75rem 0; }
.score-fill { height: 100%; border-radius: var(--r-full); background: var(--g-primary); transition: width .5s cubic-bezier(.4,0,.2,1); }
.copy-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); font-size: .8rem; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all .2s; margin-top: .75rem;
}
.copy-btn:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.checklist-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--text-2);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type="checkbox"] { accent-color: var(--indigo); flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; }
.checklist-item.checked { color: var(--muted); text-decoration: line-through; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--s2);
  position: relative;
  transition: all .3s;
}
.pricing-card.popular {
  border-color: var(--indigo);
  box-shadow: var(--s-glow), var(--s3);
  transform: scale(1.04);
  background: linear-gradient(160deg, rgba(92,92,230,.04) 0%, var(--surface) 100%);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(92,92,230,.4);
}
.pricing-tier { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--indigo); margin-bottom: .75rem; }
.pricing-price { font-size: 2.8rem; font-weight: 800; color: var(--text); letter-spacing: -.04em; line-height: 1; margin-bottom: .25rem; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price small { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-desc { font-size: .88rem; color: var(--muted); margin: .5rem 0 2rem; }
.pricing-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pricing-features li {
  font-size: .88rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(16,217,138,.1);
  color: var(--emerald);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .6rem;
  font-weight: 800;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   OFFICES  (contact page)
══════════════════════════════════════ */
.offices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.office-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--s2);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--s4); }
.office-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-primary);
}
.office-flag { font-size: 2.2rem; margin-bottom: 1rem; }
.office-name { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.office-hq-badge {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--indigo);
  background: rgba(92,92,230,.08);
  border: 1px solid rgba(92,92,230,.15);
  padding: .15rem .6rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.office-address { font-size: .84rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.office-phone   { font-size: .84rem; color: var(--text-2); font-family: var(--font-mono); font-weight: 600; }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.text-center { text-align: center; }
.text-center .eyebrow   { justify-content: center; }
.text-center .eyebrow-inv { justify-content: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mb-md { margin-bottom: 2rem; }
.w-full { width: 100%; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .grid-4, .services-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(4,1fr); }
  .bento .bc-1, .bento .bc-2, .bento .bc-3 { grid-column: span 6; }
  .bento .bc-wide { grid-column: span 12; }
  .bento .bc-narrow { grid-column: span 12; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-widgets { display: none; }
  .testimonial-wrap { grid-template-columns: 1fr; }
  .testimonial-right { padding: 3rem; }
  .faq-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
  :root { --sp-xl: 5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-full { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .testimonial-left { padding: 2.5rem; }
  .testimonial-quote { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 4rem; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 1rem; }
  .bento .bc-1, .bento .bc-2, .bento .bc-3 { grid-column: span 12; }
  .work-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; padding: .75rem 1rem; border-radius: var(--r-xl); }
  .newsletter-form .btn-glow { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .checkboxes { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-glass { inset: 8px 12px; }
}

@media (max-width: 576px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .display { font-size: 2.8rem; }
  .bento-number { font-size: 2.8rem; }
  .testimonial-wrap { border-radius: var(--r-xl); }
}

/* ── Print ── */
@media print {
  .nav, .sticky-strip, .cookie-banner { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ═══════════════════════════════════════════════════
   QUOTE PAGE
═══════════════════════════════════════════════════ */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Form wrapper */
.quote-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 3rem;
  box-shadow: var(--s3);
}

/* Section divider inside form */
.qf-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.qf-section:last-of-type { border-bottom: none; margin-bottom: 1.5rem; padding-bottom: 0; }

.qf-section-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.qf-section-label span {
  background: var(--g-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .9rem;
  font-weight: 800;
}

/* Service checkboxes */
.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.svc-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1rem;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .2s;
  font-size: .88rem;
  color: var(--text-2);
  font-weight: 500;
  user-select: none;
}
.svc-check:hover { border-color: var(--indigo); background: rgba(92,92,230,.04); }
.svc-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.svc-check input:checked + .svc-check-icon { filter: none; }
.svc-check:has(input:checked) {
  border-color: var(--indigo);
  background: rgba(92,92,230,.06);
  color: var(--indigo);
}
.svc-check-icon { font-size: 1.15rem; flex-shrink: 0; }
.svc-check-label { font-size: .85rem; }

/* Success state */
.quote-success {
  text-align: center;
  padding: 4rem 2rem;
}
.qs-icon {
  width: 64px; height: 64px;
  background: var(--g-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(92,92,230,.35);
}
.quote-success h2 { margin-bottom: .75rem; }
.quote-success p   { color: var(--muted); }

/* Sidebar */
.quote-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }

.qsb-process {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.qsb-process .eyebrow { color: var(--cyan); margin-bottom: 1.5rem; }
.qsb-process .eyebrow::before { background: var(--g-cyan); }
.qsb-process .process-step {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.07);
}
.qsb-process .process-step:hover { border-color: rgba(92,92,230,.4); transform: none; }
.qsb-process .process-step h4 { color: rgba(255,255,255,.9); }
.qsb-process .process-step p  { color: rgba(255,255,255,.4); }

.qsb-trust {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.qsb-trust-stat {
  background: var(--surface);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.qts-num { font-family: var(--font-mono); font-size: 1.35rem; font-weight: 800; background: var(--g-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.qts-lbl { font-size: .7rem; color: var(--muted); font-weight: 500; }

.qsb-quote-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
}
.qsb-stars { color: #fbbf24; margin-bottom: .75rem; font-size: 1rem; letter-spacing: .08em; }
.qsb-quote-card p    { font-size: .9rem; color: var(--text-2); font-style: italic; margin-bottom: .75rem; line-height: 1.6; }
.qsb-author { font-size: .78rem; color: var(--muted); font-family: var(--font-mono); }
.qsb-author strong { color: var(--text-2); }

@media (max-width:1100px) { .quote-layout { grid-template-columns: 1fr; } .quote-sidebar { position: static; } }
@media (max-width:600px) { .service-checkbox-grid { grid-template-columns: 1fr; } .quote-form-wrap { padding: 1.75rem; } }

/* ═══════════════════════════════════════════════════
   WORK / CASE STUDIES PAGE
═══════════════════════════════════════════════════ */
.work-filter-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.wf-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  margin-right: .5rem;
}
.wf-btn {
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.wf-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.wf-btn.active { background: var(--indigo); border-color: var(--indigo); color: #fff; }

/* Case cards */
.work-cases-list { display: flex; flex-direction: column; gap: 3rem; }

.work-case-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--s3);
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.work-case-card:hover { transform: translateY(-4px); box-shadow: var(--s4); }
.work-case-card:nth-child(even) { direction: rtl; }
.work-case-card:nth-child(even) > * { direction: ltr; }

/* Visual side */
.wcc-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  min-height: 360px;
}
.wcc-noise {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}
.wcc-num {
  position: absolute;
  bottom: -1.5rem; right: 1rem;
  font-family: var(--font-mono);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.wcc-content { position: relative; z-index: 1; }
.wcc-industry {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.wcc-client-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.wcc-metrics { display: flex; gap: 1.5rem; }
.wcc-metric {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  padding: .75rem 1rem;
  text-align: center;
  flex: 1;
}
.wccm-num { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: .2rem; }
.wccm-lbl { font-size: .65rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* Body side */
.wcc-body {
  background: var(--surface);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.wcc-tag {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(92,92,230,.08);
  border: 1px solid rgba(92,92,230,.15);
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  width: fit-content;
}
.wcc-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.wcc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.wcc-detail-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.wcc-detail-block p { font-size: .88rem; color: var(--text-2); line-height: 1.7; }
.wcc-quote {
  background: var(--bg-2);
  border-left: 3px solid var(--indigo);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.25rem 1.5rem;
  margin: 0;
}
.wcc-quote p    { font-size: .92rem; font-style: italic; color: var(--text-2); margin-bottom: .4rem; line-height: 1.65; }
.wcc-quote cite { font-size: .75rem; color: var(--muted); font-style: normal; font-family: var(--font-mono); font-weight: 600; }

@media (max-width:1100px) {
  .work-case-card { grid-template-columns: 1fr; }
  .work-case-card:nth-child(even) { direction: ltr; }
  .wcc-visual { min-height: 280px; }
  .wcc-num { font-size: 5rem; }
}
@media (max-width:768px) {
  .wcc-body { padding: 2rem; }
  .wcc-detail-grid { grid-template-columns: 1fr; gap: 1rem; }
  .wcc-metrics { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════
   INNER PAGE COMPATIBILITY LAYER
   Maps old class names → new design system
═══════════════════════════════════════════════════ */

/* Page hero on dark bg — eyebrow should be light */
.page-hero .eyebrow {
  color: var(--cyan);
  background: rgba(0,201,212,.1);
  border: 1px solid rgba(0,201,212,.2);
}
.page-hero .eyebrow::before { background: var(--g-cyan); }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 2rem;
}
.breadcrumbs a { color: var(--indigo-2); }
.breadcrumbs span { opacity: .4; }

/* Section headings compat */
.section-secondary  { background: var(--bg-2); }
.section-head       { margin-bottom: 3.5rem; }
.section-head.text-center { text-align: center; }
.section-title      { margin-top: .5rem; }
.section-sub        { color: var(--muted); font-size: 1.05rem; margin-top: .75rem; }
.lead { font-size: 1.15rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.25rem; }
.content-block { max-width: 780px; }
.content-block h2 { margin-bottom: 1rem; }
.content-block p  { margin-bottom: 1.25rem; }

/* CTA compat (inner pages have light bg CTA sections) */
.section.cta-section {
  background: var(--bg-2);
  text-align: center;
}
.section.cta-section h2 { color: var(--text); font-size: clamp(2rem,4vw,3rem); margin-bottom: 1.5rem; }
.section.cta-section p  { color: var(--muted); margin-bottom: 1.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-promise {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

/* Buttons compat */
.btn-block { width: 100%; justify-content: center; }

/* Grid compat */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width:992px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:576px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* ── Pricing cards (old class names) ── */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--s2);
  position: relative;
  transition: all .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--s4); }
.price-card.featured {
  border-color: var(--indigo);
  box-shadow: var(--s-glow), var(--s3);
  transform: scale(1.03);
  background: linear-gradient(160deg, rgba(92,92,230,.04) 0%, var(--surface) 100%);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(92,92,230,.4);
}
.tier {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--indigo);
  margin-bottom: .75rem;
}
.price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .25rem;
}
.price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.tier-desc { font-size: .88rem; color: var(--muted); margin: .5rem 0 2rem; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: .88rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(16,217,138,.1);
  color: var(--emerald);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .6rem;
  font-weight: 800;
  margin-top: 1px;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s2);
}
.compare-table thead tr { background: var(--dark); }
.compare-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-family: var(--font-mono);
}
.compare-table thead th:not(:first-child) { text-align: center; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-2); }
.compare-table tbody td { padding: .9rem 1.5rem; color: var(--text-2); }
.compare-table tbody td:not(:first-child) { text-align: center; }
.compare-table td.check { color: var(--emerald); font-weight: 700; font-size: 1.1rem; }
.compare-table td.dash  { color: var(--border-md); }
.compare-table tbody tr:nth-child(even) { background: var(--bg-2); }

/* ── Stats bar (about page) ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s3);
}
.stat-block {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--bg-2); }
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-primary);
  opacity: 0;
  transition: opacity .2s;
}
.stat-block:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-lbl { font-size: .85rem; color: var(--muted); font-weight: 500; }
@media (max-width:768px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-block:nth-child(even) { border-right: none; }
  .stat-block:nth-child(1),.stat-block:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ── Value cards (about page) ── */
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--s2);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--s4); }
.value-card:hover::before { transform: scaleX(1); }
.v-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.value-card p  { font-size: .88rem; color: var(--muted); }

/* ── Partners strip (inner pages) ── */
.partners {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.partners h4 {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
}
.partner-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--s1);
  transition: all .2s;
}
.partner-badge:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-1px); box-shadow: var(--s2); }

/* ── Global presence ── */
.world-map {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.world-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.world-map .dots {
  font-size: 2rem;
  letter-spacing: .35em;
  color: var(--indigo-2);
  position: relative;
  z-index: 1;
  opacity: .7;
}
.world-map p {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  font-family: var(--font-mono);
  position: relative;
  z-index: 1;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.country-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--s1);
  transition: all .2s;
  position: relative;
}
.country-item:hover { border-color: var(--indigo); transform: translateX(3px); box-shadow: var(--s2); }
.country-item.hq {
  border-color: rgba(92,92,230,.3);
  background: rgba(92,92,230,.03);
}
.c-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hq-tag {
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 700;
  color: var(--indigo);
  background: rgba(92,92,230,.1);
  border: 1px solid rgba(92,92,230,.2);
  padding: .1rem .5rem;
  border-radius: var(--r-full);
  letter-spacing: .05em;
}
.country-item p { font-size: .84rem; color: var(--muted); }
@media (max-width:768px) { .country-list { grid-template-columns: 1fr 1fr; } }
@media (max-width:576px) { .country-list { grid-template-columns: 1fr; } }

/* ── Blog page inline newsletter ── */
.newsletter {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 0;
}
.newsletter .eyebrow { justify-content: center; }
.newsletter h2 { margin-bottom: .75rem; }
.newsletter > p { margin-bottom: 2rem; color: var(--muted); }
.newsletter .newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 440px;
  margin: 0 auto 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: .4rem .4rem .4rem 1.25rem;
}
.newsletter .newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: .9rem;
}
.newsletter .newsletter-form input::placeholder { color: var(--muted); }
.newsletter .newsletter-form .btn { border-radius: var(--r-full); }
.newsletter-note { font-size: .75rem; color: var(--muted); font-family: var(--font-mono); }

/* ── Blog thumb on blog.php (shows initials text) ── */
.blog-thumb {
  height: 180px;
  background: var(--g-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}
.blog-card:nth-child(1) .blog-thumb { background: linear-gradient(135deg,#1a1a6e,#5c5ce6); }
.blog-card:nth-child(2) .blog-thumb { background: linear-gradient(135deg,#0a3d55,#00c9d4); }
.blog-card:nth-child(3) .blog-thumb { background: linear-gradient(135deg,#3d0a55,#a855f7); }
.blog-card:nth-child(4) .blog-thumb { background: linear-gradient(135deg,#3d2a00,#ff6b6b); }
.blog-card:nth-child(5) .blog-thumb { background: linear-gradient(135deg,#0a3d20,#10d98a); }
.blog-card:nth-child(6) .blog-thumb { background: linear-gradient(135deg,#1a0a3d,#5c5ce6); }

/* Blog card tag on blog.php (inside .blog-body not .blog-thumb) */
.blog-body .blog-tag {
  position: static;
  display: inline-flex;
  background: rgba(92,92,230,.1);
  color: var(--indigo);
  border: 1px solid rgba(92,92,230,.18);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  margin-bottom: .65rem;
}
.blog-meta { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); margin-bottom: .65rem; font-family: var(--font-mono); }
.blog-card h3 { font-size: .98rem; margin-bottom: .6rem; line-height: 1.45; }
.blog-card p  { font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }

/* ── FAQ icon compat (inner pages use .icon not .faq-icon) ── */
.faq-q .icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: var(--indigo);
  transition: all .25s;
  font-style: normal;
  line-height: 1;
}
.faq-item.open .faq-q .icon {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
  transform: rotate(45deg);
}

/* ── Service inner pages ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-includes h3 { margin-bottom: 1.25rem; }
.service-includes ul { display: flex; flex-direction: column; gap: .7rem; }
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--text-2);
}
.service-includes li::before {
  content: '→';
  color: var(--indigo);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.process-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--s1);
  transition: all .2s;
}
.process-step:hover { border-color: var(--indigo); transform: translateX(4px); }
.step-num {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 800;
  background: var(--g-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1.4;
}
.process-step h4 { font-size: .95rem; margin-bottom: .25rem; }
.process-step p  { font-size: .84rem; color: var(--muted); }

/* Sidebar card */
.sidebar-card {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: #fff;
  position: sticky;
  top: 90px;
}
.sidebar-card h4 { color: #fff; margin-bottom: 1rem; }
.sidebar-card p  { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 1.5rem; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }

/* ── Sustainability ── */
.pillars-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--s2);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--s4); }
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar-card h3 { margin-bottom: .5rem; }

/* ── Careers apply form ── */
.apply-form-section {
  background: var(--bg-2);
  border-radius: var(--r-xl);
  padding: 3rem;
  margin-top: 3rem;
}
.apply-form-section h3 { margin-bottom: .5rem; }
.apply-form-section > p { color: var(--muted); margin-bottom: 2rem; }

/* ── Contact map placeholder ── */
.map-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-placeholder span { position: relative; z-index: 1; }

/* ── Free tools form inputs light ── */
.tool-card input,
.tool-card select {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-size: .9rem;
  outline: none;
  margin-bottom: .75rem;
  transition: border-color .2s, box-shadow .2s;
}
.tool-card input:focus,
.tool-card select:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(92,92,230,.1);
}
.tool-result-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .35rem;
}

/* ── Privacy / Terms / Cookie policy pages ── */
.policy-content { max-width: 780px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; margin: 2.5rem 0 .75rem; color: var(--text); }
.policy-content h3 { font-size: 1.1rem; margin: 1.75rem 0 .5rem; color: var(--text); }
.policy-content p  { font-size: .95rem; margin-bottom: 1rem; color: var(--text-2); }
.policy-content ul { margin: .75rem 0 1rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.policy-content ul li { font-size: .92rem; color: var(--text-2); list-style: disc; }
.policy-content a  { color: var(--indigo); text-decoration: underline; }
.policy-updated {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
}

/* ── Industries page detail ── */
.industry-detail { padding: 2.5rem 0; border-bottom: 1px solid var(--border-light); }
.industry-detail:last-child { border-bottom: none; }
.industry-detail-grid { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.industry-icon-block { text-align: center; }
.industry-icon-block .big-icon { font-size: 3.5rem; margin-bottom: .75rem; }
.industry-icon-block h3 { font-size: 1.1rem; }
.industry-services-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.industry-pill-sm {
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  background: rgba(92,92,230,.08);
  color: var(--indigo);
  border: 1px solid rgba(92,92,230,.15);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
}
@media (max-width:768px) {
  .industry-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail-grid  { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

