/* Iron Angle Limited — Mintegral-inspired light redesign */

:root {
  --bg:        #FFFFFF;
  --bg-2:      #F4FFFE;
  --bg-3:      #EAF9F6;
  --bg-dark:   #0A1628;
  --bg-blue:   #1B3FD8;
  --bg-yellow: #FFC200;
  --bg-teal:   #00C5A1;
  --teal:      #00C5A1;
  --teal-d:    #009E85;
  --teal-l:    #33D4B9;
  --yellow:    #FFC200;
  --yellow-d:  #D4A200;
  --blue:      #2255E0;
  --blue-d:    #1A3DB5;
  --text:      #0F1B2D;
  --text-m:    #54687A;
  --text-s:    #8FA3B3;
  --border:    #E2EBF0;
  --border-d:  #CAD7E0;
  --radius:    6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --nav-h:     70px;
  --font-d:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b:    'Inter', system-ui, sans-serif;
  --shadow:    0 4px 20px rgba(0,60,50,.08);
  --shadow-lg: 0 12px 48px rgba(0,60,50,.13);
  --grad-teal:   linear-gradient(135deg, #00C5A1 0%, #009E85 100%);
  --grad-yellow: linear-gradient(135deg, #FFC200 0%, #FFD740 100%);
  --grad-blue:   linear-gradient(135deg, #2255E0 0%, #1A3DB5 100%);
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.12; color: var(--text); }
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); font-weight: 900; letter-spacing: -.04em; }
h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -.03em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -.02em; }
h4 { font-size: 1.0625rem; font-weight: 700; }
p  { color: var(--text-m); line-height: 1.75; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal);
}
.eyebrow::before {
  content: ''; width: 18px; height: 2px; border-radius: 2px;
  background: var(--teal);
}

/* ─── Container ─── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 2rem; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad-teal); color: #fff;
  padding: .875rem 2rem; border-radius: var(--radius-md);
  font-family: var(--font-b); font-size: .9375rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,197,161,.32);
  transition: transform .2s, box-shadow .2s, filter .2s; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,197,161,.42); filter: brightness(1.06); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--text);
  padding: .875rem 2rem; border-radius: var(--radius-md);
  border: 1.5px solid var(--border-d); font-size: .9375rem; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--teal); background: var(--bg-3); }

.btn-yellow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad-yellow); color: var(--text);
  padding: .875rem 2rem; border-radius: var(--radius-md);
  font-family: var(--font-b); font-size: .9375rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,194,0,.3);
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,194,0,.42); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--text);
  padding: .875rem 2rem; border-radius: var(--radius-md);
  font-family: var(--font-b); font-size: .9375rem; font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  padding: .875rem 2rem; border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.55); font-size: .9375rem; font-weight: 600;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-ghost-white { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: #fff; padding: .875rem 2rem; border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.45); font-size: .9375rem; font-weight: 600; transition: background .2s; }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }

.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--grad-teal); color: #fff;
  padding: .5rem 1.25rem; border-radius: var(--radius-md);
  font-family: var(--font-b); font-size: .8125rem; font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,197,161,.28);
  transition: transform .2s, box-shadow .2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,197,161,.38); }

/* ─── Navigation ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-nav.scrolled, .site-nav.nav-opaque {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,30,50,.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--font-d); font-size: 1.0625rem; font-weight: 900;
  letter-spacing: .06em; color: var(--text); text-transform: uppercase; transition: opacity .2s;
}
.nav-logo:hover { opacity: .75; }
.nav-logo-icon { width: 20px; height: 20px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; margin-left: auto; }
.nav-link { font-size: .875rem; font-weight: 500; color: var(--text-m); transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--teal); }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  padding: .5rem; margin-left: auto; width: 44px; height: 44px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ─── Nav Dropdown ─── */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link.nav-has-dd { display: flex; align-items: center; gap: .28rem; cursor: pointer; }
.nav-caret {
  font-size: .7rem; color: var(--text-s); display: inline-block;
  transition: transform .24s ease, color .18s;
}
.nav-item:hover .nav-caret,
.nav-item:hover > .nav-link { color: var(--teal); }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
/* transparent bridge fills the gap so hover isn't lost while moving cursor into dropdown */
.nav-item::after {
  content: ''; position: absolute; top: 100%; left: -10px; right: -10px;
  height: 20px; background: transparent;
}

.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #F7F8FA; border-radius: 12px;
  padding: .625rem 0; min-width: 210px;
  box-shadow: 0 16px 52px rgba(0,20,50,.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 500;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -8px; left: 50%; margin-left: -9px;
  border: 9px solid transparent;
  border-top: none; border-bottom-color: #F7F8FA;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block; padding: .775rem 1.5rem;
  font-family: var(--font-b); font-size: .875rem; color: var(--text); font-weight: 500;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-dropdown-link:hover { color: var(--teal); background: rgba(0,197,161,.05); }
.nav-dropdown-divider { height: 1px; background: rgba(0,0,0,.06); margin: .375rem 0; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.mobile-link { font-family: var(--font-d); font-size: clamp(2rem, 8vw, 2.75rem); font-weight: 900; color: var(--text-m); letter-spacing: -.02em; transition: color .2s; }
.mobile-link:hover { color: var(--teal); }

/* ─── Hero ─── */
.hero {
  padding: calc(var(--nav-h) + 4rem) 0 0;
  background: var(--bg); overflow: hidden; position: relative;
}
.hero::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; opacity: .4; pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
.hero-text { padding-bottom: 5rem; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 .accent { color: var(--teal); }
.hero-desc {
  font-size: 1.0625rem; color: var(--text-m);
  max-width: 440px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-trust-label {
  font-size: .68rem; color: var(--text-s); text-transform: uppercase;
  letter-spacing: .12em; white-space: nowrap; flex-shrink: 0;
}
.hero-trust-logos { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-trust-logos span {
  font-family: var(--font-d); font-size: .8125rem; font-weight: 800;
  color: var(--text-s); letter-spacing: .03em;
}

/* Hero illustration: colorful mosaic grid of game ad tiles */
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 180px 180px;
  gap: 12px; padding: 0 0 4rem;
  position: relative;
}
.hero-tile {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  transition: transform .35s ease; box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.hero-tile:hover { transform: scale(1.04) translateY(-4px); z-index: 2; }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile:nth-child(1) { grid-column: 1; grid-row: 1; background: var(--teal); }
.hero-tile:nth-child(2) { grid-column: 2; grid-row: 1 / 3; background: var(--yellow); }
.hero-tile:nth-child(3) { grid-column: 3; grid-row: 1; background: #4E6EF5; }
.hero-tile:nth-child(4) { grid-column: 1; grid-row: 2; background: #FF6B6B; }
.hero-tile:nth-child(5) { grid-column: 3; grid-row: 2; background: var(--teal-d); }
/* no 6th tile — keep it clean */
/* floating "+" accents */
.hero-plus {
  position: absolute; font-size: 2rem; font-weight: 900;
  line-height: 1; user-select: none; pointer-events: none;
  animation: floatPlus 4s ease-in-out infinite;
}
.hero-plus-1 { color: var(--teal); top: 8%; right: 6%; animation-delay: 0s; }
.hero-plus-2 { color: var(--yellow); bottom: 28%; left: -4%; font-size: 1.5rem; animation-delay: 1.6s; }
@keyframes floatPlus {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(15deg); }
}

/* ─── Stats Strip ─── */
.stats-strip { background: var(--bg-dark); padding: 3.5rem 0; }
.stats-strip-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-s-item { text-align: center; padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stat-s-item:last-child { border-right: none; }
.stat-s-num { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 900; line-height: 1; letter-spacing: -.03em; margin-bottom: .5rem; }
.stat-s-num.t { color: var(--teal-l); }
.stat-s-num.y { color: var(--yellow); }
.stat-s-num.w { color: #fff; }
.stat-s-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.42); font-weight: 600; }

/* ─── Services Cards ─── */
.services-section { background: var(--bg); padding: 6rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.svc-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem;
  position: relative; overflow: hidden; transition: transform .28s, box-shadow .28s, border-color .28s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card:nth-child(1)::before { background: var(--grad-teal); }
.svc-card:nth-child(2)::before { background: var(--grad-yellow); }
.svc-card:nth-child(3)::before { background: var(--grad-blue); }
.svc-card:nth-child(4)::before { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.svc-card:nth-child(1) .svc-icon-wrap { background: var(--bg-3); }
.svc-card:nth-child(2) .svc-icon-wrap { background: #FFFBEA; }
.svc-card:nth-child(3) .svc-icon-wrap { background: #EEF2FF; }
.svc-card:nth-child(4) .svc-icon-wrap { background: #FFF1F0; }
.svc-icon-wrap i { font-size: 1.5rem; }
.svc-card:nth-child(1) .svc-icon-wrap i { color: var(--teal); }
.svc-card:nth-child(2) .svc-icon-wrap i { color: var(--yellow-d); }
.svc-card:nth-child(3) .svc-icon-wrap i { color: var(--blue); }
.svc-card:nth-child(4) .svc-icon-wrap i { color: #E8534A; }
.svc-num { font-size: .625rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-s); margin-bottom: .75rem; display: block; }
.svc-card h3 { font-size: 1.25rem; margin-bottom: .75rem; color: var(--text); }
.svc-card p  { font-size: .9375rem; color: var(--text-m); line-height: 1.7; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: .375rem;
  margin-top: 1.5rem; font-size: .875rem; font-weight: 700;
  transition: gap .2s;
}
.svc-card:nth-child(1) .svc-card-link { color: var(--teal); }
.svc-card:nth-child(2) .svc-card-link { color: var(--yellow-d); }
.svc-card:nth-child(3) .svc-card-link { color: var(--blue); }
.svc-card:nth-child(4) .svc-card-link { color: #E8534A; }
.svc-card-link:hover { gap: .625rem; }

/* ─── Platforms Marquee ─── */
.marquee-section {
  background: var(--bg); padding: 2.25rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label { text-align: center; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-s); margin-bottom: 1.5rem; }
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marqueeScroll 34s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; padding: 0 2.75rem;
  font-family: var(--font-d); font-size: .9375rem; font-weight: 900;
  color: var(--text-s); letter-spacing: .03em; white-space: nowrap;
  border-right: 1px solid var(--border); transition: color .2s; cursor: default;
}
.marquee-item:hover { color: var(--teal); }
.marquee-item .m-a { color: var(--teal); }
.m-accent { color: var(--teal); }

/* ─── Cases editorial grid (homepage) ─── */
.cases-editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.case-ed-card { position: relative; height: 460px; overflow: hidden; cursor: pointer; background: var(--bg-3); }
.case-ed-img { position: absolute; inset: 0; }
.case-ed-img img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .85s ease, opacity .4s; }
.case-ed-card:hover .case-ed-img img { transform: scale(1.08); opacity: 1; }
.case-ed-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.96) 0%, rgba(10,22,40,.38) 48%, rgba(10,22,40,.05) 100%); }
.case-ed-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.25rem 2rem; }
.case-ed-tag { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-l); display: block; margin-bottom: .875rem; }
.case-ed-content h3 { font-size: 1rem; color: #fff; font-weight: 700; margin-bottom: 1.375rem; line-height: 1.45; }
.case-ed-stats { display: flex; gap: 2rem; }
.ced-val { font-family: var(--font-d); font-size: 1.75rem; font-weight: 900; color: var(--yellow); line-height: 1; letter-spacing: -.025em; }
.ced-label { font-size: .62rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }

/* ─── Coverage strip ─── */
.coverage-strip { background: var(--bg-2); padding: 6rem 0; }
.coverage-strip .section-header { text-align: center; margin-bottom: 3rem; }
.coverage-data {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
}
.cov-cell { padding: 2.75rem 1.25rem; text-align: center; border-right: 1px solid var(--border); background: var(--bg); transition: background .22s; }
.cov-cell:last-child { border-right: none; }
.cov-cell:hover { background: var(--bg-3); }
.cov-roas { font-family: var(--font-d); font-size: clamp(1.625rem, 2.8vw, 2.25rem); font-weight: 900; color: var(--teal); line-height: 1; letter-spacing: -.03em; margin-bottom: .625rem; }
.cov-region { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-s); font-weight: 600; }
.cov-primary .cov-roas { color: var(--blue); }
.coverage-note { text-align: center; margin-top: 1.75rem; font-size: .7rem; color: var(--text-s); letter-spacing: .1em; text-transform: uppercase; }

/* ─── Quote section ─── */
.quote-section { padding: 7rem 0; background: var(--bg); }
.quote-feature { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.quote-open { font-family: var(--font-d); font-size: 5rem; line-height: .8; margin-bottom: .75rem; display: block; color: var(--teal); opacity: .35; }
.quote-text { font-family: var(--font-d); font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-weight: 700; color: var(--text); line-height: 1.55; letter-spacing: -.02em; margin-bottom: 2.5rem; font-style: italic; }
.quote-divider { width: 2.5rem; height: 3px; background: var(--teal); margin: 0 auto 1.75rem; border-radius: 2px; }
.quote-byline { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.quote-name { font-size: .9375rem; font-weight: 800; color: var(--text); }
.quote-role { font-size: .8125rem; color: var(--text-s); }

/* ─── CTA Section ─── */
.cta-section { padding: 8rem 0; text-align: center; background: var(--bg-dark); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -300px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(ellipse, rgba(0,197,161,.15) 0%, transparent 65%); pointer-events: none; }
.cta-section > .container { position: relative; z-index: 1; }
.cta-section .eyebrow { color: var(--teal-l); }
.cta-section .eyebrow::before { background: var(--teal-l); }
.cta-section h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 4rem); margin: .75rem auto 1.25rem; max-width: 700px; }
.cta-section p { color: rgba(255,255,255,.62); font-size: 1.0625rem; max-width: 440px; margin: 0 auto 2.75rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
/* ── Pre-footer CTA strip ── */
.footer-pre { background: linear-gradient(135deg, rgba(0,196,168,.1) 0%, rgba(232,148,10,.07) 100%); border-top: 1px solid rgba(0,196,168,.18); border-bottom: 1px solid rgba(255,255,255,.05); padding: 2.5rem 0; }
.footer-pre-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-pre-tag { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: .35rem; }
.footer-pre-hl { font-family: var(--font-d); font-size: 1.375rem; font-weight: 800; color: rgba(255,255,255,.9); }
.footer-pre-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; background: var(--teal); color: #fff; font-family: var(--font-d); font-weight: 700; font-size: .95rem; border-radius: var(--radius-md); white-space: nowrap; transition: background .2s, transform .2s; flex-shrink: 0; }
.footer-pre-btn:hover { background: #00b09a; transform: translateY(-2px); }

/* ── Main footer ── */
.site-footer { background: var(--bg-dark); padding: 0 0 2rem; border-top: none; position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--yellow) 100%); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-top: 3.5rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; color: rgba(255,255,255,.9); display: inline-flex; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.52); line-height: 1.8; max-width: 240px; margin-bottom: .25rem; }
.footer-brand-stats { display: flex; gap: 1.5rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.07); }
.footer-brand-stat-val { font-family: var(--font-d); font-size: 1.125rem; font-weight: 900; color: #fff; line-height: 1.1; }
.footer-brand-stat-lbl { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-top: .15rem; }
.footer-col h4 { font-family: var(--font-d); font-size: .66rem; font-weight: 800; color: rgba(255,255,255,.65); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-link { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s, padding-left .2s; display: block; }
.footer-link:hover { color: var(--teal); padding-left: 3px; }
.footer-bottom { padding: 1.75rem 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: var(--teal); }

/* ─── Section base ─── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--bg-2); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin: .75rem 0 0; }
.section-header p { font-size: 1.0625rem; max-width: 520px; margin-top: 1rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 1rem auto 0; }
.section-footer-cta { padding: 3.5rem 0; text-align: center; }

/* ─── Inner pages: Page Hero ─── */
.page-hero { padding: calc(var(--nav-h) + 4.5rem) 0 4rem; background: var(--bg-2); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--yellow) 100%); }
.page-hero-img { position: absolute; inset: 0; z-index: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .06; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { color: var(--text); margin: .75rem 0 1.125rem; }
.page-hero-desc { font-size: 1.125rem; color: var(--text-m); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; font-size: .78rem; color: var(--text-s); }
.breadcrumb a { color: var(--text-s); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--border-d); }
.breadcrumb-current { color: var(--teal); }

/* ─── Services page ─── */
.service-pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5.5rem 0; border-bottom: 1px solid var(--border); }
.service-pillar:last-child { border-bottom: none; padding-bottom: 0; }
.service-pillar.reverse .pillar-visual { order: -1; }
.pillar-num { font-family: var(--font-d); font-size: 5.5rem; font-weight: 900; line-height: 1; margin-bottom: .5rem; letter-spacing: -.04em; color: var(--border-d); }
.pillar-text .eyebrow { margin-bottom: .75rem; }
.pillar-text h2 { margin-bottom: 1.125rem; }
.pillar-text > p { font-size: 1.0625rem; margin-bottom: 2rem; }
.pillar-list { display: flex; flex-direction: column; gap: 1rem; }
.pillar-item { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-icon-wrap { width: 38px; height: 38px; border-radius: var(--radius-md); background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-icon-wrap i { color: var(--teal); font-size: 1rem; }
.pillar-item h4 { font-size: 1rem; color: var(--text); margin-bottom: .3rem; }
.pillar-item p  { font-size: .875rem; margin: 0; }
.pillar-visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-3); border: 1.5px solid var(--border); }
.pillar-visual img { width: 100%; height: 100%; object-fit: cover; }
.pillar-visual-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 900; font-size: 4rem; color: var(--border-d); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 2px; background: linear-gradient(90deg, var(--teal), var(--yellow)); z-index: 0; }
.process-step { text-align: center; padding: 0 1.75rem; }
.process-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-teal); color: #fff; font-family: var(--font-d); font-size: 1.125rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.625rem; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(0,197,161,.35); }
.process-step h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.process-step p  { font-size: .875rem; }

/* ─── Cases page ─── */
.cases-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: .5rem 1.375rem; border-radius: 50px; border: 1.5px solid var(--border); background: transparent; font-family: var(--font-b); font-size: .875rem; font-weight: 600; color: var(--text-m); transition: all .2s; cursor: pointer; }
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { border-color: var(--teal); background: var(--bg-3); color: var(--teal); }
.case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-study-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.case-study-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-study-img { height: 210px; overflow: hidden; background: var(--bg-3); }
.case-study-img img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .45s, opacity .3s; }
.case-study-card:hover .case-study-img img { transform: scale(1.06); opacity: 1; }
.case-study-body { padding: 1.875rem; }
.case-platform { font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: .625rem; }
.case-study-body h3 { font-size: 1.0625rem; color: var(--text); margin-bottom: .875rem; line-height: 1.4; }
.case-result { font-size: .875rem; color: var(--text-m); padding: .875rem 1.125rem; background: var(--bg-2); border-radius: var(--radius-md); border: 1px solid var(--border); margin-bottom: 1.25rem; line-height: 1.6; }
.case-result strong { color: var(--teal); }
.case-kpis { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.case-kpi-val { font-family: var(--font-d); font-size: 1.375rem; font-weight: 900; color: var(--yellow-d); line-height: 1; letter-spacing: -.02em; }
.case-kpi-label { font-size: .65rem; color: var(--text-s); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
.stats-bar { background: var(--bg-2); padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.stat-number { font-family: var(--font-d); font-size: 2.5rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; color: var(--teal); }
.stat-number em { font-style: normal; }
.stat-label { font-size: .72rem; color: var(--text-s); letter-spacing: .12em; text-transform: uppercase; margin-top: .4rem; }

/* ─── About ─── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 6.5rem 0; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; background: var(--bg-3); border: 1.5px solid var(--border); }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-text h2 { margin-bottom: 1.375rem; }
.about-intro-text p { font-size: 1.0625rem; margin-bottom: 1.25rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.value-card { padding: 1.5rem; border: 1.5px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); transition: border-color .25s, box-shadow .25s; }
.value-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,197,161,.1); }
.value-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: .875rem; }
.value-icon i { color: var(--teal); font-size: 1.25rem; }
.value-card h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.value-card p { font-size: .875rem; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-dark); margin-bottom: 1.125rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 2rem; font-weight: 900; color: var(--teal); border: 2px solid var(--teal); }
.team-name { font-family: var(--font-d); font-size: 1.0625rem; font-weight: 800; color: var(--text); margin-bottom: .25rem; }
.team-role { font-size: .8125rem; color: var(--teal); font-weight: 600; }

/* ─── Contact ─── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.125rem; }
.contact-info > p { font-size: 1.0625rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.625rem; }
.contact-detail-icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon i { color: var(--teal); font-size: 1.125rem; }
.contact-detail-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-s); font-weight: 600; margin-bottom: .25rem; }
.contact-detail-val { font-size: .9375rem; color: var(--text); font-weight: 500; line-height: 1.5; }
.contact-form-wrap { background: var(--bg); padding: 2.75rem; border-radius: var(--radius-lg); border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.contact-form-wrap h3 { margin-bottom: 1.75rem; color: var(--text); }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text-m); margin-bottom: .5rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--bg); color: var(--text); font-size: .9375rem; transition: border-color .2s, box-shadow .2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,197,161,.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-s); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .875rem; justify-content: center; }
.form-note { font-size: .78rem; color: var(--text-s); margin-top: 1rem; text-align: center; }

/* ─── Legal ─── */
.legal-hero { padding: calc(var(--nav-h) + 3.5rem) 0 3rem; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.legal-hero h1 { color: var(--text); font-size: clamp(2rem, 4vw, 2.75rem); margin: .75rem 0 .875rem; }
.legal-hero p { color: var(--text-m); }
.legal-body { padding: 5rem 0; }
.legal-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 { font-size: 1.125rem; font-weight: 800; color: var(--teal-d); margin-bottom: .875rem; }
.legal-section h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.25rem 0 .5rem; }
.legal-section p { font-size: .9rem; margin-bottom: .875rem; }
.legal-section ul { padding-left: 1.5rem; margin-bottom: .875rem; }
.legal-section li { font-size: .9rem; color: var(--text-m); line-height: 1.75; margin-bottom: .35rem; list-style: disc; }
.legal-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-last-updated { font-size: .8rem; color: var(--text-s); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }

/* ─── Feat Strips — alternating colored feature sections ─── */
.feat-strip { padding: 5.5rem 0; }
.feat-strip-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
}
.feat-strip.teal  { background: var(--teal); }
.feat-strip.dark  { background: var(--bg-dark); }
.feat-strip.blue  { background: #153870; }
.feat-strip.yellow { background: var(--yellow); }

.eyebrow-inv {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
.eyebrow-inv::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.72); }

.feat-strip-text h2 { color: #fff; margin: .875rem 0 1.375rem; }
.feat-strip.yellow .feat-strip-text h2 { color: var(--text); }
.feat-strip-text p { color: rgba(255,255,255,.78); font-size: 1.0625rem; line-height: 1.75; }
.feat-strip.yellow .feat-strip-text p { color: var(--text-m); }

.feat-nums {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.feat-num-block {
  padding: 1.875rem 1.625rem; border-radius: var(--radius-lg);
  background: rgba(0,0,0,.14); transition: background .2s;
}
.feat-num-block:hover { background: rgba(0,0,0,.2); }
.feat-strip.yellow .feat-num-block { background: rgba(0,0,0,.07); }
.feat-num-val {
  font-family: var(--font-d); font-size: 2.25rem; font-weight: 900;
  color: #fff; line-height: 1; letter-spacing: -.04em; margin-bottom: .5rem;
}
.feat-strip.yellow .feat-num-val { color: var(--text); }
.feat-num-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.58); line-height: 1.45;
}
.feat-strip.yellow .feat-num-label { color: rgba(0,0,0,.42); }

/* ─── Insight panel (used in dark feat-strip) ─── */
.insight-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 2rem; overflow: hidden; backdrop-filter: blur(8px);
}
.insight-panel-title {
  font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: .625rem;
}
.insight-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px rgba(0,197,161,.8); display: inline-block; flex-shrink: 0;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; transform: scale(.85); } }

.insight-row {
  display: flex; align-items: center; gap: .75rem; justify-content: space-between;
  padding: .8125rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.insight-row:last-child { border-bottom: none; }
.insight-row-label { font-size: .8rem; color: rgba(255,255,255,.5); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.insight-row-val { font-family: var(--font-d); font-size: 1.0625rem; font-weight: 800; color: #fff; white-space: nowrap; }
.insight-badge {
  font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .625rem; border-radius: 50px; white-space: nowrap;
  background: rgba(0,197,161,.2); color: var(--teal-l);
}
.insight-badge.y { background: rgba(255,194,0,.18); color: var(--yellow); }

/* ─── Hero floating badge ─── */
.hero-badge {
  position: absolute; bottom: 6rem; left: 0; z-index: 3;
  background: var(--bg); border-radius: var(--radius-md);
  padding: .9rem 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,.13);
  border: 1px solid var(--border); display: flex; align-items: center; gap: .75rem;
  animation: floatBadge 5s ease-in-out infinite;
}
.hero-badge-indicator {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,197,161,.22); flex-shrink: 0;
  animation: pulseDot 2s ease infinite;
}
.hero-badge-val { font-family: var(--font-d); font-size: 1.375rem; font-weight: 900; color: var(--teal); letter-spacing: -.025em; line-height: 1; }
.hero-badge-label { font-size: .58rem; font-weight: 700; color: var(--text-s); text-transform: uppercase; letter-spacing: .12em; margin-top: .2rem; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ─── Services section ─── */
.services-section { background: var(--bg-2); padding: 6rem 0; }

/* ─── Quote tint ─── */
.quote-section.tinted { background: linear-gradient(135deg, #EAF9F6 0%, #F4FFFE 60%, var(--bg) 100%); }

/* ─── Feat-strip responsive ─── */
@media (max-width: 900px) {
  .feat-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-badge { display: none; }
}

/* ─── Utility ─── */
.grad-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cases-section { background: var(--bg); }

/* ─── About page stat display ─── */
.stat-disp-num {
  font-family: var(--font-d); font-weight: 900; line-height: 1;
  letter-spacing: -.04em; color: var(--teal);
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-disp-label {
  font-size: .7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-s); margin-top: .5rem;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mosaic { display: none; }
  .hero-text { padding-bottom: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .coverage-data { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-pillar { grid-template-columns: 1fr; gap: 3rem; }
  .service-pillar.reverse .pillar-visual { order: 0; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 0; }
  .case-study-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-editorial-grid { grid-template-columns: 1fr; }
  .case-ed-card { height: 340px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-steps::before { display: none; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .stats-strip-inner { grid-template-columns: 1fr; }
  .coverage-data { grid-template-columns: repeat(2, 1fr); }
  .case-study-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 6rem 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .team-grid { grid-template-columns: 1fr; }
  .coverage-data { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARD SECTIONS (Mintegral-inspired alternating)
═══════════════════════════════════════════════════════ */
.feat-card { padding: 5.5rem 0; overflow: hidden; position: relative; }
.feat-card.fc-teal   { background: var(--teal); }
.feat-card.fc-light  { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feat-card.fc-yellow { background: var(--yellow); }
.feat-card.fc-indigo { background: #3D3FAA; }

.feat-card-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.feat-card.fc-rev .feat-card-visual { order: -1; }

/* Eyebrow labels */
.fc-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.fc-label::before { content: ''; width: 18px; height: 2px; border-radius: 2px; display: inline-block; }
.fc-teal   .fc-label { color: rgba(255,255,255,.82); }
.fc-teal   .fc-label::before { background: rgba(255,255,255,.82); }
.fc-light  .fc-label { color: var(--teal); }
.fc-light  .fc-label::before { background: var(--teal); }
.fc-yellow .fc-label { color: rgba(0,0,0,.52); }
.fc-yellow .fc-label::before { background: rgba(0,0,0,.32); }
.fc-indigo .fc-label { color: rgba(255,255,255,.75); }
.fc-indigo .fc-label::before { background: rgba(255,255,255,.75); }

/* Headlines */
.feat-card-text h2 { font-size: clamp(1.875rem, 3.2vw, 3rem); margin-bottom: 1.25rem; }
.fc-teal   .feat-card-text h2 { color: #fff; }
.fc-light  .feat-card-text h2 { color: var(--text); }
.fc-yellow .feat-card-text h2 { color: var(--text); }
.fc-indigo .feat-card-text h2 { color: #fff; }

/* Body text */
.feat-card-text p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2rem; }
.fc-teal   .feat-card-text p { color: rgba(255,255,255,.84); }
.fc-light  .feat-card-text p { color: var(--text-m); }
.fc-yellow .feat-card-text p { color: rgba(0,0,0,.62); }
.fc-indigo .feat-card-text p { color: rgba(255,255,255,.8); }

/* CTAs */
.fc-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9375rem; font-weight: 700; border-radius: var(--radius-md);
  padding: .8125rem 1.875rem; transition: transform .2s, box-shadow .2s; cursor: pointer;
  text-decoration: none;
}
.fc-btn:hover { transform: translateY(-2px); }
.fc-teal   .fc-btn { background: #fff; color: var(--teal-d); box-shadow: 0 4px 16px rgba(0,0,0,.14); }
.fc-teal   .fc-btn:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.fc-light  .fc-btn { background: var(--grad-teal); color: #fff; box-shadow: 0 4px 16px rgba(0,197,161,.32); }
.fc-light  .fc-btn:hover { box-shadow: 0 8px 26px rgba(0,197,161,.44); }
.fc-yellow .fc-btn { background: var(--bg-dark); color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.fc-yellow .fc-btn:hover { box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.fc-indigo .fc-btn { background: var(--yellow); color: var(--text); box-shadow: 0 4px 14px rgba(0,0,0,.22); font-weight: 800; }
.fc-indigo .fc-btn:hover { box-shadow: 0 8px 22px rgba(0,0,0,.3); }

/* ─── Illustration mosaic ─── */
.feat-card-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.illo-mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 155px 155px; gap: 10px;
  width: 100%; max-width: 400px;
}
.illo-t:nth-child(1) { grid-column: 1; grid-row: 1; }
.illo-t:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.illo-t:nth-child(3) { grid-column: 3; grid-row: 1; }
.illo-t:nth-child(4) { grid-column: 1; grid-row: 2; }
.illo-t:nth-child(5) { grid-column: 3; grid-row: 2; }

.illo-t {
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease; overflow: hidden;
}
.illo-t:hover { transform: scale(1.05) rotate(-1.5deg); box-shadow: 0 12px 32px rgba(0,0,0,.2); z-index: 2; }
.illo-t i { font-size: 2.25rem; }

/* Tile color variants */
.it-teal  { background: var(--teal-d); }
.it-teal  i { color: rgba(255,255,255,.92); }
.it-teal2 { background: rgba(0,197,161,.22); }
.it-teal2 i { color: var(--teal-d); }
.it-yellow  { background: var(--yellow); }
.it-yellow  i { color: rgba(0,0,0,.72); }
.it-yellow2 { background: rgba(255,194,0,.22); }
.it-yellow2 i { color: var(--yellow-d); }
.it-blue  { background: var(--blue); }
.it-blue  i { color: rgba(255,255,255,.92); }
.it-blue2 { background: rgba(34,85,224,.14); }
.it-blue2 i { color: var(--blue); }
.it-dark  { background: var(--bg-dark); }
.it-dark  i { color: rgba(255,255,255,.72); }
.it-navy  { background: #153870; }
.it-navy  i { color: rgba(255,255,255,.8); }
.it-white { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.it-white i { color: var(--teal); }
.it-coral { background: #FF6B6B; }
.it-coral i { color: #fff; }
.it-mint  { background: rgba(0,197,161,.12); }
.it-mint  i { color: var(--teal); }

/* Stat tile variant */
.illo-t.it-stat { flex-direction: column; gap: .25rem; }
.illo-stat-val {
  font-family: var(--font-d); font-size: 1.75rem; font-weight: 900;
  line-height: 1; letter-spacing: -.035em;
}
.illo-stat-lbl {
  font-size: .58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; text-align: center;
}

/* Tile type: full-bleed image */
.it-img { padding: 0; overflow: hidden; }
.it-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.it-img:hover img { transform: scale(1.08); }
.it-img:hover { transform: none; box-shadow: 0 12px 32px rgba(0,0,0,.22); }

/* Image tile with gradient scrim + text overlay */
.it-img-overlay { padding: 0; overflow: hidden; position: relative; }
.it-img-overlay img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.it-img-overlay:hover img { transform: scale(1.08); }
.it-img-overlay:hover { transform: none; }
.it-img-overlay .it-scrim { position: absolute; inset: 0; z-index: 1; }
.it-img-overlay .it-overlay-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: .875rem; width: 100%; height: 100%; }
.it-overlay-badge { background: rgba(0,0,0,.5); backdrop-filter: blur(6px); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .28rem .625rem; border-radius: 20px; }

/* Tile type: icon + label below */
.it-icon-label { flex-direction: column; gap: .5rem; }
.it-icon-label i { font-size: 2.75rem; }
.it-icon-label-text { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Tile type: feature list (best for tall center tile) */
.it-feats { flex-direction: column; align-items: flex-start; padding: 1.375rem 1.125rem; gap: .75rem; justify-content: center; }
.it-feat-row { display: flex; align-items: center; gap: .625rem; width: 100%; }
.it-feat-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.it-feat-label { font-size: .78rem; font-weight: 600; line-height: 1.3; }

/* Tile type: large number stat */
.it-big-num { flex-direction: column; gap: .2rem; }
.it-big-num-val { font-family: var(--font-d); font-size: 2.5rem; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.it-big-num-lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* Floating plus accents */
/* ═══════════════════════════════════════════════════════
   SERVICE PAGE VISUAL COMPONENTS (non-mosaic alternatives)
═══════════════════════════════════════════════════════ */

/* Image + badge visual (services.html) */
.svc-img-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.18); }
.svc-img-visual img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.svc-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(7,9,26,.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 12px; padding: .75rem 1.125rem; border: 1px solid rgba(255,255,255,.1); }
.svc-img-badge-val { font-family: var(--font-d); font-size: 2rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.svc-img-badge-lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-top: .25rem; }
.svc-img-tag { position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(7,9,26,.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: rgba(255,255,255,.8); font-size: .68rem; font-weight: 600; letter-spacing: .07em; padding: .3rem .75rem; border-radius: 20px; border: 1px solid rgba(255,255,255,.12); }

/* Channel pill strip (ua.html coverage section) */
.channel-strip { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; margin-top: 2.5rem; }
.channel-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.125rem; border-radius: 2rem;
  background: var(--surface); border: 1.5px solid var(--border);
  font-family: var(--font-d); font-weight: 700; font-size: .9rem; color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.channel-pill i { font-size: 1.1rem; color: var(--teal); }
.channel-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.1); border-color: var(--teal); }

/* Platform grid (ua.html) */
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .875rem; }
.platform-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .625rem; transition: border-color .2s, box-shadow .2s; }
.platform-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,196,168,.12); }
.platform-card-icon { font-size: 1.75rem; }
.platform-card-name { font-size: .8rem; font-weight: 700; color: var(--text); }
.platform-card-stat { font-size: .7rem; color: var(--teal); font-weight: 600; }

/* Creative format grid (creative.html) */
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.format-card { border-radius: 14px; padding: 1.25rem .875rem; text-align: center; }
.format-card-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.format-card-name { font-size: .78rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.format-card-tag { font-size: .62rem; font-weight: 600; margin-top: .35rem; opacity: .65; }

/* Creator tier visual (brand.html) */
.creator-tiers { display: flex; flex-direction: column; gap: .75rem; }
.creator-tier { display: flex; align-items: center; gap: 1rem; padding: .875rem 1.125rem; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-3); }
.creator-tier-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.creator-tier-bar { height: 100%; border-radius: 3px; }
.creator-tier-label { font-size: .8rem; font-weight: 700; color: var(--text); min-width: 60px; }
.creator-tier-range { font-size: .7rem; color: var(--text-s); min-width: 90px; text-align: right; }

/* SVG analytics chart (analytics.html) */
.analytics-chart-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.analytics-chart-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.analytics-chart-title { font-family: var(--font-d); font-size: .9rem; font-weight: 700; color: var(--text); }
.analytics-chart-val { font-family: var(--font-d); font-size: 2rem; font-weight: 900; color: var(--teal); letter-spacing: -.03em; }
.analytics-chart-lbl { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-s); }
.analytics-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.analytics-metric-val { font-family: var(--font-d); font-size: 1.25rem; font-weight: 800; color: var(--text); }
.analytics-metric-lbl { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-s); margin-top: .2rem; }

.fc-plus {
  position: absolute; font-size: 1.875rem; font-weight: 900; line-height: 1;
  pointer-events: none; user-select: none;
  animation: floatPlus 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   TRUST / COMMITMENT SECTION
═══════════════════════════════════════════════════════ */
.trust-section { background: var(--bg); padding: 7rem 0 0; }
.trust-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: start;
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
}
.trust-text h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem); margin: .875rem 0 1.25rem;
  max-width: 480px;
}
.trust-text p { font-size: 1.0625rem; max-width: 460px; margin-bottom: 2.5rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 50px;
  padding: .75rem 1.5rem;
}
.trust-badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-badge-icon i { color: #fff; font-size: 1.125rem; }
.trust-badge-text { font-family: var(--font-d); font-size: .9375rem; font-weight: 800; color: var(--text); }
.trust-badge-sub  { font-size: .68rem; color: var(--text-s); display: block; margin-top: .15rem; }

/* Timeline */
.trust-milestones { position: relative; padding-left: 0; }
.trust-milestones::before {
  content: ''; position: absolute; left: 19px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, var(--yellow) 100%); border-radius: 2px;
}
.trust-ms {
  display: flex; gap: 1.625rem; align-items: flex-start;
  padding-bottom: 2.5rem; position: relative;
}
.trust-ms:last-child { padding-bottom: 0; }
.trust-ms-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.trust-ms:nth-child(1) .trust-ms-dot { background: var(--grad-teal); }
.trust-ms:nth-child(2) .trust-ms-dot { background: var(--grad-blue); }
.trust-ms:nth-child(3) .trust-ms-dot { background: linear-gradient(135deg, #FFC200 0%, #FFD740 100%); }
.trust-ms:nth-child(4) .trust-ms-dot { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); }
.trust-ms-dot i { font-size: 1.0625rem; color: #fff; }
.trust-ms-date {
  font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-s); margin-bottom: .3rem;
}
.trust-ms-title { font-family: var(--font-d); font-size: 1.0625rem; font-weight: 800; color: var(--text); margin-bottom: .3rem; }
.trust-ms-desc { font-size: .875rem; color: var(--text-m); line-height: 1.6; }

/* Partner/certification badges row */
.trust-partners {
  max-width: 1180px; margin: 4.5rem auto 0; padding: 3.5rem 2rem 5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  border-top: 1px solid var(--border);
}
.trust-partner-badge {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem; border-radius: var(--radius-md); border: 1.5px solid var(--border);
  background: var(--bg); transition: border-color .25s, box-shadow .25s, transform .25s;
}
.trust-partner-badge:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,197,161,.1); transform: translateY(-3px); }
.trust-partner-icon {
  width: 46px; height: 46px; border-radius: var(--radius-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--bg-3);
}
.trust-partner-icon i { font-size: 1.375rem; color: var(--teal); }
.trust-partner-name { font-family: var(--font-d); font-size: .9375rem; font-weight: 800; color: var(--text); }
.trust-partner-desc { font-size: .72rem; color: var(--text-s); margin-top: .15rem; }

/* ═══════════════════════════════════════════════════════
   CLIENT SPOTLIGHT / CASE STUDY CAROUSEL
═══════════════════════════════════════════════════════ */
.spotlight-section { background: var(--bg-2); padding: 7rem 0 5rem; }
.spotlight-header { text-align: center; margin-bottom: 3.5rem; }
.spotlight-header h2 { margin: .75rem auto 0; }
.spotlight-card-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.spotlight-card {
  background: var(--yellow); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.2fr;
  box-shadow: 0 24px 72px rgba(0,0,0,.14);
}
.spotlight-media {
  position: relative; overflow: hidden; min-height: 340px; background: rgba(0,0,0,.15);
}
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,194,0,.28) 0%, rgba(0,0,0,.12) 100%);
}
.spotlight-info { padding: 3.5rem; }
.spotlight-client-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.1); border-radius: 50px; padding: .375rem .875rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(0,0,0,.55); margin-bottom: 1.875rem;
}
.spotlight-metric {
  font-family: var(--font-d); font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 900;
  line-height: 1; letter-spacing: -.04em; color: var(--text); margin-bottom: .5rem;
}
.spotlight-metric-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,.48); margin-bottom: 2rem;
}
.spotlight-quote {
  font-family: var(--font-d); font-size: 1.0625rem; font-weight: 700;
  color: rgba(0,0,0,.72); line-height: 1.55; font-style: italic; margin-bottom: 2rem;
}
.spotlight-author { display: flex; align-items: center; gap: .875rem; }
.spotlight-author-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(0,0,0,.16);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: .875rem; color: rgba(0,0,0,.45); flex-shrink: 0;
}
.spotlight-author-name { font-family: var(--font-d); font-weight: 800; font-size: .9375rem; color: var(--text); }
.spotlight-author-role { font-size: .78rem; color: rgba(0,0,0,.48); margin-top: .1rem; }

/* Nav dots */
.spotlight-nav { display: flex; gap: .5rem; justify-content: center; margin-top: 2.25rem; }
.spotlight-dot {
  height: 8px; border-radius: 4px; cursor: pointer;
  transition: width .3s ease, background .3s ease;
  background: var(--border-d); width: 8px;
}
.spotlight-dot.active { width: 28px; background: var(--teal); }

/* ═══════════════════════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--bg-3); padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.newsletter-inner h3 { font-size: clamp(1.375rem, 3vw, 2rem); color: var(--text); margin-bottom: .875rem; }
.newsletter-inner p { margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: .75rem;
  max-width: 480px; margin: 0 auto;
}
.newsletter-input {
  flex: 1; padding: .8125rem 1.125rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-size: .9375rem; font-family: var(--font-b);
  background: var(--bg); color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.newsletter-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,197,161,.1); }
.newsletter-input::placeholder { color: var(--text-s); }

/* ═══════════════════════════════════════════════════════
   FOOTER SOCIAL ICONS
═══════════════════════════════════════════════════════ */
.footer-social { display: flex; gap: .625rem; margin-top: 1.25rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38); font-size: 1rem; transition: border-color .2s, color .2s, background .2s;
}
.footer-social-link:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,197,161,.1); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — new sections
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feat-card-inner { gap: 3rem; }
  .trust-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .trust-partners { grid-template-columns: repeat(2, 1fr); }
  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 260px; }
}
@media (max-width: 900px) {
  .feat-card-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-card.fc-rev .feat-card-visual { order: 0; }
  .illo-mosaic { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .feat-card { padding: 4rem 0; }
  .newsletter-form { flex-direction: column; }
  .trust-partners { grid-template-columns: 1fr; }
  .illo-mosaic { grid-template-rows: 130px 130px; }
}

/* ═══════════════════════════════════════════════════════
   FEAT-CARD SERVICE FEATURE LIST (inner service sections)
═══════════════════════════════════════════════════════ */
.fc-service-num {
  font-family: var(--font-d); font-size: 4.5rem; font-weight: 900; line-height: 1;
  letter-spacing: -.04em; margin-bottom: .375rem;
  opacity: .18;
}
.fc-teal   .fc-service-num { color: #fff; }
.fc-light  .fc-service-num { color: var(--text); }
.fc-yellow .fc-service-num { color: rgba(0,0,0,.7); }
.fc-indigo .fc-service-num { color: #fff; }

.fc-feat-list { display: flex; flex-direction: column; gap: .875rem; margin: 1.625rem 0 2rem; }
.fc-feat-item { display: flex; align-items: flex-start; gap: .875rem; }
.fc-feat-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.fc-feat-icon i { font-size: 1.0625rem; }
.fc-feat-body {}
.fc-feat-title { font-family: var(--font-d); font-size: .9375rem; font-weight: 700; margin-bottom: .2rem; }
.fc-feat-desc  { font-size: .8125rem; line-height: 1.6; }

/* Per-theme colors */
.fc-teal   .fc-feat-icon { background: rgba(255,255,255,.18); }
.fc-teal   .fc-feat-icon i { color: rgba(255,255,255,.92); }
.fc-teal   .fc-feat-title { color: #fff; }
.fc-teal   .fc-feat-desc  { color: rgba(255,255,255,.68); }
.fc-light  .fc-feat-icon { background: var(--bg-3); border: 1px solid var(--border); }
.fc-light  .fc-feat-icon i { color: var(--teal); }
.fc-light  .fc-feat-title { color: var(--text); }
.fc-light  .fc-feat-desc  { color: var(--text-m); }
.fc-yellow .fc-feat-icon { background: rgba(0,0,0,.1); }
.fc-yellow .fc-feat-icon i { color: rgba(0,0,0,.65); }
.fc-yellow .fc-feat-title { color: var(--text); }
.fc-yellow .fc-feat-desc  { color: rgba(0,0,0,.55); }
.fc-indigo .fc-feat-icon { background: rgba(255,255,255,.15); }
.fc-indigo .fc-feat-icon i { color: rgba(255,255,255,.9); }
.fc-indigo .fc-feat-title { color: #fff; }
.fc-indigo .fc-feat-desc  { color: rgba(255,255,255,.68); }

/* ─── Stats strip (dark, reusable on inner pages) ─── */
.stats-strip-section { background: var(--bg-dark); padding: 3.5rem 0; }
.stats-strip-section .stats-strip-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats-strip-section .stat-s-item { text-align: center; padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stats-strip-section .stat-s-item:last-child { border-right: none; }
