﻿/* =========================================================
   GGangermann — Shared Styles
   Brand: Mission Critical Resources
   Palette: Deep Navy / Electric Cyan / Safety Orange
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors */
  --navy:        #15274a;
  --navy-800:    #131F42;
  --navy-700:    #1B2A55;
  --navy-600:    #25366B;
  --cyan:        #00C8FF;
  --cyan-600:    #00A8DA;
  --cyan-50:     #E6FAFF;
  --orange:      #FF6600;
  --orange-600: #E55A00;
  --orange-50:   #FFF0E5;
  --white:       #FFFFFF;
  --off-white:   #F4F7FA;
  --line:        #E2E7EF;
  --line-dark:   rgba(255,255,255,0.10);
  --charcoal:    #333333;
  --slate:       #5A6478;
  --slate-light: #8590A6;

  /* Type */
  --font-display: 'Barlow', 'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', 'Open Sans', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ============= TYPE ============= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 12px;
  background: rgba(0, 200, 255, 0.10);
  border: 1px solid rgba(0, 200, 255, 0.30);
  border-radius: 2px;
}
.eyebrow.on-light {
  color: var(--orange);
  background: rgba(255, 102, 0, 0.08);
  border-color: rgba(255, 102, 0, 0.25);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-weight: 900; font-size: clamp(36px, 5vw, 60px); }
h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-weight: 700; font-size: 22px; line-height: 1.2; }
h4 { font-weight: 700; font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--slate); font-size: 17px; margin: 0; }

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
  height: var(--nav-h);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--white);
}
.site-logo {
  height: 77px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 3px;
  transition: color var(--ease) 160ms, background var(--ease) 160ms;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--cyan); }
.nav-links a.active::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--orange);
  margin: 6px auto 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: all var(--ease) 160ms;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-600); border-color: var(--orange-600); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
}
.btn-outline-light:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
.btn-cyan:hover { background: var(--cyan-600); border-color: var(--cyan-600); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 28px; font-size: 14px; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--white);
}

/* ============= HERO ============= */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(0, 200, 255, 0.12), transparent 60%),
    radial-gradient(600px 300px at 10% 80%, rgba(255, 102, 0, 0.08), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5.2vw, 64px);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--cyan); }
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 8px; height: 6px;
  background: var(--orange);
  z-index: -1;
}
.hero p.lede {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  margin-top: 48px;
}
.stat {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .num .unit { font-size: 18px; color: var(--cyan); margin-left: 4px; font-weight: 700; }
.stat .label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* Lead capture card */
.lead-card {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  border-top: 4px solid var(--orange);
}
.lead-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 6px;
}
.lead-card .sub {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  padding: 4px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 2px;
  color: var(--slate);
  transition: all var(--ease) 160ms;
}
.tab.active { background: var(--navy); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--off-white);
  border-radius: 3px;
  color: var(--charcoal);
  transition: border-color var(--ease) 160ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.field input[type="file"].file-input {
  padding: 8px 12px;
  cursor: pointer;
  background: var(--off-white);
}
.field input[type="file"].file-input::file-selector-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 6px 12px;
  margin-right: 10px;
  cursor: pointer;
  transition: background var(--ease) 160ms;
}
.field input[type="file"].file-input::file-selector-button:hover { background: var(--navy-700); }
.lead-card .btn-primary { width: 100%; padding: 14px; font-size: 13px; }
.confidential {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--slate);
  margin-top: 12px;
  justify-content: center;
}
.confidential svg { width: 14px; height: 14px; color: var(--cyan); }

/* ============= TICKER ============= */
.ticker {
  background: var(--navy-800);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 18px 0;
  color: rgba(255,255,255,0.55);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.ticker-item { display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.ticker-item::after {
  content: '//';
  color: var(--orange);
  font-weight: 800;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= SECTIONS ============= */
section.block { padding: 96px 0; }
section.block.alt { background: var(--off-white); }
section.block.dark { background: var(--navy); color: var(--white); }
section.block.dark h2, section.block.dark h3 { color: var(--white); }
section.block.dark .section-head p { color: rgba(255,255,255,0.7); }

/* ============= CARDS ============= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.s-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  transition: all var(--ease) 220ms;
  position: relative;
  display: flex;
  flex-direction: column;
}
.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease) 280ms;
}
.s-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,22,48,0.08); }
.s-card:hover::before { transform: scaleX(1); }
.s-card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(0, 200, 255, 0.10);
  color: var(--navy);
  border-radius: 3px;
  margin-bottom: 18px;
}
.s-card .icon svg { width: 22px; height: 22px; }
.s-card .card-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.s-card h3 { color: var(--navy); margin-bottom: 12px; }
.s-card .desc { color: var(--slate); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.s-card .roles-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 16px;
  margin-bottom: 10px;
  border-top: 1px solid var(--line);
}
.s-card ul.roles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.s-card ul.roles li {
  font-size: 13px;
  color: var(--charcoal);
  padding-left: 14px;
  position: relative;
}
.s-card ul.roles li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 2px;
  background: var(--orange);
}

/* ============= FOOTER ============= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; margin: 0 0 16px; max-width: 360px; }
.footer-brand .stats-line {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.footer-brand .stats-line span { display: inline-flex; align-items: center; gap: 6px; }
.footer-brand .stats-line span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
}
.footer-brand .btns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  transition: color var(--ease) 160ms;
}
.footer ul a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--cyan); }

/* ============= PAGE HEADER (non-home pages) ============= */
.page-head {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 350px at 85% 50%, rgba(0, 200, 255, 0.10), transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 2; }
.page-head .crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-head .crumbs span.sep { color: var(--orange); }
.page-head .crumbs span.now { color: var(--cyan); }
.page-head h1 {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 56px);
  margin-bottom: 18px;
  max-width: 900px;
}
.page-head .lede {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 720px;
  margin: 0;
}
.page-head .head-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end;
}
.page-head .head-meta {
  display: flex; flex-direction: column; gap: 16px;
  border-left: 2px solid var(--orange);
  padding: 8px 0 8px 20px;
}
.page-head .head-meta .row { display: flex; justify-content: space-between; gap: 20px; }
.page-head .head-meta .k {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.page-head .head-meta .v {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--cyan); letter-spacing: 0.04em;
}

/* ============= STEPS (How It Works) ============= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding-top: 0; }
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -2px;
  width: 18px; height: 4px;
  background: var(--orange);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 14px; line-height: 1.65; margin: 0; }

/* ============= JOB CARDS ============= */
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--ease) 220ms;
  position: relative;
}
.job-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(11,22,48,0.08); }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
}
.pill.cat { background: var(--navy); color: var(--white); }
.pill.type { background: var(--cyan-50); color: var(--navy); border: 1px solid rgba(0, 200, 255, 0.30); }
.pill.mode { background: var(--orange-50); color: var(--orange-600); border: 1px solid rgba(255, 102, 0, 0.25); }
.job-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 6px; line-height: 1.3; }
.job-card .company { font-size: 13px; color: var(--slate); margin-bottom: 14px; }
.job-meta {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 0;
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.job-meta .row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--charcoal); }
.job-meta .row svg { width: 14px; height: 14px; color: var(--slate-light); flex: 0 0 14px; }
.job-meta .row .k { color: var(--slate); min-width: 64px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; }
.job-card .apply { margin-top: auto; }
.job-card .apply .btn { width: 100%; }

/* ============= CONTACT FORM ============= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-info .info-block { margin-bottom: 28px; }
.contact-info .info-block .k {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px;
}
.contact-info .info-block .v { font-size: 18px; color: var(--navy); font-weight: 600; font-family: var(--font-display); }
.contact-info .why h3 { color: var(--navy); margin-bottom: 16px; }
.contact-info .why ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.contact-info .why ul li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-size: 15px;
}
.contact-info .why ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 2px;
  background: var(--orange);
}
.contact-info .why ul li::after {
  content: '';
  position: absolute;
  left: 14px; top: 4px;
  width: 2px; height: 10px;
  background: var(--cyan);
}

/* ============= UTILS ============= */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 50% 100%, rgba(0, 200, 255, 0.10), transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto 28px; }
.cta-banner .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.divider-bars {
  display: inline-flex; gap: 4px; align-items: center; margin: 16px 0;
}
.divider-bars span {
  display: inline-block;
  width: 18px; height: 3px; background: var(--orange);
}
.divider-bars span:nth-child(2) { background: var(--cyan); width: 36px; }
.divider-bars span:nth-child(3) { width: 8px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; padding-right: 0; padding-bottom: 20px; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-head .head-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section.block { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Logo: size by intrinsic ratio capped by max-height so the global
     img{max-width:100%} rule can never squash the fixed-height logo. */
  .site-logo { height: auto; width: auto; max-height: 48px; max-width: 60vw; }
}

/* WordPress admin bar compensation */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
