/* ─── HOME PAGE — page-specific styles only ────────
   Global reset, typography, utilities → global.css
   Nav, footer, buttons, cards         → components.css
   Design tokens                       → variables.css   */

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #000;
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.active { opacity: .92; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(0,0,0,.68), rgba(0,0,0,.1) 55%, rgba(0,0,0,.3) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.05) 42%, rgba(0,0,0,.62));
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  color: var(--c-white);
  padding: 0 24px 92px;
  max-width: 700px; width: 100%;
  
}
.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.8px;
  margin-bottom: 34px;
  color: var(--c-white);
  opacity: 0;
  animation: hero-rise 1s .25s forwards;
  text-shadow: 0 4px 34px rgba(0,0,0,.35);
  transition: opacity .35s ease, transform .35s ease;
}
.hero-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 31px; font-weight: 400;
  color: var(--c-white);
  opacity: 0; animation: hero-rise 1s .45s forwards;
  transition: gap .25s, opacity .35s ease, transform .35s ease;
}
/* Slide change — headline + CTA fade out/in as the hero video switches */
.hero-inner--fading h1,
.hero-inner--fading .hero-link {
  opacity: 0 !important;
  transform: translateY(10px);
}
.hero-link small { font-size: var(--tx-sm); opacity: .92; }
.hero-link:hover { gap: 18px; opacity: .95; }
@keyframes hero-rise {
  from { transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── HERO-NEXT BARS as clickable nav ──────────────── */
.hero-next-bars span {
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-next-bars span:hover { background: rgba(255,255,255,.65); }

/* Next-up preview card */
.hero-next {
  position: absolute;
  right: 0; bottom: 102px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: rgba(4,10,18,.45);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  padding: 10px 14px; min-width: 250px;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.hero-next:hover,
.hero-next:focus-visible {
  background: rgba(4,10,18,.62);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
  outline: none;
}
.hero-next-thumb { transition: opacity .3s; }
.hero-next-thumb { width: 54px; height: 54px; object-fit: cover; opacity: .92; }
.hero-next-meta { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.hero-next-meta .next-tag  { font-size: 11px; letter-spacing: .5px; color: rgba(255,255,255,.8); }
.hero-next-meta .next-title { font-size: 28px; line-height: 1; font-weight: 300; color: var(--c-white); }
.hero-next-bars { display: flex; gap: 6px; margin-top: 8px; }
.hero-next-bars span { display: block; height: 2px; width: 26px; background: rgba(255,255,255,.3); transition: .3s; }
.hero-next-bars span.active { background: var(--c-white); width: 34px; }

/* ── MARQUEE / LOGO STRIP ──────────────────────────── */
.logos {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
  padding: 22px 0; overflow: hidden;
}
.logos-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marq 28s linear infinite;
  font-weight: 700; font-size: var(--tx-sm);
  color: var(--c-faint); letter-spacing: .5px;
}
.logos-track:hover { animation-play-state: paused; }
.logos-track span { display: inline-flex; align-items: center; gap: 10px; }
.logos-track span::before { content: "✦"; color: var(--c-accent); font-size: 11px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ── SECTION HEAD (home variants) ──────────────────── */
.head { margin-bottom: 54px; }
.head.center { text-align: center; max-width: 680px; margin-inline: auto; }
.kick {
  font-size: var(--tx-xs); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-secondary); margin-bottom: 14px;
}
.h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700; letter-spacing: -.8px; line-height: 1.1;
  color: var(--c-primary);
}
.sub { font-size: var(--tx-lg); color: var(--c-muted); margin-top: 18px; }

/* ── ABOUT ─────────────────────────────────────────── */
/* Layout now uses the Bootstrap .row/.col grid (see index.html) —
   flex-grow ratios below (1 / 1.15) reproduce the original
   1fr / 1.15fr split exactly; gap + align-items still apply to
   a flex row the same way they did to the CSS grid.            */
.about {
  position: relative;

  border-radius: 30px;
  gap: 20px; align-items: center;
  padding: 48px 50px; overflow: hidden;
}
.about::before {
  content: ""; position: absolute; inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.38);
  pointer-events: none;
}


.about-copy .tag {
  display: inline-block; font-size: var(--tx-sm);
  letter-spacing: .12em; font-weight: 700;
  color: var(--c-secondary); margin-bottom: 14px; text-transform: uppercase;
}
.about-copy h2 {
 font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1; letter-spacing: -.8px;
  font-weight: 700; margin-bottom: 14px; color: var(--c-primary);
}
.about-copy p {
  font-size: var(--tx-base); line-height: 1.6;
  color: var(--c-muted); margin-bottom: 22px;
  font-weight: 500;
}
.about-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 15px; background: var(--c-accent);
  color: var(--c-white); border-radius: var(--r-pill);
  font-size: var(--tx-base); font-weight: 700; transition: .25s;
}
.about-cta:hover {
  background: var(--c-accent-h); color: var(--c-white);
  transform: translateY(-2px); box-shadow: var(--glow);
}
.about-showcase {
  position: relative; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  flex: 1.15 1 0%;
}
.about-showcase::before {
  content: ""; position: absolute;     inset: 15% 1% 1%;
  border-radius: var(--r-pill);
  background: radial-gradient(circle at 50% 45%, rgba(22,56,131,.12), rgba(22,56,131,0));
  z-index: 0;
}
.about-main-pair { position: relative; width: min(100%, 620px); height: 390px; z-index: 2; }
.about-main-front,
.about-main-back {
  position: absolute; width: 44%; max-width: 248px;
  filter: drop-shadow(0 26px 22px rgba(13,27,42,.25));
  animation: floatMain 6s ease-in-out infinite;
}
.about-main-front { left: 40%; top: 17%; transform: rotate(7deg); z-index: 3; }
.about-main-back  { left: 52%; top: 6%;  transform: rotate(19deg); z-index: 2; animation-delay: .3s; }
.about-goggle,
.about-remote {
  position: absolute; border-radius: var(--r);
 
  padding: 9px;  z-index: 1;
}
.about-goggle { left: 8%; top: 30%;  animation: floatItem 5.4s ease-in-out infinite; }
.about-remote  { right: 7%; top: 23%; width: 118px; animation: floatItem 4.8s ease-in-out .4s infinite; }
.about-goggle img,
.about-remote img { width: 100%; display: block; border-radius: var(--r-sm); }
@keyframes floatMain { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes floatItem { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* ── SERVICES ──────────────────────────────────────── */
/* .svc-grid is a Bootstrap .row (see index.html); each .svc card
   is a fixed-width flex item — width = equal 3-way split of the
   row minus the two 22px gaps, same math as the old
   grid-template-columns:repeat(3,1fr) + gap:22px.               */
.svc-grid { gap: 22px; }
.svc {
  flex: 0 0 auto; width: calc(33.3333% - 14.6667px);
  background: rgb(251, 251, 251)
  ;
  border: 2px solid transparent; border-radius: var(--r);
  padding: 32px 26px 22px; display: flex; flex-direction: column;
  min-height: 450px; transition: .28s var(--ease);
}
.svc:hover { border-color: var(--c-accent); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.svc .si { height: 220px; margin: 18px 0 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.svc .si img { width: 95%;  transition: .45s; }
.svc:hover .si img { transform: translateY(-4px) scale(1.02); }
.svc-b { display: flex; flex-direction: column; flex: 1; text-align: center; }
.svc-b .tag {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-secondary); margin-bottom: 10px;
}
.svc-b h4 { font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 8px; color: var(--c-primary); }
.svc-b p  { font-size: var(--tx-sm); color: var(--c-muted); line-height: 1.5; margin: 0 auto; max-width: 300px; }
.svc-b .meta { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.svc-b .pr { font-weight: 500; font-size: var(--tx-sm); color: var(--c-muted); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.svc-b .arr {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: var(--c-white);
  font-size: var(--tx-sm); font-weight: 700;
  padding: 10px 26px; border-radius: var(--r-pill);
  min-width: 120px; transition: .2s; cursor: pointer;
}
.svc:hover .arr { background: var(--c-secondary); }

/* ── PRODUCTS ──────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.prod {
  background: var(--c-bg-soft); border-radius: var(--r);
  padding: 22px 18px; border: 2px solid transparent;
  display: flex; flex-direction: column;
  min-height: 560px; transition: .28s var(--ease);
}
.prod:hover { border-color: var(--c-accent); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.prod .pi { min-height: 300px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod .pi img { width: 82%; height: 82%; object-fit: contain; transition: .45s; }
.prod:hover .pi img { transform: translateY(-4px) scale(1.02); }
.prod-b { padding: 8px 8px 2px; display: flex; flex-direction: column; flex: 1; }
.prod-b .cat { display: none; }
.prod-b h4 { font-size: 20px; font-weight: 700; line-height: 1.25; margin: 0 0 8px; color: var(--c-primary); }
.prod-b .row { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 18px; }
.prod-b .pr { font-weight: 500; font-size: var(--tx-sm); color: var(--c-muted); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.prod-b .buy {
  background: var(--c-primary); color: var(--c-white);
  font-size: var(--tx-sm); font-weight: 700;
  padding: 10px 26px; border-radius: var(--r-pill);
  min-width: 120px; text-align: center; transition: .2s; cursor: pointer;
}
.prod:hover .buy { background: var(--c-secondary); }

/* ── SHOP BY INTEREST ──────────────────────────────── */
.interest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.intr {
  position: relative; border-radius: var(--r);
  overflow: hidden; aspect-ratio: 3/4;
  display: flex; align-items: flex-end;
  isolation: isolate; cursor: pointer;
}
.intr img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: .8s; }
.intr::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78)); }
.intr:hover img { transform: scale(1.08); }
.intr-b { padding: 24px; color: var(--c-white); }
.intr-b h4 { font-size: 21px; font-weight: 700; margin-bottom: 4px; }
.intr-b span { font-size: var(--tx-xs); opacity: .85; display: inline-flex; align-items: center; gap: 7px; transition: .25s; }
.intr:hover .intr-b span { gap: 12px; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.tst-wrap { padding-top: 8px; }
.tst-viewport { overflow-x: hidden; overflow-y: visible; border-radius: var(--r); }
.tst-grid {
  display: flex; gap: 22px;
  transition: transform .65s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.tst {
  flex: 0 0 calc((100% - 2 * 22px) / 2.5);
  background: var(--c-bg-soft); border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--c-line);
  min-height: 610px; display: flex; flex-direction: column;
}
.tst-media { height: 330px; overflow: hidden; background: var(--c-bg-soft2); }
.tst-media img { width: 100%; height: 100%; object-fit: cover; }
.tst-body { padding: 26px 34px 32px; display: flex; flex-direction: column; flex: 1; }
.tst p { font-size: var(--tx-lg); line-height: 1.5; color: var(--c-muted); margin-bottom: 34px; letter-spacing: -.2px; }
.tst .who { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.tst .av { width: 72px; height: 72px; border-radius: var(--r-pill); object-fit: cover; border: 1px solid var(--c-line); }
.tst .who b { font-size: var(--tx-base); font-weight: 700; line-height: 1.1; display: block; color: var(--c-ink); }
.tst .who span { font-size: var(--tx-sm); color: var(--c-muted); }
.tst-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.tst-dot {
  width: 9px; height: 9px;
  border: none; border-radius: var(--r-pill);
  background: var(--c-line);
  cursor: pointer; transition: width .25s, background .25s;
}
.tst-dot.active { width: 64px; height: 8px; background: var(--c-primary); }

/* ── BLOG ──────────────────────────────────────────── */
.blog-wrap { padding-top: 6px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card {
  position: relative;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r); overflow: hidden; transition: .28s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--c-accent); box-shadow: var(--sh-lg); }
.blog-media {  overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 20px 20px 22px; }
.blog-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--tx-xs); color: var(--c-muted);
  font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 10px;
}
.blog-meta::before { content: ""; width: 7px; height: 7px; border-radius: var(--r-pill); background: var(--c-accent); }
.blog-body h3 { font-size: var(--tx-2xl); line-height: 1.25; color: var(--c-primary); margin-bottom: 10px; }
.blog-body p  { font-size: var(--tx-sm); line-height: 1.6; color: var(--c-muted); margin-bottom: 16px; }
.blog-link { display: inline-flex; align-items: center; gap: 8px; color: var(--c-accent); font-size: var(--tx-sm); font-weight: 800; letter-spacing: .2px; }
.blog-link:hover { gap: 12px; }

/* ── FINAL CTA ─────────────────────────────────────── */
.final {
  position: relative; border-radius: 26px;
  overflow: hidden; text-align: center;
  padding: 96px 30px; color: var(--c-white);
}
.final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; z-index: 0; }
.final::after {
  content: ""; position: absolute; inset: 0;
background: linear-gradient(to right, rgb(22 56 131 / 40%) 0%, rgb(10 47 129 / 80%) 50%, rgba(22, 56, 131, .55) 100%);
  z-index: 1;
}
.final-in { position: relative; z-index: 2; }
.final h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700; letter-spacing: -.8px; line-height: 1.1;
  margin-bottom: 16px; color: var(--c-white);
}
.final p { font-size: var(--tx-lg); color: var(--c-white); opacity: .92; max-width: 480px; margin: 0 auto 30px; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 980px) {
  .prod-grid      { grid-template-columns: 1fr 1fr; }
  .interest-grid  { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr 1fr; }
  .tst            { flex: 0 0 100%; }
  .tst-media      { height: 260px; }
}
@media (max-width: 940px) {
  .about { padding: 40px 22px 26px; }
  .about-copy, .about-showcase { flex: 1 1 100%; }
  .about-copy { max-width: none; text-align: center; margin: 0 auto; }
  .about-showcase { min-height: 300px; margin-top: 20px; }
  .about-main-pair { height: 280px; }
  .about-main-front, .about-main-back { max-width: 180px; }
  .about-main-front { left: 26%; top: 18%; }
  .about-main-back  { left: 50%; top: 8%;  }
  .about-goggle     { left: 2%;  top: 34%; width: 82px; }
  .about-remote     { right: 1%; top: 24%; width: 82px; }
}
@media (max-width: 880px) { .svc { width: calc(50% - 11px); } }
@media (max-width: 700px) {
  .hero              { min-height: 76vh; }
  .hero-inner        { padding: 0 18px 94px; margin-left: 0; }
  .hero h1           { font-size: clamp(30px, 9vw, 42px); line-height: 1.15; margin-bottom: 20px; }
  .hero-link         { gap: 8px; }
  .hero-next         { right: 18px; left: 18px; bottom: 38px; min-width: auto; padding: 10px; }
  .hero-next-thumb   { width: 48px; height: 48px; }
  .hero-next-meta .next-title { font-size: 21px; }
  .tst               { min-height: auto; }
  .tst-media         { height: 220px; }
  .tst-body          { padding: 18px; }
  .tst p             { margin-bottom: 22px; }
  .tst .av           { width: 54px; height: 54px; }
}
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .svc { width: 100%; } }
@media (max-width: 520px) {
  .prod-grid     { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
}

/* ── IMPACT / STATS SCROLL-PIN ─────────────────────── */
.stats-pin {
  background: var(--c-bg);
  color: var(--c-ink);
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
  padding-block: 100px;
}
.stats-left { max-width: 480px; }

/* Eyebrow — identical to .kick used elsewhere on the page */
.stats-eyebrow {
  font-size: var(--tx-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: 14px;
}

/* Headline — matches .h2 weight, size and spacing */
.stats-headline {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-primary);
  margin-bottom: 18px;
  letter-spacing: -.8px;
}

/* Body copy — matches .sub */
.stats-desc {
  font-size: var(--tx-lg);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 400px;
}

/* Right: clipping window — shows exactly one stat at a time */
.stats-right {
  overflow: hidden;
  height: var(--stat-h, 320px);
  position: relative;
}
.stats-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.stat-item {
  height: var(--stat-h, 320px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 36px;
}

/* Large number — Mundial Thin (200), intentionally contrasts the bold headline */
.stat-val {
  font-family: var(--font);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 200;
  line-height: 1;
  color: var(--c-primary);
  letter-spacing: -5px;
  font-variant-numeric: tabular-nums;
}

/* Label — matches .sub weight and muted colour */
.stat-lbl {
  font-family: var(--font);
  font-size: var(--tx-lg);
  color: var(--c-muted);
  font-weight: 400;
  margin-top: 16px;
  letter-spacing: .02em;
}


@media (max-width: 900px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 80px;
    min-height: auto;
  }
  .stats-left { max-width: none; }
  .stats-desc { max-width: none; }
  :root { --stat-h: 220px; }
  .stat-val { font-size: clamp(4rem, 18vw, 7rem); letter-spacing: -3px; }
}
@media (max-width: 520px) {
  :root { --stat-h: 180px; }
  .stat-item { padding-left: 20px; }
  .stat-val { font-size: clamp(3.5rem, 22vw, 6rem); letter-spacing: -2px; }
  .stat-lbl { font-size: var(--tx-base); margin-top: 10px; }
}

/* ── SERVICES REEL INTRO ────────────────────────────── */
.svc-reel-intro {
  padding: 88px 26px 72px;
  text-align: center;
  background: var(--c-bg);
}
.svc-reel-intro .wrap { max-width: 680px; padding-inline: 0; }
.svc-reel-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.svc-reel-intro p {
  font-size: var(--tx-lg);
  color: var(--c-muted);
}

/* ── SERVICES REEL (pinned full-screen) ─────────────── */
.svc-reel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* All slides stacked, GSAP controls visibility */
.svc-reel-slides { position: relative; width: 100%; height: 100%; }
.svc-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Background image fills the slide */
.svc-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Gradient: heavy bottom-left, fades to transparent top-right */
.svc-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.08) 75%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}

/* Text content — bottom left */
.svc-slide-body {
  position: absolute;
  bottom: clamp(48px, 8vh, 88px);
  left: clamp(28px, 6vw, 88px);
  max-width: 720px;
  z-index: 2;
}
.svc-slide-tag {
  display: block;
  font-size: var(--tx-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.svc-slide-title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
.svc-slide-desc {
  font-size: var(--tx-base);
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 400px;
}
.svc-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  padding: 12px 26px;
  border-radius: var(--r-pill);
  font-size: var(--tx-sm);
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, gap .2s;
}
.svc-slide-cta:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  gap: 14px;
}

/* Right dot nav */
.svc-reel-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.svc-rdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.svc-rdot.active {
  background: #fff;
  transform: scale(1.5);
}

/* Slide counter bottom-left (above body) */
.svc-reel-counter {
  position: absolute;
  bottom: 34px;
  left: clamp(28px, 6vw, 88px);
  z-index: 20;
  font-size: var(--tx-xs);
  color: rgba(255,255,255,.45);
  font-weight: 600;
  letter-spacing: .1em;
  display: none;
}

@media (max-width: 640px) {
  .svc-slide-body { left: 24px; right: 24px; max-width: none; }
  .svc-reel-nav   { right: 14px; }
  .svc-reel-counter { left: 24px; }
}

/* ── INDUSTRIES WE SERVE ────────────────────────────── */
.ind-section { background: var(--c-bg); padding-block: var(--sp); }

.ind-list {
  list-style: none;
  padding: 0; margin: 0;
  position: relative;
}

.ind-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-line);
  padding: 28px 0;
  cursor: pointer;
  z-index: 1;
  overflow: visible;
}
.ind-list .ind-row:last-child { border-bottom: 1px solid var(--c-line); }
.ind-row:hover { z-index: 10; }

/* Royal-blue sweep line at the bottom on hover */
.ind-row::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: #163883;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  z-index: 2;
}
.ind-row:hover::after { transform: scaleX(1); }

/* Number badge — matches .kick style, fades in on hover */
.ind-num {
  display: block;
  height: 16px;
  font-family: var(--font);
  font-size: var(--tx-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity .2s ease;
}
.ind-row:hover .ind-num { opacity: 1; }

/* Industry name — Mundial 300, large display */
.ind-name {
  font-family: var(--font);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 300;
  color: var(--c-ink);
  letter-spacing: -.4px;
  line-height: 1.1;
  margin: 0 0 6px;
  transition: color .2s ease, letter-spacing .25s ease;
}
.ind-row:hover .ind-name {
  color: var(--c-primary);
  letter-spacing: .5px;
}

/* Subtitle — always visible, matches .sub scale */
.ind-sub {
  font-family: var(--font);
  font-size: var(--tx-sm);
  color: var(--c-muted);
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
  transition: color .2s ease;
}
.ind-row:hover .ind-sub { color: var(--c-ink2); }

/* Rotated hover image — centred horizontally, slightly right */
.ind-img {
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-7deg) scale(0.86);
  width: 230px;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity .3s ease, transform .38s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 0 18px 56px rgba(0,0,0,.24);
}
.ind-row:hover .ind-img {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-7deg) scale(1);
}

/* Arrow — far right */
.ind-arr {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--c-ink);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .2s ease, transform .28s ease;
}
.ind-row:hover .ind-arr { opacity: 1; transform: none; }

/* ── EXPERIENCE IT RIGHT HERE ───────────────────────── */
.exp-section { background: var(--c-bg); padding-block: var(--sp); }
.exp-viewer-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 18 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-lg);
}
.exp-viewer-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.exp-badge {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  background: rgba(0,0,0,.52); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: var(--tx-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}
.exp-compass {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  width: 46px; height: 46px;
  background: rgba(0,0,0,.42); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--c-accent);
  animation: compassSpin 24s linear infinite;
}
@keyframes compassSpin { to { transform: rotate(360deg); } }

/* ── ENESTOCK IMMERSIVEHUB ──────────────────────────── */
.hub-section { background: var(--c-primary); padding-block: var(--sp); }
.hub-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hub-eyebrow {
  font-family: var(--font); font-size: var(--tx-xs); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-bg-soft2); margin-bottom: 20px;
}
.hub-headline {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--c-white);
  margin-bottom: 20px;
}
.hub-headline strong { font-family: var(--font); font-weight: 700; color: var(--c-bg-soft2); }
.hub-desc {
  font-family: var(--font);
  font-size: var(--tx-lg);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hub-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.hub-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hub-feat-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--c-bg-soft2);
}
.hub-feat h5 { font-family: var(--font); font-size: var(--tx-base); font-weight: 700; color: var(--c-white); margin-bottom: 4px; }
.hub-feat p  { font-family: var(--font); font-size: var(--tx-sm); color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── RESPONSIVE — new sections ──────────────────────── */
@media (max-width: 1024px) {
  .hub-inner { gap: 56px; }
}
@media (max-width: 760px) {
  .hub-inner        { grid-template-columns: 1fr; gap: 48px; }
  .hub-desc         { max-width: none; }
  .exp-viewer-wrap  { aspect-ratio: 4 / 3; }
  /* Hide hover image on touch/small viewports */
  .ind-img          { display: none; }
  .ind-name         { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .ind-arr          { opacity: 1; transform: none; font-size: 18px; }
}
@media (max-width: 520px) {
  .hub-feats        { grid-template-columns: 1fr; gap: 24px; }
}
