/* AI in HSE, site stylesheet
   Brand: Primary Blue #04A2E0, Teal #04BFCD, Dark Navy #014F70,
   Near-Black Navy #002A3E, Light Blue Tint #D8EDFA, Near-White Blue #F6FBFF,
   Dark Neutral #1A211E (footer only). Fonts: Inter + Helvetica fallback. */

:root {
  --primary: #04A2E0;
  --teal: #04BFCD;
  --navy: #014F70;
  --near-black-navy: #002A3E;
  --tint: #D8EDFA;
  --bg: #F6FBFF;
  --white: #FFFFFF;
  --footer-bg: #1A211E;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(1, 79, 112, 0.08);
  --shadow-md: 0 16px 40px rgba(1, 79, 112, 0.12);
  --shadow-lg: 0 30px 70px rgba(0, 42, 62, 0.16);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { color: var(--near-black-navy); font-size: clamp(2.1rem, 4.2vw, 3.25rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* Scroll-reveal: JS adds .in-view when the element enters the viewport */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

p { margin: 0 0 1em; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75em;
}

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--white); }

.center { text-align: center; }
.muted { color: var(--navy); opacity: 0.75; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(4, 162, 224, 0.3);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(4, 162, 224, 0.4); }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--tint);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-block { width: 100%; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 251, 255, 0.85);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(246, 251, 255, 0.96);
  border-bottom-color: var(--tint);
  box-shadow: 0 8px 24px rgba(1, 79, 112, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; background: var(--tint); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--tint);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  .nav-links.open { display: flex; max-height: 400px; opacity: 1; }
  .nav-links a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .nav-cta .btn-secondary { display: none; }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}
.hero::before {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -180px;
  right: -120px;
}
.hero::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  top: 120px;
  left: -160px;
  opacity: 0.25;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(155deg, var(--tint) 0%, #eaf6fc 60%, var(--white) 100%);
  border: 1px solid rgba(255,255,255,0.6);
}

/* Stats bar */
.stats-bar {
  position: relative;
  background: linear-gradient(160deg, var(--near-black-navy), #013a54);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  color: var(--white);
  margin: 28px 0 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stats-bar .stat {
  text-align: center;
  position: relative;
}
.stats-bar .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.14);
}
@media (max-width: 640px) {
  .stats-bar .stat:not(:last-child)::after { display: none; }
}
.stats-bar .stat-number {
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #4fd2ff, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stats-bar .stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; }
@media (max-width: 640px) {
  .stats-bar { grid-template-columns: 1fr; }
}

/* Card grid */
.grid {
  display: grid;
  gap: 24px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4, 162, 224, 0.35);
}
.card h3 { margin-bottom: 0.5em; }
.card p { margin-bottom: 0; color: var(--navy); opacity: 0.85; font-size: 0.95rem; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--tint), #ffffff);
  color: var(--primary);
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }

/* Program format bars */
.stat-bars { display: grid; gap: 20px; margin-top: 24px; }
.stat-bar-row { display: grid; grid-template-columns: 220px 1fr 50px; align-items: center; gap: 16px; }
.stat-bar-track {
  height: 12px;
  border-radius: 999px;
  background: var(--tint);
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}
@media (max-width: 640px) {
  .stat-bar-row { grid-template-columns: 1fr; gap: 6px; }
}

/* Instructor */
.instructor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .instructor-grid { grid-template-columns: 1fr; }
}
.instructor-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background: var(--tint);
}
.highlight-badges { display: grid; gap: 14px; margin-top: 20px; }
.highlight-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--tint);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.92rem;
}
.highlight-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); margin-top: 7px; flex-shrink: 0;
}

/* CTA banner */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -160px;
  right: -80px;
}
.cta-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  bottom: -120px;
  left: -60px;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}
.cta-banner .btn-primary:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.15); }

/* Table */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid var(--tint);
  font-size: 0.95rem;
}
th { background: var(--tint); color: var(--near-black-navy); font-weight: 700; }
tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.15s ease; }
tbody tr:hover { background: var(--bg); }
tbody tr:nth-child(even) { background: rgba(216, 237, 250, 0.25); }
tbody tr:nth-child(even):hover { background: var(--bg); }

/* Module blocks */
.module {
  position: relative;
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius);
  padding: 28px 28px 28px 88px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.module:hover { box-shadow: var(--shadow-md); border-color: rgba(4, 162, 224, 0.3); }
.module-number {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(4, 162, 224, 0.3);
}
.module-meta {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.module ul { margin: 0; padding-left: 20px; }
.module li { margin-bottom: 6px; }
@media (max-width: 640px) {
  .module { padding: 24px 20px 24px 20px; }
  .module-number { position: static; margin-bottom: 12px; }
}

/* Pills */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--tint);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Pricing */
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}
.price-amount { font-size: 3rem; font-weight: 700; color: var(--near-black-navy); }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--navy); opacity: 0.7; }
.price-features { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.price-features li { padding: 8px 0; border-bottom: 1px solid var(--tint); }
.price-fineprint { font-size: 0.85rem; opacity: 0.75; margin-top: 20px; }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--tint);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--navy);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--tint);
}
.form-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 14px;
}
.form-success {
  display: none;
  background: var(--tint);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #FDEBEB;
  color: #B23A3A;
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-error.show { display: block; }

/* Resource cards + gate */
.resource-card {
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-card .btn { align-self: flex-start; }

.gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 79, 112, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.gate-overlay.open { display: flex; }
.gate-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}
.gate-modal .close-gate {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
}

/* Community / proof */
.community-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.community-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--tint);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
}
.community-links a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-detail .icon-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); margin-top: 8px; flex-shrink: 0;
}
.calendly-slot {
  border: 2px dashed var(--tint);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: var(--navy);
  opacity: 0.8;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
  margin-top: 40px;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  transform: translateY(-2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.site-footer p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Page header (non-home pages) */
.page-header {
  padding: 56px 0 32px;
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 0.5em; }
.page-header p { max-width: 640px; margin: 0 auto; }

/* Requirement lists (who this is for) */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--tint);
}
.check-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary);
  font-weight: 700;
}

.coupon-note {
  background: var(--tint);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* Trust badge strip (real credentials, shown under the hero) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 24px;
}
.trust-strip .trust-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.55;
  margin-right: 4px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--tint);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--tint);
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-card p.testimonial-text {
  font-style: italic;
  color: var(--navy);
  opacity: 0.9;
  margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--near-black-navy); }
.testimonial-role { font-size: 0.82rem; opacity: 0.7; }
.testimonial-placeholder-flag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  background: var(--tint);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Urgency banner */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(4,162,224,0.1), rgba(4,191,205,0.1));
  border: 1px solid var(--tint);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  max-width: 620px;
  margin: 0 auto 32px;
  text-align: center;
}
.urgency-banner .dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1fb35a;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(31, 179, 90, 0.18);
}
.urgency-banner .edit-flag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  font-weight: 700;
}

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--near-black-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: var(--navy);
  opacity: 0.85;
  font-size: 0.95rem;
}
