:root {
  --navy-950: #07111f;
  --navy-900: #0b1727;
  --navy-800: #10243c;
  --navy-700: #173451;
  --gold-500: #cda85d;
  --gold-400: #dcc182;
  --cream-100: #f8f5ee;
  --cream-50: #fcfaf6;
  --white: #ffffff;
  --slate-900: #17202b;
  --slate-700: #4f5d6b;
  --slate-500: #758291;
  --line: #dfe4e8;
  --success: #215d4a;
  --shadow-sm: 0 10px 30px rgba(7, 17, 31, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 17, 31, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 840px; text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(220,193,130,0.75);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 0.98rem; letter-spacing: 0.01em; }
.brand-copy small { color: rgba(255,255,255,0.64); margin-top: 4px; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
}
.primary-nav a:hover { color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(205,168,93,0.14), transparent 35%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 104px 0 92px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,193,130,0.8), transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.32;
  pointer-events: none;
}
.hero-glow-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(205,168,93,0.25), transparent 65%);
  top: -200px;
  right: 8%;
}
.hero-glow-two {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.09);
  bottom: -230px;
  left: 35%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-500);
}
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  max-width: 850px;
}
h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}
h3 { font-size: 1.22rem; margin-bottom: 10px; }
.hero-lead {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.76);
  font-size: 1.17rem;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950) !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(205,168,93,0.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-400); border-color: var(--gold-400); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: 0.88rem; }
.button-full { width: 100%; }
.button-secondary {
  background: transparent;
  color: var(--navy-900) !important;
  border-color: rgba(11,23,39,0.22);
  box-shadow: none;
}
.button-secondary:hover { background: var(--cream-100); border-color: var(--navy-900); }
.button-light { background: var(--white); border-color: var(--white); color: var(--navy-900) !important; }
.button-outline-light { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white) !important; box-shadow: none; }
.button-outline-light:hover { background: rgba(255,255,255,0.08); }
.text-link { color: var(--white); font-weight: 750; text-decoration: none; }
.text-link span { color: var(--gold-400); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; }
.trust-row span { position: relative; color: rgba(255,255,255,0.66); font-size: 0.9rem; }
.trust-row span::before { content: "✓"; color: var(--gold-400); margin-right: 7px; }

.hero-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.hero-card-topline {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(220,193,130,0.42);
  border-radius: 999px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 850;
  margin-bottom: 20px;
}
.hero-card h2 { font-family: inherit; font-size: 1.6rem; font-weight: 750; letter-spacing: -0.02em; }
.check-list { list-style: none; padding: 0; margin: 22px 0; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.74);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-400);
  font-weight: 900;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 22px;
}
.price-line span { color: rgba(255,255,255,0.66); }
.price-line strong { font-size: 1.9rem; }
.microcopy { margin: 14px 0 0; font-size: 0.82rem; color: rgba(255,255,255,0.55); text-align: center; }

.section { padding: 94px 0; }
.problem-section { background: var(--cream-50); }
.problem-section h2 { max-width: 820px; margin-left: auto; margin-right: auto; }
.section-lead { color: var(--slate-700); font-size: 1.12rem; margin: 0; }
.section-lead.compact { max-width: 520px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}
.section-heading > p { max-width: 480px; margin: 0 0 6px; color: var(--slate-700); }
.section-heading h2 { margin-bottom: 0; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered > p { margin: 10px auto 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 900;
  font-size: 0.82rem;
}
.step-card p { margin: 0; color: var(--slate-700); }

.muted-section { background: #f1f4f5; }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.topic-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(11,23,39,0.08);
  border-radius: var(--radius-md);
}
.topic-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--cream-100);
  color: var(--navy-900);
  font-weight: 900;
  margin-bottom: 22px;
}
.topic-card p { margin: 0; color: var(--slate-700); }

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.audience-list { border-top: 1px solid var(--line); }
.audience-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.audience-list strong { color: var(--navy-900); }
.audience-list span { color: var(--slate-700); }

.pricing-section { background: var(--cream-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  transform: translateY(-10px);
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-lg);
}
.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-label {
  margin: 0 0 12px;
  color: var(--slate-700);
  font-weight: 800;
}
.featured .plan-label, .featured .plan-description { color: rgba(255,255,255,0.68); }
.plan-price {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.plan-price span { font-size: 1.4rem; vertical-align: top; position: relative; top: 10px; margin-right: 4px; }
.plan-price-text { font-size: 2.65rem; padding-top: 10px; }
.plan-description { min-height: 76px; margin: 0; color: var(--slate-700); }
.compact-list { margin: 24px 0 28px; }
.compact-list li { color: var(--slate-700); }
.featured .compact-list li { color: rgba(255,255,255,0.78); }

.about-section { background: var(--navy-900); color: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: center;
}
.about-badge {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(220,193,130,0.45);
  background: radial-gradient(circle at 30% 20%, rgba(205,168,93,0.18), transparent 65%), var(--navy-800);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.025);
}
.about-badge span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  color: var(--gold-400);
}
.about-section p { color: rgba(255,255,255,0.72); }
.about-title { color: var(--gold-400) !important; font-weight: 800; }

.booking-section { padding: 80px 0; background: var(--cream-100); }
.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.booking-card h2 { max-width: 750px; }
.booking-card p { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.booking-actions { display: grid; gap: 12px; min-width: 230px; }
.legal-section { padding: 26px 0; background: #eef1f2; }
.legal-copy p { margin: 0; font-size: 0.8rem; color: var(--slate-700); }

.site-footer { padding: 48px 0; background: var(--navy-950); color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  align-items: start;
}
.footer-brand { margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,0.56); margin: 6px 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.72); }
.footer-links a:hover { color: var(--white); }
.footer-meta { text-align: right; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--navy-900);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 10px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 800px; }
  .hero-card { max-width: 620px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 46px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .about-grid { grid-template-columns: 220px 1fr; gap: 46px; }
  .booking-card { align-items: stretch; flex-direction: column; }
  .booking-actions { min-width: 0; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding: 76px 0 66px; }
  h1 { font-size: clamp(2.5rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 14px; }
  .steps-grid, .topic-grid { grid-template-columns: 1fr; }
  .audience-list div { grid-template-columns: 1fr; gap: 4px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { width: 180px; }
  .booking-card { padding: 34px 24px; }
  .booking-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Compliance-focused additions */
.credential-line {
  max-width: 760px;
  margin: -18px 0 30px;
  color: var(--gold-400);
  font-size: 0.92rem;
  font-weight: 750;
}
.boundaries-section { background: var(--white); }
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.boundary-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.boundary-card-yes { background: #f2f7f4; border-color: rgba(33,93,74,0.22); }
.boundary-card-no { background: #fbf3f1; border-color: rgba(137,55,43,0.20); }
.boundary-label {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
}
.dark-list { margin-bottom: 0; }
.dark-list li { color: var(--slate-700); }
.dark-list li::before { color: var(--success); }
.x-list { list-style: none; padding: 0; margin: 22px 0 0; }
.x-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--slate-700);
}
.x-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -1px;
  color: #89372b;
  font-weight: 900;
  font-size: 1.1rem;
}
.boundary-note {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold-500);
  background: var(--cream-100);
  color: var(--slate-700);
  font-size: 0.94rem;
}
.footer-identity { font-size: 0.82rem; }
.legal-links a { color: rgba(255,255,255,0.72); text-decoration: none; }
.legal-links a:hover { color: var(--white); }

.legal-page-main { background: var(--cream-50); min-height: 70vh; }
.legal-page-hero {
  padding: 76px 0 42px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.legal-page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 10px; }
.legal-page-hero p { color: rgba(255,255,255,0.7); }
.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 0 90px;
}
.legal-document h2 {
  margin-top: 42px;
  font-family: inherit;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}
.legal-document h2:first-child { margin-top: 0; }
.legal-document p, .legal-document li { color: var(--slate-700); }
.legal-document a { color: var(--navy-700); font-weight: 750; }
.legal-document .notice-box {
  padding: 22px;
  border-left: 4px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.back-link { display: inline-flex; margin-top: 18px; color: var(--gold-400); text-decoration: none; font-weight: 800; }

@media (max-width: 700px) {
  .boundary-grid { grid-template-columns: 1fr; }
  .boundary-card { padding: 26px; }
}
