/* =========================================================
   7AI Frontend Design System
   Navy / Sage — Playfair Display + DM Mono + DM Sans
   ========================================================= */

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

:root {
  --navy: #0a1628;
  --navy-deep: #060e1a;
  --navy-mid: #112038;
  --sage: #7aae8e;
  --sage-light: #a8cdb8;
  --sage-pale: #d4ece0;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.35);
  --border-sage: rgba(122,174,142,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
.fe-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border-sage);
  padding: 0 6vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fe-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0;
}
.fe-nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.fe-nav-logo span { color: var(--sage-light); }

.fe-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.fe-nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.fe-nav-links a:hover,
.fe-nav-links a.active { color: var(--sage-light); }

.nav-cta-btn {
  background: var(--sage-light) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-cta-btn:hover { background: var(--sage-pale) !important; color: var(--navy) !important; }

.fe-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.fe-mobile-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile drawer */
.fe-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.fe-mobile-drawer.open { display: block; }
.fe-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.fe-drawer-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--navy-mid);
  border-left: 0.5px solid var(--border-sage);
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fe-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 16px;
}
.fe-drawer-panel a {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border-sage);
  transition: color 0.2s;
}
.fe-drawer-panel a:hover { color: var(--sage-light); }
.fe-drawer-cta {
  margin-top: 16px;
  background: var(--sage-light);
  color: var(--navy) !important;
  padding: 14px 20px !important;
  border-radius: 2px;
  text-align: center;
  font-weight: 500 !important;
  border-bottom: none !important;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sage-light);
  color: var(--navy);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--sage-pale); color: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--sage-light);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(122,174,142,0.5);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--sage-light); color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--sage-light);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-dark:hover { background: #172a45; }

/* ── EYEBROW ── */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--sage); }
.eyebrow-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  padding: 120px 6vw 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-number {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-55%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(280px, 32vw, 520px);
  font-weight: 900;
  color: rgba(168,205,184,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero-headline em { color: var(--sage-light); font-style: italic; }
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 0.5px solid var(--border-sage);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--sage-light); }
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 70vh;
  padding: 130px 6vw 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero-navy { background: linear-gradient(160deg, #0a1628 60%, #0d2a1a 100%); }
.page-hero-biz  { background: linear-gradient(160deg, #0a1628 60%, #0a1a28 100%); }
.hero-ghost {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 28vw, 420px);
  font-weight: 900;
  color: rgba(122,174,142,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.breadcrumb a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--sage-light); }
.breadcrumb span { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-dim); }
.breadcrumb strong {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
}

/* ── SECTION TYPOGRAPHY ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
h1 em { color: var(--sage-light); font-style: italic; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 16px;
}
.section-title em { color: var(--sage-light); font-style: italic; }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 em { color: var(--sage-light); font-style: italic; }

.section-sub, .body-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.section-sub { max-width: 500px; font-size: 16px; }
.hero-sub-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 60px; }

/* ── SECTIONS ── */
.fe-section { padding: 90px 6vw; }
.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-navy-deep{ background: var(--navy-deep); }

/* ── PILLARS GRID ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-sage);
  border: 0.5px solid var(--border-sage);
  border-radius: 4px;
  overflow: hidden;
}
.pillar-card {
  background: var(--navy-mid);
  padding: 44px 36px;
  transition: background 0.3s;
}
.pillar-card:hover { background: #172a45; }
.pillar-accent { width: 40px; height: 2px; background: var(--sage); margin-bottom: 28px; }
.pillar-icon {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(168,205,184,0.6);
  margin-bottom: 20px;
}
.pillar-desc { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.pillar-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(168,205,184,0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.pillar-learn:hover { color: var(--white); }

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--navy-deep);
  padding: 80px 6vw;
  display: flex;
  align-items: center;
  gap: 80px;
  border-top: 0.5px solid var(--border-sage);
  border-bottom: 0.5px solid var(--border-sage);
}
.mission-seven {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 900;
  color: var(--sage-light);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.9;
}
.mission-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 20px;
}
.mission-quote em { color: var(--sage-light); font-style: italic; }
.mission-body { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* ── TRAINING SECTION ── */
.training-section {
  background: var(--sage-pale);
  padding: 100px 6vw;
}
.training-section .section-title { color: var(--navy); }
.training-section .eyebrow-text { color: #3a7a58; }
.training-section .eyebrow-line { background: #3a7a58; }
.training-section .section-sub { color: #2a4a38; }

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.training-modules { display: flex; flex-direction: column; gap: 2px; }
.training-module {
  background: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(10,22,40,0.12);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.2s;
}
.training-module:hover { background: rgba(255,255,255,0.8); }
.module-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--sage); min-width: 24px; margin-top: 2px; }
.module-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.module-desc { font-size: 13px; color: #3a5a48; line-height: 1.5; }

.training-right {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.training-cta-ghost {
  position: absolute; bottom: -20px; right: -10px;
  font-family: 'Playfair Display', serif; font-size: 120px;
  font-weight: 900; color: rgba(168,205,184,0.06); line-height: 1; pointer-events: none;
}
.training-cta-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 20px; }
.training-cta-headline { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.training-cta-headline em { color: var(--sage-light); font-style: italic; }
.training-cta-sub { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.training-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.training-list li { font-size: 13px; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.training-list li span { color: var(--sage); margin-top: 2px; }
.register-free {
  display: inline-block;
  background: var(--sage-light); color: var(--navy);
  font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s;
}
.register-free:hover { background: #c8e8d4; }

/* ── FEATURE LIST ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 2px; }
.feature-item {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border-sage);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}
.feature-item:hover { background: rgba(122,174,142,0.06); }
.feature-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--sage); min-width: 28px; margin-top: 2px; }
.feature-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.feature-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

/* ── USE CASES / SECTORS GRIDS ── */
.use-cases-grid, .sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border-sage);
  border: 0.5px solid var(--border-sage);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
.use-case-card, .sector-card {
  background: var(--navy-deep);
  padding: 36px 30px;
  transition: background 0.3s;
}
.use-case-card:hover, .sector-card:hover { background: #0d1e35; }
.uc-icon, .sector-accent { width: 32px; height: 2px; background: var(--sage); margin-bottom: 24px; }
.uc-title, .sector-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.uc-desc, .sector-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  padding: 32px 28px;
  border-left: 2px solid var(--sage);
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 32px;
  font-weight: 500;
  color: rgba(122,174,142,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 760px;
  margin-top: 48px;
}
.faq-item {
  border: 0.5px solid var(--border-sage);
  border-radius: 4px;
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q:hover, .faq-item.open .faq-q { background: rgba(122,174,142,0.05); }
.faq-q .faq-icon { font-family: 'DM Mono', monospace; font-size: 16px; color: var(--sage); }
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--sage-pale);
  padding: 80px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.cta-strip h2 em { color: #3a7a58; font-style: italic; }
.cta-strip p { font-size: 15px; color: #2a4a38; margin-top: 10px; max-width: 480px; line-height: 1.6; }

/* ── ALSO EXPLORE ── */
.also-section { background: var(--navy-deep); padding: 80px 6vw; }
.also-section h3 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 32px; }
.also-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.also-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border-sage);
  border-radius: 4px;
  padding: 28px 24px;
  text-decoration: none;
  transition: background 0.2s;
  display: block;
}
.also-card:hover { background: rgba(122,174,142,0.06); }
.also-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.also-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.also-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.also-arrow { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--sage-light); margin-top: 16px; display: block; }

/* ── CONTACT SECTION ── */
.contact-section { padding: 100px 6vw; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.contact-item-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.contact-item-value { font-size: 15px; font-weight: 300; color: var(--text-muted); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(122,174,142,0.3);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage-light); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--sage-light);
  color: var(--navy);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.form-submit:hover { background: var(--sage-pale); color: var(--navy); }

/* ── FOOTER ── */
.fe-footer {
  background: var(--navy-deep);
  padding: 40px 6vw;
  border-top: 0.5px solid var(--border-sage);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.footer-logo img { height: 28px; width: auto; object-fit: contain; }
.footer-logo span { color: var(--sage-light); }
.footer-tagline { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--text-dim); letter-spacing: 0.1em; }

/* ── ALERTS / MESSAGES ── */
.alert-success {
  background: rgba(122,174,142,0.15);
  border: 0.5px solid var(--sage);
  border-radius: 4px;
  padding: 14px 20px;
  color: var(--sage-light);
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-error {
  background: rgba(200,80,80,0.1);
  border: 0.5px solid rgba(200,80,80,0.4);
  border-radius: 4px;
  padding: 14px 20px;
  color: #f4a0a0;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .fe-nav-links { display: none; }
  .fe-mobile-btn { display: flex; }
}

@media (max-width: 768px) {
  .training-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .mission-strip { flex-direction: column; gap: 20px; }
  .mission-seven { font-size: 72px; }
  .hero-stats { gap: 28px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip { flex-direction: column; }
  .fe-footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .fe-nav { padding: 0 5vw; }
  .hero { padding: 100px 5vw 60px; }
  .page-hero { padding: 100px 5vw 60px; }
  .fe-section { padding: 64px 5vw; }
  .contact-section { padding: 64px 5vw; }
  .mission-strip { padding: 60px 5vw; }
  .cta-strip { padding: 60px 5vw; }
  .also-section { padding: 60px 5vw; }
}

/* ── CMS PAGE ── */
.cms-content { line-height: 1.8; color: var(--text-muted); font-size: 15px; font-weight: 300; }
.cms-content h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); margin: 32px 0 14px; }
.cms-content h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin: 24px 0 10px; }
.cms-content p { margin-bottom: 18px; }
.cms-content ul, .cms-content ol { margin: 0 0 18px 22px; }
.cms-content li { margin-bottom: 8px; }
.cms-content strong { color: var(--white); font-weight: 500; }
.cms-content a { color: var(--sage-light); text-decoration: underline; }
.cms-content a:hover { color: var(--sage-pale); }
.cms-content blockquote { border-left: 2px solid var(--sage); padding: 14px 20px; background: rgba(122,174,142,0.06); margin: 20px 0; font-style: italic; }

@media (max-width: 900px) {
  .cms-page-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .cms-page-grid > div:last-child { position: static !important; }
}
