/* ==========================================================================
   Intersec Security Group — Stylesheet
   Palette: dark grey, light grey, blue, white
   ========================================================================== */

:root {
  /* Brand colors */
  --blue: #1c4d8f;
  --blue-dark: #123667;
  --blue-light: #2f6bc4;
  --blue-pale: #eaf1fb;

  --dark: #1d2024;
  --dark-soft: #2b2f36;
  --grey: #5b6270;
  --grey-mid: #8790a0;
  --grey-light: #f2f4f7;
  --grey-border: #e3e6ec;

  --white: #ffffff;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px -12px rgba(20, 30, 50, 0.18);
  --shadow-sm: 0 4px 14px -6px rgba(20, 30, 50, 0.15);

  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; color: var(--dark); }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  max-width: 700px;
}
.section-sub {
  color: var(--grey);
  font-size: 17px;
  max-width: 620px;
  margin-top: 14px;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

.text-white .section-title, .text-white h2, .text-white h3 { color: var(--white); }
.text-white .section-sub { color: rgba(255,255,255,0.75); }

.pad { padding: 96px 0; }
.pad-sm { padding: 56px 0; }

.bg-light { background: var(--grey-light); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-blue { background: var(--blue); color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--grey-border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.site-header.is-solid {
  background: rgba(29,32,36,0.96);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 68px; width: 68px; transition: height var(--transition); }
.site-header.is-solid .brand img { height: 56px; width: 56px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 15px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.brand-text span { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--white); background: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--white);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--blue-light); flex-shrink: 0; }
.nav-phone-nums { display: flex; flex-direction: column; gap: 1px; line-height: 1.3; }
.nav-phone-nums a { color: var(--white); transition: color var(--transition); white-space: nowrap; }
.nav-phone-nums a:hover { color: var(--blue-light); }

@media (max-width: 1150px) {
  .nav-phone { display: none; }
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-page {
  min-height: 56vh;
  align-items: center;
  padding-top: 110px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,30,0.55) 0%, rgba(15,20,30,0.55) 30%, rgba(15,20,30,0.9) 100%),
              linear-gradient(100deg, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.15) 55%);
}
.hero-page .hero-bg::after {
  background: linear-gradient(100deg, rgba(10,20,40,0.92) 10%, rgba(10,20,40,0.55) 60%, rgba(10,20,40,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 160px 0 90px; }
.hero-page .hero-content { padding: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-badge svg { width: 15px; height: 15px; color: #ffb020; }
.hero h1 {
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: 1.05;
  max-width: 820px;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: #8fb8f0; }
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-top: 22px;
}
.hero .cta-row { margin-top: 34px; }
.crumb { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.crumb a:hover { color: var(--white); }
.crumb span { margin: 0 8px; opacity: 0.5; }

.hero-stats {
  position: relative; z-index: 2;
  background: var(--white);
  margin-top: -1px;
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid var(--grey-border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.stat-label { font-size: 13.5px; color: var(--grey); margin-top: 6px; font-weight: 500; }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-icon svg { width: 28px; height: 28px; color: var(--blue); }
.service-card:hover .service-icon { background: var(--blue); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: 15px; }
.service-card .learn { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.service-card .learn svg { width: 15px; height: 15px; transition: transform var(--transition); }
.service-card:hover .learn svg { transform: translateX(4px); }

/* value / work-ethic icon list */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-pill {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--dark);
  transition: all var(--transition);
}
.value-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--grey-border);
}
.feature-row:last-child { border-bottom: none; }
.feature-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.feature-row h3 { font-size: 18px; margin-bottom: 6px; }
.feature-row p { color: var(--grey); font-size: 15px; }

/* two-column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.split-media { position: relative; }
.split-media.tall img { aspect-ratio: 4/5; }
.split-body p { color: var(--grey); font-size: 16px; margin-top: 16px; }
.split-body ul { margin-top: 22px; display: grid; gap: 12px; }
.split-body ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--dark-soft); }
.split-body ul li svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

.badge-float {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--dark);
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.badge-float .num { font-size: 30px; font-weight: 800; color: var(--blue-light); }
.badge-float .lbl { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* Clientele sector chips */
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.chip {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  transition: all var(--transition);
}
.chip:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.chip svg { width: 30px; height: 30px; color: var(--blue); }

/* Client showcase cards */
.client-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
}
.client-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.client-card:hover img { transform: scale(1.06); }
.client-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,25,0) 40%, rgba(10,15,25,0.88) 100%);
  display: flex; align-items: flex-end;
  padding: 22px;
}
.client-card .overlay h3 { color: var(--white); font-size: 17px; }
.client-card .overlay span { color: rgba(255,255,255,0.75); font-size: 13px; }

.marquee-band {
  overflow: hidden;
  position: relative;
  padding: 26px 0;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 15px;
  font-weight: 700;
  color: var(--grey);
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-track span::before { content: "•"; color: var(--blue); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Applicant / recruitment requirement list */
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.req-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.req-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.req-item p { font-size: 14.5px; color: var(--dark-soft); }

/* Testimony / core-values dark band */
.values-band { background: var(--dark); color: var(--white); padding: 90px 0; }
.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.mission-card {
  background: var(--dark-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 3px solid var(--blue-light);
}
.mission-card .eyebrow { color: var(--blue-light); }
.mission-card .eyebrow::before { background: var(--blue-light); }
.mission-card p { color: rgba(255,255,255,0.78); font-size: 16px; margin-top: 14px; }

/* CTA band */
.cta-band {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-band .hero-bg::after {
  background: linear-gradient(180deg, rgba(12,18,30,0.85), rgba(18,54,103,0.92));
}
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); max-width: 700px; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 18px auto 0; font-size: 17px; }
.cta-band .cta-row { justify-content: center; margin-top: 32px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}
.contact-info-card h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 30px; }
.contact-line { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-line:first-of-type { border-top: none; }
.contact-line .ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-line .ico svg { width: 20px; height: 20px; color: var(--blue-light); }
.contact-line strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 3px; }
.contact-line span, .contact-line a { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.contact-line a:hover { color: var(--white); }
.contact-social { display: flex; gap: 10px; margin-top: 30px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.contact-social a:hover { background: var(--blue); }
.contact-social svg { width: 18px; height: 18px; color: var(--white); }

.form-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; color: var(--dark-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--dark);
  background: var(--grey-light);
  transition: all var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-pale);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--grey-mid); margin-top: 14px; text-align: center; }
.form-status { margin-top: 16px; font-size: 14px; font-weight: 600; display: none; padding: 12px 16px; border-radius: 8px; }
.form-status.show { display: block; }
.form-status.ok { background: #e8f6ee; color: #1c7a41; }
.form-status.err { background: #fde9e9; color: #b3261e; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  margin-top: 28px;
  filter: grayscale(0.15);
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 64px; width: 64px; }
.footer-brand strong { color: var(--white); font-size: 16px; display: block; }
.footer-brand span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.site-footer p { font-size: 14.5px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 14.5px; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col .contact-line { padding: 0 0 14px; border: none; }
.footer-col .contact-line .ico { width: 34px; height: 34px; }
.footer-col .contact-line .ico svg { width: 16px; height: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 13.5px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* WhatsApp float */
.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 900;
  transition: transform var(--transition);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 28px; height: 28px; color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { animation: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header.mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 12px 24px 24px;
    gap: 4px;
  }
  .site-header.mobile-open .nav-links a { padding: 14px 10px; }

  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--grey-border); }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .badge-float { left: 16px; bottom: -20px; padding: 16px 20px; }

  .mission-cards { grid-template-columns: 1fr; }
  .contact-grid { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2, .chip-grid, .value-grid { grid-template-columns: 1fr; }
  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .pad { padding: 64px 0; }
  .form-card, .contact-info-card { padding: 30px 22px; }
  .req-grid { grid-template-columns: 1fr; }
}
