﻿/* ═══════════════════════════════════════════════════════════
   CAREDESK CONSULTANTS — DESIGN SYSTEM v3
   Theme: White base + Dark Navy sections
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Light surface (default) */
  --s-bg:     #FFFFFF;
  --s-soft:   #F2F7FF;
  --s-card:   #FFFFFF;
  --s-border: rgba(0,85,179,.1);
  --s-bsub:   rgba(0,85,179,.05);
  --s-shadow: 0 4px 28px rgba(0,55,130,.08), 0 1px 4px rgba(0,0,0,.04);
  --s-hover:  0 14px 44px rgba(0,55,130,.15), 0 4px 12px rgba(0,0,0,.07);

  /* Text on light */
  --t-h: #07132A;
  --t-b: #253F5A;
  --t-m: #5B7A95;
  --t-x: #8BAAC4;

  /* Brand */
  --blue:       #0055B3;
  --blue-light: #1A6FCC;
  --blue-deep:  #06194A;
  --cyan:       #00AEEF;
  --cyan-b:     #38C9FF;
  --cyan-dim:   rgba(0,174,239,.08);
  --cyan-glow:  rgba(0,174,239,.25);

  /* Dark section vars (activated by .dark-sec) */
  --dk-bg:     #020B1A;
  --dk-mid:    #041228;
  --dk-card:   rgba(5,18,42,.92);
  --dk-card2:  rgba(0,28,66,.7);
  --dk-border: rgba(0,174,239,.18);
  --dk-bsub:   rgba(255,255,255,.07);
  --dk-shadow: 0 8px 44px rgba(0,0,0,.55);
  --dk-hover:  0 0 44px rgba(0,174,239,.2), 0 8px 44px rgba(0,0,0,.55);
  --dk-t-h:    #FFFFFF;
  --dk-t-b:    #C8DFEF;
  --dk-t-m:    #7BA8C4;
  --dk-t-x:    #4A6885;

  /* Legacy aliases (keep sub-pages working) */
  --bg:         #FFFFFF;
  --bg-mid:     #F2F7FF;
  --bg-card:    #FFFFFF;
  --bg-card2:   #F7FAFF;
  --white:      #FFFFFF;
  --gray-100:   #C8DFEF;
  --gray-300:   #7BA8C4;
  --gray-500:   #4A6885;
  --border:     rgba(0,174,239,.18);
  --border-sub: rgba(255,255,255,.07);
  --shadow:     0 8px 44px rgba(0,0,0,.55);
  --glow:       0 0 30px rgba(0,174,239,.3);
}

/* Dark section context — overrides all tokens */
.dark-sec {
  background: var(--dk-bg);
  color: var(--dk-t-b);
}

/* ── BASE ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--t-b);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated grid */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,85,179,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,85,179,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 28s linear infinite;
}
@keyframes gridDrift { from{background-position:0 0} to{background-position:60px 60px} }

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 20px 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s ease;
  /* default: transparent, sits over dark hero */
}
#nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  padding: 13px 80px;
  border-bottom: 1px solid rgba(0,85,179,.1);
  box-shadow: 0 2px 24px rgba(0,55,130,.08);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-mark { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; border-radius: 50%; background: transparent; }
.nav-logo-img { height: 48px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.logo-mark { width: 44px; height: 44px; position: relative; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-wordmark { display: flex; flex-direction: column; }
.logo-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2; transition: color .3s; }
.logo-sub  { font-size: 9px; font-weight: 600; color: var(--cyan-b); text-transform: uppercase; letter-spacing: .18em; transition: color .3s; }
#nav.scrolled .logo-name { color: var(--t-h); }
#nav.scrolled .logo-sub  { color: var(--blue); }
.ft-brand .nav-logo-mark { width: 38px; height: 38px; }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  text-decoration: none; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s, background .2s;
}
.nav-menu > li > a:hover { color: #fff; background: rgba(255,255,255,.12); }
#nav.scrolled .nav-menu > li > a { color: var(--t-b); }
#nav.scrolled .nav-menu > li > a:hover { color: var(--blue); background: rgba(0,85,179,.06); }

.chevron { font-size: 10px; transition: transform .2s; display: inline-block; }
.nav-menu > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-menu li { position: relative; }
.nav-menu li > a { padding-bottom: 12px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 0px); left: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(0,85,179,.12); border-radius: 14px;
  padding: 10px; min-width: 220px;
  box-shadow: 0 8px 40px rgba(0,55,130,.15);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 9999;
}
.nav-menu li:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 9px;
  text-decoration: none; color: var(--t-b); font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.nav-dropdown a:hover { background: rgba(0,85,179,.06); color: var(--blue); }
.dd-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; background: var(--cyan-dim); flex-shrink: 0;
}
.dd-icon img { width: 22px; height: 22px; object-fit: contain; background: transparent; mix-blend-mode: multiply; }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  color: #fff !important; padding: 10px 22px !important;
  border-radius: 10px !important; font-weight: 700 !important;
  box-shadow: 0 0 22px rgba(0,174,239,.35);
  transition: box-shadow .2s, transform .2s !important;
}
.nav-cta:hover { box-shadow: 0 0 38px rgba(0,174,239,.55) !important; transform: translateY(-1px) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px; padding: 8px 11px; cursor: pointer; color: #fff; font-size: 18px;
}
#nav.scrolled .nav-toggle { border-color: rgba(0,85,179,.2); color: var(--t-h); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,85,179,.35);
  transition: all .25s; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(0,85,179,.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 15px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--cyan-b); color: var(--cyan-b); transform: translateY(-3px); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1.5px solid rgba(0,85,179,.25);
  transition: all .25s;
}
.btn-outline-dark:hover { border-color: var(--blue); background: rgba(0,85,179,.06); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px !important; font-size: 13px !important; }

/* ── PAGE STRUCTURE ───────────────────────────────────────── */
.page-wrap { position: relative; z-index: 1; }
.section { padding: 100px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }

.section-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--blue); margin-bottom: 14px;
}
.dark-sec .section-tag { color: var(--cyan); }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.1; margin-bottom: 18px;
  color: var(--t-h);
}
.dark-sec .section-title { color: #fff; }
.section-title .grad {
  background: linear-gradient(135deg, var(--cyan-b) 0%, var(--cyan) 50%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 17px; color: var(--t-m); line-height: 1.75; }
.dark-sec .section-sub { color: var(--dk-t-m); }

/* ── LIGHT CARDS ──────────────────────────────────────────── */
.card-light {
  background: var(--s-card); border: 1px solid var(--s-border);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--s-shadow);
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.card-light:hover {
  border-color: rgba(0,85,179,.25);
  box-shadow: var(--s-hover);
  transform: translateY(-4px);
}
.card-light::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0; transition: opacity .3s;
}
.card-light:hover::before { opacity: 1; }

/* ── DARK GLASS CARDS ─────────────────────────────────────── */
.glass-card {
  background: var(--dk-card); border: 1px solid var(--dk-border);
  border-radius: 20px; padding: 40px;
  backdrop-filter: blur(20px); transition: all .3s ease;
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,174,239,.04), transparent);
  pointer-events: none;
}
.glass-card:hover {
  border-color: rgba(0,174,239,.35);
  box-shadow: 0 0 44px rgba(0,174,239,.15), var(--dk-shadow);
  transform: translateY(-4px);
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: transparent;
  padding: 28px 80px;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 36px rgba(0,55,130,.09), 0 1px 6px rgba(0,0,0,.04);
  border: 1px solid rgba(0,85,179,.07);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 11px; font-weight: 600; color: var(--t-m); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.stat-sep { width: 1px; height: 44px; background: rgba(0,85,179,.1); flex-shrink: 0; }

/* ── CLIENT LOGOS MARQUEE ─────────────────────────────────── */
.clients-section { padding: 56px 0; background: #fff; overflow: hidden; }
.clients-label {
  text-align: center; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--t-x); margin-bottom: 36px;
}
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap::before,
.marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee-track {
  display: flex; align-items: center;
  animation: marquee 28s linear infinite; width: max-content;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.client-logo-item { padding: 0 45px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.client-logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 72px;
}
.client-logo-item img {
  height: 64px; max-width: 200px; object-fit: contain;
  mix-blend-mode: multiply;
}
.client-logo-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 18px; white-space: nowrap;
  display: flex; align-items: center; gap: 1px;
  mix-blend-mode: multiply;
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.rev { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.rev.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: #020B1A; border-top: 1px solid rgba(255,255,255,.06); padding: 72px 0 36px; }
.ft-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 56px; }
/* .ft-brand uses .nav-logo-mark now (see logo CSS above) */
.ft-brand p { font-size: 14px; color: #7BA8C4; line-height: 1.75; margin-top: 18px; max-width: 280px; }
.ft-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 18px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-links a { text-decoration: none; font-size: 14px; color: #7BA8C4; transition: color .2s; }
.ft-links a:hover { color: var(--cyan-b); }
.ft-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; gap: 12px;
}
.ft-bottom p { font-size: 13px; color: #4A6885; }
.ft-links-bottom { display: flex; gap: 22px; }
.ft-links-bottom a { font-size: 13px; color: #4A6885; text-decoration: none; transition: color .2s; }
.ft-links-bottom a:hover { color: var(--cyan-b); }
.ft-socials { display: flex; gap: 10px; margin-top: 20px; }
.ft-social {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  color: #7BA8C4; font-size: 15px; transition: all .2s;
}
.ft-social:hover { border-color: var(--cyan); color: var(--cyan-b); background: var(--cyan-dim); }

/* ── PAGE HERO (sub-pages) ────────────────────────────────── */
.page-hero {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 160px 80px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #06194A 0%, #020B1A 60%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,85,179,.3), transparent);
}
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px,5.5vw,68px); font-weight: 800; line-height: 1.1; position: relative; z-index: 1; color: #fff; }
.page-hero p   { font-size: 18px; color: #C8DFEF; max-width: 640px; margin: 20px auto 0; line-height: 1.8; position: relative; z-index: 1; }

/* Hero badge */
.hero-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,174,239,.1); border: 1px solid rgba(0,174,239,.3);
  border-radius: 100px; padding: 8px 20px; margin-bottom: 28px;
  font-size: 12px; font-weight: 600; color: var(--cyan-b); letter-spacing: .04em;
}
.badge-pulse {
  width: 7px; height: 7px; background: var(--cyan); border-radius: 50%;
  animation: bpulse 2s ease-in-out infinite;
}
@keyframes bpulse {
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(0,174,239,.5)}
  50%{opacity:.5;box-shadow:0 0 0 6px rgba(0,174,239,0)}
}

/* Hero orbs — dark shadow only, no purple */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.orb1 { width: 700px; height: 700px; background: rgba(0,0,0,.55); top: -180px; left: -180px; animation: orbF 14s ease-in-out infinite; }
.orb2 { width: 550px; height: 550px; background: rgba(0,0,0,.45); bottom: -160px; right: -160px; animation: orbF 18s ease-in-out infinite reverse; }
.orb3 { width: 380px; height: 380px; background: rgba(0,0,0,.25); top: 40%; left: 55%; animation: orbF 11s ease-in-out infinite 2s; }
@keyframes orbF { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */
.hero-wrap {
  min-height: 100vh; position: relative; overflow: hidden;
  background: #020B1A;
}
.hero-video-bg {
  position: absolute; top: 0; left: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  opacity: 0.68;
  filter: brightness(0.62) saturate(1.1);
}

/* Animated sphere glow — dark/black, no purple */
.hero-wrap::after {
  content: ''; position: absolute; z-index: 1; pointer-events: none;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  top: 50%; left: 18%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 40% 38%,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.08) 40%,
    transparent 70%
  );
  animation: spherePulse 9s ease-in-out infinite;
}
@keyframes spherePulse {
  0%,100% { transform: translate(-50%,-50%) scale(1);    opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.08); opacity: .75; }
}

/* Animated film grain — mirrors ShaderGradient grain:"on" */
.hero-wrap::before {
  content: ''; position: absolute; inset: -300px; z-index: 3; pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: heroGrain .4s steps(3) infinite;
}
@keyframes heroGrain {
  0%   { transform: translate(0,0); }
  33%  { transform: translate(-12px, 6px); }
  66%  { transform: translate(6px,-12px); }
  100% { transform: translate(0,0); }
}

.hero-canvas-bg { display: none; }
#heroCanvas { width: 100%; height: 100%; display: block; }

/* Per-slide video background */
.slide-video-bg {
  position: absolute; top: 0; left: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  opacity: 0.68; filter: brightness(0.60) saturate(1.1);
}
.slide-content { position: relative; z-index: 2; }

/* ── Infrastructure logo slider ───────────────────────── */
.infra-section { background: #fff; padding: 72px 0 64px; overflow: hidden; }
.infra-inner { text-align: center; padding: 0 40px; margin-bottom: 48px; }
.infra-inner .section-tag { color: var(--blue); justify-content: center; }
.infra-inner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px,4vw,42px); font-weight: 700; color: #07132A; line-height: 1.2; margin: 10px 0 0; }
.logo-track-wrap { display: flex; flex-direction: column; gap: 28px; }
.logo-track { overflow: hidden; }
.logo-track-inner {
  display: flex; align-items: center;
  width: max-content; will-change: transform;
  animation: trackLeft 24s linear infinite;
}
.logo-track.reverse .logo-track-inner { animation: trackRight 24s linear infinite; }
@keyframes trackLeft  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes trackRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.logo-track-inner a { display: flex; align-items: center; text-decoration: none; }
.logo-track-inner img { height: 52px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(100%); opacity: 0.55; transition: filter .3s, opacity .3s; display: block; padding: 0 36px; background: transparent; }
.logo-track-inner a:hover img { filter: none; opacity: 1; }
.logo-track-wrap:hover .logo-track-inner { animation-play-state: paused; }

/* ── Professional pricing font ────────────────────────── */
.p-amt { font-family: 'Space Grotesk', sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.sm-num { letter-spacing: -0.02em; }
.slide-h1 .grad { letter-spacing: -0.02em; }

/* Slides — use pointer-events (not visibility) so fade-out plays fully */
.hero-slide {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center;
  padding: 120px 80px 80px;
  opacity: 0; pointer-events: none;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
}
.hero-slide.active {
  opacity: 1; z-index: 2; pointer-events: auto;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
}

.slide-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
/* Single-column slides (no visual card) */
.slide-1col {
  display: flex; align-items: center; justify-content: center;
  max-width: 900px; width: 100%; margin: 0 auto;
}
.slide-1col .slide-content {
  text-align: center;
  max-width: 820px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.slide-1col .slide-content .hero-btns { justify-content: center; }
.slide-1col .slide-content .slide-metrics { justify-content: center; }

/* Slide content animation */
.slide-content { position: relative; z-index: 1; padding-top: 56px; }
.slide-content, .slide-visual { transition: none; }
.hero-slide:not(.active) .slide-content { opacity: 0; transform: translateY(20px); }
.hero-slide.active .slide-content {
  opacity: 1; transform: translateY(0);
  transition: opacity .85s ease .25s, transform .85s ease .25s;
}
.hero-slide:not(.active) .slide-visual { opacity: 0; transform: translateX(20px); }
.hero-slide.active .slide-visual {
  opacity: 1; transform: translateX(0);
  transition: opacity .85s ease .45s, transform .85s ease .45s;
  display: flex; justify-content: center; align-items: center;
}

/* Slide typography */
.slide-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 20px;
}
.slide-h1 .grad {
  background: linear-gradient(135deg, var(--cyan-b), var(--cyan), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.slide-p {
  font-size: clamp(15px,1.4vw,18px); color: #C8DFEF;
  line-height: 1.82; max-width: 540px; margin-bottom: 36px;
}

/* Slide metrics strip */
.slide-metrics {
  display: flex; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
}
.sm-item { text-align: center; padding: 0 26px; }
.sm-item:first-child { padding-left: 0; }
.sm-num { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--cyan-b); display: block; line-height: 1; }
.sm-lbl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; display: block; }
.sm-div { width: 1px; height: 32px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* Slide nav bar — hidden */
.slide-nav-bar { display: none; }

/* ── Hero prev/next arrows ────────────────────────────────── */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 54px; height: 54px;
  background: transparent;
  border: none;
  color: #fff; font-size: 44px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  transition: transform .22s ease, opacity .22s ease;
  padding: 0;
  opacity: 0.82;
}
.hero-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.18);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
@media (max-width: 768px) {
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 32px; }
}
.slide-nav-bar-UNUSED {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(4,0,18,.88); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.slide-progress-track { height: 2px; background: rgba(255,255,255,.07); }
.slide-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 6s linear;
}
.slide-tabs { display: flex; max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.slide-tab {
  flex: 1; padding: 16px 20px; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 11px;
  color: rgba(255,255,255,.4); transition: all .25s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.slide-tab:hover { color: rgba(255,255,255,.8); }
.slide-tab.active { color: #fff; border-bottom-color: var(--cyan); }
.st-num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; opacity: .4; }
.slide-tab.active .st-num { opacity: 1; color: var(--cyan); }
.st-label { font-size: 13px; font-weight: 600; }

/* ── Dashboard mock cards (hero) ──────────────────────────── */
.dash-card {
  background: rgba(5,18,42,.95); border: 1px solid rgba(0,174,239,.2);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(24px); min-width: 300px; max-width: 380px;
  box-shadow: 0 0 60px rgba(0,174,239,.15), 0 0 0 1px rgba(0,174,239,.06);
  position: relative; overflow: hidden;
}
.dash-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.gsa-card::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.bpo-card::before { background: linear-gradient(90deg, var(--cyan), var(--cyan-b)); }
.dash-card::after {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.1), transparent); pointer-events: none;
}
.dash-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.dash-ico { font-size: 20px; }
.dash-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; flex: 1; color: #fff; }
.dash-status {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(0,174,239,.12); color: var(--cyan); border: 1px solid rgba(0,174,239,.25);
}
.bpo-status { color: var(--cyan-b); }
.dash-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 13px; }
.dsr-label { color: #7BA8C4; }
.dsr-val { font-weight: 700; color: #fff; }
.dash-progress { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin: 4px 0 12px; overflow: hidden; }
.dp-bar { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); animation: growBar 1.5s ease 1s both; }
@keyframes growBar { from{width:0%} }
.dash-divider { height: 1px; background: rgba(255,255,255,.1); margin: 14px 0; }
.dash-items { display: flex; flex-direction: column; gap: 9px; }
.di-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #C8DFEF; }
.di-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.bpo-rate-display { text-align: center; padding: 18px 0; }
.bpo-big {
  font-family: 'Space Grotesk', sans-serif; font-size: 52px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--cyan-b), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bpo-per { font-size: 12px; color: #7Ba8c4; margin-top: 6px; }
.bpo-deploy-bar { display: flex; justify-content: space-between; font-size: 13px; color: #7Ba8c4; }
.offices-visual { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 380px; }
.ov-card {
  background: rgba(5,18,42,.95); border: 1px solid rgba(0,174,239,.18);
  border-radius: 16px; padding: 22px 24px;
  backdrop-filter: blur(24px); display: flex; align-items: center; gap: 16px; transition: all .3s;
}
.ov-card:hover { border-color: var(--cyan); box-shadow: 0 0 24px rgba(0,174,239,.18); }
.us-ov { border-left: 3px solid var(--blue-light); }
.pk-ov { border-left: 3px solid var(--cyan); }
.ov-flag { font-size: 28px; flex-shrink: 0; }
.ov-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.ov-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); margin-bottom: 2px; }
.ov-detail { font-size: 12px; color: #7Ba8c4; }
.ov-connector { display: flex; align-items: center; gap: 10px; padding: 0 8px; }
.ov-line { flex: 1; height: 1px; background: rgba(255,255,255,.1); }
.ov-globe { font-size: 18px; opacity: .4; }

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION (white)
   ═══════════════════════════════════════════════════════════ */
.div-cards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.div-big-card {
  background: var(--s-card); border: 1.5px solid var(--s-border);
  border-radius: 22px; padding: 48px;
  box-shadow: var(--s-shadow); transition: all .35s;
  position: relative; overflow: hidden;
}
.div-big-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.gsa-c::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.bpo-c::before { background: linear-gradient(90deg, var(--cyan), var(--cyan-b)); }
.div-big-card::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%; pointer-events: none; opacity: .4;
}
.gsa-c::after { background: radial-gradient(circle, rgba(0,85,179,.08), transparent); }
.bpo-c::after { background: radial-gradient(circle, rgba(0,174,239,.06), transparent); }
.div-big-card:hover { transform: translateY(-6px); box-shadow: var(--s-hover); border-color: rgba(0,85,179,.22); }
.dbc-icon { font-size: 36px; margin-bottom: 16px; }
.dbc-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: 8px; }
.dbc-title { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 14px; color: var(--t-h); }
.dbc-desc { font-size: 15px; color: var(--t-m); line-height: 1.8; margin-bottom: 24px; }
.gsa-c .dbc-desc { margin-bottom: 8px; }
.dbc-price { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; line-height: 1; margin-bottom: 20px; color: var(--blue); }
.bpo-c .dbc-price { color: var(--cyan); }
.dbc-price-sub { font-size: 12px; color: var(--t-x); margin-top: 4px; display: block; }
.dbc-price-desc { font-size: 12px; font-weight: 600; color: var(--t-m); margin-top: 6px; margin-bottom: 18px; letter-spacing: .01em; }
.dbc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 30px; }
.dbc-list li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--t-b); }
.dbc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.gsa-c .dbc-list li::before { background: var(--blue); }
.bpo-c .dbc-list li::before { background: var(--cyan); }

/* Capability tiles */
.cap-tiles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cap-tile {
  background: var(--s-soft); border: 1px solid rgba(0,85,179,.07);
  border-radius: 14px; padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all .25s;
}
.cap-tile:hover { border-color: rgba(0,85,179,.2); background: #fff; box-shadow: var(--s-shadow); transform: translateY(-2px); }
.ct-ico { font-size: 20px; flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(0,85,179,.07); display: flex; align-items: center; justify-content: center; }
.ct-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--t-h); }
.ct-desc { font-size: 12px; color: var(--t-m); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES SECTION (dark)
   ═══════════════════════════════════════════════════════════ */
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.industry-card {
  border-radius: 20px; overflow: hidden; position: relative;
  min-height: 240px; background: var(--dk-card2);
  border: 1px solid var(--dk-bsub);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; transition: all .3s; backdrop-filter: blur(20px);
}
.industry-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(2,11,26,.85) 100%);
  pointer-events: none; z-index: 0;
}
.ind-bg-glow { position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; opacity: .15; pointer-events: none; }
.industry-card:hover { transform: translateY(-5px); border-color: var(--dk-border); box-shadow: 0 0 40px rgba(0,174,239,.12); }
.ind-ico { font-size: 36px; margin-bottom: 12px; position: relative; z-index: 1; }
.ind-name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; color: #fff; }
.ind-desc { font-size: 13px; color: #8BAAC4; line-height: 1.65; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   RESULTS CARDS (light gray)
   ═══════════════════════════════════════════════════════════ */
.res-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.res-card {
  background: var(--s-card); border: 1.5px solid var(--s-border);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--s-shadow); transition: all .3s; position: relative; overflow: hidden;
}
.res-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0; transition: opacity .3s;
}
.res-card:hover { transform: translateY(-5px); box-shadow: var(--s-hover); border-color: rgba(0,85,179,.2); }
.res-card:hover::after { opacity: 1; }
.res-client { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: 10px; }
.res-metric { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; color: var(--t-h); margin-bottom: 8px; }
.res-desc { font-size: 14px; color: var(--t-m); line-height: 1.65; }
.res-tag { display: inline-block; margin-top: 16px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; padding: 4px 12px; border-radius: 100px; }
.res-tag.g { background: rgba(0,85,179,.08); color: var(--blue); border: 1px solid rgba(0,85,179,.2); }
.res-tag.b { background: rgba(0,174,239,.08); color: var(--cyan); border: 1px solid rgba(0,174,239,.2); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS (dark)
   ═══════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--dk-card); border: 1px solid var(--dk-bsub);
  border-radius: 20px; padding: 36px;
  backdrop-filter: blur(20px); transition: all .3s;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.testi-card:hover { border-color: var(--dk-border); transform: translateY(-4px); box-shadow: 0 0 32px rgba(0,174,239,.1); }
.testi-q-mark { position: absolute; top: -10px; right: 20px; font-size: 100px; line-height: 1; color: rgba(0,174,239,.06); font-family: Georgia, serif; pointer-events: none; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-star { color: #F5C518; font-size: 15px; }
.testi-text { font-size: 15px; color: #C8DFEF; line-height: 1.82; font-style: italic; flex: 1; margin-bottom: 24px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; flex-shrink: 0; color: #fff; }
.testi-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12px; color: #7Ba8c4; margin-top: 2px; }
.testi-platform-sep { height: 1px; background: rgba(255,255,255,.07); margin: 18px 0 14px; }
.testi-platform {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 7px 12px;
  transition: background .2s, border-color .2s;
}
.testi-platform:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.tp-logo { flex-shrink: 0; display: block; }
.tp-name { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.tp-verified { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); margin-left: 2px; }

/* ═══════════════════════════════════════════════════════════
   PRICING (white)
   ═══════════════════════════════════════════════════════════ */
.tab-row {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 48px;
  background: var(--s-soft); border: 1px solid var(--s-border);
  border-radius: 12px; padding: 5px; width: fit-content; margin-left: auto; margin-right: auto;
}
.tab-btn {
  padding: 10px 28px; border-radius: 9px; font-size: 14px; font-weight: 600;
  cursor: pointer; color: var(--t-m); border: none; background: transparent; transition: all .2s;
}
.tab-btn.on { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; box-shadow: 0 4px 20px rgba(0,85,179,.3); }
.p-panel { display: none; }
.p-panel.on { display: block; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price-grid.solo { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
.p-card {
  background: var(--s-card); border: 1.5px solid var(--s-border);
  border-radius: 22px; padding: 42px; position: relative; transition: all .3s;
  box-shadow: var(--s-shadow);
}
.p-card.hot { border-color: var(--blue); box-shadow: 0 0 40px rgba(0,85,179,.12), var(--s-hover); }
.p-card:hover { transform: translateY(-5px); box-shadow: var(--s-hover); }
.p-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: 5px 14px; border-radius: 100px; white-space: nowrap;
}
.p-plan { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--t-m); margin-bottom: 12px; }
.p-amt  { font-family: 'Space Grotesk', sans-serif; font-size: 52px; font-weight: 800; color: var(--t-h); line-height: 1; }
.p-per  { font-size: 15px; color: var(--t-m); }
.p-desc { font-size: 13px; color: var(--t-m); margin: 10px 0 28px; line-height: 1.65; }
.p-hr   { height: 1px; background: var(--s-bsub); margin-bottom: 28px; border: none; }
.p-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.p-feats li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--t-b); line-height: 1.5; }
.p-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,85,179,.35);
}
.p-card.hot .p-dot { background: var(--cyan); box-shadow: 0 0 6px rgba(0,174,239,.4); }
.p-action {
  margin-top: 30px; display: block; text-align: center;
  padding: 14px; border-radius: 10px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all .2s;
}
.p-card.hot .p-action { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; box-shadow: 0 4px 20px rgba(0,85,179,.3); }
.p-card.hot .p-action:hover { box-shadow: 0 8px 32px rgba(0,85,179,.45); }
.p-card:not(.hot) .p-action { background: transparent; color: var(--blue); border: 1.5px solid rgba(0,85,179,.25); }

/* ── Discount pricing (global) ─────────────────────────────── */
.p-was { font-size:13px; color:#999; text-decoration:line-through; margin-bottom:3px; }
.p-save { display:inline-block; background:#e8f5e9; color:#2e7d32; font-size:11px; font-weight:700; padding:3px 10px; border-radius:20px; margin-bottom:10px; }
.p-split-row { margin-bottom:10px; }
.p-split-lbl { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:#6b8aaa; margin-bottom:2px; }
.p-split-was { font-size:12px; color:#bbb; text-decoration:line-through; margin-left:8px; vertical-align:middle; }
.dbc-price-was { font-size:14px; color:rgba(255,255,255,.35); text-decoration:line-through; margin-bottom:4px; }
.dbc-save { display:inline-block; background:rgba(46,125,50,.22); color:#81c784; font-size:11px; font-weight:700; padding:3px 10px; border-radius:20px; margin-bottom:12px; border:1px solid rgba(46,125,50,.3); }
.sm-was { font-size:10px; color:rgba(255,255,255,.3); text-decoration:line-through; display:block; line-height:1; margin-bottom:2px; }
.p-card:not(.hot) .p-action:hover { background: rgba(0,85,179,.06); border-color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   BLOG / INSIGHTS (soft)
   ═══════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card {
  background: var(--s-card); border: 1.5px solid var(--s-border);
  border-radius: 20px; overflow: hidden; transition: all .3s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  box-shadow: var(--s-shadow);
}
.blog-card:hover { border-color: rgba(0,85,179,.22); transform: translateY(-5px); box-shadow: var(--s-hover); }
.blog-img-wrap { height: 175px; position: relative; overflow: hidden; }
.blog-img-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-img-glow { position: absolute; inset: 0; }
.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.blog-cat::before { content: ''; width: 16px; height: 2px; background: var(--blue); border-radius: 1px; }
.blog-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--t-h); flex: 1; }
.blog-excerpt { font-size: 13px; color: var(--t-m); line-height: 1.7; margin-bottom: 20px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--s-bsub); }
.blog-date { font-size: 12px; color: var(--t-x); }
.blog-read { font-size: 12px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 5px; }

/* ── Blog featured card (insights page) ──────────────────── */
.blog-featured-card {
  display: grid; grid-template-columns: 420px 1fr; gap: 0;
  background: var(--s-card); border: 1.5px solid var(--s-border);
  border-radius: 22px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--s-shadow); transition: all .3s; margin-bottom: 20px;
}
.blog-featured-card:hover { transform: translateY(-4px); box-shadow: var(--s-hover); border-color: rgba(0,85,179,.22); }
.bfc-img {
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.bfc-body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.bfc-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800;
  line-height: 1.3; color: var(--t-h); margin-bottom: 14px; flex: 1;
}
@media (max-width: 900px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .bfc-img { min-height: 200px; }
  .bfc-body { padding: 28px; }
  .bfc-title { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND (dark)
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 110px 0;
  background: linear-gradient(135deg, #06194A 0%, #020B1A 50%, #041228 100%);
  position: relative; overflow: hidden;
}

.dark-section-black { background: #020B1A; color: #C8DFEF; }
.dark-section-black h1, .dark-section-black h2, .dark-section-black h3 { color: #fff; }
.dark-section-black p { color: #C8DFEF; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,174,239,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,174,239,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-band::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,85,179,.12), transparent); pointer-events: none;
}
.cta-band-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; padding: 0 40px; }
.cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px,4vw,52px); font-weight: 800; line-height: 1.1; margin-bottom: 18px; color: #fff; }
.cta-band p { font-size: 18px; color: #C8DFEF; line-height: 1.8; margin-bottom: 40px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band-contacts {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.7);
}
.cta-band-contacts span {
  display: flex; align-items: center; gap: 8px;
}

/* ── WHY CAREDESK — light feature grid ───────────────────── */
.feature-icon-row {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px; border-radius: 16px;
  background: var(--s-card); border: 1px solid var(--s-border); box-shadow: var(--s-shadow);
  transition: all .3s;
}
.feature-icon-row:hover { box-shadow: var(--s-hover); border-color: rgba(0,85,179,.2); transform: translateY(-2px); }
.fi-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,85,179,.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.fi-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--t-h); }
.fi-desc  { font-size: 14px; color: var(--t-m); line-height: 1.7; }

/* Stat number cards (light) */
.stat-card-light {
  background: var(--s-card); border: 1.5px solid var(--s-border);
  border-radius: 18px; padding: 32px 24px; text-align: center;
  box-shadow: var(--s-shadow); transition: all .3s;
}
.stat-card-light:hover { box-shadow: var(--s-hover); transform: translateY(-3px); border-color: rgba(0,85,179,.2); }
.scl-num { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 800; line-height: 1; margin-bottom: 8px; background: linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.scl-lbl { font-size: 13px; color: var(--t-m); line-height: 1.5; }

/* ── ABOUT PAGE — OFFICE CARDS ───────────────────────────── */
.office-card { background: #fff; color: #07132A; border-radius: 20px; padding: 40px; }
.office-card h3 { color: #07132A; }
.office-card .office-role { color: #4a6885; }
.office-card p { color: #253F5A; }
.office-details span { color: #253F5A; }
.office-details span svg { stroke: #4a6885; }
.office-flag { font-size: 40px; margin-bottom: 20px; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb { font-size: 13px; color: #8BAAC4; display: flex; align-items: center; gap: 6px; justify-content: center; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan-b); }

/* ── MOBILE MENU ──────────────────────────────────────────── */
#mobileMenu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998; background: rgba(2,11,26,.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 100px 40px 60px;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600;
  color: #C8DFEF; text-decoration: none; padding: 12px 24px;
  border-radius: 12px; transition: all .2s; width: 100%; text-align: center;
}
#mobileMenu a:hover { color: var(--cyan-b); background: rgba(0,174,239,.08); }

/* ── SUB-PAGE FORM STYLES ─────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--t-b); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--s-soft); border: 1.5px solid var(--s-border);
  border-radius: 10px; padding: 13px 16px; font-size: 14px; color: var(--t-h);
  font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,85,179,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--t-x); }
.form-group select option { background: #fff; color: var(--t-h); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media(max-width:1100px) {
  #nav, #nav.scrolled { padding: 16px 40px; }
  .section-inner, .stats-inner, .ft-inner { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding: 140px 40px 70px; }
  .hero-slide { padding: 110px 40px 155px; }
  .slide-2col { grid-template-columns: 1fr; gap: 40px; }
  .slide-visual { display: none; }
  .slide-tabs { padding: 0 40px; }
  .div-cards-wrap { grid-template-columns: 1fr; }
  .cap-tiles-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .res-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width:768px) {
  #nav, #nav.scrolled { padding: 14px 24px; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .section-inner, .stats-inner, .ft-inner { padding-left: 24px; padding-right: 24px; }
  .section { padding: 70px 0; }
  .page-hero { padding: 130px 24px 60px; }
  .hero-slide { padding: 100px 24px 140px; }
  .slide-tabs { padding: 0 24px; }
  .st-label { display: none; }
  .slide-metrics { flex-wrap: wrap; }
  .sm-item { padding: 0 12px; }
  .sm-num { font-size: 18px; }
  .cap-tiles-grid, .industries-grid, .blog-grid, .res-grid, .testi-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .stats-inner { justify-content: center; gap: 24px; }
  .cta-band-contacts { flex-direction: column; gap: 12px; align-items: center; }
}
