/* TNA GovCon - dark dramatic theme */
:root {
  --navy-deep: #072a44;
  --navy: #0c4569;
  --navy-mid: #0e3a5c;
  --navy-light: #114f7a;
  --gold: #a89d64;
  --gold-light: #c4b67a;
  --gold-pale: #d4c890;
  --gold-dark: #8a8050;
  --cream: #f7f3ea;
  --white: #ffffff;
  --text: #d8dde6;
  --text-muted: #8a9bb0;
  --text-subtle: #5a6b80;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(168, 157, 100, 0.3);
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.gold { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 20px 0;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 24, 41, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.2rem;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu > li > a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu > li > a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-deep);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
}

/* Practice Switcher */
.practice-switcher { position: relative; list-style: none; }
.ps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 157, 100, 0.1);
  border: 1px solid rgba(168, 157, 100, 0.4);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.ps-btn:hover, .practice-switcher.open .ps-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.ps-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.practice-switcher.open .ps-arrow { transform: rotate(180deg); }
.ps-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 300px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  list-style: none;
  display: none;
  z-index: 1000;
}
.practice-switcher.open .ps-menu { display: block; }
.ps-menu li { margin: 0; }
.ps-menu li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
}
.ps-menu li a:hover { background: var(--cream); }
.ps-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 22px;
  padding-top: 2px;
}
.ps-info { flex: 1; }
.ps-menu strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.ps-menu small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-weight: 500;
}
.ps-active { background: var(--cream); }
.ps-active strong { color: var(--gold-dark); }
.ps-divider {
  border-top: 1px solid #e8dfc7;
  margin: 8px 0;
  height: 0;
}
.ps-portal {
  font-size: 0.82rem !important;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: center;
  justify-content: center !important;
}
@media (max-width: 1024px) {
  .ps-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    margin-top: 8px;
  }
  .ps-btn { width: 100%; justify-content: center; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 2px 0 var(--gold-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--gold-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-large { padding: 18px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
}
.hero-bg {
  position: absolute;
  top: 0; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(168, 157, 100,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 70px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(168, 157, 100, 0.1);
  border: 1px solid rgba(168, 157, 100, 0.3);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline-gold { color: var(--gold); }
.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 620px;
}
.hero-subhead strong { color: var(--white); }
.hero-price-line { margin-bottom: 32px; }
.hero-price-context {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(168, 157, 100, 0.1);
  border: 1px solid rgba(168, 157, 100, 0.4);
  border-radius: 4px;
  color: var(--gold-pale);
  font-weight: 600;
  font-size: 0.92rem;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-cta-note span { color: var(--gold); font-weight: 600; }

/* Hero panel */
.hero-panel {
  background: rgba(15, 45, 79, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}
.hero-panel-head {
  padding: 14px 20px;
  background: rgba(168, 157, 100, 0.15);
  border-bottom: 1px solid var(--border-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.hero-panel-stat {
  background: var(--navy-mid);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-panel-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-panel-value {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-panel-value.gold { color: var(--gold-pale); }
.hero-panel-footer {
  background: var(--navy-deep);
  padding: 16px 20px;
  border-top: 1px solid var(--border-strong);
}
.hero-panel-guarantee {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

/* Stats bar */
.stats {
  background: var(--navy-deep);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stats-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-number .plus { font-size: 0.55em; opacity: 0.7; }
.stats-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 8px;
}

/* Proof bar */
.proof-bar {
  background: var(--navy-mid);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-bar-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.proof-bar-agencies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-tag {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

/* Section structure */
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* PROBLEM */
.problem { background: var(--navy); }
.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }
.problem-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.problem-body {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.pain-list {
  list-style: none;
  margin-top: 32px;
}
.pain-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-style: italic;
}
.pain-icon {
  color: #d04a4a;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 24px;
}

.callout {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}
.callout-stat {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.callout-stat-sm { font-size: 2.5rem; }
.callout-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.callout-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.callout-text strong { color: var(--white); }
.callout-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* HOW IT WORKS */
.how { background: var(--navy-deep); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
}
.how-step {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.how-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.how-step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.8;
  margin-bottom: 16px;
}
.how-step-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.how-step-body {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.how-step-detail {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.how-cta-wrap { text-align: center; }

/* CASES */
.cases { background: var(--navy-mid); }
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }
.case {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
}
.case-type {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.case-company {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.case-certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cert-pill {
  padding: 4px 12px;
  background: rgba(168, 157, 100, 0.15);
  border: 1px solid rgba(168, 157, 100, 0.4);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-pale);
}
.case-result-big {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.case-result-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.case-wins {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 24px;
}
.case-win {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}
.case-win::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 700;
}
.case-quote {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}
.case-quote-attr {
  margin-top: 12px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cases-cta { text-align: center; }

/* SERVICES */
.services { background: var(--navy); }
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}
@media (max-width: 900px) { .services-intro { grid-template-columns: 1fr; gap: 40px; } }
.services-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.services-body {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.05rem;
}
.services-monthly-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.services-deliverables {
  list-style: none;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
}
.services-deliverables li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.services-deliverables li:last-child { border-bottom: none; }
.del-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.services-deliverables strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.services-deliverables span {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) { .services-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .services-cards { grid-template-columns: 1fr; } }
.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.services-bottom-cta {
  text-align: center;
  background: var(--navy-deep);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 36px 32px;
}
.services-bottom-cta p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.55;
}
.services-bottom-cta strong { color: var(--gold); }

/* PRICING */
.pricing { background: var(--navy-deep); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; gap: 24px; } }
.pricing-col {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-col-featured {
  background: linear-gradient(145deg, rgba(168, 157, 100,0.08), rgba(168, 157, 100,0.02));
  border: 2px solid var(--gold);
  position: relative;
  transform: scale(1.03);
  z-index: 1;
}
@media (max-width: 900px) { .pricing-col-featured { transform: none; } }
.pricing-col-featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.pricing-col-head {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pricing-price .plus { font-size: 0.4em; vertical-align: super; opacity: 0.7; }
.pricing-price-dim { color: var(--text-muted); }
.pricing-col-featured .pricing-price { color: var(--gold); font-size: 2.4rem; }
.pricing-price-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pricing-features li.bad { color: var(--text-muted); }
.feat-yes {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}
.feat-no {
  color: #888;
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}
.pricing-total {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-total .amount {
  color: var(--white);
  font-weight: 800;
  margin-left: 8px;
}
.pricing-total .amount-dim { color: var(--text-muted); }
.pricing-col-featured .pricing-total .amount { color: var(--gold); }
.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-note-gold { color: var(--gold-pale); font-weight: 600; }
.pricing-guarantee-strip {
  background: var(--navy-mid);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 700px) { .pricing-guarantee-strip { flex-direction: column; align-items: flex-start; } }
.seal {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.pricing-guarantee-strip p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.pricing-guarantee-strip strong { color: var(--gold); }

/* GUARANTEE */
.guarantee { background: var(--navy); }
.guarantee-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .guarantee-inner { grid-template-columns: 1fr; gap: 40px; } }
.guarantee-seal-wrap { text-align: center; }
.guarantee-seal {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  margin: 0 auto 16px;
  box-shadow: 0 16px 48px rgba(168, 157, 100, 0.3);
  position: relative;
}
.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(12, 69, 105, 0.3);
  border-radius: 50%;
}
.guarantee-seal-number {
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.guarantee-seal-word {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.guarantee-seal-month {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  margin-top: 4px;
}
.guarantee-tagline {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guarantee-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.guarantee-body {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.guarantee-points {
  list-style: none;
  margin-top: 24px;
}
.guarantee-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.guarantee-points strong { color: var(--gold); display: inline; }
.guarantee-star {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-commission {
  background: var(--navy-mid);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 24px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.guarantee-commission strong { color: var(--gold); }
.guarantee-cta { margin-top: 32px; }

/* TEAM */
.team { background: var(--navy-mid); }
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: start;
}
@media (max-width: 900px) { .team-intro { grid-template-columns: 1fr; gap: 40px; } }
.team-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.team-body {
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}
.team-creds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cred-tag {
  padding: 6px 14px;
  background: rgba(168, 157, 100, 0.1);
  border: 1px solid rgba(168, 157, 100, 0.3);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--gold-pale);
  font-weight: 600;
}
.founder-card {
  background: var(--navy);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 32px 28px;
}
.founder-card-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.founder-card-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-card-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.founder-card-bio {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.team-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin: 0 auto 16px;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* TESTIMONIALS */
.testimonials { background: var(--navy); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.testimonial-result {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-attr {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-company {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* FAQ */
.faq { background: var(--navy-mid); }
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  padding: 8px 0;
  transition: background 0.2s;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.faq-toggle {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  color: var(--text);
  line-height: 1.65;
  font-size: 0.96rem;
  padding-right: 36px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 24px;
}

/* CONTACT */
.contact-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168, 157, 100,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.contact-body {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-checks {
  list-style: none;
}
.contact-checks li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.contact-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.contact-form {
  background: rgba(15, 45, 79, 0.8);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-field label .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  background: rgba(12, 69, 105, 0.6);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 157, 100, 0.2);
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--navy-deep); color: var(--white); }
.form-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.hidden-field { display: none; }

/* FOOTER */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-tagline {
  margin-top: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-subtle);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--text-muted); }

/* ================================
   SUB-PAGE STYLES
   ================================ */

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(168, 157, 100,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 980px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 16px 0 24px;
}
.page-hero-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 720px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { opacity: 0.5; margin: 0 8px; }
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(15, 45, 79, 0.5);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
}
@media (max-width: 700px) { .hero-stats-row { grid-template-columns: repeat(2, 1fr); } }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-bullets {
  list-style: none;
  margin: 24px 0 32px;
}
.hero-bullets li {
  padding: 8px 0;
  color: var(--text);
  font-size: 0.96rem;
}

/* Content sections */
.content-section { background: var(--navy); padding: 80px 0; }
.content-section-mid { background: var(--navy-mid); }

/* Active nav link */
.nav-menu a.active { color: var(--gold); }

/* Prose layouts */
.prose-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .prose-grid { grid-template-columns: 1fr; gap: 40px; } }
.prose-grid h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.prose-grid p { color: var(--text); line-height: 1.65; margin-bottom: 16px; font-size: 1.02rem; }
.prose-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.prose-narrow h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.prose-narrow p { color: var(--text); line-height: 1.65; margin-bottom: 16px; font-size: 1.02rem; }
.prose-aside {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.prose-aside h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.prose-aside-block { padding: 16px 0; border-bottom: 1px solid var(--border); }
.prose-aside-block:last-child { border-bottom: none; }
.prose-aside-block h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.prose-aside-block p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }

.link-arrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 10px; color: var(--gold-light); }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .why-grid, .why-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid, .why-grid-4 { grid-template-columns: 1fr; } }
.why-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.why-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; }

/* Engines (How We Work) */
.engines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .engines-grid { grid-template-columns: 1fr; } }
.engine-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
}
.engine-icon { font-size: 2.5rem; margin-bottom: 16px; }
.engine-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.engine-list {
  list-style: none;
  margin-bottom: 24px;
}
.engine-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.engine-list li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}

/* Rhythm grid */
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .rhythm-grid { grid-template-columns: 1fr; } }
.rhythm-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}
.rhythm-tag {
  display: inline-block;
  background: rgba(168, 157, 100, 0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rhythm-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.rhythm-card ul {
  list-style: none;
}
.rhythm-card li {
  padding: 6px 0 6px 18px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.rhythm-card li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Gates */
.gates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 800px) { .gates-grid { grid-template-columns: repeat(2, 1fr); } }
.gate-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-left: 4px solid;
  border-radius: 6px;
  padding: 24px 20px;
}
.gate-blue { border-left-color: #4a90e2; }
.gate-pink { border-left-color: #e84a93; }
.gate-red { border-left-color: #d04a4a; }
.gate-gold { border-left-color: var(--gold); }
.gate-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.gate-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }
.gates-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
  margin-top: 16px;
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.timeline-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .timeline-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .timeline-grid { grid-template-columns: 1fr; } .timeline-grid-4 { grid-template-columns: 1fr; } }
.timeline-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}
.timeline-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.timeline-period {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.timeline-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.timeline-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
.timeline-card ul { list-style: none; }
.timeline-card li {
  padding: 6px 0 6px 18px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.timeline-card li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* KPI grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}
.kpi-icon { font-size: 1.8rem; margin-bottom: 10px; }
.kpi-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
  line-height: 1.4;
}

/* Modules grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .modules-grid { grid-template-columns: 1fr; } }
.module-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.module-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.module-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.module-card p { color: var(--text); font-size: 0.95rem; line-height: 1.55; margin-bottom: 10px; }
.module-card p strong { color: var(--gold); }

/* Weekly cadence */
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .weekly-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .weekly-grid { grid-template-columns: 1fr; } }
.weekly-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
}
.weekly-day {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.weekly-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.weekly-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .metrics-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
.metric-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
}
.metric-value {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Outcomes list */
.outcomes-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
}
.outcomes-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.outcomes-list li::before {
  content: "\2192";
  position: absolute;
  left: 4px;
  top: 14px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Generic check list */
.check-list {
  list-style: none;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  line-height: 1.55;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 700;
}

/* Bullet list */
.bullet-list { list-style: none; }
.bullet-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text);
  line-height: 1.55;
}
.bullet-list li::before {
  content: "\2022";
  position: absolute;
  left: 6px;
  color: var(--gold);
  font-weight: 700;
}

/* Rhythm and portal lists (about page) */
.rhythm-list { list-style: none; }
.rhythm-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.55;
}
.rhythm-list li strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.portal-list { list-style: none; }
.portal-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.portal-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.portal-list li strong { color: var(--white); }

/* Capacity grid */
.capacity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 700px) { .capacity-grid { grid-template-columns: 1fr; } }
.capacity-card {
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
}
.capacity-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.capacity-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.capacity-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

/* Programs (services/pricing) */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 32px;
}
.programs-grid-detail { max-width: none; }
@media (max-width: 800px) { .programs-grid { grid-template-columns: 1fr; } }
.program-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 32px 28px;
}
.program-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.program-pricing {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.program-card p { color: var(--text); font-size: 0.96rem; line-height: 1.55; margin-bottom: 16px; }
.program-card-large {
  background: var(--navy-mid);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 40px 36px;
}
.program-card-large h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.program-card-large h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin: 24px 0 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.program-card-large p { color: var(--text); margin-bottom: 16px; line-height: 1.55; }
.program-fit { color: var(--text-muted) !important; font-size: 0.95rem; }
.capacity-strip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  color: var(--text);
  font-size: 0.95rem;
}
.capacity-strip strong { color: var(--gold); }

/* Services stack (services page) */
.services-stack { max-width: 880px; margin: 0 auto; }
.service-stack-card {
  display: flex;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.service-stack-card:last-child { border-bottom: none; }
@media (max-width: 600px) { .service-stack-card { flex-direction: column; gap: 16px; } }
.service-stack-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  width: 60px;
}
.service-stack-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-stack-card p { color: var(--text); font-size: 0.95rem; line-height: 1.55; }

/* Topics grid (resources) */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 800px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .topics-grid { grid-template-columns: 1fr; } }
.topic-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}
.topic-icon { font-size: 1.5rem; }

/* Featured grid (resources) */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 32px 28px;
}
.featured-icon { font-size: 2.2rem; margin-bottom: 16px; }
.featured-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.featured-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; margin-bottom: 16px; }

/* Downloads grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .downloads-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .downloads-grid { grid-template-columns: 1fr; } }
.download-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px;
}
.download-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.download-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.resources-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 32px;
}
.resources-note a { color: var(--gold); }

/* Agencies grid */
.agencies-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 800px) { .agencies-grid { grid-template-columns: 1fr; gap: 40px; } }
.agencies-col h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-strong);
}
.agencies-list {
  list-style: none;
  columns: 2;
  column-gap: 24px;
}
.agencies-col:nth-child(2) .agencies-list { columns: 1; }
@media (max-width: 600px) { .agencies-list { columns: 1; } }
.agencies-list li {
  padding: 6px 0 6px 16px;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
  break-inside: avoid;
}
.agencies-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Case snapshots */
.case-snapshots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.case-snapshot {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
}
.case-snapshot-tag {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.case-snapshot h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.case-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.case-row {
  padding: 12px 0 12px 110px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  border-top: 1px solid var(--border);
}
.case-row:first-child { border-top: none; }
.case-row strong {
  position: absolute;
  left: 0;
  top: 12px;
  width: 100px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 700px) {
  .case-row { padding-left: 0; padding-top: 32px; }
  .case-row strong { position: static; display: block; margin-bottom: 4px; }
}

/* Success stack */
.success-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.success-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
}
.success-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  opacity: 0.6;
}
.success-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.success-tag {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.success-context {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.success-card h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin: 24px 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.success-card p { color: var(--text); line-height: 1.55; margin-bottom: 12px; font-size: 0.95rem; }
.success-card blockquote {
  margin: 28px 0 0;
  padding: 20px 24px;
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.success-card cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Contact grid + form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 32px 0 16px;
}
.contact-list {
  list-style: none;
  margin-bottom: 24px;
}
.contact-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-list a { color: var(--text); font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-note-top {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* Next steps grid (book-now) */
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .next-steps-grid { grid-template-columns: 1fr; } }
.next-step-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.next-step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.next-step-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}
.next-step-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.form-fallback {
  margin-top: 40px;
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 24px 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.form-fallback h4 {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: 10px;
}
.form-fallback p { color: var(--text); }
.form-fallback a { color: var(--gold); font-weight: 700; }

/* Role headers */
.role-header {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* Footer contact */
.footer-contact {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-light); }

/* Book CTA section */
.book-cta-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.book-cta-section::before {
  content: "";
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(168, 157, 100,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.book-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.book-cta-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.book-cta-body {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 24px;
}
.book-cta-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-bottom: 32px;
}
.book-cta-list li {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.book-cta-list li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
}
.book-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legal prose (privacy) */
.legal-prose h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 36px 0 12px;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin: 24px 0 8px;
}
.legal-prose p { color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.legal-prose a { color: var(--gold); }


/* ================================
   BRAND LOGO IMAGE
   ================================ */
.brand img.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
}
.brand img.brand-logo-full {
  height: 56px;  /* taller for the version with tagline */
}
@media (max-width: 700px) {
  .brand img.brand-logo { height: 36px; }
  .brand img.brand-logo-full { height: 44px; }
}
.footer-brand img.brand-logo {
  height: 48px;
  margin-bottom: 8px;
}
.footer-brand img.brand-logo-full {
  height: 56px;
  margin-bottom: 8px;
}
