:root {
  --navy-950: #060a1a;
  --navy-900: #0a1128;
  --navy-800: #101c3f;
  --navy-700: #17275a;
  --navy-600: #223572;
  --gold: #d4af37;
  --gold-light: #f2d879;
  --gold-dark: #a9822a;
  --white: #ffffff;
  --gray-50: #f7f8fb;
  --gray-100: #eef0f6;
  --gray-300: #c7cede;
  --gray-500: #8b93ab;
  --gray-700: #4b5471;
  --text-body: #232a45;
  --success: #1f9d55;
  --error: #d64545;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(10, 17, 40, 0.12);
  --max-width: 1160px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gray-50);
  color: var(--text-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 16px; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--gray-700); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ── Header ──────────────────────────────────────────────── */
.urgency-banner {
  background: var(--navy-950);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 17, 40, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 34px; width: auto; }
.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-text span { color: var(--gold); }
nav.nav-links { display: flex; align-items: center; gap: 32px; }
nav.nav-links a {
  color: var(--gray-300);
  font-size: 0.92rem;
  font-weight: 600;
}
nav.nav-links a:hover { color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  padding: 96px 0 80px;
}
.hero-bg-video,
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-image {
  display: none;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 26, 0.85);
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-bg-video { display: none; }
  .hero-bg-image { display: block; }
}
.hero > .container { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.hero h1 { color: var(--white); }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero .subhead { color: var(--gray-300); font-size: 1.15rem; max-width: 720px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.trust-badges span { display: inline-flex; align-items: center; gap: 6px; }

/* ── Partner logo carousel ───────────────────────────────── */
.partners-strip {
  background: var(--navy-950);
  padding: 32px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partners-title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.partners-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partners-scroll 36s linear infinite;
}
.partners-track:hover .partners-track-inner { animation-play-state: paused; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 130px;
  padding: 0 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.partner-logo-chip img {
  max-height: 30px;
  max-width: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.2s ease;
}
.partner-logo-chip:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ── VSL video ───────────────────────────────────────────── */
.vsl-section {
  /* Blends from the hero's dark navy down into the page's light body
     background instead of sitting as a hard-edged dark rectangle. */
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 28%, var(--gray-50) 72%);
  padding: 72px 0 88px;
}
.vsl-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  background: var(--navy-950);
}
.vsl-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--navy-950);
}
.vsl-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 10, 26, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.vsl-play-overlay:hover { background: rgba(6, 10, 26, 0.32); }
.vsl-play-overlay.is-hidden { display: none; }
.vsl-play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), #EAB308 75%);
  box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.55), 0 10px 30px rgba(234, 179, 8, 0.4);
  transition: transform 0.2s ease;
}
.vsl-play-overlay:hover .vsl-play-circle {
  transform: scale(1.08);
  animation: vsl-pulse 1.5s ease-out infinite;
}
.vsl-play-circle svg { width: 26px; height: 26px; margin-left: 4px; }
@keyframes vsl-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.55), 0 10px 30px rgba(234, 179, 8, 0.4); }
  70%  { box-shadow: 0 0 0 20px rgba(234, 179, 8, 0), 0 10px 30px rgba(234, 179, 8, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0), 0 10px 30px rgba(234, 179, 8, 0.4); }
}
.vsl-subtitle {
  text-align: center;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 20px 0 0;
}

/* ── Comparison ──────────────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.comparison-card {
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gray-300);
}
.comparison-card.bad { border-top-color: var(--error); }
.comparison-card.good { border-top-color: var(--gold); background: linear-gradient(180deg, #fffdf6, var(--white)); }
.comparison-card h3 { display: flex; align-items: center; gap: 10px; }
.comparison-card ul { margin: 0; padding-left: 20px; color: var(--gray-700); }
.comparison-card li { margin-bottom: 10px; }

/* ── Steps (dark section for premium contrast) ─────────────── */
.steps-section {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.steps-section .eyebrow { color: var(--gold-light); background: rgba(212,175,55,0.12); }
.steps-section h2 { color: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
}
.step-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step-card h3 { font-size: 1.05rem; color: var(--white); }
.step-card p { font-size: 0.92rem; margin-bottom: 0; color: var(--gray-300); }

/* ── Pillars ─────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
}
.pillar-card .pillar-icon { font-size: 1.8rem; margin-bottom: 14px; }
.pillar-card h3 { color: var(--gold-light); }
.pillar-card p { color: var(--gray-300); margin-bottom: 0; font-size: 0.94rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-section { background: var(--navy-950); color: var(--white); }
.pricing-section .eyebrow { color: var(--gold-light); background: rgba(212,175,55,0.12); }
.pricing-section h2 { color: var(--white); }
.pricing-section > .container > p.text-center { color: var(--gray-300); max-width: 560px; margin-left: auto; margin-right: auto; }

.capacity-badge {
  display: block;
  width: fit-content;
  max-width: 460px;
  margin: 0 auto 24px;
  background: #0F172A;
  border: 1px solid #EAB308;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 0 24px rgba(234, 179, 8, 0.15);
}
.capacity-badge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.capacity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex: 0 0 auto;
  animation: capacity-pulse 2s infinite;
}
@keyframes capacity-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.capacity-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.capacity-highlight {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.capacity-subtext {
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── Co-Management / Turnkey model toggle ───────────────────── */
.model-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 36px auto 0;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 8px;
}
.model-toggle button {
  appearance: none;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 12px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  color: var(--gray-300);
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.model-toggle button .toggle-title {
  display: block;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 4px;
}
.model-toggle button .toggle-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.4;
}
.model-toggle button.active {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
}
.model-toggle button.active .toggle-title { color: var(--gold-light); }
.pricing-view { display: none; }
.pricing-view.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.plan-card {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.1), var(--navy-900) 30%);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 0 40px rgba(212,175,55,0.25), 0 20px 45px rgba(0,0,0,0.35);
}
.plan-badge {
  align-self: center;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(212,175,55,0.4);
}
.plan-name { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-300); margin-bottom: 10px; }
.plan-price { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.plan-price span { font-size: 0.95rem; color: var(--gray-500); font-weight: 600; }
.plan-installment { font-weight: 700; font-size: 0.92rem; color: var(--gold-light); margin-bottom: 8px; }
.plan-legal { font-size: 0.74rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 20px; }
.plan-split { color: var(--gold-light); font-weight: 700; font-size: 0.92rem; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.plan-features { list-style: none; margin: 0 0 28px; padding: 0; flex-grow: 1; }
.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: var(--gray-100);
  display: flex;
  gap: 10px;
}
.plan-features li::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* ── Reviews carousel ────────────────────────────────────── */
.reviews-section { background: var(--navy-950); padding: 88px 0 72px; }
.reviews-section .eyebrow { color: var(--gold-light); background: rgba(212,175,55,0.12); }
.reviews-section h2 { color: var(--white); }
.reviews-section > .container > .text-center > p:not(.reviews-disclaimer) { color: var(--gray-300); }
.reviews-disclaimer {
  color: var(--gray-500) !important;
  font-size: 0.78rem !important;
  font-style: italic;
  margin-top: 4px !important;
}
.reviews-carousel-outer {
  max-width: 1160px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: #0F172A;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.review-stars { font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-headline {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 0 0 12px;
  line-height: 1.35;
}
.review-body {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
  margin: 0 0 22px;
}
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(212,175,55,0.4);
}
.review-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.review-title { color: var(--gray-500); font-size: 0.78rem; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reviews-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reviews-dots button.active {
  background: var(--gold);
  transform: scale(1.25);
}
@media (max-width: 900px) {
  .review-card { flex-basis: calc(50% - 12px); }
}
@media (max-width: 640px) {
  .review-card { flex-basis: 88%; }
}

/* ── Financial transparency ──────────────────────────────── */
.transparency-steps { display: grid; gap: 20px; margin-top: 40px; }
.transparency-step {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  align-items: flex-start;
}
.transparency-step .num {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.transparency-step p { margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-category-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin: 40px 0 14px;
}
.faq-category-title:first-child { margin-top: 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-dark); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 18px; margin: 0; }

/* ── Footer ──────────────────────────────────────────────── */
footer.site-footer {
  background: var(--navy-950);
  color: var(--gray-400);
  padding: 64px 0 48px;
  font-size: 0.88rem;
}
footer.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
footer.site-footer a { color: var(--gray-300); }
footer.site-footer a:hover { color: var(--gold-light); }
footer.site-footer .footer-brand { display: flex; flex-direction: column; gap: 10px; }
footer.site-footer .footer-address { font-style: normal; color: var(--gray-500); font-size: 0.82rem; line-height: 1.6; }
footer.site-footer .footer-address a { color: var(--gray-400); }
footer.site-footer .footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; }
footer.site-footer .disclaimer { max-width: 760px; margin: 0 auto 16px; text-align: center; line-height: 1.6; }
footer.site-footer .copyright { text-align: center; padding-top: 8px; }

/* ── Legal / info pages (Privacy, Terms, About) ─────────────── */
.legal-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 72px 0 48px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); margin-bottom: 8px; }
.legal-hero .legal-updated { color: var(--gray-400); font-size: 0.88rem; }
.legal-hero .subhead { color: var(--gray-300); font-size: 1.1rem; max-width: 640px; margin: 12px auto 0; }

.legal-content { background: var(--white); padding: 56px 0 88px; }
.legal-content .container { max-width: 760px; }
.legal-content h2 { font-size: 1.25rem; margin-top: 40px; margin-bottom: 14px; color: var(--navy-900); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--gray-700); line-height: 1.7; }
.legal-content ul { padding-left: 22px; margin-bottom: 20px; color: var(--gray-700); }
.legal-content li { margin-bottom: 10px; line-height: 1.6; }

/* ── Auth / dashboard shared shell ──────────────────────────── */
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  padding: 24px;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.auth-card .logo { justify-content: center; margin-bottom: 24px; }
.auth-card .logo-text { color: var(--navy-950); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; color: var(--navy-900); }
.field input[type=text], .field input[type=email], .field input[type=password],
.field textarea, .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}
.field-hint { font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }
.checkbox-field { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.checkbox-field input { width: auto; }
.form-message { padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; margin-bottom: 18px; }
.form-message.error { background: #fdecec; color: var(--error); border: 1px solid #f3c6c6; }
.form-message.success { background: #e9f8ef; color: var(--success); border: 1px solid #bfe9cf; }
.form-message.muted { background: var(--gray-100); color: var(--gray-700); }
.auth-footer-link { text-align: center; margin-top: 16px; font-size: 0.88rem; color: var(--gray-700); }

/* ── App shell (client + admin dashboards) ─────────────────── */
.app-shell { display: flex; min-height: 100vh; background: var(--gray-50); }
.app-sidebar {
  width: 240px;
  flex: 0 0 auto;
  background: var(--navy-950);
  color: var(--gray-300);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}
.app-sidebar .logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.app-sidebar .logo-text { color: var(--white); font-size: 1.05rem; }
.app-nav { display: flex; flex-direction: column; gap: 2px; padding: 0 12px; }
.app-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-300);
}
.app-nav a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.app-nav a.active { background: var(--gold); color: var(--navy-950); }
.app-sidebar-footer { margin-top: auto; padding: 20px 24px 4px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; }
.app-sidebar-footer .sidebar-name { color: var(--white); font-weight: 700; margin-bottom: 10px; }
.app-sidebar-footer .plan-pill { margin: 0 0 12px; padding: 6px 14px; }
.app-sidebar-footer .sidebar-signout { display: block; margin-top: 14px; color: var(--gray-300); }
.app-main { flex: 1 1 auto; min-width: 0; }
.app-topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.app-content { padding: 32px; max-width: 1080px; }
.plan-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--gold-light);
}

/* ── Milestone tracker ───────────────────────────────────── */
.module-block { margin-bottom: 36px; }
.module-block h3 { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }
.step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(10,17,40,0.05);
  border-left: 4px solid var(--gray-300);
  transition: box-shadow 0.15s ease;
}
.step-row:hover { box-shadow: 0 4px 16px rgba(10,17,40,0.1); }
.step-row.status-locked { border-left-color: var(--gray-300); opacity: 0.65; }
.step-row.status-in-progress { border-left-color: #2f6fed; }
.step-row.status-rejected { border-left-color: var(--error); }
.step-row.status-completed { border-left-color: var(--success); }
.step-row.step-actionable {
  border-left-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.35), 0 4px 16px rgba(212,175,55,0.18);
}
.step-row .step-icon { font-size: 1.3rem; flex: 0 0 auto; }
.step-row .step-info { flex: 1 1 auto; min-width: 0; }
.step-row .step-info .title { font-weight: 700; font-size: 0.95rem; color: var(--navy-900); }
.step-row .step-info .owner { font-size: 0.78rem; color: var(--gray-500); }
.badge-action-needed {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--gold);
  color: var(--navy-950);
  animation: action-pulse 1.8s ease-in-out infinite;
}
@keyframes action-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(212,175,55,0); }
}

/* ── Progress gauge ──────────────────────────────────────── */
.progress-block { margin-bottom: 8px; }
.progress-block .progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.progress-block .progress-label .progress-pct {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
  color: var(--gold-dark);
}
.progress-track {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  box-shadow: inset 0 1px 3px rgba(10,17,40,0.12);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  min-width: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
  transition: width 0.5s ease;
}
.status-badge {
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-badge.status-locked { background: var(--gray-100); color: var(--gray-500); }
.status-badge.status-in-progress { background: #e8f0ff; color: #2f6fed; }
.status-badge.status-rejected { background: #fdecec; color: var(--error); }
.status-badge.status-completed { background: #e9f8ef; color: var(--success); }

/* ── Cards / KPIs ────────────────────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.kpi-card { background: var(--white); border-radius: var(--radius); padding: 22px 24px; box-shadow: 0 2px 8px rgba(10,17,40,0.05); }
.kpi-card .kpi-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 600; margin-bottom: 8px; }
.kpi-card .kpi-value { font-size: 1.6rem; font-weight: 800; color: var(--navy-900); }
.card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 8px rgba(10,17,40,0.05); margin-bottom: 24px; }
.card h3 { margin-bottom: 20px; }

table.data-table { width: 100%; border-collapse: collapse; }
table.data-table th { text-align: left; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-500); padding: 10px 14px; border-bottom: 2px solid var(--gray-100); }
table.data-table td { padding: 14px; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; }
table.data-table tr:hover td { background: var(--gray-50); }

.badge { font-size: 0.74rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.badge-wait { background: #fff6e0; color: #a97a00; }
.badge-progress { background: #e8f0ff; color: #2f6fed; }
.badge-rejected { background: #fdecec; color: var(--error); }
.badge-live { background: #e9f8ef; color: var(--success); }

.split-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.split-row:last-child { border-bottom: none; }
.split-row .label { color: var(--gray-700); font-size: 0.9rem; }
.split-row .value { font-weight: 700; color: var(--navy-900); }

/* ── Floating brochure widget ────────────────────────────── */
.brochure-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 156px;
}
.brochure-widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.15s ease, background 0.15s ease;
}
.brochure-widget-close:hover { color: var(--white); background: var(--navy-800); }

.brochure-widget-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brochure-widget:hover .brochure-widget-link {
  transform: scale(1.05);
  box-shadow: 0 14px 34px rgba(212,175,55,0.3);
}
.brochure-widget-cover { padding: 14px 10px 10px; text-align: center; }
.brochure-widget-logo { width: 26px; height: auto; margin: 0 auto 8px; filter: brightness(0) saturate(100%) invert(78%) sepia(45%) saturate(600%) hue-rotate(2deg) brightness(1.05); }
.brochure-widget-title { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; color: var(--white); text-transform: uppercase; }
.brochure-widget-sub {
  font-size: 0.66rem;
  color: var(--gray-100);
  opacity: 0.85;
  margin-top: 5px;
  line-height: 1.45;
}
.brochure-widget-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 8px 4px;
}
.brochure-widget-link-mobile { display: none; }

/* Collapsed (minimized) state — a small persistent tab, never fully gone. */
.brochure-widget-collapsed-tab {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid rgba(212,175,55,0.45);
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  color: var(--gold-light);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brochure-widget-collapsed-tab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(212,175,55,0.35);
}
.brochure-widget.is-collapsed .brochure-widget-expanded { display: none; }
.brochure-widget.is-collapsed .brochure-widget-collapsed-tab { display: flex; }

@media (max-width: 768px) {
  .brochure-widget { width: auto; bottom: 16px; left: 16px; }
  .brochure-widget-link { display: none; }
  .brochure-widget-link-mobile {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--navy-950);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
  }
  .brochure-widget-link-mobile .brochure-widget-mobile-icon { font-size: 1rem; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .comparison-grid, .pillars-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.featured { transform: none; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .app-sidebar { display: none; }
}
@media (max-width: 640px) {
  nav.nav-links { display: none; }
  .nav-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .app-content { padding: 20px; }
}
