*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-glow: rgba(220, 38, 38, 0.18);
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #161616;
  --border: rgba(255,255,255,0.07);
  --text: #f5f5f5;
  --muted: #888;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.875rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.highlight-red {
  color: var(--red);
  font-weight: 800;
}

.hero-lede {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.hero p.hero-sub { margin-bottom: 1rem; }
.hero p:last-of-type { margin-bottom: 2.5rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(220,38,38,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-meta-item svg { color: var(--red); flex-shrink: 0; }

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* ── SECTION COMMONS ── */
section { padding: 100px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── VALUE PROPS ── */
.value-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 4rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .value-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: var(--bg-2);
  padding: 2.5rem;
  transition: background 0.2s;
}
.value-card:hover { background: var(--bg-3); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-glow);
  border: 1px solid rgba(220,38,38,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── KEY MESSAGES / PROVOCATIVE QUESTIONS ── */
.question-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.question-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}
.question-mark {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}
.question-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.question-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.key-message-banner {
  background: rgba(220,38,38,0.06);
  border: 2px solid var(--red);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}
.key-message-banner strong { color: var(--white); }
.key-message-banner strong.highlight-red { color: var(--red); }

/* ── AUDIENCE TIERS ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tier-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.tier-level {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.tier-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.tier-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── DISCLAIMER ── */
.disclaimer-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 2rem 2.25rem;
}
.disclaimer-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--red);
  margin-bottom: 1rem;
}
.disclaimer-box p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
}
.disclaimer-box p + p {
  margin-top: 1rem;
}

/* ── MODULES ── */
.modules-section { background: var(--bg-2); }
.modules-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.module-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
  cursor: default;
}
.module-item:hover {
  border-color: rgba(220,38,38,0.25);
  background: rgba(220,38,38,0.03);
}
.module-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  min-width: 70px;
  flex-shrink: 0;
  white-space: nowrap;
  text-transform: uppercase;
}
.module-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.module-body p { font-size: 0.875rem; color: var(--muted); }
.module-arrow { margin-left: auto; color: var(--border); font-size: 1.2rem; }

/* ── SCHEDULE / DELIVERY FORMAT ── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 700px) { .schedule-grid { grid-template-columns: 1fr; } }

.schedule-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.schedule-card.highlight {
  background: rgba(220,38,38,0.06);
  border-color: rgba(220,38,38,0.25);
}
.schedule-time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.schedule-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.schedule-card p { font-size: 0.875rem; color: var(--muted); }

/* ── GOVERNANCE / REGULATORY LANDSCAPE ── */
.gov-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 3.5rem;
}
.gov-pillar-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}
.gov-pillar-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.gov-pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.gov-pillar-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.gov-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gov-accordion details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.gov-accordion details[open] {
  border-color: rgba(220,38,38,0.25);
}
.gov-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: var(--white);
  font-size: 1.02rem;
}
.gov-accordion summary::-webkit-details-marker { display: none; }
.gov-accordion summary .plus {
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.gov-accordion details[open] summary .plus { transform: rotate(45deg); }
.gov-accordion summary .summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gov-accordion summary .summary-sub {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.gov-item-list {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gov-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.gov-item:first-child { border-top: none; padding-top: 0; }
.gov-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.gov-item-head h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
.date-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f87171;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}
.gov-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── SAFEGUARDS TOOLKIT ── */
.safeguard-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.safeguard-group {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}
.safeguard-group h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.safeguard-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.safeguard-group li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.safeguard-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.framework-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── OVERSIGHT HIGHLIGHT CARDS (HITL / HOTL / Biometric) ── */
.oversight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.oversight-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.oversight-card .oversight-acronym {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-glow);
  border: 1px solid rgba(220,38,38,0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.oversight-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.oversight-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── INSTRUCTORS ── */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 500px) { .instructor-grid { grid-template-columns: 1fr; } }

.instructor-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.2s;
}
.instructor-card:hover { border-color: rgba(220,38,38,0.2); }

.instructor-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.instructor-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.instructor-role {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.instructor-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.instructor-note-card {
  background: transparent;
  border-style: dashed;
}
.instructor-avatar-note {
  background: transparent;
  border: 2px dashed var(--border);
  color: var(--muted);
  font-size: 1.8rem;
  font-weight: 400;
}
.instructor-note-card .instructor-bio {
  font-style: italic;
}
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── TOPICS ── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.topic-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}
.topic-pill:hover {
  border-color: rgba(220,38,38,0.25);
  background: rgba(220,38,38,0.04);
  color: var(--white);
}
.topic-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── CTA ── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .section-title { margin-bottom: 1rem; }
.cta-inner .section-sub { margin: 0 auto 2.5rem; }

.cta-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
}
.cta-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.cta-detail svg { color: var(--red); }

/* ── CONTACT FORM ── */
.contact-block {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 4rem auto 0;
  text-align: left;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--red);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23888' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field select option { background: var(--bg-2); color: var(--text); }

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  min-height: 1.1em;
}
.form-status.success { color: var(--text); }
.form-status.success strong { color: var(--red); }

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-col .form-title { margin-bottom: 0.25rem; }

.highlight-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.highlight-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.highlight-box p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .contact-block { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-info {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .footer-info { text-align: left; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 5%; width: 100%; }
  .nav-links .nav-cta { margin: 0.5rem 5% 1rem; display: inline-block; }
  .gov-item-head { flex-direction: column; align-items: flex-start; }
}

/* ── DIVIDER LINE ── */
.divider {
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
