/* ═══════════════════════════════════════════════════════════════
   ALVAREZ CONSULTING — Main Stylesheet  v5
   Theme: Clean Light · EdTech Leadership · Human & Professional
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Source+Sans+3:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Bootstrap Light Token Overrides ─────────────────────────── */
:root {
  --bs-primary:         #2563eb;
  --bs-primary-rgb:     37, 99, 235;
  --bs-secondary:       #64748b;
  --bs-success:         #047857;
  --bs-info:            #0891b2;
  --bs-warning:         #b45309;
  --bs-body-font-family:'Source Sans 3', sans-serif;
  --bs-body-color:      #1e293b;
  --bs-body-bg:         #ffffff;
  --bs-border-color:    #e2e8f0;
  --bs-card-border-color:#e2e8f0;
  --bs-link-color:      #2563eb;
  --bs-link-hover-color:#1d4ed8;

  /* Brand tokens */
  --navy:       #0e2d54;
  --navy-lt:    #1e4070;
  --blue:       #2563eb;
  --blue-lt:    #3b82f6;
  --blue-pale:  #eff6ff;
  --teal:       #0891b2;
  --teal-pale:  #ecfeff;
  --amber:      #b45309;
  --amber-pale: #fffbeb;
  --green:      #047857;
  --green-pale: #ecfdf5;

  --white:    #ffffff;
  --off-white:#fafaf9;
  --slate-50: #f8fafc;
  --slate-100:#f1f5f9;
  --slate-200:#e2e8f0;
  --slate-400:#94a3b8;
  --slate-500:#64748b;
  --slate-700:#334155;
  --slate-900:#0f172a;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --shadow-blue:0 4px 24px rgba(37,99,235,.18);

  --radius:    10px;
  --radius-lg: 16px;
  --trans:     all .25s cubic-bezier(.4,0,.2,1);
  --font-d:    'Bricolage Grotesque', sans-serif;
  --font-b:    'Source Sans 3', sans-serif;
  --font-m:    'JetBrains Mono', monospace;
}

*,*::before,*::after { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--slate-700);
  line-height: 1.72;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-d);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}
a { color: var(--blue); }
a:hover { color: var(--navy); }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
img { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   INTRO SCREEN — Circuit-board canvas, wow factor
   ═══════════════════════════════════════════════════════════════ */
#intro-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: #ffffff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
#networkCanvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  pointer-events: none;
}

/* Progress bar */
#intro-progress-wrap {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--slate-100); z-index: 10010;
}
#intro-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

/* Skip */
#skip-btn {
  position: fixed; top: 22px; right: 26px; z-index: 10010;
  font-family: var(--font-m); font-size: .58rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--slate-400);
  background: rgba(4,8,20,0.7); border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .85rem; border-radius: 100px;
  cursor: pointer; opacity: 0; transition: color .3s, border-color .3s;
  animation: fadeIn .5s ease 2s forwards;
  backdrop-filter: blur(8px);
}
#skip-btn:hover { color: var(--blue); border-color: var(--blue); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Content wrapper — dark frosted glass over WebGL scene */
#intro-content {
  position: relative; z-index: 10;
  width: min(860px, 92vw);
  text-align: center;
  padding: 3rem 3rem 2.5rem;
  background: rgba(3,6,18,0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(37,99,235,0.28);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 40px 120px rgba(0,0,0,0.65),
    0 0 80px rgba(37,99,235,0.06) inset;
}
#intro-content::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.7), rgba(8,145,178,0.5), transparent);
  border-radius: 2px;
}

/* Badge */
#intro-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-m); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-pale); border: 1px solid rgba(37,99,235,.2);
  padding: .35rem 1.1rem; border-radius: 100px; margin-bottom: 2.5rem;
  opacity: 0; animation: slideUp .7s ease .5s forwards;
}
.badge-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 2px rgba(4,120,87,.2);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 2px rgba(4,120,87,.15); }
  50%      { box-shadow: 0 0 0 6px rgba(4,120,87,.06); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PHASE 1 — Opening statement: BIG, bold, spring-animated ── */
#phase-1 { position: relative; margin-bottom: .5rem; overflow: visible; }
.phase-1-line {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: .08em;
}
.word {
  display: inline-block;
  transform-origin: center bottom;
}
.phase-1-line .accent {
  color: var(--blue);
  position: relative;
}
.phase-1-line .accent::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineGrow .5s ease 3.2s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

/* ── PHASE 2 — Value statements with scan-wipe reveal ── */
#phase-2 { position: absolute; top:0; left:0; right:0; }
.value-statement {
  display: flex; align-items: center; justify-content: flex-start;
  gap: .85rem; margin-bottom: 1rem;
  font-family: var(--font-d);
  font-size: clamp(1rem, 2.8vw, 1.45rem);
  font-weight: 600; color: rgba(226,232,240,0.92);
  clip-path: inset(0 100% 0 0);
  text-align: left;
}
.vs-icon {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}

/* ── PHASE 3 — Brand reveal ── */
#phase-3 { position: absolute; top: 0; left: 0; right: 0; }
.brand-name {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800; letter-spacing: -.035em;
  color: #ffffff; margin-bottom: .5rem;
}
.brand-tagline {
  font-family: var(--font-b);
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  font-weight: 400; color: rgba(148,163,184,0.75);
  margin-bottom: 2rem;
}
.intro-stats-row {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-bottom: 2.2rem; flex-wrap: wrap;
}
.intro-stat { text-align: center; }
.i-stat-num {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: #60a5fa;
}
.i-stat-lbl {
  font-size: .82rem; color: var(--slate-400); font-weight: 500; margin-top: .2rem;
}

/* Phase position container */
.phases-wrap { position: relative; min-height: 280px; }

/* Enter button */
#intro-enter {
  font-family: var(--font-d) !important;
  font-size: .9rem !important; font-weight: 700 !important;
  letter-spacing: .04em !important;
  padding: .9rem 2.8rem !important;
  border-radius: 100px !important;
  background: var(--blue) !important;
  border: none !important; color: #fff !important;
  box-shadow: 0 4px 20px rgba(14,45,84,.25) !important;
  opacity: 0; transform: scale(.92);
  transition: opacity .4s, transform .4s, box-shadow .25s !important;
}
#intro-enter.visible { opacity: 1 !important; transform: scale(1) !important; }
#intro-enter:hover {
  background: var(--blue) !important;
  box-shadow: 0 8px 32px rgba(37,99,235,.35) !important;
  transform: translateY(-2px) scale(1) !important;
}
.intro-exit {
  animation: introOut .7s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes introOut {
  0%   { opacity: 1; }
  100% { opacity: 0; transform: scale(1.04); }
}

/* ═══════════════════════════════════════════════════════════════
   BOOTSTRAP LIGHT OVERRIDES
/* ═══════════════════════════════════════════════════════════════
   BOOTSTRAP LIGHT OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
/* Buttons */
.btn-primary {
  background: var(--blue) !important; border-color: var(--blue) !important;
  color: #fff !important; font-family: var(--font-d) !important;
  font-weight: 700 !important; letter-spacing: .02em !important;
  transition: var(--trans) !important;
}
.btn-primary:hover {
  background: #1d4ed8 !important; border-color: #1d4ed8 !important;
  box-shadow: var(--shadow-blue) !important; transform: translateY(-2px) !important;
}
.btn-outline-primary {
  border-color: var(--blue) !important; color: var(--blue) !important;
  font-family: var(--font-d) !important; font-weight: 700 !important;
  letter-spacing: .02em !important; transition: var(--trans) !important;
}
.btn-outline-primary:hover {
  background: var(--blue) !important; color: #fff !important;
  box-shadow: var(--shadow-blue) !important; transform: translateY(-2px) !important;
}
.btn-light-outline {
  border: 1.5px solid rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.88) !important;
  background: transparent !important;
  font-family: var(--font-d) !important; font-weight: 600 !important;
  transition: var(--trans) !important;
}
.btn-light-outline:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.55) !important;
  color: #fff !important;
}

/* Navbar */
.navbar {
  transition: var(--trans) !important;
  background: rgba(255,255,255,.0) !important;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 0 var(--slate-200), var(--shadow-sm) !important;
}
.nav-link {
  font-family: var(--font-d) !important; font-size: .78rem !important;
  font-weight: 600 !important; letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.75) !important;
  transition: color .2s !important;
}
.navbar.scrolled .nav-link { color: var(--slate-500) !important; }
.nav-link:hover, .nav-link.active {
  color: #fff !important;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--navy) !important; }

/* Cards */
.card {
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--trans) !important;
}
.card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-4px) !important;
  border-color: var(--slate-200) !important;
}

/* Forms */
.form-control, .form-select {
  border-color: var(--slate-200) !important;
  border-radius: 8px !important;
  padding: .7rem 1rem !important;
  font-family: var(--font-b) !important;
  font-size: .95rem !important;
  color: var(--slate-900) !important;
  transition: var(--trans) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12) !important;
  outline: none !important;
}
.form-label {
  font-family: var(--font-d) !important;
  font-size: .7rem !important; font-weight: 700 !important;
  letter-spacing: .1em !important; text-transform: uppercase !important;
  color: var(--slate-500) !important; margin-bottom: .4rem !important;
}
textarea.form-control { resize: vertical; }

/* Accordion */
.accordion-item {
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .6rem; overflow: hidden;
}
.accordion-button {
  font-family: var(--font-d) !important; font-weight: 600 !important;
  color: var(--navy) !important; background: #fff !important;
  font-size: .97rem !important; padding: 1.1rem 1.4rem !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--blue) !important; }
.accordion-button::after {
  filter: invert(27%) sepia(90%) saturate(1200%) hue-rotate(210deg) brightness(85%);
}
.accordion-body {
  font-size: .93rem !important; color: var(--slate-500) !important;
  line-height: 1.78 !important; padding: 0 1.4rem 1.2rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR BRAND
   ═══════════════════════════════════════════════════════════════ */
.navbar-brand {
  font-family: var(--font-d) !important; font-weight: 800 !important;
  color: #fff !important;
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.navbar.scrolled .navbar-brand { color: var(--navy) !important; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .82rem; color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.35); flex-shrink: 0;
}
.nav-brand-sub {
  display: block; font-size: .5rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55); line-height: 1;
}
.navbar.scrolled .nav-brand-sub { color: var(--slate-400); }
.navbar-toggler { border: 1px solid rgba(255,255,255,.25) !important; }
.navbar.scrolled .navbar-toggler { border-color: var(--slate-200) !important; }
.btn-nav-cta {
  font-family: var(--font-d) !important; font-weight: 700 !important;
  font-size: .78rem !important; letter-spacing: .04em !important;
  background: var(--blue) !important; color: #fff !important;
  border: none !important; padding: .5rem 1.2rem !important;
  border-radius: 100px !important; transition: var(--trans) !important;
}
.btn-nav-cta:hover {
  background: var(--blue) !important;
  box-shadow: 0 4px 16px rgba(14,45,84,.25) !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, #1a3b6e 55%, #1e4080 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}
.hero-glow-1 {
  width: 500px; height: 500px; right: -100px; top: -80px;
  background: rgba(37,99,235,.2);
  animation: glowFloat 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 350px; height: 350px; left: -60px; bottom: -60px;
  background: rgba(8,145,178,.15);
  animation: glowFloat 11s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,15px) scale(1.05); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-m); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: .38rem 1rem; border-radius: 100px; margin-bottom: 1.8rem;
}
.hero-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,.2);
  animation: pulseDot 2s infinite;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.08; color: #fff; margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,.72);
  max-width: 530px; line-height: 1.8; margin-bottom: 2.2rem;
}
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; margin-top: 2.5rem;
}
.trust-chip {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.6);
  font-weight: 500;
}
.trust-chip i { color: #4ade80; font-size: .85rem; }

/* Hero visual — dashboard card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.hero-card-header {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1.2rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hc-dot {
  width: 9px; height: 9px; border-radius: 50%;
}
.hc-dot-r { background: #ff5f57; }
.hc-dot-y { background: #febc2e; }
.hc-dot-g { background: #28c840; }
.hc-title {
  font-family: var(--font-m); font-size: .65rem;
  letter-spacing: .12em; color: rgba(255,255,255,.4);
  text-transform: uppercase; margin-left: .4rem;
}
.hc-stat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-bottom: .75rem;
}
.hc-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: .85rem;
}
.hc-stat-num {
  font-family: var(--font-d); font-size: 1.4rem;
  font-weight: 800; color: #fff; line-height: 1;
}
.hc-stat-lbl {
  font-size: .72rem; color: rgba(255,255,255,.45);
  margin-top: .2rem; font-weight: 500;
}
.hc-bar-wrap { margin-bottom: .5rem; }
.hc-bar-label {
  display: flex; justify-content: space-between;
  font-size: .7rem; color: rgba(255,255,255,.45); margin-bottom: .35rem;
  font-weight: 500;
}
.hc-bar {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.08); overflow: hidden;
}
.hc-bar-fill {
  height: 100%; border-radius: 3px;
  animation: barGrow 2.5s ease forwards;
  animation-delay: var(--d, 0s);
  width: 0;
}
@keyframes barGrow { to { width: var(--w, 0%); } }
.hc-bar-fill.blue { background: linear-gradient(90deg, var(--blue), #60a5fa); }
.hc-bar-fill.teal { background: linear-gradient(90deg, var(--teal), #38bdf8); }
.hc-bar-fill.green { background: linear-gradient(90deg, var(--green), #4ade80); }
.hc-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem; font-weight: 600; padding: .25rem .65rem;
  border-radius: 100px; margin-right: .35rem; margin-bottom: .35rem;
}
.hc-badge.secure {
  background: rgba(4,120,87,.15); color: #4ade80;
  border: 1px solid rgba(4,120,87,.25);
}
.hc-badge.active {
  background: rgba(37,99,235,.15); color: #60a5fa;
  border: 1px solid rgba(37,99,235,.25);
}
.hc-badge.warning {
  background: rgba(180,83,9,.15); color: #fb923c;
  border: 1px solid rgba(180,83,9,.2);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
section { padding: 5.5rem 0; }
section.bg-soft { background: var(--slate-50); }
section.bg-blue-pale { background: var(--blue-pale); }
section.bg-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: rgba(255,255,255,.8);
}
section.bg-navy h2, section.bg-navy h3 { color: #fff; }

.section-label {
  font-family: var(--font-m); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue); font-weight: 500;
  margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem;
}
.section-label::before {
  content: ''; width: 14px; height: 2px;
  background: var(--blue); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.025em;
  color: var(--navy); line-height: 1.12; margin-bottom: 1rem;
}
.section-lead {
  font-size: 1rem; font-weight: 400;
  color: var(--slate-500); line-height: 1.82;
}

/* Stat callout */
.stat-callout {
  text-align: center; padding: 1.5rem;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stat-callout-num {
  font-family: var(--font-d); font-size: 2.4rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--blue); line-height: 1;
}
.stat-callout-lbl {
  font-size: .8rem; color: var(--slate-400); font-weight: 500;
  margin-top: .3rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════ */
.svc-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.8rem;
  height: 100%; transition: var(--trans);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue);
}
.svc-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
  transition: var(--trans);
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.08); }
.svc-title {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: .6rem;
}
.svc-desc {
  font-size: .9rem; color: var(--slate-500);
  line-height: 1.78; margin-bottom: 1rem;
}
.svc-features {
  list-style: none; padding: 0; margin: 0;
}
.svc-features li {
  font-size: .83rem; color: var(--slate-500);
  padding: .22rem 0; display: flex; align-items: flex-start; gap: .5rem;
}
.svc-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: .55rem;
}

/* ═══════════════════════════════════════════════════════════════
   ICON COLORS (for service cards)
   ═══════════════════════════════════════════════════════════════ */
.ico-blue   { background: var(--blue-pale);  color: var(--blue); }
.ico-teal   { background: var(--teal-pale);  color: var(--teal); }
.ico-amber  { background: var(--amber-pale); color: var(--amber); }
.ico-green  { background: var(--green-pale); color: var(--green); }
.ico-navy   { background: rgba(14,45,84,.07); color: var(--navy); }
.ico-purple { background: rgba(124,58,237,.07); color: #7c3aed; }

/* ═══════════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════════ */
.step-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.step-left { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.step-num-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: .85rem; font-weight: 800;
  box-shadow: 0 4px 14px rgba(37,99,235,.35); flex-shrink: 0;
}
.step-connector {
  width: 2px; flex: 1; min-height: 40px;
  background: linear-gradient(180deg, var(--blue), var(--slate-200));
  margin-top: .5rem;
}
.step-body { padding-top: .6rem; }
.step-title {
  font-family: var(--font-d); font-size: 1.05rem;
  font-weight: 700; color: var(--navy); margin-bottom: .4rem;
}
.step-text { font-size: .9rem; color: var(--slate-500); line-height: 1.78; }

/* ═══════════════════════════════════════════════════════════════
   QUOTE / PULL QUOTE
   ═══════════════════════════════════════════════════════════════ */
.pull-quote {
  border-left: 4px solid var(--blue);
  padding: 1.5rem 2rem; margin: 2rem 0;
  background: var(--blue-pale); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); line-height: 1.6; font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   TECH PILLS
   ═══════════════════════════════════════════════════════════════ */
.tech-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-b); font-size: .8rem; font-weight: 600;
  border: 1px solid var(--slate-200); color: var(--slate-500);
  padding: .4rem 1rem; border-radius: 100px;
  background: #fff; box-shadow: var(--shadow-sm); transition: var(--trans);
}
.tech-pill:hover {
  border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-blue);
}
.tech-pill i { font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════
   INTEGRATION BLOCKS
   ═══════════════════════════════════════════════════════════════ */
.integration-block {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.integration-block:hover {
  border-color: rgba(37,99,235,.25);
  box-shadow: var(--shadow-md);
}
.integration-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .85rem;
}
.integration-chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.int-chip {
  font-family: var(--font-b); font-size: .76rem; font-weight: 600;
  color: var(--slate-500);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: .22rem .7rem; border-radius: 100px;
  transition: var(--trans);
}
.int-chip:hover {
  background: var(--blue-pale);
  border-color: rgba(37,99,235,.25);
  color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem; background: #fff;
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.contact-icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.c-label {
  font-family: var(--font-m); font-size: .58rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--slate-400); margin-bottom: .2rem;
}
.c-value { font-size: .92rem; color: var(--slate-900); font-weight: 600; }
.form-panel {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.monogram {
  width: 88px; height: 88px; border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 2rem; font-weight: 900; color: #fff;
  box-shadow: 0 12px 32px rgba(14,45,84,.3); margin-bottom: 1.5rem;
}
.value-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center; transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.2rem;
}
.value-title {
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: .4rem;
}
.value-body { font-size: .83rem; color: var(--slate-500); line-height: 1.7; }
.exp-item {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.exp-item:hover { border-left-color: var(--teal); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════════════════════
   CTA DARK SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3b6e 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: linear-gradient(145deg, var(--navy), #1a3b6e);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.page-hero .section-label { color: rgba(255,255,255,.5); }
.page-hero .section-label::before { background: rgba(255,255,255,.4); }
.page-hero .hero-title { color: #fff; }
.page-hero .hero-lead { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 800;
  color: #fff; display: flex; align-items: center; gap: .6rem;
  text-decoration: none; margin-bottom: .9rem;
}
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 270px; }
.footer-head {
  font-family: var(--font-d); font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .85rem;
}
.footer-link {
  display: block; font-size: .87rem; color: rgba(255,255,255,.45);
  text-decoration: none; padding: .18rem 0; transition: color .2s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem; padding-top: 1.5rem;
  font-size: .75rem; color: rgba(255,255,255,.25);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.text-navy  { color: var(--navy) !important; }
.text-blue  { color: var(--blue) !important; }
.text-teal  { color: var(--teal) !important; }
.text-muted-sm { font-size: .82rem; color: var(--slate-400); }
.mono { font-family: var(--font-m); }
.divider { height: 1px; background: var(--slate-200); margin: 3rem 0; }
.divider-blue { height: 2px; width: 48px; background: var(--blue); border-radius: 2px; margin-bottom: 1.5rem; }
