/* ─── Variables ─────────────────────────────── */
:root {
  /* Dark surfaces are charcoal (matches logo wordmark), accents are red (matches logo X) */
  --navy:       #1a2332;  /* charcoal — dark buttons, avatars, stats band */
  --navy-dark:  #141b27;  /* deeper charcoal — dark sections, footer */
  --navy-mid:   #232e40;
  --navy-deep:  #0c1118;
  --blue:       #cf3a23;  /* primary red accent */
  --blue-light: #e8472c;  /* bright red */
  --orange:     #ff5a36;  /* coral-red highlight */
  --orange-dark:#e0492f;
  --white:      #ffffff;
  --gray-50:    #f8f9fb;
  --gray-100:   #f0f2f5;
  --gray-200:   #e1e5ed;
  --gray-400:   #9aa3b2;
  --gray-600:   #4a5568;
  --gray-700:   #374151;
  --gray-800:   #1a202c;
  --text:       #1a202c;
  --text-muted: #4a5568;
  --nav-h:      72px;
  --nav-h-sm:   60px;
  --ease:       0.3s ease;
  --ease-slow:  0.6s ease;
  --sh-sm:      0 1px 3px rgba(0,0,0,.08);
  --sh-md:      0 4px 16px rgba(0,0,0,.12);
  --sh-lg:      0 8px 32px rgba(0,0,0,.16);
  --sh-blue:    0 8px 32px rgba(207,58,35,.22);
  --r:          4px;
  --r-lg:       8px;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── Scroll progress bar ────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 9999;
  transition: width .1s linear;
}

/* ─── Utilities ──────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--gray-800);
  line-height: 1.18; letter-spacing: -.025em;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.0625rem; color: var(--text-muted);
  margin-top: 14px; max-width: 560px; line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,.65); }
.learn-more {
  font-size: .875rem; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--ease);
}
.learn-more:hover { gap: 10px; }
.learn-more-org {
  font-size: .875rem; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--ease);
}
.learn-more-org:hover { gap: 10px; }
.btn-filled {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 14px 28px; font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; border-radius: var(--r);
  transition: var(--ease);
}
.btn-filled:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--sh-blue); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 27px; font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,.5);
  transition: var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 15px 30px; font-size: .9375rem; font-weight: 600;
  border-radius: var(--r); transition: var(--ease);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,35,50,.25); }
.btn-dark-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 29px; font-size: .9375rem; font-weight: 600;
  border-radius: var(--r); border: 1.5px solid var(--navy);
  transition: var(--ease);
}
.btn-dark-outline:hover { background: var(--navy); color: var(--white); }

/* ─── Cookie Banner ──────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8888;
  background: rgba(12,17,24,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  animation: slideUpBanner .4s ease;
}
@keyframes slideUpBanner { from { transform: translateY(100%); } to { transform: translateY(0); } }
#cookie-banner .cookie-text {
  font-size: .875rem; color: rgba(255,255,255,.78); flex: 1;
}
#cookie-banner .cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-ca {
  background: var(--blue); color: var(--white);
  padding: 10px 22px; font-size: .8125rem; font-weight: 600;
  border-radius: var(--r); transition: var(--ease); border: none; cursor: pointer;
}
.btn-ca:hover { background: var(--blue-light); }
.btn-cc {
  font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.6);
  text-decoration: underline; cursor: pointer; background: none; border: none;
  transition: color var(--ease);
}
.btn-cc:hover { color: var(--white); }
.btn-cdismiss {
  color: rgba(255,255,255,.4); font-size: 1.5rem; line-height: 1;
  padding: 4px; cursor: pointer; background: none; border: none;
  transition: color var(--ease);
}
.btn-cdismiss:hover { color: var(--white); }

/* ─── Header / Nav ───────────────────────────── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: height var(--ease), background var(--ease), box-shadow var(--ease);
}
#main-header.scrolled {
  height: var(--nav-h-sm);
  background: rgba(255,255,255,.99);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; z-index: 2;
}
.nav-logo img { height: 40px; width: auto; object-fit: contain; transition: height var(--ease); }
#main-header.scrolled .nav-logo img { height: 34px; }

/* Nav menu */
.nav-menu {
  display: flex; align-items: center;
  height: 100%; gap: 0; flex: 1;
  margin-left: 20px;
}
.nav-item {
  position: static; height: 100%;
  display: flex; align-items: center;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 14px; height: 100%;
  font-size: .8125rem; font-weight: 600;
  color: var(--gray-700);
  transition: color var(--ease); white-space: nowrap;
}
.nav-link svg { transition: transform var(--ease); flex-shrink: 0; }
.nav-item:hover > .nav-link { color: var(--blue); }
.nav-item.has-mega:hover > .nav-link svg { transform: rotate(180deg); }
.nav-item:hover .mega-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Mega dropdown */
.mega-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  padding: 36px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
}
#main-header.scrolled .mega-menu { top: var(--nav-h-sm); }
.mega-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; gap: 48px;
}
.mega-col { flex: 1; min-width: 0; }
.mega-col-hd {
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul li a {
  display: block; padding: 9px 12px;
  font-size: .875rem; font-weight: 500; color: var(--gray-700);
  border-radius: var(--r); transition: var(--ease);
}
.mega-col ul li a:hover { color: var(--blue); background: var(--gray-50); }
.mega-promo {
  width: 260px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mega-promo-tag {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.mega-promo h4 { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 12px; }
.mega-promo p { font-size: .8125rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 20px; }
.mega-promo a {
  font-size: .8125rem; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--ease);
}
.mega-promo a:hover { gap: 8px; }

/* Nav right */
.nav-right {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.nav-search {
  color: var(--gray-600); padding: 8px;
  transition: color var(--ease); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-search:hover { color: var(--blue); }
.btn-nav-cta {
  background: var(--orange); color: var(--white);
  padding: 9px 18px; font-size: .8125rem; font-weight: 600;
  border-radius: var(--r); transition: var(--ease);
}
.btn-nav-cta:hover { background: var(--orange-dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-800); transition: var(--ease); border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
#mobile-menu {
  display: none; position: fixed; inset: 0;
  z-index: 900; background: var(--navy-dark);
  padding: 90px 32px 40px; overflow-y: auto;
}
#mobile-menu.open { display: block; }
.mob-link {
  display: block; padding: 16px 0;
  font-size: 1.125rem; font-weight: 600; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--ease);
}
.mob-link:hover { color: var(--orange); }
.mob-sub { padding: 4px 0 12px; }
.mob-sub a {
  display: block; padding: 8px 0 8px 16px;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.mob-sub a:hover { color: var(--orange); }

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative; height: 90vh; min-height: 620px;
  overflow: hidden; margin-top: var(--nav-h);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity .85s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) { background: linear-gradient(130deg, #11161f 0%, #1a2332 50%, #4a1812 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(130deg, #0c1118 0%, #20140f 46%, #6b2118 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(130deg, #141b27 0%, #1a2332 52%, #3a120e 100%); }

/* Moving grid overlay */
.hero-slide::before {
  content: ''; position: absolute; inset: -80px;
  background-image:
    linear-gradient(rgba(207,58,35,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,58,35,.13) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 28s linear infinite;
}
.hero-slide:nth-child(2)::before {
  background-image:
    linear-gradient(rgba(207,58,35,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,58,35,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  animation-duration: 20s;
}
.hero-slide:nth-child(3)::before {
  background-image: radial-gradient(circle, rgba(207,58,35,.22) 1px, transparent 1px);
  background-size: 36px 36px;
  animation-duration: 16s;
}
@keyframes gridDrift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(64px,64px); }
}
/* Scan line */
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%, transparent 46%,
    rgba(207,58,35,.05) 50%,
    transparent 54%, transparent 100%);
  animation: scanLine 7s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { transform: translateY(-110%); }
  100% { transform: translateY(110%); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(207,58,35,.25);
  border: 1px solid rgba(207,58,35,.4);
  color: rgba(255,255,255,.88);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}
.hero-heading {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800; color: var(--white);
  line-height: 1.08; letter-spacing: -.035em;
  max-width: 720px; margin-bottom: 22px;
}
.hero-heading em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,.7);
  max-width: 540px; line-height: 1.75; margin-bottom: 40px; font-weight: 300;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Slide reveal animation */
.hero-slide.active .hero-eyebrow  { animation: reveal .7s ease .05s both; }
.hero-slide.active .hero-heading  { animation: reveal .7s ease .15s both; }
.hero-slide.active .hero-sub      { animation: reveal .7s ease .25s both; }
.hero-slide.active .hero-ctas     { animation: reveal .7s ease .35s both; }
.hero-eyebrow,.hero-heading,.hero-sub,.hero-ctas { opacity: 0; }
@keyframes reveal {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero controls */
.hero-ctrl {
  position: absolute; bottom: 44px; left: 0; right: 0;
  z-index: 3; display: flex; align-items: center;
  justify-content: center; gap: 14px;
}
.harrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.2); transition: var(--ease); cursor: pointer;
}
.harrow:hover { border-color: var(--white); background: rgba(207,58,35,.35); }
.hdots { display: flex; gap: 8px; }
.hdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: var(--ease);
}
.hdot.on { background: var(--white); width: 26px; border-radius: 4px; }

/* ─── Services ───────────────────────────────── */
.services { padding: 100px 0; background: var(--white); }
.sec-hdr { margin-bottom: 56px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.svc-card {
  padding: 36px 32px;
  border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  background: var(--white); transition: var(--ease);
  position: relative; overflow: hidden;
  display: block; color: inherit;
}
.svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--sh-blue); border-color: rgba(207,58,35,.18); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 58px; height: 58px; border-radius: var(--r-lg);
  background: rgba(26,35,50,.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--ease);
}
.svc-card:hover .svc-icon { background: rgba(207,58,35,.12); }
.svc-card h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--gray-800);
  margin-bottom: 10px; letter-spacing: -.01em;
}
.svc-card p {
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 22px;
}

/* ─── News ───────────────────────────────────── */
.latest-news { padding: 100px 0; background: var(--gray-50); }
.sec-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
}
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--ease); display: block; color: inherit;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.news-stripe { height: 5px; background: var(--blue); }
.news-body { padding: 28px; }
.news-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.news-date {
  font-size: .72rem; font-weight: 600; color: var(--gray-400);
  letter-spacing: .05em; text-transform: uppercase;
}
.news-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(207,58,35,.08); color: var(--blue);
  padding: 3px 8px; border-radius: 3px;
}
.news-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--gray-800);
  line-height: 1.42; margin-bottom: 10px; letter-spacing: -.01em;
}
.news-card p {
  font-size: .875rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}

/* ─── Blog / Ideas ───────────────────────────── */
.blog-sec {
  padding: 100px 0; background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.blog-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(207,58,35,.1) 1px, transparent 1px);
  background-size: 26px 26px;
}
.blog-hdr { margin-bottom: 48px; position: relative; z-index: 1; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  position: relative; z-index: 1;
}
.blog-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 32px; transition: var(--ease);
  display: block; color: inherit;
}
.blog-card:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(207,58,35,.45);
  transform: translateY(-5px);
}
.blog-date { font-size: .72rem; color: rgba(255,255,255,.38); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px; }
.blog-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,107,53,.14); color: var(--orange);
  border: 1px solid rgba(255,107,53,.24);
  padding: 3px 9px; border-radius: 3px; margin-bottom: 16px;
}
.blog-card h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--white);
  line-height: 1.42; margin-bottom: 12px; letter-spacing: -.01em;
}
.blog-card p {
  font-size: .875rem; color: rgba(255,255,255,.5);
  line-height: 1.75; margin-bottom: 24px;
}

/* ─── Client Success ─────────────────────────── */
.client-sec { padding: 100px 0; background: var(--white); overflow: hidden; }
.client-track { position: relative; min-height: 280px; margin-top: 48px; }
.ccard {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  display: grid; grid-template-columns: 220px 1fr 260px;
  gap: 60px; align-items: center;
  transition: opacity .65s ease;
}
.ccard.on { opacity: 1; pointer-events: auto; position: relative; }
.ccard-left { display: flex; flex-direction: column; align-items: flex-start; }
.cavatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 800; color: var(--white);
  margin-bottom: 18px;
}
.cname { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 5px; }
.cindustry { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.cchallenge-lbl {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px;
}
.cchallenge {
  font-size: 1.25rem; font-weight: 600; color: var(--gray-800);
  line-height: 1.45; letter-spacing: -.02em;
}
.cmetric {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 36px 28px; text-align: center;
}
.cmetric-num {
  font-size: 2.75rem; font-weight: 800; color: var(--white);
  letter-spacing: -.04em; line-height: 1; margin-bottom: 10px;
}
.cmetric-lbl { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.45; }
.client-ctrl {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 48px;
}
.carrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600); display: flex; align-items: center; justify-content: center;
  transition: var(--ease); cursor: pointer;
}
.carrow:hover { border-color: var(--blue); color: var(--blue); background: rgba(207,58,35,.06); }
.cdots { display: flex; gap: 8px; }
.cdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: var(--ease);
}
.cdot.on { background: var(--blue); width: 26px; border-radius: 4px; }
.client-cta { text-align: center; margin-top: 48px; }

/* ─── Stats Bar ──────────────────────────────── */
.stats-bar { background: var(--navy); padding: 72px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.1);
}
.stat-item {
  background: var(--navy);
  padding: 44px 32px; text-align: center;
}
.stat-num {
  font-size: clamp(2.25rem,4vw,3.5rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.045em; line-height: 1; margin-bottom: 10px;
}
.stat-num.accented { color: var(--orange); }
.stat-lbl {
  font-size: .8125rem; font-weight: 500;
  color: rgba(255,255,255,.5); letter-spacing: .04em; text-transform: uppercase;
}

/* ─── Work With Us ───────────────────────────── */
.wcu {
  padding: 128px 0; background: var(--gray-50);
  text-align: center; position: relative; overflow: hidden;
}
.wcu::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(207,58,35,.07) 0%, transparent 68%);
  pointer-events: none;
}
.wcu-head {
  font-size: clamp(2rem,4vw,3.25rem); font-weight: 800;
  color: var(--gray-800); letter-spacing: -.03em;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.wcu-sub {
  font-size: 1.0625rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 44px;
  line-height: 1.75; position: relative; z-index: 1;
}
.wcu-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; position: relative; z-index: 1;
}

/* ─── Footer ─────────────────────────────────── */
footer { background: var(--navy-dark); color: var(--white); }
.footer-top {
  padding: 80px 0 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px;
}
.ftbrand img { height: 44px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 4px; }
.ftbrand p {
  font-size: .875rem; color: rgba(255,255,255,.45);
  line-height: 1.75; margin-top: 16px; max-width: 230px;
}
.ftcol h4 {
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 22px;
}
.ftcol ul li { margin-bottom: 11px; }
.ftcol ul li a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.ftcol ul li a:hover { color: var(--white); }
.footer-social {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 12px;
}
.fsoc {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: var(--ease);
}
.fsoc:hover { border-color: var(--blue); color: var(--white); background: rgba(207,58,35,.2); }
.footer-btm {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-btm p { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-btm-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-btm-links a { font-size: .8125rem; color: rgba(255,255,255,.3); transition: color var(--ease); }
.footer-btm-links a:hover { color: rgba(255,255,255,.65); }

/* ═══ Inner pages ═══════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  margin-top: var(--nav-h);
  background: linear-gradient(130deg, #11161f 0%, #1a2332 55%, #3a120e 100%);
  padding: 88px 0 76px;
}
.page-hero::before {
  content: ''; position: absolute; inset: -40px;
  background-image:
    linear-gradient(rgba(207,58,35,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,58,35,.10) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: gridDrift 30s linear infinite;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span.sep { color: rgba(255,255,255,.3); }
.breadcrumb span.cur { color: rgba(255,255,255,.85); }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(207,58,35,.22); border: 1px solid rgba(207,58,35,.4);
  color: rgba(255,255,255,.88);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 100px; margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -.03em; max-width: 820px;
}
.page-hero .ph-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem); color: rgba(255,255,255,.68);
  max-width: 620px; margin-top: 20px; line-height: 1.7; font-weight: 300;
}
.content-sec { padding: 84px 0; }
.content-sec.alt { background: var(--gray-50); }
.content-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start;
}
.prose > * + * { margin-top: 20px; }
.prose p { font-size: 1.0125rem; color: var(--text-muted); line-height: 1.85; }
.prose h2 {
  font-size: 1.65rem; font-weight: 800; color: var(--gray-800);
  letter-spacing: -.02em; margin-top: 8px;
}
.prose h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--gray-800);
  letter-spacing: -.01em; margin-top: 14px;
}
.prose ul.ticks { display: flex; flex-direction: column; gap: 12px; }
.prose ul.ticks li {
  position: relative; padding-left: 30px;
  font-size: 1rem; color: var(--text-muted); line-height: 1.6;
}
.prose ul.ticks li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(207,58,35,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cf3a23' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.aside-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-sm);
}
.aside-card h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.aside-card .fact { margin-bottom: 18px; }
.aside-card .fact:last-child { margin-bottom: 0; }
.aside-card .fact .n { font-size: 1.75rem; font-weight: 800; color: var(--gray-800); letter-spacing: -.03em; }
.aside-card .fact .l { font-size: .85rem; color: var(--text-muted); }

/* Tile grid for landing pages */
.tiles { padding: 84px 0; }
.tiles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* CTA band */
.cta-band {
  background: var(--navy); padding: 84px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(207,58,35,.16) 0%, transparent 68%);
}
.cta-band h2 { position: relative; z-index: 1; font-size: clamp(1.7rem,3.2vw,2.5rem); font-weight: 800; color: var(--white); letter-spacing: -.025em; margin-bottom: 16px; }
.cta-band p { position: relative; z-index: 1; color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto 34px; line-height: 1.7; }
.cta-band .btns { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-dark-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-dark-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* Simple form (search/contact) */
.form-wrap { max-width: 640px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; font-family: inherit; font-size: .95rem;
  border: 1px solid var(--gray-200); border-radius: var(--r); background: var(--white);
  color: var(--text); transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(207,58,35,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.note-box {
  background: rgba(207,58,35,.06); border: 1px solid rgba(207,58,35,.2);
  border-radius: var(--r-lg); padding: 18px 22px; margin-bottom: 28px;
  font-size: .9rem; color: var(--gray-700);
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width:1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ftbrand { grid-column: 1 / -1; }
  .mega-promo { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width:900px) {
  .services-grid, .news-grid, .blog-grid, .tiles-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .ccard { grid-template-columns: 1fr; gap: 32px; }
  .ccard-left { align-items: center; }
  .cmetric { max-width: 300px; margin: 0 auto; }
}
@media (max-width:768px) {
  .container { padding: 0 24px; }
  .nav-menu, .nav-right .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .news-grid, .blog-grid, .tiles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ftbrand { grid-column: 1 / -1; }
  .footer-btm { flex-direction: column; text-align: center; }
  .wcu-btns { flex-direction: column; align-items: stretch; }
  .wcu-btns a { text-align: center; justify-content: center; }
  .sec-row { flex-direction: column; align-items: flex-start; }
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-ctrl { bottom: 28px; }
}
@media (max-width:480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
