/* =============================================
   ALL IN ONE SOLUTIONS PROVIDER
   Professional Design System v3.0
   Fonts: Plus Jakarta Sans + Inter
   ============================================= */

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

/* ─── Design Tokens ──────────────────────────── */
:root {
  /* ── Typography ── */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* ── Core Dark Palette ── */
  --navy-950: #05080f;
  --navy-900: #080d1a;
  --navy-800: #0c1224;
  --navy-700: #101930;
  --navy-600: #162140;
  --navy-500: #1e2d54;

  /* ── Primary Blue ── */
  --blue-700: #1241b8;
  --blue-600: #1a52d0;
  --blue-500: #2563eb;
  --blue-400: #4f82f3;
  --blue-300: #93b4f8;
  --blue-100: rgba(37,99,235,.09);
  --blue-glow: rgba(37,99,235,.20);

  /* ── Gold Accent ── */
  --gold-600:  #b45309;
  --gold-500:  #d97706;
  --gold-400:  #f59e0b;
  --gold-300:  #fbbf24;
  --gold-100:  rgba(245,158,11,.09);
  --gold-glow: rgba(245,158,11,.18);

  /* ── Semantic ── */
  --green:    #059669;
  --green-lt: rgba(5,150,105,.10);
  --red:      #dc2626;

  /* ── Backgrounds ── */
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;

  /* ── Text ── */
  --text-950: #020617;
  --text-800: #0f172a;
  --text-600: #334155;
  --text-400: #64748b;
  --text-300: #94a3b8;

  /* ── Border ── */
  --border:       #e2e8f0;
  --border-med:   #c8d4e8;
  --border-dark:  rgba(255,255,255,.08);

  /* ── Shadows ── */
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg:  0 10px 40px rgba(15,23,42,.11), 0 4px 12px rgba(15,23,42,.06);
  --shadow-xl:  0 20px 60px rgba(15,23,42,.14), 0 8px 20px rgba(15,23,42,.08);
  --shadow-blue: 0 8px 28px rgba(37,99,235,.22);
  --shadow-gold: 0 8px 28px rgba(245,158,11,.22);

  /* ── Gradients ── */
  --grad-hero:  linear-gradient(160deg, #05080f 0%, #080d1a 40%, #0d1530 70%, #162040 100%);
  --grad-blue:  linear-gradient(135deg, #1a52d0 0%, #2563eb 100%);
  --grad-gold:  linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  --grad-surface: linear-gradient(160deg, #f8fafc 0%, #eef2ff 100%);

  /* ── Radii ── */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* ── Motion ── */
  --t-fast: 150ms;
  --t-base: 240ms;
  --t-slow: 380ms;
  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--text-800); background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px !important; }

/* ─── Utility Gradients ───────────────────────── */
.gradient-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Container ──────────────────────────────── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 32px;
}

/* ─── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              backdrop-filter var(--t-base) var(--ease);
}
.nav.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: transform var(--t-fast) var(--spring);
}
.nav-logo:hover .logo-img {
  transform: scale(1.03);
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
  box-shadow: 0 4px 14px var(--blue-glow);
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-copy { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 700;
  color: var(--white); letter-spacing: -.01em;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: .67rem; font-weight: 500;
  color: rgba(255,255,255,.40); letter-spacing: .04em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600;
  color: var(--text-500); letter-spacing: .01em;
  padding: 7px 14px; border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.nav-link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-link.active { color: var(--blue-600); font-weight: 700; }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 700;
  color: var(--white); letter-spacing: .01em;
  padding: 9px 20px; margin-left: 8px;
  background: var(--grad-blue);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-blue);
  transition: opacity var(--t-fast), transform var(--t-fast) var(--spring);
}
.nav-cta-btn:hover { opacity: .88; transform: translateY(-1px); }

/* Mobile burger */
.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; width: 30px; padding: 4px;
}
.nav-burger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-600);
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease),
              width var(--t-base) var(--ease);
}
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .875rem; font-weight: 700;
  letter-spacing: .01em;
  padding: 11px 22px; border-radius: var(--r-md);
  transition: all var(--t-base) var(--spring);
  cursor: pointer; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-blue); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(37,99,235,.32); }

.btn-gold {
  background: var(--grad-gold); color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 12px 36px rgba(245,158,11,.32); }

.btn-outline {
  background: transparent; color: var(--blue-500);
  border: 1.5px solid var(--blue-500);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--blue-100);
  box-shadow: 0 4px 16px var(--blue-glow);
}

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }

.btn-lg { padding: 14px 30px; font-size: .95rem; border-radius: var(--r-md); }
.btn-sm { padding: 8px 16px; font-size: .8rem; border-radius: var(--r-sm); }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block; width: 18px; height: 2px;
  background: var(--grad-blue); border-radius: 2px;
}
.eyebrow-gold { color: var(--gold-400); }
.eyebrow-gold::before { background: var(--grad-gold); }

.heading-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
}
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--text-800);
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-800);
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700; line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--text-800);
}
.heading-sm {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--text-800);
}

.body-lg {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.75;
  color: var(--text-600);
}
.body-md {
  font-family: var(--font-body);
  font-size: .9375rem; line-height: 1.7;
  color: var(--text-600);
}

.lead {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.75;
  color: var(--text-400); max-width: 640px;
}
.lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead.dark { color: rgba(255,255,255,.55); }

.divider {
  width: 44px; height: 3px; border-radius: 3px;
  background: var(--grad-blue);
  margin: 18px 0 24px;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider.gold { background: var(--grad-gold); }

/* ═══════════════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════════════ */
.sect { padding: 100px 0; }
.sect-sm { padding: 60px 0; }
.sect-header { margin-bottom: 60px; }
.sect-header.center { text-align: center; }
.sect-header.center .eyebrow { justify-content: center; }
.sect-header.center .divider { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   HERO (HOMEPAGE)
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 72px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(37,99,235,.14) 0%, transparent 70%);
  top: -120px; left: -100px;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(245,158,11,.09) 0%, transparent 70%);
  bottom: 0; right: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.2);
  border-radius: 100px; padding: 6px 14px;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  color: var(--blue-300); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 26px;
}
.hero-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-400);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%        { opacity: .5; transform: scale(.7); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; color: var(--white);
  margin-bottom: 22px;
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  margin-top: 52px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.h-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); letter-spacing: -.02em;
}
.h-stat-lbl {
  font-family: var(--font-body);
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.06);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-chip {
  position: absolute;
  background: rgba(8,13,26,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-chip-1 { bottom: -20px; left: -24px; }
.hero-chip-2 { top: -18px; right: -20px; }
.chip-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chip-icon.blue { background: var(--blue-100); color: var(--blue-500); }
.chip-icon.gold { background: var(--gold-100); color: var(--gold-400); }
.chip-icon svg { width: 16px; height: 16px; }
.chip-val {
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 700; color: var(--white);
}
.chip-sub {
  font-family: var(--font-body);
  font-size: .68rem; color: rgba(255,255,255,.4); margin-top: 1px;
}

/* ═══════════════════════════════════════════════
   BADGES / TAGS
═══════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.badge-blue { background: var(--blue-100); color: var(--blue-600); border: 1px solid rgba(37,99,235,.15); }
.badge-gold { background: var(--gold-100); color: var(--gold-600); border: 1px solid rgba(245,158,11,.18); }
.badge-dark { background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.10); }

/* ═══════════════════════════════════════════════
   ICON BOX
═══════════════════════════════════════════════ */
.icon-box {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; }
.icon-box.blue { background: var(--blue-100); color: var(--blue-500); border: 1px solid rgba(37,99,235,.14); }
.icon-box.gold { background: var(--gold-100); color: var(--gold-500); border: 1px solid rgba(245,158,11,.18); }
.icon-box.green { background: var(--green-lt); color: var(--green); border: 1px solid rgba(5,150,105,.15); }
.icon-box.dark { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.10); }

/* ═══════════════════════════════════════════════
   FEATURE CARDS (Homepage)
═══════════════════════════════════════════════ */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--spring),
              border-color var(--t-base) var(--ease);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: var(--grad-blue); border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
  transform-origin: left;
}
.feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-med);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card .icon-box { margin-bottom: 22px; }
.feat-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text-800); margin-bottom: 10px;
  letter-spacing: -.01em;
}
.feat-desc {
  font-family: var(--font-body);
  font-size: .875rem; line-height: 1.7;
  color: var(--text-400);
}

/* ═══════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--spring);
  display: flex; flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-card-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 20px;
}
.svc-num {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-300); margin-top: 4px;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--text-800); margin-bottom: 12px;
  letter-spacing: -.015em;
}
.svc-desc {
  font-family: var(--font-body);
  font-size: .875rem; line-height: 1.7;
  color: var(--text-400); flex: 1; margin-bottom: 24px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 700;
  color: var(--blue-500); letter-spacing: .01em;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast);
}
.svc-link svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease); }
.svc-link:hover { color: var(--blue-700); gap: 10px; }
.svc-link:hover svg { transform: translateX(3px); }

/* Dark svc card */
.svc-card.dark {
  background: var(--grad-hero);
  border-color: rgba(37,99,235,.2);
}
.svc-card.dark .svc-title { color: var(--white); }
.svc-card.dark .svc-desc  { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════
   SCHEME CARDS
═══════════════════════════════════════════════ */
.schemes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scheme-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--spring);
}
.scheme-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.scheme-abbr {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 6px;
}
.scheme-name {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--text-800); margin-bottom: 10px;
  line-height: 1.35; letter-spacing: -.01em;
}
.scheme-desc {
  font-family: var(--font-body);
  font-size: .82rem; line-height: 1.65;
  color: var(--text-400); margin-bottom: 14px;
}
.scheme-limit {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  color: var(--gold-600); letter-spacing: .04em;
  background: var(--gold-100); border: 1px solid rgba(245,158,11,.18);
  padding: 3px 10px; border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════ */
.stats-band {
  background: var(--grad-hero);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.stats-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 56px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  color: var(--white); line-height: 1;
  letter-spacing: -.03em; margin-bottom: 8px;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: .8rem; color: rgba(255,255,255,.4);
  letter-spacing: .04em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--spring);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tcard-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
}
.tcard-stars svg { width: 14px; height: 14px; color: var(--gold-400); }
.tcard-text {
  font-family: var(--font-body);
  font-size: .9rem; line-height: 1.75;
  color: var(--text-600); flex: 1; margin-bottom: 24px;
  font-style: italic;
}
.tcard-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.tcard-avatar.blue { background: var(--grad-blue); }
.tcard-avatar.gold { background: var(--grad-gold); }
.tcard-name {
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 700; color: var(--text-800);
}
.tcard-role {
  font-family: var(--font-body);
  font-size: .75rem; color: var(--text-400); margin-top: 1px;
}

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-band::before {
  content: '';
  position: absolute; top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
  text-align: center; padding: 0 32px;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.025em; margin-bottom: 16px;
  line-height: 1.15;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 1.0rem; line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 40px;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════ */
.page-hero {
  background: var(--grad-hero);
  padding: 150px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.ph-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.10) 0%, transparent 70%);
  top: -120px; right: -80px; pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1; max-width: 760px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; color: var(--white);
  margin: 16px 0 18px;
}
.page-hero-content p {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 600px; margin-bottom: 28px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }
.breadcrumb-current { color: rgba(255,255,255,.6); font-weight: 500; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE — FOUNDERS
═══════════════════════════════════════════════ */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin: 0 auto; }
.founder-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.founder-avatar {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--white); margin-bottom: 18px;
}
.founder-avatar.blue { background: var(--grad-blue); box-shadow: 0 8px 20px var(--blue-glow); }
.founder-avatar.gold { background: var(--grad-gold); box-shadow: 0 8px 20px var(--gold-glow); }
.founder-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  color: var(--text-800); letter-spacing: -.01em; margin-bottom: 3px;
}
.founder-role {
  font-family: var(--font-display); font-size: .75rem; font-weight: 700;
  color: var(--blue-500); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}
.founder-bio {
  font-family: var(--font-body); font-size: .875rem; line-height: 1.7; color: var(--text-400);
  margin-bottom: 18px;
}
.founder-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  color: var(--blue-500); letter-spacing: .01em;
  transition: gap var(--t-fast);
}
.founder-link:hover { gap: 10px; }
.founder-link svg { width: 12px; height: 12px; }

/* Core Values Grid */
.cv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}
.cv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cv-num {
  font-family: var(--font-display); font-size: .7rem; font-weight: 800;
  color: var(--text-300); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.cv-icon { margin-bottom: 14px; }
.cv-icon .icon-box { width: 44px; height: 44px; border-radius: 11px; }
.cv-icon .icon-box svg { width: 18px; height: 18px; }
.cv-title {
  font-family: var(--font-display); font-size: .95rem; font-weight: 800;
  color: var(--text-800); margin-bottom: 8px; letter-spacing: -.01em;
}
.cv-text {
  font-family: var(--font-body); font-size: .84rem; line-height: 1.65; color: var(--text-400);
}

/* Mission/Vision Cards */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  border-left: 4px solid var(--blue-500);
}
.mv-card.gold { border-left-color: var(--gold-400); }
.mv-card-icon { margin-bottom: 18px; }
.mv-card-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  color: var(--text-800); margin-bottom: 12px; letter-spacing: -.015em;
}
.mv-card-text {
  font-family: var(--font-body); font-size: .9rem; line-height: 1.75; color: var(--text-400);
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */
.svc-detail-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 28px;
  transition: box-shadow var(--t-base) var(--ease);
}
.svc-detail-card:hover { box-shadow: var(--shadow-xl); }
.svc-detail-card.flip { direction: rtl; }
.svc-detail-card.flip > * { direction: ltr; }
.svc-detail-card.dark-card {
  background: var(--grad-hero);
  border-color: rgba(37,99,235,.2);
}
.svc-detail-img img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--r-lg); display: block;
}
.svc-detail-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--text-800); margin: 12px 0 14px;
}
.svc-detail-title.white { color: var(--white); }
.svc-detail-desc {
  font-family: var(--font-body); font-size: .9375rem; line-height: 1.75;
  color: var(--text-400); margin-bottom: 26px;
}
.svc-detail-desc.light { color: rgba(255,255,255,.5); }

/* Checklist */
.check-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.check-item {
  display: flex; align-items: flex-start; gap: 11px;
  font-family: var(--font-body); font-size: .875rem;
  color: var(--text-600); line-height: 1.55;
}
.check-item.light { color: rgba(255,255,255,.55); }
.check-dot {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-dot.blue { background: var(--blue-100); border: 1px solid rgba(37,99,235,.15); color: var(--blue-500); }
.check-dot.gold { background: var(--gold-100); border: 1px solid rgba(245,158,11,.18); color: var(--gold-500); }
.check-dot svg { width: 10px; height: 10px; }

/* Process Band */
.process-band {
  background: var(--navy-950);
  position: relative; overflow: hidden;
}
.process-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  font-family: var(--font-display); font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue-400);
  margin-bottom: 14px;
}
.step-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(37,99,235,.10); border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-400);
}
.step-icon svg { width: 28px; height: 28px; }
.step-title {
  font-family: var(--font-display); font-size: .98rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.step-desc {
  font-family: var(--font-body); font-size: .84rem; line-height: 1.65;
  color: rgba(255,255,255,.38);
}

/* ═══════════════════════════════════════════════
   PRODUCTS / PRICING
═══════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--spring);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  background: var(--grad-hero);
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 20px 60px rgba(5,8,15,.5), 0 0 0 1px rgba(37,99,235,.2);
}
.popular-pill {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center;
  background: var(--grad-gold); color: var(--white);
  font-family: var(--font-display); font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  white-space: nowrap; box-shadow: var(--shadow-gold);
}
.pc-badge { margin-bottom: 20px; }
.pc-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  letter-spacing: -.015em; color: var(--text-800); margin-bottom: 6px;
}
.pricing-card.featured .pc-name { color: var(--white); }
.pc-tagline {
  font-family: var(--font-body); font-size: .84rem;
  color: var(--text-400); margin-bottom: 28px;
}
.pricing-card.featured .pc-tagline { color: rgba(255,255,255,.5); }
.pc-price {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--text-800); letter-spacing: -.03em;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pc-price { color: var(--white); border-bottom-color: rgba(255,255,255,.08); }
.pc-price-note { font-size: .78rem; font-weight: 500; color: var(--text-400); display: block; margin-top: 4px; }
.pc-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pc-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: .87rem;
  color: var(--text-600); line-height: 1.5;
}
.pricing-card.featured .pc-feat { color: rgba(255,255,255,.65); }
.pc-dot {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-100); border: 1px solid rgba(37,99,235,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500); margin-top: 1px;
}
.pc-dot svg { width: 9px; height: 9px; }
.pricing-card.featured .pc-dot {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15);
  color: var(--gold-400);
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start;
}
.contact-info-stack { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cc-label {
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-300); margin-bottom: 4px;
}
.cc-value {
  font-family: var(--font-body); font-size: .875rem; line-height: 1.6;
  color: var(--text-600);
}
.cc-value a { color: var(--blue-500); font-weight: 600; }
.cc-value a:hover { color: var(--blue-700); }

/* Quick Links */
.quick-links { display: flex; flex-direction: column; gap: 10px; }
.quick-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 13px 16px;
  font-family: var(--font-display); font-size: .83rem; font-weight: 700;
  color: var(--text-700);
  transition: all var(--t-base) var(--ease);
}
.quick-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.quick-link:hover { box-shadow: var(--shadow-sm); transform: translateX(3px); }
.quick-link.ql-wa { color: #128c4e; border-color: rgba(18,140,78,.2); background: rgba(18,140,78,.04); }
.quick-link.ql-wa svg { color: #128c4e; }
.quick-link.ql-wa:hover { background: rgba(18,140,78,.08); }
.quick-link.ql-call { color: var(--blue-600); border-color: rgba(37,99,235,.18); background: var(--blue-100); }
.quick-link.ql-call:hover { background: rgba(37,99,235,.13); }
.quick-link.ql-email { color: var(--text-600); }
.quick-link.ql-email:hover { background: var(--gray-50); }

/* Contact Form Panel */
.contact-form-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-panel-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--text-800); letter-spacing: -.02em; margin-bottom: 6px;
}
.form-panel-sub {
  font-family: var(--font-body); font-size: .88rem; color: var(--text-400);
  margin-bottom: 32px;
}

/* Form Elements */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  color: var(--text-600); letter-spacing: .02em;
}
.form-label .req { color: var(--red); }
.form-control {
  width: 100%; font-family: var(--font-body); font-size: .88rem;
  color: var(--text-800); background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 11px 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-control::placeholder { color: var(--text-300); }
.form-control:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,.10);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-section-head {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 800;
  color: var(--text-400); text-transform: uppercase; letter-spacing: .08em;
  padding-top: 6px; margin-top: 6px;
  border-top: 1px solid var(--border);
}
.form-section-head:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.form-section-head svg { width: 15px; height: 15px; color: var(--blue-500); flex-shrink: 0; }
.checkbox-group { display: flex; flex-direction: column; gap: 11px; }
.checkbox-item {
  display: flex; align-items: flex-start; gap: 11px;
  cursor: pointer; font-family: var(--font-body); font-size: .87rem;
  color: var(--text-600); line-height: 1.5;
}
.checkbox-item input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; accent-color: var(--blue-500); }
.checkbox-item strong { color: var(--text-800); }
.btn-submit {
  width: 100%; justify-content: center;
  font-size: .95rem;
}
.form-note {
  display: flex; align-items: center; gap: 7px; margin-top: 12px;
  font-family: var(--font-body); font-size: .76rem; color: var(--text-300);
}
.form-note svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Map */
.map-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); height: 380px;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,8,15,.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white); border-radius: var(--r-2xl);
  padding: 52px 48px; text-align: center;
  max-width: 460px; width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(.94); transition: transform var(--t-base) var(--spring);
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-icon { display: flex; justify-content: center; margin-bottom: 22px; }
.modal-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--text-800); margin-bottom: 12px; letter-spacing: -.02em;
}
.modal-desc {
  font-family: var(--font-body); font-size: .9rem; line-height: 1.75;
  color: var(--text-400); margin-bottom: 30px;
}
.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   PAGE SPECIFIC MIGRATIONS
   ============================================= */

/* ── Index.html Styles ── */
.trust-bar {
  background: var(--gray-50); border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden;
}
.trust-bar-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.trust-label {
  font-family: var(--font-display); font-size: .68rem; font-weight: 800;
  color: var(--text-300); text-transform: uppercase; letter-spacing: .12em;
  white-space: nowrap;
}
.trust-states {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap; justify-content: center;
}
.trust-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
  display: inline-block;
}
.trust-item {
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  color: var(--text-600); letter-spacing: .01em; white-space: nowrap;
  padding: 4px 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px;
  transition: color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.trust-item:hover {
  color: var(--blue-600); border-color: rgba(37,99,235,.25);
  box-shadow: 0 2px 8px rgba(37,99,235,.08);
}
.trust-growing {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: .73rem; font-weight: 800;
  color: var(--gold-500); letter-spacing: .03em; white-space: nowrap;
  padding: 4px 12px;
  background: var(--gold-100); border: 1px solid rgba(245,158,11,.2);
  border-radius: 100px;
}
.trust-grow-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500); display: inline-block; flex-shrink: 0;
  animation: trust-pulse 1.8s ease-in-out infinite;
}
@keyframes trust-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.45); opacity: .55; }
}
.trust-sep { display: none; }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-text { flex: 1; }
.why-title {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--text-800); margin-bottom: 6px; letter-spacing: -.01em;
}
.why-desc {
  font-family: var(--font-body); font-size: .84rem;
  line-height: 1.65; color: var(--text-400);
}

/* ── About.html Styles ── */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── Services.html Styles ── */
.svc-stack { display: flex; flex-direction: column; gap: 28px; }
.placeholder-visual {
  height: 320px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  border: 1px solid var(--border);
}
.dark-card .placeholder-visual {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08);
}
.placeholder-visual h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--text-600); text-align: center; padding: 0 20px;
}
.dark-card .placeholder-visual h3 { color: rgba(255,255,255,.5); }
.pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.process-band-inner { position: relative; z-index: 1; }

/* Light stats-band alternative styling for Services page */
.stats-inner-light {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-inner-light .stat-block {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.stats-inner-light .stat-block:last-child { border-right: none; }
.stats-inner-light .stat-num {
  font-size: 1.8rem;
  color: var(--text-800);
}
.stats-inner-light .stat-lbl {
  color: var(--text-400);
}

/* ── Products.html Styles ── */
.pkg-stack { display: flex; flex-direction: column; gap: 24px; max-width: 920px; margin: 0 auto; }
.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pkg-card.dark-card { background: var(--grad-hero); border-color: rgba(37,99,235,.2); }
.pkg-num {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 800;
  line-height: 1; letter-spacing: -.04em; margin-bottom: 12px;
}
.pkg-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: var(--text-800); letter-spacing: -.015em; margin-bottom: 8px;
}
.dark-card .pkg-title { color: var(--white); }
.pkg-sub {
  font-family: var(--font-body); font-size: .875rem; color: var(--text-400); margin-bottom: 20px;
}
.dark-card .pkg-sub { color: rgba(255,255,255,.45); }
.pkg-features { display: flex; flex-direction: column; gap: 10px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: box-shadow var(--t-base) var(--ease);
}
.faq-card:hover { box-shadow: var(--shadow-md); }
.faq-q {
  font-family: var(--font-display); font-size: .98rem; font-weight: 700;
  color: var(--text-800); margin-bottom: 10px; letter-spacing: -.01em;
}
.faq-a {
  font-family: var(--font-body); font-size: .875rem; line-height: 1.7; color: var(--text-400);
}
.note-bar {
  display: flex; align-items: center; gap: 14px;
  background: rgba(37,99,235,.05); border: 1px solid rgba(37,99,235,.12);
  border-radius: var(--r-lg); padding: 18px 22px; margin-bottom: 48px;
}
.note-bar p {
  font-family: var(--font-body); font-size: .88rem; color: var(--text-600); flex: 1;
}

/* ── Contact.html Styles ── */
.contact-highlight-bar {
  background: var(--grad-blue);
  padding: 40px 0;
}
.chb-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.chb-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.chb-item:last-child { border-right: none; }
.chb-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.12);
  font-family: var(--font-body); font-size: .72rem;
  color: rgba(255,255,255,.55); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 3px;
}
.chb-value {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--white);
}
.chb-sub {
  font-family: var(--font-body); font-size: .78rem;
  color: rgba(255,255,255,.5); margin-top: 1px;
}
.contact-section { background: var(--gray-50); }
.quick-links-title {
  font-family: var(--font-display); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--text-300); margin-bottom: 12px; margin-top: 24px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #f4f6f9;
  border-top: 1px solid rgba(0,0,0,.07);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-desc {
  font-family: var(--font-body); font-size: .84rem;
  color: var(--text-500); line-height: 1.7;
  margin: 16px 0 22px;
}
.footer-social { display: flex; gap: 8px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-500);
  transition: all var(--t-fast) var(--ease);
}
.soc-btn:hover { background: var(--blue-100); color: var(--blue-600); transform: translateY(-2px); }
.soc-btn svg { width: 14px; height: 14px; }

.footer-col-title {
  font-family: var(--font-display); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-400); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-family: var(--font-body); font-size: .84rem;
  color: var(--text-500);
  transition: color var(--t-fast); padding: 1px 0;
}
.footer-link:hover { color: var(--blue-600); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: .83rem;
  color: var(--text-500); line-height: 1.6; margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact-item a { color: var(--blue-500); transition: color var(--t-fast); }
.footer-contact-item a:hover { color: var(--blue-700); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.07);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-body); font-size: .78rem;
  color: var(--text-400);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-family: var(--font-body); font-size: .78rem;
  color: var(--text-400);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--blue-600); }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform var(--t-base) var(--spring), box-shadow var(--t-base);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.45); }
.wa-float::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3);
  animation: wa-ring 2.2s ease-in-out infinite;
}
@keyframes wa-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  60%        { transform: scale(1.25); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   LEGAL & POLICY PAGES
   ═══════════════════════════════════════════════ */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-800);
  letter-spacing: -.015em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--grad-blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-section p {
  font-family: var(--font-body);
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--text-600);
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}
.legal-section ul li {
  font-family: var(--font-body);
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-600);
  padding-left: 22px;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
}
.legal-section a {
  color: var(--blue-500);
  font-weight: 600;
  transition: color var(--t-fast);
}
.legal-section a:hover { color: var(--blue-700); }
.legal-meta {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.legal-meta-icon {
  width: 44px; height: 44px;
  background: var(--blue-100);
  border: 1px solid rgba(37,99,235,.14);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.legal-meta-icon svg { width: 20px; height: 20px; }
.legal-meta-text { flex: 1; }
.legal-meta-text strong {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 700;
  color: var(--text-800); display: block; margin-bottom: 2px;
}
.legal-meta-text span {
  font-family: var(--font-body);
  font-size: .8rem; color: var(--text-400);
}
.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 14px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.refund-table thead {
  background: var(--navy-900);
}
.refund-table thead th {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.refund-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}
.refund-table tbody tr:last-child { border-bottom: none; }
.refund-table tbody tr:hover { background: var(--gray-50); }
.refund-table tbody td {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-600);
  padding: 14px 18px;
  vertical-align: top;
  line-height: 1.6;
}
.refund-table tbody td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-800);
}
.badge-refund {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.badge-eligible { background: rgba(5,150,105,.1); color: var(--green); border: 1px solid rgba(5,150,105,.2); }
.badge-partial { background: var(--gold-100); color: var(--gold-600); border: 1px solid rgba(245,158,11,.2); }
.badge-not-eligible { background: rgba(220,38,38,.08); color: var(--red); border: 1px solid rgba(220,38,38,.18); }
.highlight-box {
  background: rgba(37,99,235,.05);
  border: 1px solid rgba(37,99,235,.14);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 18px 0;
}
.highlight-box.gold {
  background: rgba(245,158,11,.05);
  border-color: rgba(245,158,11,.2);
  border-left-color: var(--gold-400);
}
.highlight-box p {
  margin-bottom: 0 !important;
  color: var(--text-700) !important;
}

/* Disclaimer-specific styles */
.disclaimer-alert {
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.22);
  border-left: 4px solid var(--gold-400);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.disclaimer-alert p {
  margin-bottom: 0;
  color: var(--text-700);
}
.disclaimer-alert strong {
  color: var(--text-800);
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: .01em;
}
.payment-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.strict-notice {
  background: rgba(239,68,68,.05);
  border: 1px solid rgba(239,68,68,.18);
  border-left: 4px solid #ef4444;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin-top: 16px;
}
.strict-notice p {
  margin-bottom: 0;
  color: #b91c1c;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════ */

/* ── Tablet & Large Screen Adjustments ── */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; margin-top: 40px; padding-top: 28px; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-stat-sep { display: none; }
}

@media (max-width: 1060px) {
  .nav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(18px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  }
  .nav-inner { padding: 0 20px; }
  .logo-tagline { display: none; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--t-base) var(--ease),
                transform var(--t-base) var(--ease),
                visibility var(--t-base) var(--ease);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    color: var(--text-800);
  }
  .nav-cta-btn {
    margin-left: 0;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .nav-burger { display: flex; }
  .nav-burger span { background: var(--text-800) !important; }

  /* Page heroes */
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-detail-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .svc-detail-card.flip { direction: ltr; }
  .svc-detail-card img { height: 260px !important; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(1),
  .stat-block:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .founder-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .cv-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .schemes-grid { grid-template-columns: 1fr 1fr; }

  /* Subpage components */
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-2col { grid-template-columns: 1fr; gap: 36px; }
  .pkg-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .chb-inner { grid-template-columns: 1fr; gap: 0; }
  .chb-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 18px 24px; }
  .chb-item:last-child { border-bottom: none; }

  /* Light stats layout styling */
  .stats-inner-light { grid-template-columns: 1fr 1fr; }
  .stats-inner-light .stat-block:nth-child(2) { border-right: none; }
  .stats-inner-light .stat-block:nth-child(1),
  .stats-inner-light .stat-block:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ── Mobile & Smart Phone Adjustments ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .sect { padding: 64px 0; }
  .sect-sm { padding: 40px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-form-panel { padding: 32px 20px; }
  .cv-grid { grid-template-columns: 1fr; }
  .schemes-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-stat-sep { display: none; }
  .pkg-card, .feat-card, .svc-card, .testimonial-card { padding: 24px; }
  .step { padding: 16px 20px; }

  .modal-box { padding: 40px 24px; }

  /* Responsive Legal Overrides */
  .legal-meta { padding: 16px; gap: 12px; }
  .legal-section { margin-bottom: 32px; }
  .refund-table tbody td { padding: 12px 14px; font-size: .82rem; }
  .refund-table thead th { padding: 12px 14px; font-size: .74rem; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 40px 16px 30px; }
  .hero-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; width: 100%; text-align: center; }
  .h-stat { display: flex; flex-direction: column; align-items: center; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding: 32px 20px; }
  .stat-block:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }

  .svc-detail-card { padding: 24px 16px; }
  .svc-detail-card img { height: 180px !important; }

  .pricing-card { padding: 32px 20px; }
  .pc-price { font-size: 1.8rem; }

  /* Stack button layouts beautifully */
  .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .cta-actions .btn { width: 100%; }

  /* Light stats layout stacking */
  .stats-inner-light { grid-template-columns: 1fr; }
  .stats-inner-light .stat-block { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 16px; }
  .stats-inner-light .stat-block:last-child { border-bottom: none; }
  
  .contact-highlight-bar { padding: 20px 0; }

  /* Responsive Legal Mobile Overrides */
  .legal-meta { flex-direction: column; text-align: center; align-items: center; padding: 20px 16px; }
}

/* ── Tiny Screen Support (<= 360px) ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .heading-xl { font-size: 1.7rem; }
  .heading-lg { font-size: 1.4rem; }
  .nav-inner { padding: 0 12px; }
  .logo-img { height: 34px; }
}
