/* ============================================================
   KKRF TECH — Home Page
   Enterprise Design System — Pure black + white + #1574FF blue.
   Loads after style.css and theme-blue.css.
   Uses !important where theme-blue.css uses !important.
   ============================================================ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --E-black:   #0a0b0d;
  --E-ink:     #111216;
  --E-white:   #ffffff;
  --E-offwhite:#f5f6f8;
  --E-gray:    #f0f1f4;
  --E-blue:    #1574FF;
  --E-blue-d:  #0a52cc;
  --E-blue-t:  rgba(21,116,255,.08);
  --E-blue-t2: rgba(21,116,255,.18);
  --E-muted:   #6b7280;
  --E-line:    rgba(0,0,0,.09);
  --E-line-dk: rgba(255,255,255,.08);
  --mono:      'Inter', sans-serif;
  --snap:      cubic-bezier(.22,1,.36,1);
}

/* ── Base ───────────────────────────────────────────────────── */
/* overflow-x: clip (not hidden) — hidden creates a scroll container that
   silently breaks position: sticky on descendants (e.g. .indu__panel). */
html { overflow-x: clip; max-width: 100%; background: #0a0a0f; }
body { overflow-x: clip; max-width: 100%; background: #0a0a0f; }

/* ── GSAP/reveal overlap fix ────────────────────────────────── */
.reveal.in,
.reveal-up.in {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Eyebrow — enterprise style (overrides theme-blue) ─────── */
.eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: var(--mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--E-blue) !important;
  margin-bottom: 0 !important;
}
.eyebrow::before {
  content: "" !important;
  width: 32px !important;
  height: 1px !important;
  background: var(--E-blue) !important;
  flex-shrink: 0 !important;
}

/* ── Buttons: sharp corners, no box-shadow, blue not pill ───── */
.btn {
  border-radius: 6px !important;
  box-shadow: none !important;
  transition: background .25s, border-color .25s, color .25s,
              transform .25s var(--snap) !important;
  white-space: nowrap;
}
.btn:hover { box-shadow: none !important; }
.btn span { transition: transform .25s var(--snap) !important; }
.btn:hover span { transform: translateX(3px) !important; }
.btn--lg { border-radius: 6px !important; box-shadow: none !important; }

/* Primary — solid blue */
.btn--solid,
.hero .btn--solid,
.cta .btn--solid,
.stats .btn--solid,
.caps .btn--solid {
  background: var(--E-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.btn--solid:hover,
.hero .btn--solid:hover,
.cta .btn--solid:hover {
  background: var(--E-blue-d) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}
/* Ghost — dark on light bg */
.btn--ghost {
  background: transparent !important;
  border-color: rgba(0,0,0,.2) !important;
  color: var(--E-ink) !important;
}
.btn--ghost:hover {
  border-color: var(--E-ink) !important;
  color: var(--E-ink) !important;
  background: rgba(0,0,0,.03) !important;
  transform: translateY(-1px) !important;
}
/* Ghost on hero dark sections */
.hero .btn--ghost {
  color: rgba(255,255,255,.8) !important;
  border-color: rgba(255,255,255,.22) !important;
  background: transparent !important;
}
.hero .btn--ghost:hover {
  border-color: rgba(255,255,255,.7) !important;
  color: #fff !important;
  background: rgba(255,255,255,.05) !important;
}
.cta .btn--ghost {
  color: rgba(255,255,255,.8) !important;
  border-color: rgba(255,255,255,.22) !important;
  background: transparent !important;
}
.cta .btn--ghost:hover {
  border-color: rgba(255,255,255,.7) !important;
  color: #fff !important;
  background: rgba(255,255,255,.05) !important;
}

/* Nav CTA */
.nav .btn--solid {
  border-radius: 6px !important;
  box-shadow: none !important;
}

/* Nav transparent over dark hero (top of page) */
.nav:not(.scrolled):not(.mega-open) {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav:not(.scrolled):not(.mega-open) .nav__logo { color: #fff !important; }
.nav:not(.scrolled):not(.mega-open) .nav__logo span { color: rgba(255,255,255,.45) !important; }
.nav:not(.scrolled):not(.mega-open) .nav__menu > a,
.nav:not(.scrolled):not(.mega-open) .nav__link,
.nav:not(.scrolled):not(.mega-open) .nav__link--mm { color: rgba(255,255,255,.75) !important; }
.nav:not(.scrolled):not(.mega-open) .nav__toggle span { background: #fff !important; }
.nav:not(.scrolled):not(.mega-open) .nav__chevron { color: rgba(255,255,255,.6) !important; }


/* ═══════════════════════════════════════════════════════════
   HERO — White, no gradients, 2-column grid on desktop
   ══════════════════════════════════════════════════════════ */
.hero {
  background: #0a0a0f !important;
  color: #fff !important;
  padding: 0 !important;
  min-height: 100svh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Video / image background */
.hero__media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.42) 100%
  );
}

/* Disable old bg div */
.hero__bg {
  display: none !important;
}

/* Mobile inline video — hidden on desktop */
.hero__mobile-media { display: none; }
.hero__mobile-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom rule */
.hero::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  bottom: 0; left: 0; right: 0 !important;
  height: 1px !important;
  background: rgba(255,255,255,.1) !important;
}

/* 2-column grid (Rule 6) */
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px !important;
  padding-bottom: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto auto auto auto !important;
  column-gap: 60px !important;
  row-gap: 0 !important;
  width: 100%;
  align-items: start;
}

/* Eyebrow — left col, row 1 */
.hero__eyebrow {
  grid-column: 1 / 2 !important;
  grid-row: 1 !important;
  margin-bottom: 20px !important;
  align-self: start;
  font-family: var(--mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: rgba(110,167,255,.9) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.hero__eyebrow.leyebrow::before {
  content: "" !important;
  width: 32px !important;
  height: 1px !important;
  background: rgba(110,167,255,.9) !important;
  flex-shrink: 0 !important;
}

/* H1 — left col, row 2 */
.hero__title {
  grid-column: 1 / 2 !important;
  grid-row: 2 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(38px, 5.8vw, 88px) !important;
  font-weight: 900 !important;
  line-height: .94 !important;
  letter-spacing: -.055em !important;
  color: #fff !important;
  margin: 0 !important;
  align-self: start;
  text-wrap: balance;
}

/* Description — right col, rows 1–3 */
.hero__sub {
  grid-column: 2 / 3 !important;
  grid-row: 1 / 3 !important;
  font-size: clamp(14.5px, 1.15vw, 17px) !important;
  line-height: 1.74 !important;
  color: rgba(255,255,255,.72) !important;
  margin: 0 !important;
  align-self: start;
  padding-top: 4px;
  max-width: 56ch;
  text-wrap: pretty;
}

/* CTA buttons — left col, row 3 */
.hero__actions {
  grid-column: 1 / 2 !important;
  grid-row: 3 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 40px !important;
  align-self: start;
}

/* ── Hero proof — frosted glass cards row ── */
.hero__proof {
  grid-column: 1 / -1 !important;
  grid-row: 4 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  margin-top: 52px !important;
  align-self: end;
  overflow: visible !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding-bottom: 48px;
}

/* Individual frosted glass card */
.award {
  flex: 1 1 0 !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px !important;
  background: rgba(14,14,20,.72) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 14px !important;
  border-bottom: none !important;
  transition: background .25s, border-color .25s;
}
.award:hover {
  background: rgba(30,30,44,.85) !important;
  border-color: rgba(255,255,255,.2) !important;
}
.award__tag {
  display: block;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .13em;
  color: rgba(255,255,255,.4) !important;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.award__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff !important;
  line-height: 1.3;
  text-wrap: balance;
}

/* ── TopDevelopers shield badge card ── */
.award--badge {
  align-items: center;
  justify-content: center;
  padding: 10px !important;
}
.award__badge-svg {
  display: block;
  width: 100%;
  max-width: 80px;
  height: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

/* ── Clutch wordmark card ── */
.award--clutch {
  justify-content: space-between;
  gap: 6px;
}
.award__clutch-label {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .13em;
  color: rgba(255,255,255,.4) !important;
  text-transform: uppercase;
}
.award__clutch-row {
  display: flex;
  align-items: center;
  flex: 1;
}
.award__clutch-logo {
  display: block;
  height: 26px;
  width: auto;
}
.award__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.award__stars svg { flex-shrink: 0; }
.award__rating {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85) !important;
  margin-left: 6px;
  letter-spacing: -.01em;
}


/* ═══════════════════════════════════════════════════════════
   STATS — dark black, no gradients (Rule 4)
   ══════════════════════════════════════════════════════════ */
.stats {
  background: var(--E-black) !important;
  padding: 0 !important;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
/* Disable glow pseudo-element (Rule 4) */
.stats::before { display: none !important; }
.stats::after  { display: none !important; }

.stats__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  border: 1px solid var(--E-line-dk);
  border-radius: 0;
  position: relative;
  z-index: 1;
}
/* Desktop: stats-track acts as passthrough grid */
.stats-track {
  display: contents;
}
/* Hide marquee duplicates on desktop */
.stat--dupe { display: none !important; }
.stat {
  padding: 48px 36px !important;
  border-right: 1px solid var(--E-line-dk) !important;
  transition: background .25s;
}
.stat:last-child { border-right: none !important; }
.stat:hover { background: rgba(255,255,255,.03) !important; }

/* Remove gradient text (Rule 4) */
.stat__num,
.stat__plus {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: var(--E-white) !important;
}
.stat__num {
  display: inline-block;
  vertical-align: baseline;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 60px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}
.stat__plus {
  display: inline-block;
  vertical-align: baseline;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--E-blue) !important;
  -webkit-text-fill-color: var(--E-blue) !important;
  margin-left: 2px;
}
.stat__label {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--E-line-dk) !important;
  color: rgba(255,255,255,.38) !important;
  font-size: 13px;
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════════════════
   CAPABILITIES — white, 3-column grid, sharp corners
   ══════════════════════════════════════════════════════════ */
.caps {
  padding: 112px 0 !important;
  background: var(--E-white) !important;
  border-top: 1px solid var(--E-line) !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.caps .section-head { margin-bottom: 56px; }
.caps .section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 54px) !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
  color: var(--E-ink) !important;
  line-height: 1.05;
}
.caps .section-lead {
  color: var(--E-muted) !important;
  font-size: clamp(14.5px, 1.15vw, 17px) !important;
  line-height: 1.74 !important;
  margin-top: 18px;
}
/* Sharp corners (Rules 8, max 10px) */
.caps__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  background: var(--E-line) !important;
  border: 1px solid var(--E-line) !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.cap {
  background: var(--E-white) !important;
  padding: clamp(28px, 3vw, 44px) !important;
  display: flex !important;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background .25s;
  border: none !important;
}
.cap:hover { background: var(--E-gray) !important; }
.cap__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--E-ink) !important;
  color: var(--E-white) !important;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.cap__icon svg { width: 20px; height: 20px; }
.cap:hover .cap__icon { background: var(--E-blue) !important; }
.cap__name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 19px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  color: var(--E-ink) !important;
  margin-bottom: 12px;
  text-wrap: balance;
}
.cap__desc {
  color: var(--E-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  text-wrap: pretty;
  flex: 1;
}
.cap__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--E-blue) !important;
  letter-spacing: -.01em;
  margin-top: 20px;
  opacity: 0;
  transition: opacity .25s, gap .25s var(--snap);
}
.cap:hover .cap__link { opacity: 1 !important; color: var(--E-blue) !important; }


/* ═══════════════════════════════════════════════════════════
   COMPLIANCE — off-white, 2-col accordion
   ══════════════════════════════════════════════════════════ */
.comp {
  padding: 112px 0 !important;
  background: var(--E-offwhite) !important;
  border-top: 1px solid var(--E-line) !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.comp__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.comp__badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--E-ink) !important;
  color: var(--E-white) !important;
  border: none !important;
  margin-bottom: 28px;
}
.comp__badge svg { width: 24px; height: 24px; stroke: var(--E-white); }
.comp__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 40px) !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
  color: var(--E-ink) !important;
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.comp__lead {
  color: var(--E-muted) !important;
  font-size: clamp(14px, 1.1vw, 16px) !important;
  line-height: 1.72 !important;
}
.comp__right { border-top: 1px solid var(--E-line) !important; }
.comp__item { border-bottom: 1px solid var(--E-line) !important; border-top: none !important; }
.comp__item:first-child { border-top: none !important; }
.comp__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--E-ink) !important;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 17px) !important;
  font-weight: 700 !important;
  letter-spacing: -.02em !important;
  transition: color .2s;
}
.comp__q:hover { color: var(--E-blue) !important; }
.comp__no {
  font-family: var(--mono) !important;
  font-size: 10.5px;
  letter-spacing: .12em;
  color: #bbb !important;
  min-width: 28px;
}
.comp__chev { color: var(--E-blue) !important; font-style: normal; transition: transform .3s var(--snap); }
.comp__item.is-open .comp__chev { transform: scaleY(-1); }
.comp__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--snap); }
.comp__item.is-open .comp__a { max-height: 120px; }
.comp__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 22px 44px; }
.comp__chips span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  border-radius: 4px !important;
  background: var(--E-white) !important;
  border: 1px solid var(--E-line) !important;
  font-size: 12.5px !important;
  color: var(--E-ink) !important;
  font-weight: 600 !important;
}
.comp__chips span::before {
  content: "" !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--E-blue) !important;
  flex-shrink: 0 !important;
}


/* ═══════════════════════════════════════════════════════════
   WORK — off-white, 2×2 case grid
   ══════════════════════════════════════════════════════════ */
.work {
  padding: 112px 0;
  background: var(--E-offwhite);
  border-top: 1px solid var(--E-line);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.work .section-head { margin-bottom: 56px; }
.work .section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--E-ink);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--E-line);
  border: 1px solid var(--E-line);
  border-radius: 10px;
  overflow: hidden;
}
.case {
  background: var(--E-white);
  padding: clamp(32px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background .25s;
}
.case:hover { background: #fafbfc; }
.case__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.case__sector {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--E-blue);
  font-weight: 500;
}
.case__arrow {
  font-size: 18px;
  color: var(--E-blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s var(--snap);
}
.case:hover .case__arrow { opacity: 1; transform: none; }
.case__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--E-ink);
  line-height: 1.25;
  text-wrap: balance;
  flex: 1;
  margin-bottom: 24px;
}
.case__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--E-line);
  margin-top: auto;
}
.case__metrics > div {
  padding: 18px 0;
  border-right: 1px solid var(--E-line);
}
.case__metrics > div:last-child { border-right: none; padding-left: 20px; }
.case__metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--E-ink);
  line-height: 1;
}
.case__metrics span {
  display: block;
  font-size: 12px;
  color: var(--E-muted);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT — white, 2-col
   ══════════════════════════════════════════════════════════ */
.about {
  padding: 112px 0 !important;
  background: var(--E-white) !important;
  border-top: 1px solid var(--E-line) !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.about .eyebrow { margin-bottom: 20px !important; }
.about__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 48px) !important;
  font-weight: 900 !important;
  letter-spacing: -.05em !important;
  line-height: 1.04 !important;
  color: var(--E-ink) !important;
  text-wrap: balance;
  margin-top: 16px;
}
.about__right > p {
  color: var(--E-muted) !important;
  font-size: clamp(14.5px, 1.2vw, 16.5px) !important;
  line-height: 1.74 !important;
  text-wrap: pretty;
  margin-bottom: 16px;
}
.about__points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--E-line) !important;
  margin-top: 32px;
}
.point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0 !important;
  border-bottom: 1px solid var(--E-line) !important;
  align-items: start;
  transition: background .2s, padding-left .3s var(--snap);
}
.point:hover { background: var(--E-gray); padding-left: 16px; }
.point__no {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: .12em !important;
  color: var(--E-blue) !important;
  font-weight: 600;
  padding-top: 4px;
}
.point h4 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  color: var(--E-ink) !important;
  margin-bottom: 6px;
}
.point p {
  color: var(--E-muted) !important;
  font-size: 14px !important;
  line-height: 1.68 !important;
}


/* ═══════════════════════════════════════════════════════════
   CLIENTS — off-white, logo grid, sharp corners
   ══════════════════════════════════════════════════════════ */
.clients {
  padding: 100px 0 !important;
  background: #0a0a0a !important;
  border-top: none !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.clients__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 48px) !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  color: #fff !important;
  margin-bottom: 60px;
  text-wrap: balance;
  line-height: 1.08;
  text-align: center;
}
.clients__grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible;
}
.logo {
  display: grid !important;
  place-items: center !important;
  min-height: 110px !important;
  padding: 24px 20px !important;
  background: transparent !important;
  border: none !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: -.01em !important;
  color: rgba(255,255,255,0.4) !important;
  text-align: center;
  transition: color .25s;
}
.logo:hover {
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
}
.logo__img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity .25s;
}
.logo:hover .logo__img { opacity: 1; }


/* Alliance marquee styles → components.css */


/* ═══════════════════════════════════════════════════════════
   CTA / CONTACT — pure black, 2-col, NO gradients (Rule 4)
   ══════════════════════════════════════════════════════════ */
.cta {
  padding: 112px 0 !important;
  background: var(--E-black) !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
/* Disable gradient glow (Rule 4) */
.cta::before { display: none !important; }
.cta::after  { display: none !important; }
.cta .wrap { position: relative; z-index: 1; }

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--E-white);
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta__sub {
  color: rgba(255,255,255,.45);
  line-height: 1.72;
  font-size: 15px;
  max-width: 46ch;
}
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta__form .field { display: contents; }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: var(--E-white) !important;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, background .2s;
  resize: vertical;
  box-sizing: border-box;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.25) !important; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--E-blue) !important;
  background: rgba(21,116,255,.08) !important;
}
.cta__form .btn--solid { border-radius: 6px !important; }
.cta__msg { font-size: 13px; color: rgba(110,167,255,.8) !important; min-height: 18px; }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--E-line); }


/* ═══════════════════════════════════════════════════════════
   CONTACT POPUP — desktop only, premium redesign
   ══════════════════════════════════════════════════════════ */

/* Hidden on mobile — popup never shows < 1025px */
@media (max-width: 1024px) {
  .cpop-overlay { display: none !important; }
}

.cpop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,8,14,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: cpopFadeIn .2s ease;
}
@keyframes cpopFadeIn { from { opacity: 0; } to { opacity: 1; } }

.cpop-overlay.is-open,
.cpop-overlay.cpop-overlay--open { display: flex; }

.cpop {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--E-white);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  animation: cpopSlideUp .25s cubic-bezier(.22,.68,0,1.2);
}
@keyframes cpopSlideUp { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

/* ─── LEFT PANEL ─── */
.cpop__left {
  background: var(--E-black);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Grid pattern overlay */
.cpop__grid-lines {
  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;
  pointer-events: none;
}

/* Blue glow blob */
.cpop__glow {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse at center, rgba(21,116,255,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cpop__left-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }

.cpop__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--E-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.cpop__eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--E-blue);
  flex-shrink: 0;
}

.cpop__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.1;
  color: var(--E-white);
  margin-bottom: 14px;
}

.cpop__sub {
  color: rgba(255,255,255,.42);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.cpop__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cpop__bullets li {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cpop__bullet-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(21,116,255,.15);
  border: 1px solid rgba(21,116,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cpop__bullets strong { color: rgba(255,255,255,.82); }

.cpop__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 20px 0;
}

/* Partnership logos */
.cpop__partner-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}

.cpop__partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.cpop__partner-img {
  height: 22px;
  width: auto;
  max-width: 80px;
  opacity: .35;
  filter: brightness(10) saturate(0);
  object-fit: contain;
  transition: opacity .2s;
}
.cpop__partner-img:hover { opacity: .7; }

/* Award badges */
.cpop__awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cpop__award-img {
  height: 32px;
  width: auto;
  opacity: .5;
  filter: brightness(10) saturate(0);
  object-fit: contain;
  transition: opacity .2s;
}
.cpop__award-img:hover { opacity: .85; }

/* ─── RIGHT PANEL ─── */
.cpop__right {
  background: #fafbfd;
  padding: 40px 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cpop__close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--E-gray);
  border: none;
  cursor: pointer;
  color: var(--E-muted);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s, color .15s;
  z-index: 2;
}
.cpop__close:hover { background: var(--E-ink); color: #fff; }

/* Badge */
.cpop__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(21,116,255,.08);
  border: 1px solid rgba(21,116,255,.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--E-blue);
  margin-bottom: 14px;
  width: fit-content;
}
.cpop__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--E-blue);
  animation: cpopPulse 2s ease-in-out infinite;
}
@keyframes cpopPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.cpop__right-head { margin-bottom: 20px; }
.cpop__form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--E-ink);
  margin-bottom: 6px;
}
.cpop__form-intro {
  font-size: 13px;
  color: var(--E-muted);
  line-height: 1.6;
  padding-right: 20px;
}

/* Form fields */
.cpop__form { display: flex; flex-direction: column; gap: 0; flex: 1; }
.cpop__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.cpop__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.cpop__row .cpop__field { margin-bottom: 0; }

.cpop__label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--E-ink);
  letter-spacing: .01em;
}
.cpop__req { color: var(--E-blue); }

.cpop__field input,
.cpop__field textarea {
  width: 100%;
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--E-white);
  border: 1.5px solid rgba(0,0,0,.1);
  color: var(--E-ink);
  font-family: var(--font-body);
  font-size: 13.5px;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
  box-sizing: border-box;
}
.cpop__field input::placeholder,
.cpop__field textarea::placeholder { color: rgba(0,0,0,.3); }
.cpop__field input:focus,
.cpop__field textarea:focus {
  outline: none;
  border-color: var(--E-blue);
  box-shadow: 0 0 0 3px rgba(21,116,255,.1);
}

/* Phone field */
.cpop__field--phone { gap: 5px; }
.cpop__phone-wrap {
  display: flex;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--E-white);
  transition: border-color .15s, box-shadow .15s;
}
.cpop__phone-wrap:focus-within {
  border-color: var(--E-blue);
  box-shadow: 0 0 0 3px rgba(21,116,255,.1);
}
.cpop__phone-wrap select {
  border: none;
  background: rgba(0,0,0,.03);
  border-right: 1.5px solid rgba(0,0,0,.08);
  padding: 10px 8px;
  font-size: 13px;
  color: var(--E-ink);
  font-family: var(--font-body);
  flex-shrink: 0;
  outline: none;
  cursor: pointer;
}
.cpop__phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  flex: 1;
  padding: 10px 12px;
}

/* NDA checkbox */
.cpop__nda {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 12px;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--E-muted);
  line-height: 1.5;
}
.cpop__nda input[type="checkbox"] { display: none; }
.cpop__nda-box {
  width: 16px; height: 16px;
  border: 1.5px solid rgba(0,0,0,.18);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color .15s, background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpop__nda-check { opacity: 0; transition: opacity .15s; }
.cpop__nda input:checked ~ .cpop__nda-box {
  border-color: var(--E-blue);
  background: var(--E-blue);
}
.cpop__nda input:checked ~ .cpop__nda-box .cpop__nda-check { opacity: 1; }

/* Footer row: captcha + submit */
.cpop__footer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.cpop__captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cpop__captcha-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--E-ink);
  white-space: nowrap;
  background: var(--E-gray);
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 8px;
  padding: 9px 12px;
}
.cpop__captcha input {
  width: 52px;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--E-white);
  border: 1.5px solid rgba(0,0,0,.1);
  color: var(--E-ink);
  font-size: 13.5px;
  text-align: center;
  font-family: var(--font-body);
  transition: border-color .15s, box-shadow .15s;
}
.cpop__captcha input:focus {
  outline: none;
  border-color: var(--E-blue);
  box-shadow: 0 0 0 3px rgba(21,116,255,.1);
}

/* Submit button */
.cpop__submit {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--E-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: .01em;
}
.cpop__submit:hover { background: var(--E-blue-d); }
.cpop__submit:active { transform: scale(.98); }

.cpop__status {
  font-size: 12px;
  color: rgba(21,116,255,.9);
  min-height: 16px;
  margin-top: 8px;
}

/* Trust block */
.cpop__trust-block {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.cpop__trust {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  color: rgba(0,0,0,.3);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cpop__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cpop__logo-img {
  height: 22px;
  width: auto;
  opacity: .45;
  object-fit: contain;
  filter: grayscale(1);
  transition: opacity .2s, filter .2s;
}
.cpop__logo-img:hover { opacity: .9; filter: none; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    padding-top: 130px !important;
    padding-bottom: 0 !important;
  }
  .hero__eyebrow { grid-column: 1 !important; grid-row: auto !important; }
  .hero__title   { grid-column: 1 !important; grid-row: auto !important; }
  .hero__sub     { grid-column: 1 !important; grid-row: auto !important; margin-top: 24px; max-width: 60ch; }
  .hero__actions { grid-column: 1 !important; grid-row: auto !important; }
  .hero__proof   {
    grid-column: 1 !important;
    grid-row: auto !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    margin-top: 36px !important;
    padding-bottom: 40px !important;
    gap: 10px !important;
  }
  .hero__proof::-webkit-scrollbar { display: none; }
  .award {
    min-width: 140px !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
  }

  .caps__grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Stats: 2×2 grid on tablet */
  .stats__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat { padding: 36px 28px !important; }
  .stat:nth-child(2) { border-right: none !important; }
  .stat:nth-child(4) { border-right: none !important; }

  .comp__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__inner { grid-template-columns: 1fr; gap: 44px; }
  .cta__inner { grid-template-columns: 1fr; gap: 44px; }
  .work__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 160px 1fr 140px; gap: 28px; }
  .footer__mid { grid-template-columns: 140px 1fr 160px; gap: 28px; }

  .caps, .comp, .work, .about, .clients, .alli, .cta {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Phone ≤ 767px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .wrap { padding: 0 20px; }

  .hero {
    min-height: 0 !important;
    justify-content: flex-start !important;
    background: #050507 !important;
  }
  .hero__media { display: none !important; }
  .hero__inner {
    padding-top: 84px !important;
    padding-bottom: 0 !important;
    align-items: start !important;
  }

  .hero__eyebrow { font-size: 9.5px !important; margin-bottom: 14px !important; }
  .hero__title {
    font-size: clamp(23px, 6.5vw, 28px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.03em !important;
    font-weight: 700 !important;
  }
  .hero__sub {
    font-size: 12px !important;
    line-height: 1.55 !important;
    margin-top: 12px !important;
  }

  .hero .btn--solid,
  .hero .btn--lg {
    border-radius: 999px !important;
    padding: 13px 22px !important;
    font-size: 14.5px !important;
    box-shadow: 0 6px 24px rgba(37, 117, 252, 0.55), 0 2px 8px rgba(0,0,0,0.35) !important;
  }
  .hero .btn--solid:hover,
  .hero .btn--lg:hover {
    box-shadow: 0 8px 32px rgba(37, 117, 252, 0.70), 0 2px 10px rgba(0,0,0,0.40) !important;
  }
  .hero__actions {
    flex-direction: column !important;
    align-items: stretch !important;
    margin-top: 20px !important;
  }
  .hero__actions .btn { width: 100% !important; justify-content: center !important; }

  /* Award cards — marquee on phone only */
  .hero__proof {
    display: block !important;
    width: 100% !important;
    gap: 0 !important;
    overflow: hidden !important;
    margin-top: 22px !important;
    padding-bottom: 0 !important;
  }
  .proof-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: proofMarquee 26s linear infinite;
  }
  @keyframes proofMarquee {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  .award {
    flex: 0 0 auto !important;
    width: 148px !important;
    height: 74px !important;
    aspect-ratio: auto !important;
    margin-right: 10px !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    background: rgba(20,20,28,.7) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    justify-content: center !important;
  }
  .award__tag { font-size: 7.5px !important; margin-bottom: 4px !important; white-space: nowrap; }
  .award__name { font-size: 11px !important; line-height: 1.25 !important; }
  .award--badge { padding: 6px !important; align-items: center !important; }
  .award__badge-svg { max-width: 56px !important; }
  .award__clutch-label { font-size: 7.5px !important; }
  .award__clutch-logo { height: 15px !important; }
  .award--clutch { gap: 3px !important; }
  .award__stars { margin-top: 1px; }
  .award__stars svg { width: 8px !important; height: 8px !important; }
  .award__rating { font-size: 9.5px !important; margin-left: 4px !important; }

  .hero__mobile-media {
    display: block !important;
    margin-top: 22px;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  /* Stats marquee on phone */
  .stats { overflow: hidden !important; }
  .stats__grid {
    display: block !important;
    border: none !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }
  .stats-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: statsMarquee 18s linear infinite !important;
  }
  @keyframes statsMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .stat {
    flex: 0 0 42vw !important;
    width: 42vw !important;
    border-right: 1px solid var(--E-line-dk) !important;
    border-bottom: none !important;
    padding: 22px 18px !important;
  }
  .stat:last-child { border-right: 1px solid var(--E-line-dk) !important; }
  .stat--dupe { display: flex !important; flex-direction: column !important; }
  .stat__num { font-size: clamp(26px, 5vw, 36px) !important; }
  .stat__plus { font-size: clamp(16px, 3vw, 22px) !important; }
  .stat__label { font-size: 12px !important; margin-top: 8px !important; padding-top: 8px !important; }

  .caps__grid { grid-template-columns: 1fr !important; }
  .cap__link { opacity: 1 !important; }

  .clients__grid { grid-template-columns: repeat(3, 1fr) !important; }

  .lstack__tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .cpop__row { grid-template-columns: 1fr; }
  .cpop__footer-row { flex-direction: column; }
  .cpop__submit { width: 100% !important; }

  /* Footer stacked on phone */
  .footer__top { grid-template-columns: 1fr !important; gap: 0 !important; padding-top: 36px !important; padding-bottom: 0 !important; }
  .footer__mid { grid-template-columns: 1fr !important; }
  .footer__nav { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .footer__col:last-child { flex-direction: row !important; align-items: center !important; padding: 20px 0 28px !important; }
  .footer__col:last-child .footer__col-hd { margin-bottom: 0 !important; margin-right: 16px !important; white-space: nowrap !important; }
  .footer__col:last-child .footer__col-links { flex-direction: row !important; gap: 0 !important; }
  .footer__legal-col { flex-direction: row !important; flex-wrap: wrap !important; gap: 6px 16px !important; padding: 20px 0 32px !important; border-top: 1px solid rgba(255,255,255,.07) !important; align-items: center !important; justify-content: flex-start !important; }

  .caps, .comp, .work, .about, .clients, .alli, .cta {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small phone ≤ 480px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero__inner { padding-top: 80px !important; }

  .caps, .comp, .work, .about, .clients, .alli, .cta {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .cta__title { font-size: clamp(28px, 9vw, 44px); }
  .about__title { font-size: clamp(24px, 9vw, 40px) !important; }
  .clients__title { font-size: clamp(24px, 9vw, 36px) !important; }
  .clients__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .logo { min-height: 80px !important; padding: 16px 12px !important; }
  .logo__img { height: 28px; max-width: 100px; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Very small ≤ 360px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .award { padding: 16px 14px !important; }
  .comp__chips span { font-size: 12px !important; padding: 6px 12px !important; }
}



/* Portfolio carousel styles → components.css */






/* ═══════════════════════════════════════════════════════════
   INDUSTRIES — Sticky stacking panels (Razorpay-style)
   White full-width sections that stack on top of each other
   as you scroll. No tab bar.
   ══════════════════════════════════════════════════════════ */
.indu {
  --indu-nav: 76px;          /* main fixed nav height */
  background: var(--E-offwhite) !important;
  padding: clamp(56px, 8vw, 96px) 0 0 !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Intro header */
.indu__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 60px);
}
.indu__intro .eyebrow { justify-content: center; }
.indu__intro .section-title {
  margin-top: 16px;
  color: var(--E-ink) !important;
  text-wrap: balance;
}

/* ── Stacking panels ── */
.indu__panels { position: relative; }

.indu__panel {
  position: -webkit-sticky;
  position: sticky;
  top: var(--indu-nav);
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
  border-radius: clamp(20px, 2.6vw, 32px) clamp(20px, 2.6vw, 32px) 0 0;
  box-shadow: 0 -14px 44px rgba(15,23,42,.12);
  min-height: calc(100vh - var(--indu-nav));
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
/* stagger so the previous panel peeks a little above the next */
.indu__panel:nth-child(1) { z-index: 1; }
.indu__panel:nth-child(2) { z-index: 2; top: calc(var(--indu-nav) + 12px); }
.indu__panel:nth-child(3) { z-index: 3; top: calc(var(--indu-nav) + 24px); }
.indu__panel:nth-child(4) { z-index: 4; top: calc(var(--indu-nav) + 36px); }
.indu__panel:nth-child(5) { z-index: 5; top: calc(var(--indu-nav) + 48px); }

.indu__panel-inner {
  width: 100%;
  /* horizontal padding comes from .wrap (keeps it aligned with other sections);
     only set the vertical rhythm here. */
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.indu__panel-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.indu__panel-title {
  font-family: var(--font-display, var(--mono));
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--E-ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.indu__panel-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent, var(--E-blue));
  margin-bottom: 22px;
  border-radius: 2px;
}
.indu__panel-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--E-muted);
  line-height: 1.65;
  margin: 0;
}

/* feature card grid */
.indu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.indu__feat {
  background: var(--E-offwhite);
  border: 1px solid var(--E-line);
  border-radius: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  transition: transform .3s var(--snap), box-shadow .3s var(--snap), border-color .3s ease;
}
.indu__feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
  border-color: color-mix(in srgb, var(--accent, #1574FF) 35%, var(--E-line));
}
.indu__feat-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent, #1574FF) 12%, #fff);
  color: var(--accent, var(--E-blue));
  margin-bottom: 18px;
}
.indu__feat h3 {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--E-ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.indu__feat p {
  font-size: 13.5px;
  color: var(--E-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .indu__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .indu { --indu-nav: 60px; }
  .indu__grid { grid-template-columns: 1fr; gap: 12px; }
  .indu__panel { min-height: auto; padding-bottom: 8px; }
  .indu__panel-inner { padding-top: 30px; padding-bottom: 26px; }
  .indu__panel-head { margin-bottom: 22px; }
  .indu__panel-title { font-size: 25px; }
  .indu__panel-title::before { margin-bottom: 18px; }
  .indu__panel-sub { font-size: 14.5px; }
  /* tighter, evenly-aligned cards */
  .indu__feat { padding: 18px; display: flex; flex-direction: column; }
  .indu__feat-ic { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 14px; }
  .indu__feat h3 { font-size: 15.5px; }
  .indu__feat p { font-size: 13.5px; }
  .indu__panel:nth-child(n) { top: var(--indu-nav); }
  .indu__panel:nth-child(2) { top: calc(var(--indu-nav) + 8px); }
  .indu__panel:nth-child(3) { top: calc(var(--indu-nav) + 16px); }
  .indu__panel:nth-child(4) { top: calc(var(--indu-nav) + 24px); }
  .indu__panel:nth-child(5) { top: calc(var(--indu-nav) + 32px); }
}

/* ── Short / landscape viewports: don't pin if panels can't fit ── */
@media (max-height: 640px) {
  .indu__panel {
    position: relative;
    top: auto !important;
    min-height: 0;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .indu__feat { transition: none; }
}
