@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy:       #1B2B6B;
  --navy-dark:  #0F1A42;
  --navy-mid:   #243580;
  --red:        #B42118;
  --bg:         #F7F6F2;
  --bg-alt:     #EFECEA;
  --white:      #FFFFFF;
  --text:       #1C1C2C;
  --muted:      #6B7280;
  --border:     #DDD9D0;
  --shadow-sm:  0 1px 4px rgba(27,43,107,0.07), 0 6px 20px rgba(27,43,107,0.06);
  --shadow-md:  0 4px 12px rgba(27,43,107,0.10), 0 20px 48px rgba(27,43,107,0.09);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
  --mw:     1200px;
  --hh:     76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── HEADER ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--hh);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(27,43,107,.10); }

.header-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy);
  letter-spacing: .01em;
}
.logo-sub {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .125rem;
}
.main-nav a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: .5rem .875rem;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--navy); }

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .875rem;
  right: .875rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 2px;
  margin-left: .5rem;
  padding: .5rem 1.125rem !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--navy-dark) !important; }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* ─── SHARED ATOMS ───────────────────────────────────────── */

.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .875rem;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.eyebrow.light { color: rgba(255,255,255,.4); }
.eyebrow.light::before { background: rgba(255,255,255,.3); }

.eyebrow.muted { color: var(--muted); }
.eyebrow.muted::before { background: var(--border); }

h2.display {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h2.display.light { color: var(--white); }

.lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  padding: .875rem 2rem;
  transition: background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: #941a13; border-color: #941a13; }

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover { color: var(--white); border-color: var(--white); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  transition: gap .2s;
}
.arrow-link:hover { gap: .75rem; }
.arrow-link::after { content: '→'; }

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,.025) 39px, rgba(255,255,255,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 39px, rgba(255,255,255,.025) 40px);
}

.hero-main {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  min-height: calc(78vh - var(--hh));
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow { color: rgba(255,255,255,.4); }
.hero-content .eyebrow::before { background: rgba(255,255,255,.3); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,.55);
}

.hero-sub {
  font-size: .9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* geometric decoration */
.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(5, 52px);
  grid-template-rows: repeat(5, 52px);
  gap: 10px;
}

.blk {
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: opacity 1s;
}
.blk.lit {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.18);
}
.blk.hi {
  background: rgba(184,33,24,.3);
  border-color: rgba(184,33,24,.45);
}

/* hero stats bar */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
  position: relative;
  z-index: 2;
}
.hero-stats-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; padding-right: 0; }
.stat-val {
  display: block;
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-lbl {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ─── WHY COMPLIANCE FAILS ───────────────────────────────── */

.fail-section {
  background: var(--white);
  padding: 5.5rem 0;
}
.fail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.fail-pull {
  position: sticky;
  top: calc(var(--hh) + 2rem);
}
.pull-quote {
  margin-top: 1.75rem;
  padding: 2rem 2rem 2rem 1.75rem;
  border-left: 3px solid var(--navy);
  background: var(--bg);
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}
.fail-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}
.fail-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.fail-n {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}
.fail-body strong {
  display: block;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--text);
  margin-bottom: .375rem;
}
.fail-body p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── SERVICES PREVIEW ───────────────────────────────────── */

.services-preview {
  background: var(--bg);
  padding: 5.5rem 0;
}
.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.875rem;
  transition: box-shadow .25s, transform .25s;
}
.svc-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.svc-n {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.125rem;
}
.svc-n::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.svc-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── WHY US ─────────────────────────────────────────────── */

.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,.018) 39px, rgba(255,255,255,.018) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.018) 39px, rgba(255,255,255,.018) 40px);
  pointer-events: none;
}
.why-us-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-us .lead { color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.companies-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 2.25rem;
}
.companies-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}
.companies-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.us-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.us-stat-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2rem;
}
.us-stat-val {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.us-stat-lbl {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  line-height: 1.45;
}

/* ─── CTA BAND ───────────────────────────────────────────── */

.cta-band {
  background: var(--bg-alt);
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: .875rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.18;
}
.cta-band p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.25rem;
}

/* ─── PAGE HEADER ────────────────────────────────────────── */

.page-header {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-top: .75rem;
}
.page-header .lead {
  color: rgba(255,255,255,.5);
  margin-top: .875rem;
  max-width: 520px;
}

/* ─── SERVICES PAGE ──────────────────────────────────────── */

.services-page { background: var(--white); padding: 5.5rem 0; }
.svc-category {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.svc-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-category-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
}
.svc-category-label h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-top: .5rem;
}
.svc-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.625rem;
  transition: border-color .2s, box-shadow .2s;
}
.svc-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.svc-item h3 {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.25;
}
.svc-item p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── PRICING PAGE ───────────────────────────────────────── */

.pricing-page { background: var(--white); padding: 5.5rem 0; }
.pricing-intro {
  max-width: 640px;
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.pricing-group { margin-bottom: 3.5rem; }
.pricing-group-heading {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.price-cards {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.price-cards.cols-2 { grid-template-columns: 1fr 1fr; }
.price-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.price-card {
  background: var(--white);
  padding: 2rem;
  transition: background .2s;
}
.price-card:hover { background: var(--bg); }
.price-card-name {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.price-card-amount {
  font-family: var(--serif);
  font-size: 2.125rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.price-card-cadence {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  margin-top: .25rem;
}
.price-card-desc {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.68;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.price-enquire {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  margin-top: 1rem;
  transition: border-color .2s;
}
.price-enquire:hover { border-color: var(--navy); }
.price-card.no-price .price-card-amount { font-size: 1.125rem; font-family: var(--sans); font-weight: 600; }

.pricing-note {
  margin-top: 2.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.375rem 1.75rem;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}
.pricing-note strong { color: var(--text); }

/* ─── INSIGHTS PAGE ──────────────────────────────────────── */

.insights-page { padding: 5.5rem 0; }
.insights-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.insight-main {}
.insight-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.insight-thumb {
  height: 280px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-thumb-sm { height: 180px; }
.thumb-grid {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 19px, rgba(255,255,255,.5) 19px, rgba(255,255,255,.5) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255,255,255,.5) 19px, rgba(255,255,255,.5) 20px);
}
.thumb-cat {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.insight-body { padding: 2rem; }
.insight-meta {
  display: flex;
  gap: 1.25rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .875rem;
}
.insight-body h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .875rem;
}
.insight-body h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.insight-body p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.insight-card-sm {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow .2s;
}
.insight-card-sm:hover { box-shadow: var(--shadow-sm); }
.insight-sm-thumb {
  width: 100px;
  flex-shrink: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.insight-sm-body { padding: 1.125rem 1.125rem 1.125rem 0; }
.insight-sm-body h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .375rem;
}
.insight-sm-body p {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.55;
}

.sidebar-heading {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.soon-badge {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: .175rem .45rem;
  border-radius: 1px;
  margin-bottom: .5rem;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */

.contact-page { background: var(--white); padding: 5.5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .875rem;
}
.c-detail {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.c-detail:last-of-type { border-bottom: none; }
.c-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .375rem;
}
.c-val {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.65;
}
.c-val a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color .2s;
}
.c-val a:hover { border-color: var(--navy); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,107,.07);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }
.form-submit {
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 2px;
  padding: .9375rem 2.25rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background .2s;
}
.form-submit:hover { background: var(--navy-dark); }

/* ─── FOOTER ─────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-dark);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .logo-name { color: rgba(255,255,255,.8); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.25); }
.footer-brand p {
  font-size: .8125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
}
.footer-col h4 {
  font-size: .6125rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .8125rem;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-main    { grid-template-columns: 1fr; }
  .hero-deco    { display: none; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .fail-grid    { grid-template-columns: 1fr; }
  .fail-pull    { position: static; }
  .svc-grid     { grid-template-columns: 1fr 1fr; }
  .why-us-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .svc-category-header { grid-template-columns: 1fr; gap: 1rem; }
  .svc-items    { grid-template-columns: 1fr 1fr; }
  .insights-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --hh: 62px; }

  .site-header { position: relative; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 100;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    width: 100%;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    background: none !important;
    color: var(--navy) !important;
    margin-left: 0;
    padding: .75rem 0 !important;
  }
  .menu-toggle { display: flex; }

  .hero-main { padding: 3.5rem 1.5rem; min-height: 0; }
  .hero-stats-inner { grid-template-columns: 1fr; padding: 1.25rem 1.5rem; }
  .stat { padding: 1rem 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; }
  .stat:last-child { border-bottom: none; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-items { grid-template-columns: 1fr; }
  .price-cards.cols-2,
  .price-cards.cols-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .preview-header { flex-direction: column; align-items: flex-start; }
}
