/* ═══════════════════════════════════════════
   Campbell's Code — Premium CSS
   Dark luxury tech + Glassmorphism
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue:       #3a8fd6;
  --blue-dim:   #2d7bc0;
  --blue-10:    rgba(58,143,214,.10);
  --blue-06:    rgba(58,143,214,.06);
  --blue-glow:  rgba(58,143,214,.15);
  --green:      #4ade80;
  --bg-0:       #050911;
  --bg-1:       #0a0f1a;
  --bg-2:       #0e1524;
  --glass:      rgba(255,255,255,.04);
  --glass-brd:  rgba(255,255,255,.08);
  --glass-hover:rgba(58,143,214,.06);
  --t-w:        #ffffff;
  --t-l:        #dde4ef;
  --t-m:        #8b9ab8;
  --t-d:        #5a6a84;
  --ff-d:       'Instrument Serif', Georgia, serif;
  --ff-b:       'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── Base ── */
body {
  font-family: var(--ff-b);
  background: var(--bg-1);
  color: var(--t-m);
  overflow-x: hidden;
}
::selection { background: var(--blue); color: #fff; }

/* ── Utility ── */
.cc-section { padding: 120px 0; }
.cc-bg-1 { background: var(--bg-1); }
.cc-bg-2 { background: var(--bg-2); }

/* ── Overline ── */
.overline {
  display: inline-block;
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.overline-green { color: var(--green); }

/* ── Display Headings — Instrument Serif ── */
.display-h {
  font-family: var(--ff-d);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--t-w);
  margin-bottom: 20px;
  letter-spacing: -.3px;
}
.display-h em {
  font-style: italic;
  color: var(--blue);
}
.body-lg {
  font-size: 17px;
  line-height: 1.75;
  color: var(--t-m);
}

/* ── Buttons ── */
.btn-accent {
  background: var(--blue);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.btn-accent:hover {
  background: var(--blue-dim);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(58,143,214,.3);
}
.btn-white {
  background: #fff;
  color: var(--bg-2);
  font-weight: 600;
  border-radius: 6px;
  transition: all .35s;
}
.btn-white:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,.12);
}
.btn-outline-light { border-color: rgba(255,255,255,.2); }
.btn-outline-light:hover { border-color: var(--blue); color: var(--blue); background: transparent; }

/* ── Glassmorphism Card ── */
/* ── Core glassmorphism ── */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.02) 100%
  );
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 4px 24px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.20);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: hidden;
}
/* Top-edge shimmer line */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.35) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.35) 65%,
    transparent 100%
  );
  z-index: 1;
}
/* Inner surface gradient */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,.04) 0%,
    transparent 60%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.glass-card > * { position: relative; z-index: 1; }
.glass-card:hover {
  background: linear-gradient(
    135deg,
    rgba(58,143,214,.10) 0%,
    rgba(255,255,255,.04) 100%
  );
  border-color: rgba(58,143,214,.30);
  transform: translateY(-5px);
  box-shadow:
    0 8px 40px rgba(0,0,0,.35),
    0 0 0 1px rgba(58,143,214,.12),
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -1px 0 rgba(0,0,0,.20),
    0 0 60px rgba(58,143,214,.07);
}
.glass-accent {
  background: linear-gradient(
    135deg,
    rgba(58,143,214,.08) 0%,
    rgba(58,143,214,.02) 100%
  );
  border-color: rgba(58,143,214,.20);
  box-shadow:
    0 4px 24px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(58,143,214,.20),
    inset 0 -1px 0 rgba(0,0,0,.15),
    0 0 40px rgba(58,143,214,.05);
}
.glass-card-title {
  font-family: var(--ff-d);
  font-size: 24px;
  color: var(--t-w);
  line-height: 1.3;
}
.glass-card-desc {
  font-size: 15px;
  color: var(--t-m);
  line-height: 1.7;
}



/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.cc-nav {
  padding: 16px 0;
  transition: all .4s;
  border-bottom: 1px solid transparent;
}
.cc-nav.scrolled {
  background: rgba(10,15,26,.94) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-brd);
  padding: 8px 0;
}
.brand-text {
  font-family: var(--ff-b);
  font-size: 17px;
  font-weight: 700;
  color: var(--t-w);
  letter-spacing: -.3px;
}
.cc-nav .nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--t-d);
  transition: color .3s;
  padding: .5rem .75rem;
}
.cc-nav .nav-link:hover,
.cc-nav .nav-link.active { color: var(--t-w); }
.cc-nav .navbar-toggler { color: var(--t-w); }
.cc-nav .navbar-toggler:focus { box-shadow: none; }


/* ═══════════════════════════════════════════
   HERO — COMMAND CENTER UPGRADE
   ═══════════════════════════════════════════ */
.cc-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-0);
  display: flex;
  align-items: center;
}
#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Atmospheric overlay layers */
.h-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%,
    transparent 20%,
    rgba(6,10,20,.6) 70%,
    rgba(6,10,20,.92) 100%);
  z-index: 1;
  pointer-events: none;
}
.h-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(0deg, var(--bg-1) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.h-glow-left {
  position: absolute;
  left: -10%;
  top: 10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,143,214,.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}
.h-glow-right {
  position: absolute;
  right: -5%;
  top: 30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,200,240,.07) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

/* Shell / layout */
.h-shell {
  position: relative;
  z-index: 3;
  width: 100%;
}
.h-row {
  min-height: 100vh;
  padding: 120px 0 80px;
  gap: 32px 0;
}

/* ── Copy column ── */
.h-copy-col { padding-top: 32px; }

.h-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
  opacity: 0; /* GSAP controls */
}
.hey-bar {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(58,143,214,.3));
}
.hey-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:.5; transform: scale(.6); }
}

/* Headline */
.h-headline {
  font-family: var(--ff-d);
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.5px;
  color: var(--t-w);
  margin-bottom: 28px;
}
/* Each .hl is a clip container; .hl-inner slides up via GSAP */
.hl {
  display: block;
  overflow: hidden;
  line-height: 1.12;
}
.hl-inner {
  display: block;
  transform: translateY(110%);   /* GSAP starts here */
  opacity: 0;
}
.hl-em .hl-inner em {
  font-style: italic;
  color: var(--blue);
  text-shadow: 0 0 60px rgba(58,143,214,.35);
}

/* Body copy */
.h-sub {
  font-size: 17px;
  line-height: 1.78;
  color: var(--t-m);
  max-width: 500px;
  margin-bottom: 36px;
  opacity: 0;
}

/* CTA row */
.h-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
}
.h-btn-primary {
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--ff-b);
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 4px 24px rgba(58,143,214,.25);
}
.h-btn-primary:hover {
  background: var(--blue-dim);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(58,143,214,.40);
}
.h-btn-ghost {
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--ff-b);
  background: rgba(255,255,255,.05);
  color: var(--t-l);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.h-btn-ghost:hover {
  background: rgba(58,143,214,.10);
  border-color: rgba(58,143,214,.35);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust line */
.h-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--t-f);
  letter-spacing: .3px;
  margin: 0;
  opacity: 0;
}
.htl-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: htlPulse 2.2s ease-in-out infinite;
}
@keyframes htlPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}


/* ═══════════════════════════════════════════
   ORB SYSTEM
   ═══════════════════════════════════════════ */
.h-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-scene {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* The full orb system sits in center of .h-scene */
.orb-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* GSAP controls */
}

/* Atmosphere blob behind the whole orb */
.orb-atmosphere {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(58,143,214,.18) 0%,
    rgba(58,143,214,.06) 40%,
    transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: atmoBreathe 4s ease-in-out infinite;
}
@keyframes atmoBreathe {
  0%,100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.06); }
}

/* SVG rotating rings — each is 100% of .orb-system */
.orb-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.orb-r1 { animation: ringSpin 24s linear infinite; }
.orb-r2 { animation: ringSpin 40s linear infinite reverse; }
.orb-r3 { animation: ringSpin 60s linear infinite; }
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* The scan/highlight line on ring 1 */
.orb-scan-line {
  animation: scanSpin 4s linear infinite;
  transform-origin: 250px 250px;
}
@keyframes scanSpin {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1507; } /* circumference ≈ 2π×238 */
}

/* Orbiting particle tracks */
.op-track {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.op-a { animation: trackSpin 8s linear infinite; }
.op-b { animation: trackSpin 14s linear infinite reverse; }
.op-c { animation: trackSpin 20s linear infinite; }
@keyframes trackSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Nodes sit at the top of their track circle */
.op-node {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 50%;
}
.op-node-sm {
  width: 6px; height: 6px;
  margin-left: -3px; margin-top: -3px;
  background: rgba(58,143,214,.7);
  box-shadow: 0 0 10px rgba(58,143,214,.8);
}
.op-node-md {
  width: 9px; height: 9px;
  margin-left: -4.5px; margin-top: -4.5px;
  background: rgba(96,200,240,.8);
  box-shadow: 0 0 14px rgba(96,200,240,.9), 0 0 28px rgba(96,200,240,.4);
}
.op-node-accent {
  width: 7px; height: 7px;
  margin-left: -3.5px; margin-top: -3.5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,.9), 0 0 20px rgba(58,143,214,.6);
}

/* Core orb */
.orb-core {
  position: relative;
  z-index: 3;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer glow field */
.orb-glow-outer {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(58,143,214,.28) 0%,
    rgba(58,143,214,.08) 50%,
    transparent 75%);
  filter: blur(16px);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity:.8; transform: scale(1); }
  50%      { opacity:1;  transform: scale(1.08); }
}

/* Glass sphere wrap — adds the halo ring */
.orb-glass-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
/* The actual glass sphere */
.orb-glass-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  /* Glassmorphism */
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.10) 0%,
    rgba(58,143,214,.08) 40%,
    rgba(255,255,255,.04) 100%
  );
  border: 1px solid rgba(255,255,255,.20);
  box-shadow:
    0 0 0 1px rgba(58,143,214,.15),
    0 8px 48px rgba(0,0,0,.5),
    0 0 60px rgba(58,143,214,.20),
    inset 0 2px 0 rgba(255,255,255,.22),
    inset 0 -2px 0 rgba(0,0,0,.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Specular highlight 1 — top left lens flare */
.orb-spec {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-spec-1 {
  top: 12%;
  left: 15%;
  width: 36%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,.22) 0%, transparent 100%);
  transform: rotate(-25deg);
}
.orb-spec-2 {
  bottom: 10%;
  right: 12%;
  width: 20%;
  height: 12%;
  background: radial-gradient(ellipse, rgba(58,143,214,.25) 0%, transparent 100%);
}
/* Logo inside sphere */
.orb-logo-img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(58,143,214,.7))
    drop-shadow(0 0 40px rgba(58,143,214,.3));
  position: relative;
  z-index: 1;
}

/* Halo ring around the glass sphere */
.orb-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(58,143,214,.25);
  box-shadow:
    0 0 20px rgba(58,143,214,.15),
    inset 0 0 20px rgba(58,143,214,.08);
  pointer-events: none;
  animation: haloPulse 3.5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%,100% { opacity:.6; transform: scale(1); }
  50%      { opacity:1;  transform: scale(1.03); }
}


/* ═══════════════════════════════════════════
   PROOF WIDGETS (dashboard cards)
   ═══════════════════════════════════════════ */
.pw {
  position: absolute;
  display: flex;
  flex-direction: column;      /* ← column: top-row then status pill */
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  min-width: 200px;
  max-width: 230px;
  border-radius: 14px;
  /* Glassmorphism */
  background: linear-gradient(135deg,
    rgba(255,255,255,.08) 0%,
    rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 24px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.15),
    0 0 0 1px rgba(58,143,214,.05);
  z-index: 10;
  opacity: 0; /* GSAP controls */
  cursor: default;
  transition: border-color .3s, box-shadow .3s;
}
.pw::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3) 50%, transparent);
}
.pw:hover {
  border-color: rgba(58,143,214,.28);
  box-shadow:
    0 8px 36px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 30px rgba(58,143,214,.08);
}

/* Card positions within .h-scene (520×520) */
.pw-tl { top: 20px;  left: 0; }
.pw-rm { top: 50%;   right: 0;   transform: translateY(-50%); }
.pw-bl { bottom: 20px; left: 50%; transform: translateX(-50%); }

/* Top row: icon + label/value side by side */
.pw-top {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Icon */
.pw-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(58,143,214,.20), rgba(58,143,214,.06));
  border: 1px solid rgba(58,143,214,.18);
  color: var(--blue);
  font-size: 16px;
}

/* Text — allow wrapping so it stays in bounds */
.pw-body { flex: 1; min-width: 0; }

.pw-label {
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--t-w);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pw-value {
  font-size: 10px;
  color: var(--t-d);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status badge — sits on its own row, never overflows */
.pw-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--t-d);
  letter-spacing: .4px;
  white-space: nowrap;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  /* no margin-left: auto — it's its own row now */
}
.pw-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  animation: pwDot 2s ease-in-out infinite;
}
.pd-green  { background: var(--green); box-shadow: 0 0 6px var(--green); }
.pd-blue   { background: var(--blue);  box-shadow: 0 0 6px var(--blue); }
.pd-cyan   { background: #60c8f0;      box-shadow: 0 0 6px #60c8f0; }
@keyframes pwDot {
  0%,100% { opacity:1; }
  50% { opacity:.3; }
}


/* ═══════════════════════════════════════════
   HERO RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .h-scene  { width: 460px; height: 460px; }
  .orb-system { width: 370px; height: 370px; }
  .orb-core { width: 190px; height: 190px; }
}
@media (max-width: 991px) {
  .h-row { padding: 110px 0 60px; flex-direction: column; }
  .h-copy-col { order: 2; padding-top: 0; }
  .h-visual-col { order: 1; }
  .h-scene  { width: 380px; height: 380px; }
  .orb-system { width: 300px; height: 300px; }
  .orb-core { width: 155px; height: 155px; }
  .pw { position: static; transform: none !important; }
  .pw-tl, .pw-rm, .pw-bl { position: static; }
  .h-scene .pw-tl,
  .h-scene .pw-rm,
  .h-scene .pw-bl { display: none; }
}
@media (max-width: 576px) {
  .h-scene  { width: 300px; height: 300px; }
  .orb-system { width: 250px; height: 250px; }
  .orb-core { width: 130px; height: 130px; }
  .h-headline { font-size: clamp(36px, 10vw, 52px); }
}


/* ═══════════════════════════════════════════
   PROOF BAR
   ═══════════════════════════════════════════ */
.cc-proof-bar {
  padding: 24px 0;
  background: var(--bg-0);
  border-top: 1px solid var(--glass-brd);
  border-bottom: 1px solid var(--glass-brd);
}
.proof-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.proof-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t-d); white-space: nowrap; }
.proof-items { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 14px; font-weight: 500; color: var(--t-m); }
.proof-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--t-d); margin: 0 6px; }


/* ═══════════════════════════════════════════
   APPROACH STEPS (in solution card)
   ═══════════════════════════════════════════ */
.approach-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.a-step { display: flex; gap: 14px; align-items: flex-start; }
.a-num { font-family: var(--ff-d); font-size: 22px; color: var(--blue); opacity: .5; min-width: 28px; }
.a-step div { display: flex; flex-direction: column; gap: 2px; }
.a-step strong { color: var(--t-l); font-size: 15px; }
.a-step span { font-size: 14px; color: var(--t-d); }


/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */
.svc-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.065) 0%,
    rgba(255,255,255,.018) 100%
  );
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 4px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
}
/* Top shimmer */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.4) 40%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.4) 60%,
    transparent
  );
  z-index: 1;
}
/* Cursor-tracking glow layer */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .4s;
  background: radial-gradient(
    500px circle at var(--mx,50%) var(--my,50%),
    rgba(58,143,214,.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.svc-card:hover {
  border-color: rgba(58,143,214,.28);
  transform: translateY(-6px);
  box-shadow:
    0 12px 48px rgba(0,0,0,.35),
    0 0 0 1px rgba(58,143,214,.10),
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 80px rgba(58,143,214,.06);
}
.svc-card:hover::after { opacity: 1; }
.svc-card > * { position: relative; z-index: 1; }
.svc-icon-wrap {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-wrap i {
  font-size: 24px;
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.svc-glow {
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  opacity: .6;
  transition: opacity .4s;
}
.svc-card:hover .svc-glow { opacity: 1; }
.svc-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.svc-num { font-family: var(--ff-d); font-size: 38px; color: var(--blue); opacity: .15; line-height: 1; }
.svc-price { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); }
.svc-title { font-family: var(--ff-d); font-size: 21px; color: var(--t-w); margin-bottom: 12px; line-height: 1.25; }
.svc-desc { font-size: 14px; color: var(--t-m); line-height: 1.7; margin-bottom: 16px; }
.svc-meta { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid var(--glass-brd); margin-bottom: 20px; }
.svc-meta > div { font-size: 13px; color: var(--t-d); line-height: 1.5; }
.meta-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t-m); margin-bottom: 2px; }
.svc-link { font-size: 14px; font-weight: 600; color: var(--blue); transition: color .3s; }
.svc-link:hover { color: var(--t-w); }
.svc-link i { transition: transform .3s; }
.svc-link:hover i { transform: translateX(4px); }
.svc-cta-card {
  background: linear-gradient(
    135deg,
    rgba(58,143,214,.10) 0%,
    rgba(58,143,214,.03) 60%,
    rgba(255,255,255,.02) 100%
  );
  border-color: rgba(58,143,214,.20);
  box-shadow:
    0 4px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(58,143,214,.25),
    0 0 40px rgba(58,143,214,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-cta-card:hover { border-color: rgba(58,143,214,.45); }
.svc-cta-icon i { font-size: 40px; color: var(--blue); }


/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process-card {
  padding: 36px 24px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.015) 100%
  );
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 20px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(0,0,0,.14);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3) 50%, transparent);
}
.process-card:hover {
  border-color: rgba(58,143,214,.20);
  box-shadow:
    0 8px 32px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.16),
    0 0 40px rgba(58,143,214,.05);
  transform: translateY(-4px);
}
.proc-icon-ring {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 24px;
}
.proc-icon-ring i {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--blue);
  z-index: 1;
}
.proc-ring {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.proc-ring-bg {
  fill: none;
  stroke: var(--glass-brd);
  stroke-width: 2;
}
.proc-ring-fill {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 289;
  transition: stroke-dashoffset 1.5s cubic-bezier(.22,.61,.36,1);
}
.proc-num { display: block; font-family: var(--ff-d); font-size: 28px; color: var(--blue); opacity: .3; margin-bottom: 8px; }
.proc-title { font-family: var(--ff-d); font-size: 20px; color: var(--t-w); margin-bottom: 10px; }
.proc-desc { font-size: 14px; color: var(--t-m); line-height: 1.65; }


/* ═══════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════ */
.ind-card {
  padding: 32px 28px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.065) 0%,
    rgba(255,255,255,.018) 100%
  );
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 20px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.ind-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28) 50%, transparent);
}
.ind-card:hover {
  border-color: rgba(58,143,214,.22);
  background: linear-gradient(
    145deg,
    rgba(58,143,214,.08) 0%,
    rgba(255,255,255,.02) 100%
  );
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 40px rgba(58,143,214,.06);
}
.ind-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-06);
  border: 1px solid var(--blue-10);
  border-radius: 12px;
  margin-bottom: 18px;
}
.ind-icon i { font-size: 22px; color: var(--blue); }
.ind-card h4 { font-size: 16px; font-weight: 600; color: var(--t-w); margin-bottom: 8px; }
.ind-card p { font-size: 14px; color: var(--t-m); line-height: 1.6; margin: 0; }


/* ═══════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════ */
.why-card {
  padding: 28px 24px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.015) 100%
  );
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 16px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.12);
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28) 50%, transparent);
}
.why-card:hover {
  border-color: rgba(58,143,214,.22);
  background: linear-gradient(
    145deg,
    rgba(58,143,214,.07) 0%,
    rgba(255,255,255,.02) 100%
  );
  transform: translateY(-4px);
  box-shadow:
    0 8px 28px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 30px rgba(58,143,214,.05);
}
.why-num { display: block; font-family: var(--ff-d); font-size: 30px; color: var(--blue); opacity: .2; margin-bottom: 10px; line-height: 1; }
.why-card h4 { font-size: 16px; font-weight: 600; color: var(--t-w); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--t-m); line-height: 1.6; margin: 0; }

/* Objections */
.obj-q { font-size: 15px; font-style: italic; color: var(--t-l); margin-bottom: 6px; }
.obj-a { font-size: 14px; color: var(--t-d); line-height: 1.6; }


/* ═══════════════════════════════════════════
   RESULTS / TESTIMONIALS
   ═══════════════════════════════════════════ */
.result-stat { text-align: center; padding: 24px 0; }
.rs-val { display: block; font-family: var(--ff-d); font-size: clamp(36px, 4.5vw, 56px); color: var(--blue); line-height: 1; margin-bottom: 8px; }
.rs-label { font-size: 14px; color: var(--t-d); }

.testi-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.065) 0%,
    rgba(255,255,255,.018) 100%
  );
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 4px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35) 50%, transparent);
}
.testi-card:hover {
  border-color: rgba(58,143,214,.25);
  transform: translateY(-5px);
  box-shadow:
    0 12px 40px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 50px rgba(58,143,214,.06);
}
.testi-quote { color: var(--blue); opacity: .3; margin-bottom: 8px; }
.testi-quote i { font-size: 32px; }
.testi-text { font-family: var(--ff-d); font-size: 17px; font-style: italic; color: var(--t-l); line-height: 1.55; flex: 1; margin-bottom: 24px; }
.testi-footer { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--glass-brd); }
.testi-av {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: var(--blue-10);
  border: 1px solid var(--blue-10);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .5px;
}
.testi-footer cite { display: block; font-size: 14px; font-weight: 600; color: var(--t-w); font-style: normal; }
.testi-footer span { font-size: 13px; color: var(--t-d); }


/* ═══════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════ */
.cc-cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d2240, var(--blue));
  position: relative;
  overflow: hidden;
}
.cc-cta-particles {
  position: absolute;
  inset: 0;
  opacity: .3;
}


/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.cc-checks { display: flex; flex-direction: column; gap: 14px; }
.cc-check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--t-m); }
.cc-check i { color: var(--blue); margin-top: 3px; }
.contact-info-box {
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: 12px;
  font-size: 14px;
  color: var(--t-m);
  display: flex; flex-direction: column; gap: 10px;
}
.contact-info-box i { color: var(--blue); }

/* Form inputs */
.cc-input {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: var(--t-w) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  transition: border-color .3s !important;
}
.cc-input:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(58,143,214,.1) !important;
}
.cc-input::placeholder { color: var(--t-d) !important; }
.form-label { color: var(--t-d); font-weight: 600; letter-spacing: .3px; }
.form-select option { background: var(--bg-2); }

/* Success */
.success-icon {
  width: 72px; height: 72px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,.1);
  color: var(--green);
  border-radius: 50%;
  font-size: 32px;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.cc-footer {
  padding: 64px 0 24px;
  background: var(--bg-0);
  border-top: 1px solid var(--glass-brd);
}
.footer-tagline { font-family: var(--ff-d); font-style: italic; color: var(--blue); font-size: 16px; margin-bottom: 8px; }
.footer-desc { font-size: 14px; color: var(--t-d); line-height: 1.7; max-width: 300px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--t-m); margin-bottom: 16px; }
.footer-links { padding: 0; list-style: none; }
.footer-links li { font-size: 14px; color: var(--t-d); margin-bottom: 8px; }
.footer-links a { color: var(--t-d); transition: color .3s; }
.footer-links a:hover { color: var(--t-w); }


/* ═══════════════════════════════════════════
   IMAGE BANDS & AI VISUALS
   ═══════════════════════════════════════════ */

/* Full-width image band with overlay */
.img-band {
  position: relative;
  overflow: hidden;
}
.img-band-inner {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5,9,17,.85) 0%,
    rgba(10,15,26,.7) 50%,
    rgba(58,143,214,.15) 100%);
  z-index: 1;
}
.img-band-overlay-heavy {
  background: linear-gradient(135deg,
    rgba(5,9,17,.92) 0%,
    rgba(10,15,26,.85) 100%);
}
.img-band .container { position: relative; z-index: 2; }
.img-band-compact .img-band-inner {
  min-height: 200px;
  padding: 0;
}

/* Feature AI image with glow effect */
.ai-feature-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.ai-feature-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--glass-brd);
}
.ai-img-glow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: var(--blue);
  filter: blur(40px);
  opacity: .2;
  border-radius: 50%;
  pointer-events: none;
}

/* Section with background image */
.cc-img-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cc-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14,21,36,.94) 0%,
    rgba(14,21,36,.88) 40%,
    rgba(14,21,36,.94) 100%);
  z-index: 0;
}
.cc-img-bg > .container {
  position: relative;
  z-index: 1;
}

/* Parallax disable on mobile for performance */
@media (max-width: 991px) {
  .img-band-inner,
  .cc-img-bg {
    background-attachment: scroll;
  }
  .img-band-inner {
    min-height: 280px;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .cc-section { padding: 80px 0; }
  .cc-hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-metrics { flex-direction: row; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
  .glass-metric { min-width: 180px; padding: 18px 20px; }
  .gm-value { font-size: 26px; }
}
@media (max-width: 767px) {
  .proof-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cc-cta-band { padding: 64px 0; }
  .glass-card { padding: 24px 20px; }
}


/* ═══════════════════════════════════════════════════════════
   SECTION UPGRADES — Full site polish
   Append this entire block to styles.css
   ═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   TRUST STRIP — Premium ticker bar
   ───────────────────────────────────────── */
.ts-bar {
  background: var(--bg-0);
  border-top: 1px solid rgba(58,143,214,.15);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
  overflow: hidden;
}
.ts-inner {
  display: flex;
  align-items: center;
  height: 52px;
}
.ts-left {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  white-space: nowrap;
  flex-shrink: 0;
}
.ts-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,.6);
  animation: htlPulse 2.2s ease-in-out infinite;
}
.ts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t-d);
}
.ts-track-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.ts-fade-l,
.ts-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ts-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--bg-0), transparent);
}
.ts-fade-r {
  right: 0;
  background: linear-gradient(270deg, var(--bg-0), transparent);
}
.ts-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: tsTicker 30s linear infinite;
  will-change: transform;
}
.ts-track span {
  font-size: 12px;
  font-weight: 500;
  color: var(--t-d);
  letter-spacing: .5px;
}
.ts-sep {
  color: var(--t-f) !important;
  opacity: .5;
}
@keyframes tsTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ts-right {
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.ts-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ts-left, .ts-right { display: none; }
}


/* ─────────────────────────────────────────
   PROBLEM / SOLUTION — Cinematic split
   ───────────────────────────────────────── */
.ps-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.ps-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ps-glow-l {
  left: -15%;
  top: 10%;
  background: radial-gradient(circle, rgba(58,143,214,.10), transparent 70%);
}
.ps-glow-r {
  right: -10%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(96,200,240,.06), transparent 70%);
}
.ps-grid {
  position: relative;
}

/* Vertical divider between columns */
.ps-divider {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}
.ps-div-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(58,143,214,.3) 30%, rgba(58,143,214,.3) 70%, transparent);
}
.ps-div-node {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(58,143,214,.6);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ps-problem-col, .ps-solution-col {
  padding: 0 48px;
}
.ps-problem-inner, .ps-solution-inner {
  max-width: 520px;
}

/* Stats row */
.ps-stats-row {
  display: flex;
  gap: 32px;
  margin: 28px 0;
}
.ps-stat {}
.ps-stat-num {
  display: block;
  font-family: var(--ff-d);
  font-size: 40px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.ps-stat-label {
  font-size: 13px;
  color: var(--t-d);
  line-height: 1.4;
  max-width: 140px;
}

/* Quote */
.ps-quote {
  font-family: var(--ff-d);
  font-size: 20px;
  font-style: italic;
  color: var(--t-m);
  border-left: 2px solid var(--blue);
  padding-left: 16px;
  margin: 24px 0;
}

/* Feature image */
.ps-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.ps-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.85);
  transition: filter .5s;
}
.ps-img-wrap:hover .ps-img { filter: saturate(1.1) brightness(0.95); }
.ps-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,10,20,.6) 0%,
    rgba(58,143,214,.08) 100%
  );
  pointer-events: none;
}
/* Corner accents */
.ps-img-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--blue);
  border-style: solid;
  opacity: .6;
}
.ps-img-corner-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.ps-img-corner-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

/* Solution pillars */
.ps-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}
.ps-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ps-pillar-ic {
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(58,143,214,.18), rgba(58,143,214,.05));
  border: 1px solid rgba(58,143,214,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 16px;
  transition: all .3s;
}
.ps-pillar:hover .ps-pillar-ic {
  background: rgba(58,143,214,.22);
  box-shadow: 0 0 16px rgba(58,143,214,.2);
}
.ps-pillar div { display: flex; flex-direction: column; gap: 3px; }
.ps-pillar strong { font-size: 15px; font-weight: 600; color: var(--t-w); }
.ps-pillar span  { font-size: 14px; color: var(--t-d); line-height: 1.5; }

/* Guarantee box */
.ps-guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(58,143,214,.08), rgba(58,143,214,.02));
  border: 1px solid rgba(58,143,214,.2);
  border-radius: 12px;
  margin-top: 8px;
}
.ps-guarantee i { color: var(--blue); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.ps-guarantee div { display: flex; flex-direction: column; gap: 4px; }
.ps-guarantee strong { color: var(--t-w); font-size: 14px; font-weight: 600; }
.ps-guarantee span  { color: var(--t-d); font-size: 13px; line-height: 1.5; }

.ps-sol-title {
  font-family: var(--ff-d);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--t-w);
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .ps-problem-col, .ps-solution-col { padding: 0 16px; }
  .ps-problem-inner, .ps-solution-inner { max-width: none; }
  .ps-stats-row { flex-wrap: wrap; gap: 20px; }
}


/* ─────────────────────────────────────────
   SERVICE MODULES — Premium card treatment
   ───────────────────────────────────────── */
.svc-section { position: relative; }

/* Module card */
.svc-module {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  cursor: default;
}
.svc-module:hover {
  border-color: rgba(58,143,214,.25);
  transform: translateY(-6px);
  box-shadow:
    0 16px 56px rgba(0,0,0,.4),
    0 0 0 1px rgba(58,143,214,.10),
    inset 0 1px 0 rgba(255,255,255,.14);
}

/* Animated gradient border on hover */
.svc-mod-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(58,143,214,.5) 70%, rgba(96,200,240,.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.svc-module:hover .svc-mod-border { opacity: 1; }

/* Top shimmer */
.svc-module::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35) 50%, transparent);
  z-index: 1;
}

/* Light sweep on hover */
.svc-module::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  transition: left .7s ease;
  pointer-events: none;
}
.svc-module:hover::after { left: 150%; }

.svc-mod-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}
.svc-mod-cta-inner { align-items: center; text-align: center; }

.svc-mod-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.svc-mod-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(58,143,214,.2), rgba(58,143,214,.06));
  border: 1px solid rgba(58,143,214,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 22px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.svc-mod-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(58,143,214,.25), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.svc-module:hover .svc-mod-icon::after { opacity: 1; }
.svc-module:hover .svc-mod-icon { box-shadow: 0 0 20px rgba(58,143,214,.3); }

.svc-mod-price {
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(58,143,214,.08);
  border: 1px solid rgba(58,143,214,.15);
  padding: 4px 10px;
  border-radius: 20px;
}
.svc-mod-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t-f);
  margin-bottom: 10px;
}
.svc-mod-title {
  font-family: var(--ff-d);
  font-size: 21px;
  color: var(--t-w);
  margin-bottom: 12px;
  line-height: 1.25;
}
.svc-mod-desc {
  font-size: 14px;
  color: var(--t-m);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
}
.svc-mod-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 20px;
}
.smm-row { font-size: 13px; color: var(--t-d); line-height: 1.5; }
.smm-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t-m); margin-bottom: 2px; }
.svc-mod-cta {
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s, color .3s;
}
.svc-mod-cta i { transition: transform .3s; }
.svc-mod-cta:hover { color: var(--t-w); gap: 10px; }
.svc-mod-cta:hover i { transform: translateX(3px); }

/* CTA module */
.svc-module-cta {
  background: linear-gradient(145deg, rgba(58,143,214,.10), rgba(58,143,214,.03));
  border-color: rgba(58,143,214,.18);
  box-shadow:
    0 4px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(58,143,214,.25),
    0 0 40px rgba(58,143,214,.06);
}
.svc-module-cta:hover { border-color: rgba(58,143,214,.4); }
.svc-cta-icon { font-size: 40px; color: var(--blue); margin-bottom: 16px; }

/* Wide horizontal CTA bar layout: icon | text | button */
.svc-mod-cta-wide {
  flex-direction: row !important;
  align-items: center !important;
  text-align: left !important;
  gap: 28px;
  padding: 28px 36px;
}
.svc-mod-cta-wide .svc-cta-icon {
  font-size: 34px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.svc-cta-wide-text {
  flex: 1;
  min-width: 0;
}
.svc-cta-wide-text .svc-mod-title { margin-bottom: 4px; }
.svc-cta-wide-text .svc-mod-desc  { margin-bottom: 0; max-width: 540px; }
.svc-cta-wide-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 32px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .svc-mod-cta-wide {
    flex-direction: column !important;
    text-align: center !important;
    padding: 28px 20px;
    gap: 16px;
  }
  .svc-cta-wide-text { text-align: center; }
  .svc-cta-wide-text .svc-mod-desc { max-width: none; }
  .svc-cta-wide-btn { width: 100%; justify-content: center; }
}


/* ─────────────────────────────────────────
   PROCESS — Deployment pipeline
   ───────────────────────────────────────── */
.proc-section {
  background: var(--bg-1);
  position: relative;
}

.proc-pipeline-wrap {
  position: relative;
  padding-top: 40px;
}

/* Horizontal pipeline line (desktop) */
.proc-pipeline-line {
  position: absolute;
  top: 0;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 1px;
  display: none;
}
.proc-pipeline-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), rgba(96,200,240,.7));
  border-radius: 1px;
  transition: width 1.8s cubic-bezier(.25,.46,.45,.94);
}
@media (min-width: 992px) {
  .proc-pipeline-line { display: block; }
}

/* Step dot indicator (sits on the pipeline line) */
.proc-step {
  position: relative;
  display: flex;
  flex-direction: column;   /* makes proc-step-card fill downward */
}
.proc-step-dot {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 2px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
}
.proc-step-dot.active {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(58,143,214,.2), rgba(58,143,214,.05));
  box-shadow: 0 0 0 6px rgba(58,143,214,.1), 0 0 20px rgba(58,143,214,.25);
}
.proc-step-num {
  font-family: var(--ff-d);
  font-size: 16px;
  color: var(--t-f);
  transition: color .4s;
}
.proc-step-dot.active .proc-step-num { color: var(--blue); }

/* Step card */
.proc-step-card {
  background: linear-gradient(145deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: hidden;
  flex: 1;                  /* fills remaining height in .proc-step flex column */
  display: flex;
  flex-direction: column;   /* so proc-step-tag pins to bottom */
}
.proc-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25) 50%, transparent);
}
.proc-step:hover .proc-step-card {
  border-color: rgba(58,143,214,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 30px rgba(58,143,214,.06);
}
.proc-step-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(58,143,214,.10);
  border: 1px solid rgba(58,143,214,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 14px;
}
.proc-step-title {
  font-family: var(--ff-d);
  font-size: 19px;
  color: var(--t-w);
  margin-bottom: 10px;
}
.proc-step-desc {
  font-size: 14px;
  color: var(--t-m);
  line-height: 1.68;
  margin-bottom: 14px;
  flex: 1;                  /* pushes tag to bottom */
}
.proc-step-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  opacity: .7;
  margin-top: auto;         /* pins to bottom */
}

@media (max-width: 991px) {
  .proc-step-dot { display: none; }
  .proc-steps-row { gap: 20px; }
}


/* ─────────────────────────────────────────
   INDUSTRIES — Use-case tiles
   ───────────────────────────────────────── */
.ind-section {}

.ind-tile {
  padding: 32px 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.065) 0%, rgba(255,255,255,.018) 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ind-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28) 50%, transparent);
}
.ind-tile::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at center, rgba(58,143,214,.05), transparent 60%);
  opacity: 0;
  transition: opacity .5s, top .5s, left .5s;
  pointer-events: none;
}
.ind-tile:hover {
  border-color: rgba(58,143,214,.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 0 40px rgba(58,143,214,.06);
}
.ind-tile:hover::after { opacity: 1; top: -50%; left: -50%; }

.ind-tile-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(58,143,214,.18), rgba(58,143,214,.05));
  border: 1px solid rgba(58,143,214,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 18px;
  transition: all .4s;
}
.ind-tile:hover .ind-tile-ic {
  background: rgba(58,143,214,.22);
  box-shadow: 0 0 20px rgba(58,143,214,.25);
}
.ind-tile-name {
  font-family: var(--ff-d);
  font-size: 19px;
  color: var(--t-w);
  margin-bottom: 14px;
  line-height: 1.25;
}
.ind-tile-uses {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.ind-tile-uses li {
  font-size: 13px;
  color: var(--t-d);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ind-tile-uses li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  opacity: .6;
}
.ind-tile-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap .3s, color .3s;
}
.ind-tile-cta i { transition: transform .3s; }
.ind-tile-cta:hover { color: var(--t-w); gap: 10px; }
.ind-tile-cta:hover i { transform: translateX(3px); }


/* ─────────────────────────────────────────
   WHY CAMPBELL'S CODE — Differentiator grid
   ───────────────────────────────────────── */
.why-section { background: var(--bg-1); }

.why-mod {
  display: flex;
  flex-direction: column;   /* changed: icon+num on its own line, body below */
  gap: 14px;
  align-items: flex-start;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-mod-num {
  font-family: var(--ff-d);
  font-size: 36px;
  color: var(--blue);
  opacity: .18;
  line-height: 1;
  transition: opacity .3s;
}
.why-mod:hover .why-mod-num { opacity: .35; }
.why-mod::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22) 50%, transparent);
}
.why-mod:hover {
  border-color: rgba(58,143,214,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25), 0 0 24px rgba(58,143,214,.05);
}
.why-mod-body h4 { font-size: 16px; font-weight: 600; color: var(--t-w); margin-bottom: 8px; }
.why-mod-body p  { font-size: 14px; color: var(--t-m); line-height: 1.65; margin: 0; }

/* Objection panel */
.obj-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(58,143,214,.03) 100%);
  border: 1px solid rgba(58,143,214,.15);
  border-radius: 20px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.obj-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,214,.4) 40%, rgba(96,200,240,.2) 60%, transparent);
}
.obj-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.obj-panel-icon { font-size: 28px; color: var(--blue); flex-shrink: 0; margin-top: 4px; }
.obj-panel-title { font-family: var(--ff-d); font-size: 24px; color: var(--t-w); margin-bottom: 4px; }
.obj-panel-sub { font-size: 14px; color: var(--t-d); margin: 0; }
.obj-item {
  padding: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  transition: border-color .3s;
}
.obj-item:hover { border-color: rgba(58,143,214,.15); }
.obj-q-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-d);
  font-size: 15px;
  font-style: italic;
  color: var(--t-l);
  margin-bottom: 10px;
  line-height: 1.45;
}
.obj-q-row i { color: var(--blue); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.obj-a { font-size: 14px; color: var(--t-d); line-height: 1.65; margin: 0; }

@media (max-width: 767px) {
  .obj-panel { padding: 28px 20px; }
  .obj-panel-head { flex-direction: column; gap: 8px; }
}


/* ─────────────────────────────────────────
   OUTCOMES FRAMEWORK
   ───────────────────────────────────────── */
.outcomes-section { background: var(--bg-2); }

.outcome-card {
  padding: 32px 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.018) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  height: 100%;
  display: flex;
  flex-direction: column;   /* so oc-tag pins to bottom */
  position: relative;
  overflow: hidden;
}
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28) 50%, transparent);
}
.outcome-card:hover {
  border-color: rgba(58,143,214,.22);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,.3), 0 0 30px rgba(58,143,214,.06);
}
.oc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(58,143,214,.18), rgba(58,143,214,.05));
  border: 1px solid rgba(58,143,214,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 18px;
  transition: all .4s;
}
.outcome-card:hover .oc-icon { box-shadow: 0 0 18px rgba(58,143,214,.3); }
.oc-title { font-family: var(--ff-d); font-size: 20px; color: var(--t-w); margin-bottom: 10px; }
.oc-desc { font-size: 14px; color: var(--t-m); line-height: 1.68; margin-bottom: 16px; flex: 1; }
.oc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(58,143,214,.08);
  border: 1px solid rgba(58,143,214,.15);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* Commitment bar */
.commitment-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(58,143,214,.10), rgba(58,143,214,.03));
  border: 1px solid rgba(58,143,214,.22);
  border-radius: 16px;
  flex-wrap: wrap;
}
.cb-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}
.cb-icon { font-size: 28px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.cb-content div { display: flex; flex-direction: column; gap: 4px; }
.cb-content strong { color: var(--t-w); font-size: 15px; font-weight: 600; }
.cb-content span  { color: var(--t-d); font-size: 13px; line-height: 1.5; }
.cb-btn { white-space: nowrap; flex-shrink: 0; }


/* ─────────────────────────────────────────
   CTA SECTION — Premium conversion moment
   ───────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(145deg, #0a1628 0%, #0d2040 40%, #122a50 100%);
}
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .6;
}
.cta-glow-left,
.cta-glow-right {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.cta-glow-left  { left: -10%; top: -20%; background: radial-gradient(circle, rgba(58,143,214,.22), transparent 70%); }
.cta-glow-right { right: -5%; bottom: -10%; background: radial-gradient(circle, rgba(96,200,240,.12), transparent 70%); }

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(58,143,214,.9);
  margin-bottom: 24px;
}
.cta-ey-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: dotPulse 2.5s ease-in-out infinite;
}
.cta-title {
  font-family: var(--ff-d);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: rgba(96,200,240,.9); }
.cta-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
/* Primary CTA with sweep effect */
.cta-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 38px;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 4px 24px rgba(58,143,214,.35);
}
.cta-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(58,143,214,.5);
}
.cta-btn-text { position: relative; z-index: 1; }
.cta-btn-sweep {
  position: absolute;
  top: 0; left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .7s ease;
  z-index: 0;
}
.cta-btn-primary:hover .cta-btn-sweep { left: 130%; }
.cta-btn-primary i { position: relative; z-index: 1; transition: transform .3s; }
.cta-btn-primary:hover i { transform: translateX(3px); }

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 32px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all .35s;
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .3px;
}
.cta-trust-row i { color: rgba(58,143,214,.7); }


/* ─────────────────────────────────────────
   CONTACT SECTION — Premium form
   ───────────────────────────────────────── */
.contact-section { background: var(--bg-1); }

/* What to expect */
.contact-expect {
  margin: 28px 0;
}
.ce-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t-d);
  margin-bottom: 18px;
}
.ce-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ce-item:last-child { border-bottom: none; }
.ce-step {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(58,143,214,.1);
  border: 1px solid rgba(58,143,214,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.ce-item div { display: flex; flex-direction: column; gap: 3px; }
.ce-item strong { font-size: 14px; font-weight: 600; color: var(--t-w); }
.ce-item span  { font-size: 13px; color: var(--t-d); line-height: 1.5; }

.contact-details-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
}
.cdr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--t-m);
}
.cdr-item i { color: var(--blue); font-size: 15px; width: 18px; text-align: center; }

/* Contact form shell */
.contact-form-shell {
  background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.10);
}
.contact-form-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35) 40%, rgba(255,255,255,.55) 50%, rgba(255,255,255,.35) 60%, transparent);
}
.cf-header { margin-bottom: 28px; }
.cf-title {
  font-family: var(--ff-d);
  font-size: 24px;
  color: var(--t-w);
  margin-bottom: 6px;
}
.cf-sub { font-size: 13px; color: var(--t-d); letter-spacing: .3px; }

/* Floating label inputs */
.cf-field {
  position: relative;
}
.cf-input {
  width: 100%;
  padding: 18px 16px 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  color: var(--t-w);
  font-family: var(--ff-b);
  font-size: 15px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
}
.cf-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,143,214,.12);
}
/* Float label up when input has content or is focused */
.cf-label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 14px;
  color: var(--t-d);
  pointer-events: none;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
  transform-origin: left top;
}
.cf-input:focus ~ .cf-label,
.cf-input:not(:placeholder-shown) ~ .cf-label {
  transform: translateY(-8px) scale(.78);
  color: var(--blue);
}
.cf-select-wrap { position: relative; }
.cf-select { cursor: pointer; padding-right: 36px; }
.cf-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--t-d);
  pointer-events: none;
  font-size: 12px;
}
.cf-select option { background: var(--bg-2); color: var(--t-l); }
.cf-textarea { resize: vertical; min-height: 110px; }

.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 4px 20px rgba(58,143,214,.25);
  margin-top: 4px;
}
.cf-submit:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(58,143,214,.4);
}
.cf-submit i { transition: transform .3s; }
.cf-submit:hover i { transform: translateX(4px); }

/* Success state */
.cf-success {
  text-align: center;
  padding: 60px 20px;
}
.cf-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(74,222,128,.10);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  border: 1px solid rgba(74,222,128,.2);
}
.cf-success h3 { font-family: var(--ff-d); font-size: 28px; color: var(--t-w); margin-bottom: 10px; }
.cf-success p  { font-size: 15px; color: var(--t-m); max-width: 380px; margin: 0 auto; line-height: 1.7; }

@media (max-width: 767px) {
  .contact-form-shell { padding: 28px 20px; }
}


/* ─────────────────────────────────────────
   FOOTER V2 — Polished and brand-consistent
   ───────────────────────────────────────── */
.cc-footer-v2 {
  background: var(--bg-0);
  padding: 72px 0 0;
  position: relative;
}
.footer-top-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(58,143,214,.5) 30%, rgba(96,200,240,.3) 50%, rgba(58,143,214,.5) 70%, transparent 100%);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--ff-b);
  font-size: 17px;
  font-weight: 700;
  color: var(--t-w);
}
.footer-tagline {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--t-f);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-cta-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s, color .3s;
}
.footer-cta-link:hover { color: var(--t-w); gap: 10px; }
.footer-cta-link i { transition: transform .3s; }
.footer-cta-link:hover i { transform: translateX(3px); }

.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t-m);
  margin-bottom: 18px;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list li,
.footer-nav-list a { font-size: 14px; color: var(--t-f); transition: color .3s; }
.footer-nav-list a:hover { color: var(--t-w); }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-list i { color: var(--blue); width: 16px; text-align: center; flex-shrink: 0; }

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--t-f); }
.footer-tagline-small { font-size: 13px; color: var(--t-f); font-style: italic; }
.footer-back-top {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--t-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  font-size: 14px;
  margin-left: auto;
}
.footer-back-top:hover {
  background: rgba(58,143,214,.15);
  border-color: rgba(58,143,214,.3);
  color: var(--blue);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
  .footer-main-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
  .footer-back-top { margin-left: 0; }
}


/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   Covers every section at every breakpoint.
   Append to the very end of styles.css.
   Breakpoints: 1199 | 991 | 767 | 575 | 479 | 374
   ═══════════════════════════════════════════════════════════ */


/* ── Global overflow guard ── */
html, body {
  overflow-x: hidden;
}
/* Prevent overflow without capping container width —
   Bootstrap's own max-width on containers is preserved */


/* ════════════════════════════════
   ≤ 1199px  (large tablet / small laptop)
   ════════════════════════════════ */
@media (max-width: 1199px) {
  /* Problem / Solution column padding tighten */
  .ps-problem-col,
  .ps-solution-col { padding: 0 28px; }

  /* CTA heading scale */
  .cta-title { font-size: clamp(26px, 3.8vw, 46px); }
}


/* ════════════════════════════════
   ≤ 991px  (tablet landscape)
   ════════════════════════════════ */
@media (max-width: 991px) {

  /* ── Global section padding ── */
  .cc-section { padding: 72px 0; }
  .ps-section  { padding: 72px 0; }

  /* ── Trust strip ── */
  .ts-right { display: none; }

  /* ── Problem / Solution ──
     Columns stack (Bootstrap handles),
     remove horizontal padding that read as
     indent when stacked vertically          */
  .ps-problem-col,
  .ps-solution-col { padding: 0 12px; }
  .ps-glow         { display: none; }   /* reduce paint cost on tablet */

  /* ── Process ── */
  .proc-pipeline-wrap { padding-top: 0; } /* dots are hidden, remove gap */

  /* ── Services ── */
  .svc-mod-inner { padding: 28px 24px; }

  /* ── Outcomes ── */
  .commitment-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cb-btn { width: 100%; justify-content: center; text-align: center; }

  /* ── CTA ── */
  .cta-section { padding: 80px 0; }
  .cta-trust-row { gap: 16px; }

  /* ── Contact ── */
  .contact-section .row.g-5 { --bs-gutter-y: 40px; }

  /* ── Footer ── */
  .cc-footer-v2 { padding: 56px 0 0; }
}


/* ════════════════════════════════
   ≤ 767px  (tablet portrait / large phone)
   ════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Global ── */
  .cc-section  { padding: 60px 0; }
  .ps-section  { padding: 60px 0; }
  .cta-section { padding: 64px 0; }
  .display-h   { font-size: clamp(26px, 7vw, 40px); }

  /* ── Navbar ── */
  .nav-cta { display: none; }   /* hide desktop CTA; mobile menu has one */

  /* ── Hero ── */
  .h-row    { gap: 24px 0; }
  .h-sub    { font-size: 16px; }
  .h-btn-primary,
  .h-btn-ghost { padding: 13px 24px; font-size: 14px; }
  .h-trust-line { font-size: 11px; }

  /* ── Trust strip ── */
  .ts-bar { height: 44px; }
  .ts-inner { height: 44px; }
  .ts-track span { font-size: 11px; }

  /* ── Problem / Solution ── */
  .ps-problem-col,
  .ps-solution-col { padding: 0 4px; }
  .ps-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
  }
  .ps-stat-num  { font-size: 30px; }
  .ps-stat-label { font-size: 12px; max-width: none; }
  .ps-quote     { font-size: 17px; }
  .ps-img       { height: 220px; }
  .ps-sol-title { font-size: clamp(20px, 5vw, 28px); }
  .ps-guarantee {
    flex-direction: column;
    gap: 10px;
  }
  .ps-guarantee i { font-size: 20px; }

  /* ── Services ── */
  .svc-mod-inner { padding: 24px 20px; }
  .svc-mod-title { font-size: 19px; }
  .svc-mod-icon  { width: 42px; height: 42px; font-size: 19px; }

  /* ── Process ── */
  .proc-step-card { padding: 22px 20px; }
  .proc-step-icon { width: 38px; height: 38px; font-size: 18px; margin-bottom: 12px; }
  .proc-step-title { font-size: 17px; margin-bottom: 8px; }
  .proc-step-desc  { font-size: 13px; }

  /* ── Industries ── */
  .ind-tile     { padding: 24px 20px; }
  .ind-tile-ic  { width: 44px; height: 44px; font-size: 20px; margin-bottom: 14px; }
  .ind-tile-name { font-size: 17px; }
  .ind-tile-uses li { font-size: 12px; padding: 6px 0; }

  /* ── Why ── */
  .why-mod     { padding: 22px 20px; }
  .why-mod-num { font-size: 28px; }
  .obj-panel   { padding: 24px 20px; }
  .obj-panel-title { font-size: 20px; }
  .obj-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── Outcomes ── */
  .outcome-card  { padding: 24px 20px; }
  .oc-title      { font-size: 17px; }
  .commitment-bar { padding: 20px; }
  .cb-content { min-width: 0; }

  /* ── CTA ── */
  .cta-title { font-size: clamp(22px, 7vw, 36px); }
  .cta-sub   { font-size: 15px; }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-btn-primary,
  .cta-btn-ghost {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .cta-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
  }

  /* ── Contact ── */
  .contact-expect    { margin: 20px 0; }
  .ce-heading        { font-size: 12px; }
  .contact-form-shell { padding: 24px 18px; }
  .cf-title          { font-size: 20px; }

  /* ── Footer ── */
  .cc-footer-v2      { padding: 48px 0 0; }
  .footer-tagline    { font-size: 15px; }
  .footer-brand-desc { font-size: 13px; }
}


/* ════════════════════════════════
   ≤ 575px  (standard phone landscape / large phone portrait)
   ════════════════════════════════ */
@media (max-width: 575px) {

  /* ── Global ── */
  .cc-section  { padding: 52px 0; }
  .ps-section  { padding: 52px 0; }
  .cta-section { padding: 56px 0; }
  .container,
  .container-xl { padding-left: 18px; padding-right: 18px; }

  /* ── Hero orb/scene: scale to fit viewport ── */
  .h-scene    { width: min(92vw, 300px); height: min(92vw, 300px); }
  .orb-system { width: min(75vw, 250px); height: min(75vw, 250px); }
  .orb-core   { width: min(55vw, 140px); height: min(55vw, 140px); }
  .h-visual-col { padding: 0; }

  /* ── Problem / Solution ── */
  .ps-stats-row { grid-template-columns: 1fr 1fr; }
  .ps-stat-num  { font-size: 26px; }

  /* ── Services — keep 1 column at sm ── */
  .svc-mod-inner  { padding: 22px 18px; }
  .svc-mod-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ── Process ── */
  .proc-step-card { padding: 20px 18px; }

  /* ── Industries ── */
  .ind-tile { padding: 22px 18px; }

  /* ── Why ── */
  .why-mod    { padding: 20px 18px; }
  .obj-item   { padding: 16px; }
  .obj-q-row  { font-size: 14px; }
  .obj-a      { font-size: 13px; }

  /* ── Outcomes ── */
  .outcome-card { padding: 22px 18px; }
  .commitment-bar { flex-direction: column; gap: 16px; padding: 18px; }

  /* ── CTA ── */
  .cta-content { padding: 0 4px; }
  .cta-btn-primary,
  .cta-btn-ghost { max-width: none; width: 100%; }

  /* ── Contact ── */
  .contact-form-shell { padding: 22px 16px; }
  .cf-submit          { font-size: 15px; padding: 14px; }

  /* ── Footer ── */
  .footer-col-head { font-size: 10px; }
  .footer-nav-list li,
  .footer-nav-list a { font-size: 13px; }
}


/* ════════════════════════════════
   ≤ 479px  (standard phone portrait)
   ════════════════════════════════ */
@media (max-width: 479px) {

  /* ── Global ── */
  .cc-section  { padding: 44px 0; }
  .ps-section  { padding: 44px 0; }
  .cta-section { padding: 48px 0; }
  .container,
  .container-xl { padding-left: 16px; padding-right: 16px; }
  .display-h   { font-size: clamp(22px, 8vw, 34px); letter-spacing: -.2px; }

  /* ── Trust strip — minimal ── */
  .ts-bar      { height: 40px; }
  .ts-inner    { height: 40px; }
  .ts-label    { font-size: 9px; letter-spacing: 1.5px; }
  .ts-track    { gap: 12px; }
  .ts-track span { font-size: 10px; }

  /* ── Hero ── */
  .h-scene    { width: min(88vw, 260px); height: min(88vw, 260px); }
  .orb-system { width: min(70vw, 210px); height: min(70vw, 210px); }
  .orb-core   { width: min(50vw, 120px); height: min(50vw, 120px); }
  .h-cta-group { gap: 10px; }
  .h-btn-primary,
  .h-btn-ghost { width: 100%; justify-content: center; }

  /* ── Problem / Solution ── */
  .ps-stats-row  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ps-stat-num   { font-size: 24px; }
  .ps-stat-label { font-size: 11px; }
  .ps-quote      { font-size: 15px; padding-left: 12px; }
  .ps-img        { height: 180px; }
  .ps-pillar     { gap: 10px; }
  .ps-pillar-ic  { width: 32px; height: 32px; min-width: 32px; font-size: 14px; }
  .ps-pillar strong { font-size: 14px; }
  .ps-pillar span   { font-size: 13px; }

  /* ── Services ── */
  .svc-mod-inner  { padding: 20px 16px; }
  .svc-mod-title  { font-size: 18px; }
  .svc-mod-tag    { font-size: 9px; }
  .svc-mod-price  { font-size: 10px; }

  /* ── Process ── */
  .proc-step-card  { padding: 18px 16px; }
  .proc-step-title { font-size: 16px; }
  .proc-step-desc  { font-size: 13px; }
  .proc-step-tag   { font-size: 9px; }

  /* ── Industries ── */
  .ind-tile      { padding: 20px 16px; }
  .ind-tile-name { font-size: 16px; }
  .ind-tile-ic   { width: 38px; height: 38px; font-size: 18px; margin-bottom: 12px; }

  /* ── Why ── */
  .why-mod { padding: 18px 16px; gap: 10px; }
  .why-mod-num  { font-size: 24px; }
  .why-mod-body h4 { font-size: 15px; }
  .why-mod-body p  { font-size: 13px; }
  .obj-panel  { padding: 18px 16px; }
  .obj-panel-title { font-size: 18px; }
  .obj-q-row  { font-size: 13px; }
  .obj-a      { font-size: 12px; }

  /* ── Outcomes ── */
  .outcome-card { padding: 18px 16px; }
  .oc-icon      { width: 44px; height: 44px; font-size: 18px; }
  .oc-title     { font-size: 16px; }
  .oc-desc      { font-size: 13px; }
  .commitment-bar { padding: 16px; }
  .cb-icon     { font-size: 22px; }
  .cb-content strong { font-size: 13px; }
  .cb-content span   { font-size: 12px; }

  /* ── CTA ── */
  .cta-title   { font-size: clamp(20px, 7vw, 30px); line-height: 1.2; }
  .cta-sub     { font-size: 14px; }
  .cta-eyebrow { font-size: 9px; letter-spacing: 2px; }
  .cta-btn-primary,
  .cta-btn-ghost { padding: 14px 20px; font-size: 14px; }
  .cta-trust-row { font-size: 10px; gap: 6px; }

  /* ── Contact ── */
  .contact-form-shell { padding: 20px 14px; border-radius: 16px; }
  .cf-title  { font-size: 18px; }
  .cf-input  { padding: 16px 13px 7px; font-size: 14px; }
  .cf-label  { left: 13px; font-size: 13px; }
  .cf-submit { font-size: 14px; padding: 14px; }
  .ce-step   { min-width: 28px; height: 28px; font-size: 13px; }
  .cdr-item  { font-size: 13px; }

  /* ── Footer ── */
  .cc-footer-v2 { padding: 40px 0 0; }
  .footer-brand-name { font-size: 15px; }
  .footer-tagline    { font-size: 14px; }
  .footer-bottom-bar { padding: 14px 0 20px; font-size: 12px; }
}


/* ════════════════════════════════
   ≤ 374px  (small phone — iPhone SE, Galaxy A series)
   ════════════════════════════════ */
@media (max-width: 374px) {

  /* ── Global ── */
  .cc-section  { padding: 36px 0; }
  .ps-section  { padding: 36px 0; }
  .cta-section { padding: 40px 0; }
  .container,
  .container-xl { padding-left: 14px; padding-right: 14px; }
  .display-h   { font-size: clamp(20px, 9vw, 30px); }

  /* ── Hero scene: must not overflow ── */
  .h-scene    { width: 82vw; height: 82vw; }
  .orb-system { width: 66vw; height: 66vw; }
  .orb-core   { width: 46vw; height: 46vw; }
  /* Atmosphere overflows on very small screens without this */
  .orb-atmosphere { display: none; }

  /* ── Hero copy ── */
  .h-headline { font-size: clamp(28px, 9vw, 38px); }
  .h-sub { font-size: 14px; line-height: 1.65; }

  /* ── Trust strip — hide on tiny screens ── */
  .ts-left, .ts-right { display: none; }

  /* ── Problem / Solution ── */
  .ps-stats-row  { grid-template-columns: 1fr; gap: 10px; }
  .ps-stat       { display: flex; align-items: baseline; gap: 8px; }
  .ps-stat-num   { font-size: 22px; }
  .ps-stat-label { max-width: none; }
  .ps-img        { height: 160px; }

  /* ── Services ── */
  .svc-mod-inner { padding: 18px 14px; }

  /* ── Process ── */
  .proc-step-card  { padding: 16px 14px; }

  /* ── Industries ── */
  .ind-tile { padding: 18px 14px; }

  /* ── Why ── */
  .why-mod   { padding: 16px 14px; }
  .obj-panel { padding: 16px 14px; }

  /* ── Outcomes ── */
  .outcome-card  { padding: 16px 14px; }
  .commitment-bar { padding: 14px; }

  /* ── CTA ── */
  .cta-title { font-size: 20px; }

  /* ── Contact ── */
  .contact-form-shell { padding: 18px 12px; }

  /* ── Footer ── */
  .footer-col-head   { font-size: 9px; }
  .footer-nav-list li,
  .footer-nav-list a { font-size: 12px; }
}
