/* =========================================================
   3L SECURITY SERVICES LIMITED — DESIGN SYSTEM
   ========================================================= */

:root {
  /* Colour palette */
  --navy-950: #060b16;
  --navy-900: #0a1424;
  --navy-800: #101d33;
  --navy-700: #16294a;
  --navy-600: #1f3763;
  --charcoal: #1c2130;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --grey-100: #eceef2;
  --grey-300: #c7cdd8;
  --grey-500: #6b7382;
  --grey-700: #414857;
  --gold-400: #e3c169;
  --gold-500: #c9973b;
  --gold-600: #a9772a;
  --success: #2e7d5b;

  /* Typography */
  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --header-height: 84px;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(6, 11, 22, 0.08);
  --shadow-md: 0 8px 30px rgba(6, 11, 22, 0.12);
  --shadow-lg: 0 20px 60px rgba(6, 11, 22, 0.22);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--gold-400); }

h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.section-lead {
  max-width: 700px;
  color: var(--grey-700);
  font-size: 1.08rem;
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p, .on-dark .section-lead { color: var(--grey-300); }

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

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy-900); }
.section--charcoal { background: var(--charcoal); }
.section--offwhite { background: var(--off-white); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.82rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow var(--transition);
}
/* Blur lives on a pseudo-element (not the header itself) so that
   backdrop-filter doesn't create a containing block for fixed-position
   descendants (e.g. the mobile nav overlay), which would break their sizing. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--font-head); line-height: 1.1; }
.brand-text strong { display: block; font-size: 1.02rem; font-weight: 800; color: var(--navy-900); letter-spacing: 0.01em; }
.brand-text span { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gold-600); text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 10px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--gold-600); background: var(--off-white); }
.nav-links a.active { color: var(--gold-600); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold-500);
}

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { background: var(--navy-900); color: var(--white); padding: 12px 22px; font-size: 0.82rem; }
.nav-cta .btn:hover { background: var(--gold-500); color: var(--navy-950); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--navy-900); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 96px) 0 110px;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 151, 59, 0.16), transparent 45%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero .accent { color: var(--gold-400); }
.hero-sub { font-size: 1.14rem; color: var(--grey-300); max-width: 560px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold-400); font-weight: 800; }
.hero-stats div span { font-size: 0.8rem; color: var(--grey-300); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-panel-title { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero-panel-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(227,193,105,0.2); }
.hero-check-list li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.92rem; color: var(--grey-300); align-items: flex-start; }
.hero-check-list li:last-child { border-bottom: none; }
.hero-check-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-400); }

/* ---------- Marquee / Trust strip ---------- */
.trust-strip { background: var(--navy-900); padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-strip .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-strip span { color: var(--grey-300); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-family: var(--font-head); }

.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.accred-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.accred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.accred-card .badge-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.accred-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.accred-card p { color: var(--grey-700); font-size: 0.92rem; }
.accred-card .verify-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.76rem; font-weight: 700; color: var(--success); text-transform: uppercase; letter-spacing: 0.05em; }
.accred-card .verify-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 44px 40px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 64px; height: 64px; border-radius: 10px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 26px;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.service-card p { color: var(--grey-700); margin-bottom: 20px; }
.service-card ul li { position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--grey-700); margin-bottom: 10px; }
.service-card ul li::before { content: "›"; position: absolute; left: 0; color: var(--gold-600); font-weight: 800; }
.service-card .card-link { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link:hover { color: var(--gold-600); }

/* ---------- Sector blocks ---------- */
.sector-block {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  isolation: isolate;
}
.sector-block::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 26px);
  z-index: -1;
}
.sector-block .sector-num {
  position: absolute; top: 28px; right: 30px;
  font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
  color: rgba(255,255,255,0.35); letter-spacing: 0.08em;
}
.sector-block .sector-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(227,193,105,0.12);
  border: 1px solid rgba(227,193,105,0.35);
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.sector-block h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.sector-block p { color: var(--grey-300); font-size: 0.92rem; max-width: 400px; }

/* ---------- Vetting / process steps ---------- */
.vet-panel {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 44px;
}
.vet-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vet-item { display: flex; gap: 16px; padding: 16px; border-radius: 8px; transition: background var(--transition); }
.vet-item:hover { background: var(--off-white); }
.vet-item .num {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
}
.vet-item h4 { font-family: var(--font-head); font-size: 0.98rem; color: var(--navy-900); margin-bottom: 4px; }
.vet-item p { font-size: 0.86rem; color: var(--grey-700); }

/* ---------- Stats bar ---------- */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-bar .stat strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--gold-400); }
.stats-bar .stat span { font-size: 0.8rem; color: var(--grey-300); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Timeline / values ---------- */
.value-row { display: flex; gap: 26px; padding: 30px 0; border-top: 1px solid var(--grey-100); }
.value-row:last-child { border-bottom: 1px solid var(--grey-100); }
.value-row .value-mark { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--gold-500); width: 56px; flex-shrink: 0; }
.value-row h3 { margin-bottom: 8px; }
.value-row p { color: var(--grey-700); max-width: 640px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: 10px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px;
  border: 40px solid rgba(227,193,105,0.08);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: var(--grey-300); max-width: 480px; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: 10px; padding: 44px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-800); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--grey-100);
  border-radius: 5px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--grey-500); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--grey-300); padding: 72px 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.08); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 46px; }
.footer-brand strong { font-family: var(--font-head); color: var(--white); font-size: 1rem; }
.footer-col h4 { font-family: var(--font-head); color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.8rem; color: var(--grey-500); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-badges span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-400); border: 1px solid rgba(227,193,105,0.3); padding: 5px 10px; border-radius: 20px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  padding: calc(var(--header-height) + 68px) 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 85%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.8rem; color: var(--grey-300); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero p { color: var(--grey-300); max-width: 620px; margin-top: 18px; font-size: 1.05rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Table (insurance schedule) ---------- */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th { background: var(--navy-900); color: var(--white); font-family: var(--font-head); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 16px 18px; text-align: left; }
.data-table td { padding: 16px 18px; border-bottom: 1px solid var(--grey-100); font-size: 0.9rem; color: var(--grey-700); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) { background: var(--off-white); }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 700; color: var(--success); text-transform: uppercase; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* ---------- Tabs (services / careers) ---------- */
.pill-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.pill-nav a { padding: 10px 20px; border-radius: 24px; border: 1.5px solid var(--grey-100); font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--navy-800); transition: var(--transition); }
.pill-nav a:hover, .pill-nav a.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

/* ---------- Job / role cards ---------- */
.role-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; background: var(--white); border: 1px solid var(--grey-100); border-radius: 8px; padding: 26px 30px; margin-bottom: 16px; transition: var(--transition); }
.role-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.role-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.role-card .meta { display: flex; gap: 14px; font-size: 0.82rem; color: var(--grey-500); flex-wrap: wrap; }
.role-card .meta span { display: flex; align-items: center; gap: 5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .accred-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .vet-list { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .brand-text span { display: none; }
  .brand img { height: 40px; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 16px 10px; font-size: 1rem; border-bottom: 1px solid var(--grey-100); border-radius: 0; }
  .nav-cta .btn span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
