/* ================================================================
   PROCUREMENT VMS — ENTERPRISE DESIGN SYSTEM v2
   Brand: Light Arctic + Emerald Primary + Slate Typography
   Display: Inter 300–900
   Redesigned: Light theme with glass effects & CSS animations
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Primary Palette */
  --primary:       #10b77f;
  --primary-dark:  #0ea06f;
  --primary-light: #34d399;
  --primary-50:    rgba(16,183,127,0.05);
  --primary-100:   rgba(16,183,127,0.10);
  --primary-200:   rgba(16,183,127,0.20);
  --primary-shadow: rgba(16,183,127,0.25);

  /* Neutral Palette */
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --slate-400:  #94a3b8;
  --slate-500:  #64748b;
  --slate-600:  #475569;
  --slate-700:  #334155;
  --slate-800:  #1e293b;
  --slate-900:  #0f172a;
  --slate-950:  #020617;
  --white:      #ffffff;

  /* Semantic Roles */
  --bg-base:       #f6f8f7;
  --bg-white:      #ffffff;
  --bg-dark:       #0f172a;
  --bg-dark-raised:#1e293b;
  --bg-dark-overlay:#334155;
  --text-heading:  var(--slate-900);
  --text-body:     var(--slate-600);
  --text-muted:    var(--slate-400);
  --text-white:    #ffffff;
  --border:        rgba(0,0,0,0.06);
  --border-strong: var(--slate-200);
  --border-dark:   rgba(255,255,255,0.08);
  --accent:        var(--primary);

  /* Typography */
  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;
  --fs-7xl:  4.5rem;

  /* Spacing (8pt grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 9999px;

  /* Elevation */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -2px rgba(0,0,0,0.04);
  --shadow-xl:    0 20px 50px -10px rgba(0,0,0,0.12);
  --shadow-2xl:   0 25px 60px -12px rgba(0,0,0,0.18);
  --shadow-primary: 0 10px 30px var(--primary-shadow);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.06);

  /* Motion */
  --ease-fast: 0.14s ease;
  --ease-base: 0.24s ease;
  --ease-slow: 0.4s cubic-bezier(.4,0,.2,1);
  --ease-spring: 0.5s cubic-bezier(.22,1,.36,1);

  /* Layout */
  --max-w:    1280px;
  --max-w-nav: 1400px;
  --nav-h:    72px;
  --col-gap:  1.5rem;

  /* Legacy aliases — used in inline styles across pages */
  --bg-raised:      var(--bg-white);
  --bg-overlay:     rgba(0,0,0,0.5);
  --border-accent:  var(--primary-200);
  --border-subtle:  var(--border);
  --clr-error:      #ef4444;
  --clr-navy-700:   var(--slate-700);
  --clr-navy-800:   var(--slate-800);
  --clr-navy-900:   var(--slate-900);
  --clr-navy-950:   var(--slate-950);
  --clr-slate-50:   var(--slate-50);
  --clr-success:    var(--primary);
  --clr-teal-500:   var(--primary-light);
  --clr-teal-600:   var(--primary);
  --clr-warning:    #f59e0b;
  --clr-white:      var(--white);
  --ff-display:     var(--ff);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-heading);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: var(--r-sm); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}
h1 { font-size: clamp(2.5rem, 5.5vw, var(--fs-7xl)); font-weight: 900; }
h2 { font-size: clamp(1.875rem, 3.8vw, var(--fs-5xl)); }
h3 { font-size: clamp(1.375rem, 2.5vw, var(--fs-3xl)); }
h4 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.015em; }
h5 { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--text-body); line-height: 1.78; }
strong { font-weight: 700; color: inherit; }
em { font-style: italic; }

/* ── UTILITY CLASSES ───────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.section       { padding-block: var(--sp-24); }
.section-sm    { padding-block: var(--sp-16); }
.section-lg    { padding-block: var(--sp-32); }

/* Light section (white bg, for contrast against base) */
.section-light {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-light p,
.section-light .text-muted { color: var(--text-body); }
.section-light h2, .section-light h3, .section-light h4, .section-light h5 { color: var(--text-heading); }
.section-light .section-eyebrow { color: var(--primary); }
.section-light .section-eyebrow::before { background: var(--primary); }

/* Mid section (slightly different from base) */
.section-mid { background: var(--bg-base); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--col-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--col-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--col-gap); }
.flex-c { display: flex; align-items: center; }
.flex-bc { display: flex; align-items: center; justify-content: space-between; }
.flex-cc { display: flex; align-items: center; justify-content: center; }

/* ── SECTION EYEBROW ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-4);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-header { margin-bottom: var(--sp-12); }
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center .section-subtitle { margin-inline: auto; }
.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-body);
  margin-top: var(--sp-4);
  max-width: 640px;
  line-height: 1.72;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--r-lg);
  transition: all var(--ease-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px var(--primary-shadow), 0 0 0 0 var(--primary-200);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 25px var(--primary-shadow);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-secondary {
  background: var(--bg-white);
  color: var(--text-heading);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--slate-300);
  background: var(--slate-50);
  transform: translateY(-1px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary-200);
}
.btn-outline-teal:hover { background: var(--primary-50); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 13px 0;
  border: none;
  font-weight: 700;
}
.btn-ghost:hover { gap: var(--sp-3); }
.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--border-dark);
}
.btn-dark:hover { background: var(--bg-dark-raised); transform: translateY(-1px); }
.btn-lg { padding: 17px 38px; font-size: var(--fs-base); border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: var(--fs-xs); letter-spacing: 0.02em; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--ease-base);
  will-change: background, border-color, box-shadow;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav .container { max-width: var(--max-w-nav); height: 100%; }
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff);
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-heading);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--primary-shadow);
}
.logo-mark svg { width: 20px; height: 20px; fill: var(--white); }
.logo-text em { font-style: normal; color: var(--primary); font-size: 0.9em; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  overflow: visible;
  min-width: 0;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 8px 8px;
  border-radius: var(--r-sm);
  transition: color var(--ease-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: var(--sp-3); right: var(--sp-3);
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-actions .btn-primary {
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-size: var(--fs-sm);
  box-shadow: 0 2px 10px var(--primary-shadow);
}
.nav-actions .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px var(--primary-shadow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-heading);
  border-radius: 1px;
  transition: all var(--ease-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 899;
  background: var(--white);
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-1);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; animation: slideDown 0.25s ease; }
.mobile-nav-link {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-body);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease-fast);
  display: block;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav .btn { margin-top: var(--sp-5); width: 100%; justify-content: center; }

/* ── DROPDOWN NAVIGATION ────────────────────────────────────── */
.nav-item { position: relative; }
.nav-link-parent {
  display: flex; align-items: center; gap: 3px; cursor: pointer;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-body);
  padding: 8px 8px; border-radius: 6px; white-space: nowrap;
  transition: color .15s ease; user-select: none;
}
.nav-link-parent:hover { color: var(--primary); }
.nav-item:hover > .nav-link-parent { color: var(--primary); }

.caret {
  display: inline-block; width: 10px; height: 6px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform .2s ease;
}
.nav-item:hover > .nav-link-parent .caret { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  min-width: 220px; padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 9999;
}
.nav-item:hover > .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge between trigger and panel */
.nav-item::after {
  content: ''; position: absolute; bottom: -12px; left: 0; right: 0;
  height: 12px; background: transparent; z-index: 9998;
}
.dropdown::after {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: var(--white); border-top: none;
}

.dropdown-label {
  display: block; font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); padding: 8px 10px 4px;
}
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px; font-size: .8125rem;
  font-weight: 500; color: var(--text-body); text-decoration: none;
  transition: background .12s, color .12s; white-space: nowrap;
}
.dropdown-item:hover { background: var(--primary-50); color: var(--primary); }
.dropdown-item::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--primary-200); flex-shrink: 0;
  transition: background .12s;
}
.dropdown-item:hover::before { background: var(--primary); }
.dropdown-item.live { color: var(--text-heading); font-weight: 600; }
.dropdown-item.live::before { background: var(--primary); }

/* Wide 2-col Resources dropdown */
.dropdown-wide {
  min-width: 400px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 4px; left: auto; right: 0; transform: translateY(4px);
}
.nav-item:hover > .dropdown-wide { transform: translateY(0); }
.dropdown-wide::after { left: auto; right: 28px; transform: none; }

/* Right-align last 2 dropdowns so they don't overflow */
.nav-item:nth-last-child(-n+2) > .dropdown:not(.dropdown-wide) {
  left: auto; right: 0; transform: translateY(4px);
}
.nav-item:nth-last-child(-n+2):hover > .dropdown:not(.dropdown-wide) {
  transform: translateY(0);
}
.nav-item:nth-last-child(-n+2) > .dropdown::after { left: auto; right: 20px; transform: none; }

/* Mobile dropdown */
.mobile-group { border-bottom: 1px solid var(--border); }
.mobile-nav-parent {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 500; color: var(--text-body);
  padding: 14px 0; cursor: pointer; transition: color .15s;
  user-select: none;
}
.mobile-nav-parent:hover, .mobile-nav-parent.open { color: var(--text-heading); }
.m-caret { font-size: 1.1rem; color: var(--text-muted); transition: transform .2s; display: inline-block; }
.mobile-nav-parent.open .m-caret { transform: rotate(180deg); }
.mobile-dropdown {
  display: none; flex-direction: column; padding: 4px 0 12px 12px; gap: 2px;
}
.mobile-dropdown.open { display: flex; }
.mobile-sub-link {
  font-size: .875rem; color: var(--text-muted); padding: 7px 0;
  text-decoration: none; display: block; transition: color .15s;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.mobile-sub-link:hover { color: var(--primary); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: calc(var(--nav-h) + 18px);
  padding-bottom: 18px;
  overflow-x: hidden;
  background: var(--bg-base);
  box-sizing: border-box;
}
.hero > .container {
  display: flex;
  align-items: center;
  flex: 1;
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 50% 50%, rgba(16,183,127,0.06) 0%, transparent 70%),
    linear-gradient(155deg, #f6f8f7 0%, #eef3f0 45%, #f6f8f7 100%);
  pointer-events: none;
}
.hero-grid-layer {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,183,127,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,183,127,0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 78% 80% at 50% 45%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 80% at 50% 45%, black 25%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,183,127,0.08) 0%, transparent 70%);
  top: 50%; right: 4%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--sp-12);
  align-items: start;
  width: 100%;
  max-height: 100%;
  min-height: 0;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--r-pill);
  padding: 5px 16px 5px 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-6);
  animation: fadeInUp 0.6s ease both;
}
.hero-pill-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
.hero-content h1 {
  margin-bottom: var(--sp-6);
  color: var(--text-heading);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-desc {
  font-size: var(--fs-lg);
  color: var(--text-body);
  line-height: 1.76;
  max-width: 540px;
  margin-bottom: var(--sp-10);
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.trust-item-icon { font-size: 0.875rem; }

/* Hero Image (from code.html design) */
.hero-image-wrap {
  position: relative;
  animation: heroFloatIn 0.9s 0.3s cubic-bezier(.22,1,.36,1) both;
  min-height: 0;
  max-height: 100%;
  display: flex;
  align-items: center;
}
.hero-image-card {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin-top: 20px;
  border-radius: var(--r-2xl);
  border: 1px solid var(--white);
  box-shadow: var(--shadow-2xl);
  max-height: calc(100vh - var(--nav-h) - 36px);
}
.hero-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--nav-h) - 36px);
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero-image-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.hero-image-stat {
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.2;
}
.hero-image-detail {
  font-size: var(--fs-sm);
  color: var(--text-body);
  margin-top: 4px;
}
.hero-image-glow {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(16,183,127,0.10);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-12);
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); }
.stat-block { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--ff);
  font-size: clamp(2rem, 3.5vw, var(--fs-5xl));
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.03em;
}
.stat-lbl { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.45; }

/* ── FEATURE GRID ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-6);
}
.feat-card {
  background: var(--bg-white);
  padding: var(--sp-8);
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  transition: all var(--ease-base);
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--ease-base);
}
.feat-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 52px; height: 52px;
  background: var(--primary-100);
  border: 1px solid var(--primary-200);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
  transition: all var(--ease-base);
}
.feat-card:hover .feat-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--primary-shadow);
}
.feat-card:hover .feat-icon > * {
  filter: brightness(10);
}
.feat-card h4 { color: var(--text-heading); margin-bottom: var(--sp-3); }
.feat-card p { font-size: var(--fs-sm); line-height: 1.72; }

/* ── ICP CARDS ──────────────────────────────────────────────── */
.icp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-6); }
.icp-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  transition: all var(--ease-base);
}
.icp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}
.icp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.icp-role {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
}
.icp-card h3 { color: var(--text-heading); margin-bottom: var(--sp-3); font-size: var(--fs-xl); }
.icp-card p  { color: var(--text-body); font-size: var(--fs-sm); }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); position: relative; }
.steps-row::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 13px);
  right: calc(12.5% + 13px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-200) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff);
  font-size: var(--fs-lg); font-weight: 800;
  color: var(--primary);
  margin: 0 auto var(--sp-5);
  box-shadow: 0 2px 8px var(--primary-shadow);
  transition: all var(--ease-base);
}
.step:hover .step-num {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.step h4 { color: var(--text-heading); margin-bottom: var(--sp-3); font-size: var(--fs-base); }
.step p { font-size: var(--fs-sm); }

/* ── WHY CARDS ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
.why-card {
  display: flex; gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  transition: all var(--ease-base);
}
.why-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-tick {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #fff; font-weight: 700;
  margin-top: 2px;
  box-shadow: 0 2px 6px var(--primary-shadow);
}
.why-card h4 { color: var(--text-heading); margin-bottom: var(--sp-2); }
.why-card p  { font-size: var(--fs-sm); }

/* ── INTEGRATION LOGOS BAR ──────────────────────────────────── */
.integrations-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-5) var(--sp-8);
  padding-block: var(--sp-10);
}
.int-logo {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.04em;
  opacity: 0.5;
  transition: all var(--ease-base);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--bg-white);
}
.int-logo:hover {
  opacity: 1;
  border-color: var(--primary-200);
  box-shadow: var(--shadow-sm);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  background: var(--bg-white);
  transition: all var(--ease-base);
}
.faq-item:hover { border-color: var(--primary-200); }
.faq-item.open { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--ff);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-heading);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--ease-fast);
}
.faq-btn:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: all var(--ease-base);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-100);
  border-color: var(--primary-200);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
}
.faq-item.open .faq-body { max-height: 600px; padding: 0 var(--sp-6) var(--sp-6); }
.faq-body p { font-size: var(--fs-sm); color: var(--text-body); line-height: 1.8; }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-dark);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,183,127,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(16,183,127,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .section-eyebrow { color: var(--primary-light); }
.cta-band .section-eyebrow::before { background: var(--primary-light); }
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-4); position: relative; z-index: 1; }
.cta-band > p { color: var(--slate-400); max-width: 560px; margin-inline: auto; margin-bottom: var(--sp-8); position: relative; z-index: 1; }
.cta-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .btn-primary {
  box-shadow: 0 4px 20px var(--primary-shadow);
}
.cta-band .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--primary-shadow);
}
.cta-band .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--bg-base);
  padding-block-start: calc(var(--nav-h) + var(--sp-16));
  padding-block-end: var(--sp-16);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(16,183,127,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.3;
}
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); color: var(--text-muted);
  margin-bottom: var(--sp-8);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: 0.5; }
.page-hero h1 { max-width: 680px; margin-bottom: var(--sp-5); color: var(--text-heading); }
.page-hero-lead {
  font-size: var(--fs-lg);
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.74;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
  transition: all var(--ease-base);
}
.contact-panel:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}
.contact-panel h4 { color: var(--text-heading); margin-bottom: var(--sp-3); }
.contact-panel p  { font-size: var(--fs-sm); margin-bottom: var(--sp-3); }
.contact-row {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); color: var(--text-body);
}
.contact-row a { color: var(--primary); }
.contact-row a:hover { text-decoration: underline; }

/* Form */
.form-box {
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group.span-2 { grid-column: 1 / -1; }
.form-label {
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--text-heading);
}
.form-label .req { color: var(--primary); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--slate-50);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 13px var(--sp-4);
  font-family: var(--ff);
  font-size: var(--fs-sm);
  color: var(--text-heading);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-100);
  background: var(--white);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-select option { background: var(--white); }
.form-textarea { resize: vertical; min-height: 118px; line-height: 1.6; }

/* ── ABOUT / BELIEF CARDS ───────────────────────────────────── */
.belief-card {
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--ease-base);
}
.belief-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.belief-num {
  position: absolute; top: var(--sp-5); right: var(--sp-6);
  font-family: var(--ff);
  font-size: 3.25rem; font-weight: 900;
  color: var(--primary-100);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.belief-card h4 { color: var(--text-heading); margin-bottom: var(--sp-3); font-size: var(--fs-lg); }
.belief-card p  { font-size: var(--fs-sm); }

/* ── VISION QUOTE ───────────────────────────────────────────── */
.vision-quote {
  background: var(--bg-white);
  border: 1px solid var(--primary-200);
  border-radius: var(--r-2xl);
  padding: var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision-quote::before {
  content: '\201C';
  position: absolute; top: -3rem; left: var(--sp-8);
  font-family: var(--ff);
  font-size: 18rem; font-weight: 900;
  color: var(--primary-50);
  line-height: 1;
  pointer-events: none;
}
.vision-quote h3 {
  font-size: clamp(1.35rem, 2.4vw, var(--fs-3xl));
  color: var(--text-heading);
  line-height: 1.42;
  position: relative;
}

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-wrap { max-width: 800px; margin-inline: auto; }
.legal-meta {
  display: flex; gap: var(--sp-8); flex-wrap: wrap;
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-10);
}
.legal-meta-item label {
  display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.legal-meta-item span { font-size: var(--fs-sm); color: var(--text-heading); }
.legal-alert {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.legal-alert p { font-size: var(--fs-sm); color: var(--text-body); margin: 0; }
.legal-wrap h2 {
  font-size: var(--fs-2xl); color: var(--text-heading);
  margin-top: var(--sp-10); margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.legal-wrap h3 { font-size: var(--fs-lg); color: var(--text-heading); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.legal-wrap p  { font-size: var(--fs-sm); color: var(--text-body); margin-bottom: var(--sp-4); line-height: 1.82; }
.legal-wrap ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-wrap li { font-size: var(--fs-sm); color: var(--text-body); margin-bottom: var(--sp-2); line-height: 1.74; }
.legal-wrap a  { color: var(--primary); }
.legal-wrap a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-block-start: var(--sp-16);
  padding-block-end: var(--sp-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: var(--sp-8);
}
.footer .nav-logo { color: var(--white); }
.footer .logo-text em { color: var(--primary); }
.footer-brand p {
  font-size: var(--fs-sm); color: var(--slate-400); line-height: 1.74;
  max-width: 270px; margin-top: var(--sp-4);
}
.footer-sec-badges { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-5); }
.sec-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: var(--fs-xs); color: var(--slate-400);
}
.sec-badge-icon { color: var(--primary); font-size: 0.7rem; }
.footer-col h5 {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-400); margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  font-size: var(--fs-sm); color: var(--slate-300);
  transition: color var(--ease-fast);
}
.footer-link:hover { color: var(--primary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-copy { font-size: var(--fs-xs); color: var(--slate-500); }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal a {
  font-size: var(--fs-xs); color: var(--slate-500);
  transition: color var(--ease-fast);
}
.footer-legal a:hover { color: var(--white); }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.75); }
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes heroFloatIn {
  from { opacity: 0; transform: translateX(40px) translateY(10px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1; transform: translateY(-50%) scale(1.08); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { height: auto; min-height: 0; padding-top: calc(var(--nav-h) + 18px); padding-bottom: 18px; align-items: center; }
  .hero > .container { min-height: auto; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .icp-grid  { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2,1fr); }
  .steps-row::before { display: none; }
  .why-grid  { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-16); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: var(--sp-10) var(--sp-6); border-radius: var(--r-xl); }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-box { padding: var(--sp-6); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal-meta { flex-direction: column; gap: var(--sp-4); }
  .stats-row { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
