/* ═══════════════════════════════════════════
   AigleSense — Main Stylesheet
   Brussels · SAP · Dynamics · Planning
═══════════════════════════════════════════ */

/* ─── PAGE VISIBILITY (SPA routing) ─── */
.page          { display: none; }
.page.active   { display: block; }

/* ─── CSS VARIABLES ─── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #162E52;
  --navy-light: #1E3D6B;
  --gold:       #C9A84C;
  --gold-light: #E8D5A0;
  --gold-pale:  #F5EDD5;
  --text:       #1A1A1A;
  --text-mid:   #444;
  --text-muted: #777;
  --text-faint: #AAA;
  --border:     rgba(0,0,0,0.08);
  --border-mid: rgba(0,0,0,0.14);
  --surface:    #F8F7F4;
  --surface-mid:#F0EEE8;
  --white:      #FFFFFF;
  --radius:     10px;
  --radius-lg:  14px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.18s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── LAYOUT ─── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.logo:hover .logo-mark { background: var(--navy-mid); }
.logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo-name span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--surface); }
.nav-links a.active { font-weight: 500; }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  background: var(--navy);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--navy-mid); }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--navy);
  color: var(--gold);
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-gold {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold:hover { background: #B8963E; transform: translateY(-1px); }

.btn-outline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  color: var(--text);
  padding: 11px 22px;
  border-radius: 8px;
  border: 1px solid var(--border-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--surface); border-color: var(--text-muted); }

.btn-outline-white {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 11px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.eyebrow-dark { color: var(--text-muted); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 700px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 10px;
}
h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.sec-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
  margin-top: 52px;
  display: block;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 680px; }
.hero-dark {
  background: var(--navy);
  padding: 80px 0 64px;
  border-bottom: none;
}
.hero-dark h1    { color: var(--white); }
.hero-dark .lead { color: rgba(255,255,255,0.65); }
.hero-dark .eyebrow { color: var(--gold); }

/* ─── STAT BAR ─── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}
.stat-cell {
  padding: 20px 22px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-num.gold { color: var(--gold); }
.stat-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover           { border-color: var(--gold); transform: translateY(-2px); }
.card.featured        { border: 2px solid var(--gold); }
.card.no-hover:hover  { transform: none; border-color: var(--border); cursor: default; }

.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: var(--navy);
  color: var(--gold);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  align-self: flex-start;
}
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card h3   { font-size: 15px; }
.card p    { font-size: 13px; color: var(--text-mid); line-height: 1.6; flex: 1; }
.card-link { font-size: 12px; font-weight: 600; color: var(--gold); margin-top: 4px; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ─── TAGS ─── */
.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gold-pale);
  color: #7A5A1A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── SURFACES ─── */
.surface {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.surface h3 { font-size: 14px; }
.surface p  { font-size: 12px; color: var(--text-mid); line-height: 1.55; }

/* ─── STEP CARDS ─── */
.step-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-card h3 { font-size: 14px; }
.step-card p  { font-size: 12px; color: var(--text-mid); line-height: 1.55; }

/* ─── MODULE GRID ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.mod {
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 14px;
}
.mod-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #7A5A1A;
  margin-bottom: 3px;
}
.mod-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* ─── PILL ROW ─── */
.pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.pill {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 48px 0;
}
.cta-band h2   { color: var(--gold); font-size: 22px; margin-bottom: 6px; }
.cta-band p    { color: rgba(255,255,255,0.6); font-size: 14px; }
.cta-band-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── PROMISE SECTION ─── */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.promise-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition);
}
.promise-card:hover { border-color: var(--gold); }
.promise-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-card h3 { font-size: 14px; font-weight: 600; }
.promise-card p  { font-size: 12px; color: var(--text-mid); line-height: 1.6; flex: 1; }
.promise-stat {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}
.promise-stat-label { font-size: 11px; color: var(--text-faint); margin-top: 1px; }

.promise-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.promise-bottom-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.promise-bottom-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.promise-bottom-label { font-size: 12px; color: #8BAFD4; line-height: 1.4; }

.promise-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-style: italic;
}

/* ─── JOB CARDS ─── */
.job-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.job-card:hover { border-color: var(--gold); transform: translateY(-1px); }
.job-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.job-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.jm {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface);
  padding: 3px 8px;
  border-radius: 4px;
}
.job-desc    { font-size: 12px; color: var(--text-mid); line-height: 1.5; }
.job-right   { text-align: right; }
.job-rate {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.job-type  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.job-apply { font-size: 12px; font-weight: 600; color: var(--gold); margin-top: 8px; cursor: pointer; }

/* ─── FORMS ─── */
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
}
.form-card h2     { font-size: 20px; margin-bottom: 6px; }
.form-card .sub-text { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field  { display: flex; flex-direction: column; gap: 6px; }
.form-label  { font-size: 12px; font-weight: 500; color: var(--text-mid); }

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 12px;
  border: 1px solid var(--border-mid);
  border-radius: 7px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  appearance: auto;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 80px; }

.upload-area {
  border: 1px dashed var(--border-mid);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  margin-bottom: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--transition);
}
.upload-area:hover { border-color: var(--gold); }
.upload-text { font-size: 13px; color: var(--text-mid); }
.upload-sub  { font-size: 11px; color: var(--text-faint); margin-top: 4px; }

/* ─── CHECK LISTS ─── */
.check-list          { list-style: none; padding: 0; margin-top: 10px; }
.check-list li       { font-size: 13px; color: var(--text-mid); line-height: 1.7; padding-left: 18px; position: relative; }
.check-list.good li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.check-list.bad  li::before { content: '✗'; position: absolute; left: 0; color: #E24B4A; }

/* ─── PRICING MODEL CARDS ─── */
.model-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-card.rec { border: 2px solid var(--gold); }
.model-name  { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); }
.model-price { font-size: 12px; color: var(--text-muted); }
.model-desc  { font-size: 13px; color: var(--text-mid); line-height: 1.6; flex: 1; }

/* ─── TEAM CARDS ─── */
.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
}
.team-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); }
.team-role { font-size: 12px; color: var(--text-muted); }
.team-spec { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.team-bio  { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

/* ─── ROLE CARDS (Work for us) ─── */
.role-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color var(--transition);
  cursor: pointer;
}
.role-card:hover { border-color: var(--gold); }
.role-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.role-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.rm        { font-size: 11px; background: var(--surface); color: var(--text-muted); padding: 3px 8px; border-radius: 4px; }
.role-desc { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-name       { color: var(--white); }
.footer-brand .logo-name span  { color: var(--gold); }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.6; margin-top: 12px; max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 8px; cursor: pointer;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy    { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-contact a { color: var(--gold); text-decoration: none; }

/* ─── DIVIDER ─── */
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0 0; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner { animation: fadeUp 0.4s ease forwards; }

/* ─── RESPONSIVE ─── */
/* ─── NAV DROPDOWN ─── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-dropdown-toggle.open {
  color: var(--navy);
  background: var(--surface);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  min-width: 210px;
  z-index: 500;
  padding: 6px 0;
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-mid);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
  background: none;
}
.dropdown-menu a:hover { background: var(--surface); color: var(--navy); }

/* ─── JOB SEARCH BAR ─── */
.job-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.job-search input,
.job-search select {
  flex: 1;
  min-width: 160px;
  padding: 9px 12px;
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.job-search input:focus,
.job-search select:focus { border-color: var(--gold); }
.job-search input { flex: 2; min-width: 200px; }

/* ─── HAMBURGER BUTTON (hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s ease;
}
/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .modules-grid,
  .promise-grid,
  .stat-bar { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .btn-nav { display: none; }

  /* Dropdown becomes inline list inside hamburger menu */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { padding: 12px 24px; font-size: 15px; width: 100%; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    margin-left: 24px;
    padding: 0;
    background: transparent;
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu a { padding: 9px 16px; font-size: 14px; color: var(--text-mid); }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .cta-band-btns { justify-content: center; }

  .form-grid { grid-template-columns: 1fr; }

  .role-card { grid-template-columns: 1fr; }
  .job-card  { grid-template-columns: 1fr; }
  .job-right { text-align: left; margin-top: 8px; }
}
