/* =====================================================
   INTRASTELLAR SOLUTIONS — SHARED STYLESHEET
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1A2744;
  --navy-dk:   #0E1A30;
  --navy-lt:   #253558;
  --orange:    #F28C28;
  --orange-dk: #C8711A;
  --orange-lt: #FAA84A;
  --silver:    #C0C8D4;
  --silver-lt: #E8ECF2;
  --white:     #FFFFFF;
  --text:      #1A2744;
  --text-md:   #3A4D6B;
  --text-lt:   #6B7E9A;
  --border:    #D0D9E6;
  --bg:        #F5F7FA;
  --bg-card:   #FFFFFF;
  --accent:    #E8F0FB;

  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --shadow:    0 2px 12px rgba(26,39,68,0.08);
  --shadow-md: 0 4px 24px rgba(26,39,68,0.12);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { transition: color 0.2s; }

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; color: var(--navy); }
h2 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 36px; line-height: 1.15; }
h3 { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 20px; margin-bottom: 10px; }
h4 { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 16px; }
p  { color: var(--text-md); margin-bottom: 16px; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.lead { font-size: 18px; line-height: 1.65; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt  { background: var(--bg); }
.section-dark { background: var(--navy); }
.section-dk   { background: var(--navy-dk); }

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 17px; max-width: 600px; color: var(--text-md); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: 36px;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 68px;
  color: rgba(255,255,255,0.62);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--orange-lt);
  border-bottom-color: var(--orange);
}

/* dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dk);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 var(--r-md) var(--r-md);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.62);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--orange-lt);
  background: rgba(242,140,40,0.08);
}

.nav-cta { margin-left: auto; }

/* mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  display: none;
  background: var(--navy-dk);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 68px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.68);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s, background 0.15s;
}
.mobile-menu a:hover { color: var(--orange-lt); background: rgba(242,140,40,0.06); }
.mobile-menu .mobile-sub {
  padding-left: 40px;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45);
}
.mobile-menu-cta {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242,140,40,0.35);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  color: white;
}
.btn-navy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 17px; }

/* ── HERO (landing) ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 70%, var(--navy-lt) 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(242,140,40,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  color: white;
  font-size: 62px;
  line-height: 1.03;
  margin-bottom: 22px;
  max-width: 740px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(242,140,40,0.1);
  border: 1px solid rgba(242,140,40,0.32);
  border-radius: 20px;
  color: var(--orange-lt);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,140,40,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: 46px; margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,0.68); font-size: 17px; max-width: 580px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-family: var(--font-mono);
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-lt); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--orange-lt); }

/* ── TRUST BAR ── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.trust-item .ti-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.trust-divider { width: 1px; height: 22px; background: var(--border); }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  border-top: 3px solid var(--orange);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.22s, transform 0.22s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  color: var(--navy);
}

.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-lt); margin-bottom: 16px; }
.service-card .arrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.4;
}

/* ── PAST PERFORMANCE CARDS ── */
.perf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.perf-card .agency {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.perf-card h3 { font-size: 17px; margin-bottom: 10px; }
.perf-card p  { font-size: 14px; color: var(--text-lt); }
.perf-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  background: rgba(26,39,68,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-lt);
}

/* ── DELIVERABLES LIST ── */
.deliverables-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.55;
}
.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid rgba(242,140,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── DIFFERENTIATORS ── */
.diff-list { display: flex; flex-direction: column; gap: 0; }
.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.diff-item:last-child { border-bottom: none; }
.diff-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.diff-item h3 { font-size: 17px; margin-bottom: 6px; }
.diff-item p  { font-size: 14px; color: var(--text-lt); margin-bottom: 0; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(242,140,40,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: white; font-size: 38px; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,0.62); font-size: 17px; max-width: 520px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; }

/* ── CREDENTIAL TABLE ── */
.cred-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cred-table th {
  background: var(--navy);
  color: white;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
}
.cred-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-md); }
.cred-table tr:last-child td { border-bottom: none; }
.cred-table td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 13px; letter-spacing: 0.3px; }
.cred-table td code { font-family: var(--font-mono); background: var(--bg); padding: 2px 8px; border-radius: 3px; font-size: 12px; }
.cred-table .status-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1A6636;
  font-weight: 600;
}
.cred-table .status-dot { width: 7px; height: 7px; border-radius: 50%; background: #27AE60; }

/* ── INFO CALLOUT ── */
.callout {
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 14px;
}
.callout-orange {
  background: rgba(242,140,40,0.08);
  border: 1px solid rgba(242,140,40,0.3);
  border-left: 4px solid var(--orange);
  color: var(--text-md);
}
.callout-navy {
  background: var(--accent);
  border: 1px solid rgba(26,39,68,0.12);
  border-left: 4px solid var(--navy);
  color: var(--text-md);
}

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,140,40,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── CONTACT CARDS ── */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow);
}
.contact-card .role {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-card h3 { font-size: 22px; margin-bottom: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-md);
  margin-bottom: 10px;
}
.contact-detail svg { color: var(--orange); flex-shrink: 0; }
.contact-detail a { color: var(--text-md); text-decoration: none; }
.contact-detail a:hover { color: var(--orange); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dk);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 13px; max-width: 280px; margin-bottom: 18px; line-height: 1.6; }
.footer-creds { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cred {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(242,140,40,0.1);
  border: 1px solid rgba(242,140,40,0.22);
  border-radius: 4px;
  color: var(--orange-lt);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--orange-lt); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item a { color: rgba(255,255,255,0.52); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange-lt); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 12px; margin-bottom: 0; }
.footer-reg { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-reg-item { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-reg-item strong { color: rgba(255,255,255,0.38); }

/* ── MISC UTILITIES ── */
.text-orange { color: var(--orange) !important; }
.text-white  { color: white !important; }
.text-light  { color: var(--text-lt) !important; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.text-center { text-align: center; }
.max-680 { max-width: 680px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.55s ease forwards; }
.delay-1   { animation-delay: 0.1s; opacity: 0; }
.delay-2   { animation-delay: 0.2s; opacity: 0; }
.delay-3   { animation-delay: 0.3s; opacity: 0; }
.delay-4   { animation-delay: 0.4s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero h1 { font-size: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; }
  .container, .nav-inner { padding-left: 24px; padding-right: 24px; }
  .trust-bar-inner { padding: 0 24px; }
  .hero-content, .page-hero-content { padding: 0 24px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 0; }
  .cta-band h2 { font-size: 28px; }
}
