:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #1a1916;
  --text-muted: #6b6760;
  --accent: #1565c0;
  --accent-light: #e8f1fb;
  --border: #e0ddd8;
  --font-head: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* threat display */
.threat-display {
  background: #1a1916;
  border-radius: 10px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  color: #a8a99f;
  font-size: 12px;
}
.threat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a5a52;
  margin-bottom: 16px;
  border-bottom: 1px solid #2a2a26;
  padding-bottom: 12px;
}
.threat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}
.threat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #222220;
}
.threat-type {
  color: #c8c7bf;
  letter-spacing: 0.05em;
}
.threat-status { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }
.threat-status.blocked { background: #052e16; color: #22c55e; }
.threat-status.mitigated { background: #172554; color: #60a5fa; }
.threat-status.trained { background: #1a1a2e; color: #a78bfa; }
.threat-status.prevented { background: #3b1a0a; color: #fb923c; }
.threat-footer {
  margin-top: 12px;
  font-size: 11px;
  color: #5a5a52;
  font-family: var(--font-head);
}

/* STATS */
.stats {
  padding: 48px 32px;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* APPROACH */
.approach {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}
.approach-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}
.approach-headline-row {
  max-width: 700px;
  margin-bottom: 32px;
}
.approach-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.approach-body {
  max-width: 700px;
  margin-bottom: 56px;
}
.approach-body p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 20px;
}
.approach-body p:last-child { margin-bottom: 0; }

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SERVICES / PRICING */
.services {
  padding: 96px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--accent-light);
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-tier { color: var(--accent); }
.pricing-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-tagline {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.4;
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-card.featured .pricing-features li::before { background: var(--accent); }
.pricing-note {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.pricing-cta:hover { background: var(--accent); color: #fff; }
.pricing-card.featured .pricing-cta { background: var(--accent); }
.pricing-card.featured .pricing-cta:hover { background: var(--navy); }

.emergency-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fef9ec;
  border: 1px solid #f0e0b0;
  border-radius: 8px;
  padding: 20px 24px;
}
.emergency-icon { color: #b45309; flex-shrink: 0; }
.emergency-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #92400e;
}

/* BLOG TEASER */
.blog-teaser {
  padding: 72px 32px;
  border-bottom: 1px solid var(--border);
}
.blog-teaser-inner { max-width: 1100px; margin: 0 auto; }
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.blog-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-teaser-card:hover {
  box-shadow: 0 6px 24px rgba(13,27,62,0.1);
  transform: translateY(-2px);
}
.blog-teaser-card-inner { padding: 28px; }
.blog-teaser-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-family: var(--font-head);
  margin-bottom: 10px;
}
.blog-teaser-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-teaser-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-teaser-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-head);
}
.blog-teaser-more { text-align: center; }
.blog-teaser-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-head);
  text-decoration: none;
}
.blog-teaser-all-link:hover { text-decoration: underline; }

/* TESTIMONIALS */
.testimonials {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.testimonial-quote-mark {
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  font-weight: 700;
}
.testimonial-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-attribution strong {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-attribution span {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-muted);
}

/* CLOSING */
.closing {
  padding: 96px 32px;
  background: var(--text);
  color: var(--bg);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f8f7f4;
  margin-bottom: 24px;
  max-width: 800px;
}
.closing-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: #9b9990;
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-meta {
  font-family: var(--font-head);
  font-size: 13px;
  color: #5a5a52;
  display: flex;
  gap: 8px;
  align-items: center;
}
.meta-sep { color: #3a3a36; }

/* FOOTER */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-logo-link {
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text); }
.footer-links-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.footer-note {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-quiz-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .15s;
}
.hero-quiz-cta:hover { opacity: .88; }
.hero-book-cta {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.hero-book-cta:hover { color: var(--text); }

/* NAV quiz link */
.nav-quiz-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent) !important;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  padding: 5px 12px;
  border-radius: 5px;
  transition: background .15s;
  flex-shrink: 0;
}
.nav-quiz-link:hover { background: var(--accent-light); }

/* ─── NAV BOOK BUTTON (prominent gold) ───────────────────────────────────────── */
.nav-book-btn {
  font-family: var(--font-head) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: #c9a84c !important;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 18px !important;
  border-radius: 5px;
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
  transition: background .15s, box-shadow .2s;
  flex-shrink: 0;
}
.nav-book-btn:hover {
  background: #b8973d !important;
  color: #fff !important;
  box-shadow: 0 0 12px 2px rgba(201,168,76,0.35);
}

/* ─── STICKY FLOATING BOOK BUTTON ───────────────────────────────────────────── */
.sticky-book-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #c9a84c;
  color: #0d1b3e;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(13,27,62,0.3), 0 0 0 0 rgba(201,168,76,0);
  transition: box-shadow .2s, transform .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-book-btn:hover {
  box-shadow: 0 6px 28px rgba(13,27,62,0.4), 0 0 16px 4px rgba(201,168,76,0.25);
  transform: translateY(-2px);
}
.sticky-book-btn svg { flex-shrink: 0; }

/* ─── BOOKING CTA STRIP (below hero) ───────────────────────────────────────── */
.hero-book-strip {
  background: #0d1b3e;
  padding: 20px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-book-strip-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-book-strip-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.hero-book-strip-text strong {
  color: #f8f7f4;
  font-weight: 700;
}
.hero-book-strip-btn {
  display: inline-block;
  background: #c9a84c;
  color: #0d1b3e;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
  white-space: nowrap;
}
.hero-book-strip-btn:hover {
  background: #b8973d;
  box-shadow: 0 0 12px rgba(201,168,76,0.35);
  color: #0d1b3e;
}

/* ─── CLOSING BOOKING STRIP (before footer) ───────────────────────────────── */
.closing-book-strip {
  background: #1a2d5a;
  padding: 40px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.closing-book-strip-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-book-strip-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8f7f4;
  margin-bottom: 10px;
  line-height: 1.2;
}
.closing-book-strip-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}
.closing-book-strip-cta {
  display: inline-block;
  background: #c9a84c;
  color: #0d1b3e;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
}
.closing-book-strip-cta:hover {
  background: #b8973d;
  box-shadow: 0 0 16px rgba(201,168,76,0.35);
  color: #0d1b3e;
}
.closing-book-strip-note {
  font-family: var(--font-head);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

@media (max-width: 767px) {
  .sticky-book-btn { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 14px; }
  .hero-book-strip { padding: 16px 20px; }
  .closing-book-strip { padding: 32px 20px; }
}

/* ─── HAMBURGER NAV (mobile) ─────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.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); }

/* Mobile nav links overlay */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-book-btn {
  font-family: var(--font-head) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  text-decoration: none;
  white-space: nowrap;
}
.nav-book-btn:hover { color: var(--text) !important; }

/* iOS zoom prevention: font-size ≥ 16px on inputs */
input, select, textarea { font-size: 16px !important; }

/* ─── TRAINING PAGE ─────────────────────────────────────────────────────────── */
.training-hero {
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.training-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.training-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 12px;
}
.training-hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 32px;
}
.training-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.training-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  min-height: 44px;
  transition: opacity .15s;
}
.training-cta-primary:hover { opacity: .88; }
.training-cta-secondary {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
  padding-bottom: 1px;
}
.training-cta-secondary:hover { color: var(--text); }

/* Course grid */
.training-courses {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.training-courses-inner { max-width: 1100px; margin: 0 auto; }
.training-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, border-color .15s;
}
.course-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: var(--accent);
}
.course-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.course-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.course-meta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.course-duration,
.course-audience {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.course-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.course-description {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}
.course-cta {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  line-height: 22px;
  transition: background .15s;
  align-self: flex-start;
  width: 100%;
}
.course-cta:hover { background: #d4e8fa; }

/* Trust bar */
.training-trust {
  padding: 48px 32px;
  border-bottom: 1px solid var(--border);
}
.training-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.trust-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.trust-label {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Training closing CTA */
.training-closing {
  padding: 80px 32px;
  background: var(--text);
}
.training-closing-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.training-closing-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8f7f4;
  margin-bottom: 16px;
}
.training-closing-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: #9b9990;
  line-height: 1.65;
  margin-bottom: 32px;
}
.training-closing .training-cta-primary {
  font-size: 16px;
  padding: 16px 32px;
}

/* ─── RESPONSIVE: MOBILE FIRST (375px) ──────────────────────────────────────── */
@media (max-width: 767px) {
  .nav-inner { padding: 0 16px !important; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 32px; max-width: 180px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(248,247,244,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links .nav-book-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 16px !important;
    border-bottom: 1px solid var(--border);
  }
  .nav-links .nav-quiz-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 16px !important;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }
  .nav-links a:last-child, .nav-links .nav-quiz-link:last-child { border-bottom: none; }

  .hero { padding: 56px 20px 48px; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 36px !important; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .threat-display { display: none; }

  .stats { padding: 28px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 4px; }
  .stat-item { padding: 10px; }
  .stat-number { font-size: 24px; }
  .stat-divider { display: none; }

  .approach { padding: 56px 20px; }
  .approach-pillars { grid-template-columns: 1fr !important; gap: 28px; }
  .approach-headline { font-size: 26px; }

  .services { padding: 56px 20px; }
  .pricing-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .services-headline { font-size: 24px; }
  .emergency-callout { flex-direction: column; gap: 12px; }

  .testimonials { padding: 56px 20px; }
  .testimonial-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .testimonials-headline { font-size: 24px; }

  .closing { padding: 56px 20px; }
  .closing-headline { font-size: 26px; }
  .closing-sub { font-size: 15px; }

  .footer { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 20px; }
  .footer-note { text-align: left !important; }

  /* Training page mobile */
  .training-hero { padding: 56px 20px 48px; }
  .training-hero-headline { font-size: 30px; }
  .training-hero-sub { font-size: 16px; }
  .training-courses { padding: 48px 20px; }
  .training-courses-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .training-trust { padding: 32px 20px; }
  .training-trust-inner { flex-direction: column; gap: 20px; }
  .trust-divider { width: 80px; height: 1px; }
  .trust-item { padding: 0; }
  .trust-num { font-size: 28px; }
  .training-closing { padding: 56px 20px; }
  .training-closing-headline { font-size: 24px; }
  .course-meta-row { align-items: flex-start; }
}

/* ─── RESPONSIVE: TABLET (768px+) ──────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav-inner { padding: 0 32px; }

  .hero { padding: 72px 32px 64px; }
  .hero-inner { grid-template-columns: 1fr 340px; gap: 56px; }
  .hero-headline { font-size: 42px; }
  .threat-display { display: block; }

  .stats { padding: 36px 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .stat-divider { display: block; }
  .stat-item { padding: 12px 20px; }
  .stat-number { font-size: 34px; }

  .approach { padding: 72px 32px; }
  .approach-pillars { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .approach-headline { font-size: 34px; }

  .services { padding: 72px 32px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .services-headline { font-size: 30px; }

  .testimonials { padding: 72px 32px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-headline { font-size: 30px; }

  .closing { padding: 72px 32px; }
  .closing-headline { font-size: 42px; }

  .footer { padding: 40px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-note { text-align: left; }

  /* Training page tablet */
  .training-courses-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-item { padding: 0 24px; }
  .trust-num { font-size: 30px; }
}

/* ─── RESPONSIVE: DESKTOP (1024px+) ─────────────────────────────────────────── */
@media (min-width: 1024px) {
  .nav-inner { padding: 0 32px; max-width: 1100px; margin: 0 auto; }

  .hero { padding: 96px 32px 80px; }
  .hero-inner { grid-template-columns: 1fr 380px; gap: 80px; max-width: 1100px; margin: 0 auto; }
  .hero-headline { font-size: 52px; }

  .stats { padding: 48px 32px; }
  .stats-grid { max-width: 1100px; margin: 0 auto; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
  .stat-item { padding: 0 32px; }
  .stat-number { font-size: 40px; }

  .approach { padding: 96px 32px; }
  .approach-inner { max-width: 1100px; margin: 0 auto; }
  .approach-pillars { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .approach-headline { font-size: 40px; }

  .services { padding: 96px 32px; }
  .services-inner { max-width: 1100px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .services-headline { font-size: 36px; }

  .testimonials { padding: 96px 32px; }
  .testimonials-inner { max-width: 1100px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .testimonials-headline { font-size: 36px; }

  .closing { padding: 96px 32px; }
  .closing-inner { max-width: 1100px; margin: 0 auto; }
  .closing-headline { font-size: 50px; }

  .footer { padding: 48px 32px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
  .footer-note { text-align: right; }

  /* Training page desktop */
  .training-hero { padding: 96px 32px 80px; }
  .training-courses-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item { padding: 0 40px; }
  .trust-num { font-size: 36px; }
}

/* ─── VERTICAL LANDING PAGES ────────────────────────────────────────────────── */

/* Hero */
.vl-hero {
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.vl-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.vl-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 12px;
}
.vl-hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 32px;
}
.vl-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Shared section headline */
.vl-section-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-top: 10px;
  margin-bottom: 36px;
}

/* Threats section */
.vl-threats {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.vl-threats-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.vl-threats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vl-threat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow .15s, border-color .15s;
}
.vl-threat-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: var(--accent);
}
.vl-threat-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 16px;
}
.vl-threat-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.vl-threat-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Compliance callout */
.vl-compliance {
  padding: 48px 32px;
  background: var(--accent-light);
  border-bottom: 1px solid var(--border);
}
.vl-compliance-inner {
  max-width: 760px;
  margin: 0 auto;
}
.vl-compliance-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(21,101,192,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.vl-compliance-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* Pricing section */
.vl-pricing {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.vl-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Closing CTA */
.vl-closing {
  padding: 80px 32px;
  background: var(--text);
}
.vl-closing-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.vl-closing-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8f7f4;
  margin-bottom: 16px;
}
.vl-closing-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: #9b9990;
  line-height: 1.65;
  margin-bottom: 32px;
}
.vl-closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vl-cta-light {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  min-height: 44px;
  transition: opacity .15s;
}
.vl-cta-light:hover { opacity: .88; }
.vl-cta-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.25);
  text-decoration: none;
  min-height: 44px;
  transition: border-color .15s, color .15s;
}
.vl-cta-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.vl-cta-outline {
  display: inline-block;
  background: transparent;
  color: #f8f7f4;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1.5px solid rgba(248,247,244,0.3);
  text-decoration: none;
  min-height: 44px;
  transition: border-color .15s, color .15s;
}
.vl-cta-outline:hover {
  border-color: rgba(248,247,244,0.7);
  color: #fff;
}

/* ─── VERTICAL PAGES: TESTIMONIAL ──────────────────────────────────────────── */
.vl-testimonial {
  background: #f0f4f8;
  padding: 56px 24px;
}
.vl-testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.vl-testimonial-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #0d1b3e;
  line-height: 1.6;
  margin: 0 0 20px;
  quotes: none;
}
.vl-testimonial-attr {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── VERTICAL PAGES: MULTI-TESTIMONIAL GRID ───────────────────────────────── */
.vl-testimonials-multi {
  background: #f0f4f8;
  padding: 64px 24px;
}
.vl-testimonials-multi-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.vl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.vl-testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vl-testimonial-card-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: #0d1b3e;
  line-height: 1.65;
  margin: 0;
  quotes: none;
  flex: 1;
}
.vl-testimonial-card-attr {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ─── VERTICAL PAGES: FAQ ACCORDION ────────────────────────────────────────── */
.vl-faq {
  padding: 64px 24px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.vl-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.vl-faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vl-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.vl-faq-item + .vl-faq-item {
  margin-top: 8px;
}
.vl-faq-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0d1b3e;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  transition: background .15s;
}
.vl-faq-question::-webkit-details-marker { display: none; }
.vl-faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: #c9a84c;
  flex-shrink: 0;
}
details[open] .vl-faq-question {
  background: #fff;
}
details[open] .vl-faq-question::after {
  content: '−';
}
.vl-faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  padding: 0 20px 18px;
  margin: 0;
  background: #fff;
}

/* ─── VERTICAL PAGES: CROSS-LINKS ──────────────────────────────────────────── */
.vl-cross-links {
  padding: 64px 24px;
  background: #0d1b3e;
}
.vl-cross-links-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.vl-cross-links-inner .section-tag {
  color: #c9a84c;
  opacity: 1;
}
.vl-cross-links-inner .vl-section-headline {
  color: #f8f7f4;
}
.vl-cross-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.vl-cross-link-card {
  display: block;
  padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  color: #c9a84c;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.vl-cross-link-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: #c9a84c;
  color: #e5c76b;
}

/* ─── CASE STUDIES PAGE ─────────────────────────────────────────────────────── */

.cs-hero {
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.cs-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.cs-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 12px;
}
.cs-hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}

.cs-cards {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.cs-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-card-header {
  margin-bottom: 20px;
}
.cs-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
}

.cs-headline-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cs-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cs-industry-badge {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.cs-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cs-section:first-child { border-top: 1px solid var(--border); }
.cs-section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.cs-section-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.cs-quote-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.cs-quote-mark {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: 16px;
}
.cs-quote-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 14px;
  quotes: none;
}
.cs-quote-attr {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.cs-card-cta {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  min-height: 44px;
  line-height: 22px;
  transition: opacity .15s;
}
.cs-card-cta:hover { opacity: .88; }

.cs-footer-cta {
  padding: 80px 32px;
  background: var(--text);
}
.cs-footer-cta-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.cs-footer-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8f7f4;
  margin-bottom: 14px;
}
.cs-footer-cta-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: #9b9990;
  line-height: 1.6;
  margin-bottom: 32px;
}
.cs-footer-cta .training-cta-primary { font-size: 16px; padding: 16px 32px; }

.cs-disclosure {
  padding: 20px 32px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
}

/* Cross-link section (used on vertical pages) */
.cs-cross-link-section {
  padding: 32px 32px;
  border-bottom: 1px solid var(--border);
}
.cs-cross-link-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cs-cross-link-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(21,101,192,0.3);
  transition: border-color .15s;
}
.cs-cross-link-text:hover { border-color: var(--accent); }

/* Case Studies Responsive */
@media (max-width: 767px) {
  .cs-hero { padding: 56px 20px 48px; }
  .cs-hero-headline { font-size: 30px; }
  .cs-hero-sub { font-size: 16px; }
  .cs-cards { padding: 48px 20px; }
  .cs-cards-inner { gap: 32px; }
  .cs-card { padding: 28px 24px 24px; border-radius: 10px; }
  .cs-headline-outcome { font-size: 18px; }
  .cs-footer-cta { padding: 56px 20px; }
  .cs-footer-cta-headline { font-size: 24px; }
  .cs-card-cta { width: 100%; text-align: center; }
}

@media (min-width: 768px) {
  .cs-card { padding: 36px 36px 32px; }
}

@media (min-width: 1024px) {
  .cs-card { padding: 40px 40px 36px; }
}

/* ─── VERTICAL PAGES: RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .vl-hero { padding: 56px 20px 48px; }
  .vl-hero-headline { font-size: 30px; }
  .vl-hero-sub { font-size: 16px; }
  .vl-threats { padding: 48px 20px; }
  .vl-threats-grid { grid-template-columns: 1fr; gap: 16px; }
  .vl-compliance { padding: 36px 20px; }
  .vl-pricing { padding: 48px 20px; }
  .vl-closing { padding: 56px 20px; }
  .vl-closing-headline { font-size: 24px; }
  .vl-closing-ctas { flex-direction: column; align-items: stretch; }
  .vl-cta-light, .vl-cta-outline { text-align: center; }
  .vl-section-headline { font-size: 24px; margin-bottom: 24px; }
}

@media (min-width: 768px) {
  .vl-threats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (min-width: 1024px) {
  .vl-threats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ─── INDUSTRIES WE SERVE ───────────────────────────────────────────────────── */
.industries {
  padding: 72px 32px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industries-headline {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 12px 0 40px;
  letter-spacing: -0.5px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(21,101,192,0.10);
  transform: translateY(-2px);
}
.industry-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.industry-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.industry-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 3px;
  padding: 3px 8px;
  letter-spacing: 0.3px;
}

@media (max-width: 767px) {
  .industries { padding: 48px 20px 56px; }
  .industries-headline { font-size: 24px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { padding: 20px 12px 18px; }
  .industry-icon { font-size: 28px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* ─── ALTERNATIVES PAGE ──────────────────────────────────────────────────────── */

/* Hero */
.alt-hero {
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--border);
}
.alt-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.alt-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 12px;
}
.alt-hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 32px;
}
.alt-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.alt-hero-compare-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.alt-hero-compare-link:hover { color: var(--text); }

.quick-verdict-box {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-primary);
  max-width: 640px;
  line-height: 1.6;
}
.quick-verdict-box strong {
  color: var(--accent);
}

/* Honest positioning */
.alt-honest {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.alt-honest-inner {
  max-width: 760px;
  margin: 0 auto;
}
.alt-honest-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.alt-honest-body:last-of-type { margin-bottom: 40px; }
.alt-honest-gaps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.alt-gap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}
.alt-gap-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.alt-gap-item strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.alt-gap-item p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Comparison table */
.alt-comparison {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.alt-comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comp-table thead tr {
  background: #0d1b3e;
}
.comp-table th {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.comp-header-feature { width: 28%; }
.comp-header-us { width: 36%; }
.comp-header-them { width: 36%; }
.comp-provider-label {
  color: #f8f7f4;
}
.comp-table tbody tr {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background .1s;
}
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--bg); }
.comp-table td {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  vertical-align: middle;
}
.comp-feature {
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comp-us, .comp-them {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.comp-check {
  font-size: 16px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.comp-text {
  line-height: 1.5;
}
.comp-disclosure {
  font-family: var(--font-head);
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 14px;
  line-height: 1.5;
}

/* When KnowBe4 is right */
.alt-when-right {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.alt-when-right-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.alt-when-intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
}

/* When SecureEveryone wins */
.alt-when-us {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.alt-when-us-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Shared when-card grid */
.alt-when-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.alt-when-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alt-when-card--us {
  background: var(--accent-light);
  border-color: rgba(21,101,192,0.2);
}
.alt-when-icon {
  font-size: 24px;
  line-height: 1;
}
.alt-when-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.alt-when-card-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Resources section */
.alt-resources {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.alt-resources-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.alt-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.alt-resource-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.alt-resource-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(21,101,192,0.08);
}
.alt-resource-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.alt-resource-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.alt-resource-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.alt-resource-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Strong CTA strip */
.alt-cta-strip {
  padding: 80px 32px;
  background: var(--text);
}
.alt-cta-strip-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.alt-cta-strip-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #f8f7f4;
  margin-bottom: 16px;
}
.alt-cta-strip-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: #9b9990;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Responsive: alternatives */
@media (max-width: 767px) {
  .alt-hero { padding: 56px 20px 48px; }
  .alt-hero-h1 { font-size: 28px; }
  .alt-hero-sub { font-size: 16px; }
  .alt-honest { padding: 48px 20px; }
  .alt-honest-body { font-size: 16px; }
  .alt-gap-item { padding: 16px 18px; }
  .alt-gap-item strong { font-size: 14px; }
  .alt-gap-item p { font-size: 14px; }
  .alt-comparison { padding: 48px 20px; }
  .alt-comparison .vl-section-headline { font-size: 24px; }
  .comp-table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
  .alt-when-right { padding: 48px 20px; }
  .alt-when-right .vl-section-headline { font-size: 24px; }
  .alt-when-us { padding: 48px 20px; }
  .alt-when-us .vl-section-headline { font-size: 24px; }
  .alt-resources { padding: 48px 20px; }
  .alt-resources-grid { grid-template-columns: 1fr; }
  .alt-cta-strip { padding: 56px 20px; }
  .alt-cta-strip-headline { font-size: 26px; }
  .alt-cta-strip-sub { font-size: 15px; }
  .vl-pricing { padding: 48px 20px; }
  .vl-faq { padding: 48px 20px; }
  .vl-testimonials-multi { padding: 48px 20px; }
}
}

/* ─── INDUSTRIES HUB PAGE ─────────────────────────────────────────────────── */

.industries-hub {
  padding: 80px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-hub-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industries-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.ind-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.ind-hub-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.ind-hub-icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}
.ind-hub-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.ind-hub-threat {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 12px;
}
.ind-hub-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.ind-hub-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.ind-hub-card:hover .ind-hub-link {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .industries-hub { padding: 56px 20px; }
  .industries-hub-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ind-hub-card { padding: 18px; }
  .ind-hub-threat { display: none; }
}
@media (max-width: 480px) {
  .industries-hub-grid { grid-template-columns: 1fr; }
}