/* ═══════════════════════════════════════════════════════════
   INVERIX — Shared Stylesheet
   Covers: reset, variables, utility, nav, hero, page-hero,
   services, capabilities, government, about, cta, modal,
   contact page, footer, animations, responsive.
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  color: #334155;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ─── Color Variables ──────────────────────────────────────── */
:root {
  --navy:       #0F172A;
  --intel-blue: #1E3A8A;
  --orange:     #F97316;
  --body:       #334155;
  --light-bg:   #F8FAFC;
  --border:     #E2E8F0;
  --white:      #ffffff;
}

/* ─── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--body);
  max-width: 620px;
  line-height: 1.75;
}

.section-header { margin-bottom: 56px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.1s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-sm { font-size: 0.875rem; padding: 9px 20px; }

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #ea6c04;
  border-color: #ea6c04;
  box-shadow: 0 8px 24px rgba(249,115,22,0.30);
}

.btn-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy); color: #fff; }

.btn-orange-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
  font-size: 0.875rem;
  padding: 9px 20px;
}
.btn-orange-outline:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(249,115,22,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--body);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: #cbd5e1; background: var(--light-bg); }

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.60);
}

/* ─── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img { height: 56px; width: auto; }

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--body);
  transition: color 0.15s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--intel-blue); }

.nav-links a.active {
  color: var(--orange);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav a.active { color: var(--orange); font-weight: 600; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--intel-blue); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ─── Home Hero ───────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 96px 0 104px;
  /* subtle dot-grid texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1.2' fill='%230F172A' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 28px 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}

.hero-text { max-width: 660px; }

.hero-globe { flex-shrink: 0; }
.hero-globe img { width: 340px; height: auto; display: block; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
  background: linear-gradient(45deg, #F97316, #1E3A8A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Page Hero (sub-pages) ──────────────────────────────── */
.page-hero {
  padding: 72px 0 64px;
  background: var(--white);
  overflow: hidden;
  /* subtle tint */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1.2' fill='%230F172A' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 28px 28px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.page-hero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 8px;
}

.page-hero-img {
  position: relative;
}
.page-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.78;
  display: block;
}
.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 32%);
  border-radius: 8px;
  pointer-events: none;
}

/* ─── Services ────────────────────────────────────────────── */
.services {
  background: var(--light-bg);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
  box-shadow: 0 1px 4px rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.04);
  transition: box-shadow 0.2s, transform 0.2s, border-top-width 0.15s;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(249,115,22,0.10), 0 12px 32px rgba(15,23,42,0.08);
  transform: translateY(-3px);
  border-top-width: 4px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 40px; height: 40px; }

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.65;
}

/* ─── Process Strip ──────────────────────────────────────── */
.process-strip {
  background: var(--navy);
  padding: 72px 0;
}

.process-strip .section-heading { color: #fff; }
.process-strip .section-label   { color: var(--orange); }
.process-strip .section-sub     { color: #94a3b8; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.process-step { text-align: center; }

.process-num {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--orange), var(--intel-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.65;
}

/* ─── Capabilities ────────────────────────────────────────── */
.capabilities {
  background: var(--white);
  padding: 96px 0;
}

.capabilities-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin-top: 32px;
}

.cap-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.55;
}

.cap-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #F97316, #1E3A8A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cap-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 2.5; fill: none; }

.cap-visual {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 48px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cap-stat { text-align: center; }

.cap-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cap-stat-num span {
  background: linear-gradient(45deg, #F97316, #1E3A8A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cap-stat-label {
  font-size: 0.8125rem;
  color: var(--body);
  margin-top: 6px;
  font-weight: 500;
}

.cap-divider { height: 1px; background: var(--border); }

/* ─── Government ──────────────────────────────────────────── */
.government {
  background: var(--light-bg);
  padding: 96px 0;
}

.gov-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gov-content h2 { margin-bottom: 20px; }
.gov-content p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.compliance-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--intel-blue);
  letter-spacing: 0.05em;
}

.gov-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.shield-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-bg {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(30,58,138,0.25);
}
.shield-bg svg {
  width: 80px;
  height: 80px;
  fill: none;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 1.5;
}

/* ─── Framework Grid ─────────────────────────────────────── */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.framework-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.framework-card:hover {
  border-color: #f97316;
  box-shadow: 0 4px 20px rgba(249,115,22,0.08);
}

.framework-badge {
  display: inline-block;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: var(--orange);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.framework-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.framework-card p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.65;
}

/* ─── About / Why Inverix ─────────────────────────────────── */
.why {
  background: var(--white);
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,0.08);
}

.why-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.why-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.65;
}

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.0625rem;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Contact Page ────────────────────────────────────────── */
.contact-page {
  background: var(--white);
  padding: 96px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-heading { margin-bottom: 16px; }

.contact-info > p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--body);
}

.contact-detail-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-card {
  background: var(--light-bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 0.875rem;
  color: var(--body);
  margin-bottom: 28px;
}

.inline-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.inline-success .success-check {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--intel-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  color: #fff;
}

.inline-success h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.inline-success p {
  font-size: 0.9375rem;
  color: var(--body);
}

/* ─── Shared Form Styles ──────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 10px;
  display: none;
}

/* ─── Demo Modal ─────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(15,23,42,0.25);
  overflow: hidden;
}

.modal-header {
  background: var(--navy);
  padding: 28px 32px 24px;
  position: relative;
}
.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.modal-header p { font-size: 0.875rem; color: #94a3b8; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}
.modal-close:hover { color: #fff; }

.modal-body { padding: 28px 32px 32px; }

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
}
.modal-success .success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--orange);
}
.modal-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-success p { font-size: 0.9375rem; color: var(--body); }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }

.footer-wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
}

.footer-copy { font-size: 0.8125rem; color: #64748b; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

/* ─── Scroll Fade-in ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-d1 { transition-delay: 0.10s; }
.fade-in-d2 { transition-delay: 0.20s; }
.fade-in-d3 { transition-delay: 0.30s; }
.fade-in-d4 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .capabilities-inner,
  .gov-inner           { grid-template-columns: 1fr; gap: 40px; }
  .gov-visual          { padding: 24px; }
  .page-hero-inner     { grid-template-columns: 1fr; }
  .page-hero-img       { display: none; }
  .framework-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-layout      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right .btn    { display: none; }
  .hamburger         { display: flex; }

  .hero              { padding: 64px 0 72px; }
  .hero-inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero-globe        { display: flex; justify-content: center; }
  .hero-globe img    { width: 220px; }

  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .footer-inner      { flex-direction: column; align-items: flex-start; }
  .cap-visual        { padding: 32px 24px; }
  .process-grid      { grid-template-columns: 1fr 1fr; }
  .framework-grid    { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  .cta-section,
  .capabilities,
  .government,
  .why,
  .services,
  .contact-page      { padding: 64px 0; }
}

@media (max-width: 480px) {
  .form-row          { grid-template-columns: 1fr; }
  .modal-body        { padding: 24px 20px 28px; }
  .modal-header      { padding: 24px 20px 20px; }
  .hero-heading      { font-size: 2rem; }
  .hero-ctas         { flex-direction: column; }
  .hero-ctas .btn    { width: 100%; justify-content: center; }
  .process-grid      { grid-template-columns: 1fr; }
  .cta-btns          { flex-direction: column; align-items: center; }
}
