/* ============================================
   Global Training — shared stylesheet
   ============================================ */

:root {
  --orange: #E8963C;
  --orange-dark: #CE7A1F;
  --teal: #3E9FBF;
  --teal-dark: #1F6E8C;
  --navy: #10233A;
  --navy-2: #17324F;
  --light: #F6F9FB;
  --grey: #64748B;
  --border: #E4E9EF;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(16, 35, 58, 0.08);
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

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

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 16px; color: var(--navy); }
p { margin: 0 0 16px; color: var(--grey); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(62, 159, 191, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section {
  padding: 80px 0;
}
.section.alt { background: var(--light); }
.section.dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p { color: #C7D3E0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: clamp(28px, 4vw, 36px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 150, 60, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-dark-outline:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
}
.brand img { width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0; }
.brand-title {
  font-size: 27px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  text-align: left;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-2);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: rgba(62,159,191,0.1); color: var(--teal-dark); }
.nav-links a.active { background: var(--teal); color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--teal-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232,150,60,0.35) 0%, rgba(232,150,60,0) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -160px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62,159,191,0.35) 0%, rgba(62,159,191,0) 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 18px;
  color: #D5E1EC;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ---------- Hero safety animation ---------- */
.hero-safety-badge {
  position: absolute;
  top: 34px;
  right: 60px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(232,150,60,0.45);
  animation: safety-float 3.2s ease-in-out infinite;
}
.hero-safety-badge svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 2;
}
.hero-safety-badge::before,
.hero-safety-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: safety-pulse 2.4s ease-out infinite;
}
.hero-safety-badge::after { animation-delay: 1.2s; }

.hero-safety-tag {
  position: absolute;
  top: 100px;
  right: 34px;
  z-index: 3;
  background: rgba(16,35,58,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  animation: safety-float 3.2s ease-in-out infinite;
  animation-delay: 0.1s;
}

.hero-beacon {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF6B4A;
  box-shadow: 0 0 0 rgba(255,107,74,0.6);
  animation: beacon-blink 1.6s ease-in-out infinite;
}

@keyframes safety-pulse {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(2.1); opacity: 0; }
}
@keyframes safety-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes beacon-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,74,0.7); opacity: 1; }
  50% { box-shadow: 0 0 0 10px rgba(255,107,74,0); opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-safety-badge,
  .hero-safety-tag,
  .hero-beacon,
  .hero-safety-badge::before,
  .hero-safety-badge::after {
    animation: none;
  }
}

@media (max-width: 720px) {
  .hero-safety-badge { width: 48px; height: 48px; top: 18px; right: 18px; }
  .hero-safety-badge svg { width: 22px; height: 22px; }
  .hero-safety-tag { top: 66px; right: 14px; font-size: 10px; padding: 5px 10px; }
}
.hero-badge {
  font-size: 13px;
  color: #C7D3E0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-bg-illustration {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 46%;
  min-width: 340px;
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius);
}

.hero-card .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-block { text-align: left; }
.stat-block .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
}
.stat-block .label {
  font-size: 13px;
  color: #C7D3E0;
  font-weight: 600;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-img, url("assets/hero-plant.svg"));
  background-size: cover;
  background-position: center 55%;
  opacity: 0.28;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,35,58,0.75) 0%, rgba(23,50,79,0.55) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: #C7D3E0; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(16,35,58,0.12); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,150,60,0.14);
  color: var(--orange-dark);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}
.card .icon svg,
.course-group h3 .badge svg,
.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
}
.icon-badge svg { width: 22px; height: 22px; }

/* Illustration images used in split sections */
.media-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.media-caption {
  margin-top: 18px;
  font-size: 14.5px;
  text-align: center;
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* Course list card */
.course-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.course-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light);
  margin-bottom: 16px;
}
.course-group h3 .badge {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--teal);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.course-list li {
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
  color: var(--navy-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.course-list li:last-child { border-bottom: none; }
.course-list li::before {
  content: "✓";
  color: var(--teal-dark);
  font-weight: 800;
  flex-shrink: 0;
}

/* Countries / tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-2);
}

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img, .split .media-block { border-radius: var(--radius); }
.media-block {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-2) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
}

/* ---------- Timeline / list with icons ---------- */
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--navy-2);
}
.check-list li .mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip .num { font-size: 36px; font-weight: 800; color: var(--orange); }
.stats-strip .label { font-size: 14px; color: #C7D3E0; font-weight: 600; margin-top: 4px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 20px;
  padding: 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2, .cta-banner p { color: white; }
.cta-banner p { opacity: 0.95; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-2);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: var(--light);
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--grey); margin-top: 14px; }

/* ---------- Contact info blocks ---------- */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(62,159,191,0.12);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 15.5px; }
.contact-info-item p { margin-bottom: 0; font-size: 14.5px; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Training calendar ---------- */
.quarter-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 18px;
}
.quarter-heading:first-of-type { margin-top: 0; }
.quarter-heading .qbadge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.quarter-heading h3 { margin: 0; font-size: 20px; }
.quarter-heading span.range { font-size: 13.5px; color: var(--grey); font-weight: 600; }

.schedule-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}
.schedule-table th {
  background: var(--navy);
  color: white;
  text-align: left;
  padding: 14px 18px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.schedule-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--navy-2);
  vertical-align: middle;
}
.schedule-table tbody tr:hover td { background: var(--light); }
.mode-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.mode-badge.classroom { background: rgba(232,150,60,0.14); color: var(--orange-dark); }
.mode-badge.online { background: rgba(62,159,191,0.14); color: var(--teal-dark); }
.schedule-cta {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal-dark);
  white-space: nowrap;
}
.schedule-cta:hover { color: var(--orange-dark); }

/* Month-grid calendar tables */
.group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 18px;
}
.group-heading:first-of-type { margin-top: 0; }
.group-heading .gbadge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.group-heading .gbadge svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.group-heading h3 { margin: 0; font-size: 19px; }
.group-heading span.hint { display: block; font-size: 13px; color: var(--grey); font-weight: 600; margin-top: 2px; }

.month-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 1180px;
  font-size: 13px;
}
.month-table th {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 10px 8px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  white-space: nowrap;
}
.month-table th.col-title { text-align: left; min-width: 240px; }
.month-table th.col-duration { min-width: 70px; }
.month-table td {
  padding: 10px 8px;
  border-top: 1px solid var(--border);
  color: var(--navy-2);
  text-align: center;
  white-space: nowrap;
}
.month-table td.col-title {
  text-align: left;
  white-space: normal;
  font-weight: 600;
  color: var(--navy);
}
.month-table td.col-duration { color: var(--grey); font-weight: 600; }
.month-table tbody tr:nth-child(odd) td { background: rgba(62,159,191,0.035); }
.month-table tbody tr:hover td { background: rgba(232,150,60,0.08); }
.month-table .od {
  display: inline-block;
  background: rgba(232,150,60,0.14);
  color: var(--orange-dark);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 3px 7px;
  border-radius: 5px;
}
.calendar-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin: 18px 0 8px;
  font-size: 13.5px;
  color: var(--grey);
}
.calendar-legend .od {
  display: inline-block;
  background: rgba(232,150,60,0.14);
  color: var(--orange-dark);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  margin-right: 6px;
}
.schedule-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--navy-2);
}
.schedule-note svg { width: 22px; height: 22px; stroke: var(--teal-dark); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 720px) {
  .quarter-heading { margin: 32px 0 14px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #C7D3E0;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer-brand span { font-weight: 800; font-size: 18px; color: white; }
.site-footer h4 { color: white; font-size: 15px; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; font-size: 14.5px; }
.site-footer ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #90A0B4;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg-illustration { display: none; }
  .hero-beacon { display: none; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .brand img { width: 56px; height: 56px; }
  .brand-title { font-size: 20px; }
  .nav-links, .nav-cta .btn-dark-outline { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
