/* =========================================
   Beyond Better Co — Shared Styles
   ========================================= */

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

:root {
  --bg: #0A0A0A;
  --text: #F5F0E8;
  --gold: #C9A84C;
  --muted: #8A8070;
  --divider: #1E1E1E;
  --font-headline: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ——— NAV ——— */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: #0A0A0A;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.85; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--gold);
  color: #0A0A0A;
  padding: 0.75rem 2rem;
  letter-spacing: 0.03em;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

/* ——— BUTTONS ——— */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  text-align: center;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  font-size: 0.87rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(245, 240, 232, 0.25);
  transition: border-color 0.2s;
  text-align: center;
}

.btn-outline:hover { border-color: rgba(245, 240, 232, 0.55); }

/* ——— LAYOUT ——— */

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

section { padding: 6rem 2.5rem; }

.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ——— FADE IN ON SCROLL ——— */

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— HOMEPAGE HERO ——— */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2.5rem 5rem;
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 860px;
  margin-bottom: 1.25rem;
}

.hero-slogan {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ——— ORIGIN ——— */

.origin {
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: center;
}

.origin p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: center;
}

/* ——— PRODUCTS ——— */

.products { border-top: 1px solid var(--divider); }

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bridge-line {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.3;
}

.products-grid {
  display: flex;
  align-items: stretch;
}

.product-card {
  flex: 1;
  background: #111111;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid var(--divider);
}

.card-stage {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-audience {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.card-title {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
}

.card-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  flex: 1;
}

.card-cta {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
  margin-top: 0.5rem;
}

.card-cta:hover { border-color: var(--gold); }

.card-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  min-width: 52px;
  gap: 8px;
}

.connector-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted), transparent);
}

.connector-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— SENIOR PRACTICE ——— */

.senior-practice {
  border-top: 1px solid var(--divider);
  text-align: center;
}

.senior-practice .section-inner { max-width: 720px; }

.senior-practice h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.senior-practice p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ——— CREDENTIALS ——— */

.credentials {
  border-top: 1px solid var(--divider);
  background: #0D0D0D;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.cred-number {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.cred-number.small { font-size: clamp(1rem, 1.8vw, 1.5rem); line-height: 1.3; }

.cred-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ——— FOOTER ——— */

footer {
  border-top: 1px solid var(--divider);
  padding: 4rem 2.5rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand-name {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-headline);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-email {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-email:hover { color: var(--text); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  color: var(--muted);
  font-size: 0.78rem;
}

/* ——— BHOS HERO ——— */

.bhos-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2.5rem 5rem;
  border-bottom: 1px solid var(--divider);
}

.bhos-hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.06em;
  max-width: 820px;
  margin-bottom: 2rem;
}

.bhos-hero-body {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ——— BHOS SECTIONS ——— */

.prose-section { border-top: 1px solid var(--divider); }

.prose-section h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.prose-block p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 760px;
}

.prose-block p + p { margin-top: 1.25rem; }

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 3rem;
}

/* ——— HOW IT WORKS STEPS ——— */

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  font-family: var(--font-headline);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}

.step-title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.step-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.steps-closing {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ——— STAKES ——— */

.stakes-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 3rem;
}

.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stakes-with,
.stakes-without {
  padding: 2rem 2rem;
}

.stakes-with {
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.03);
}

.stakes-without {
  border: 1px solid var(--divider);
}

.stakes-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.stakes-with .stakes-label { color: var(--gold); }
.stakes-without .stakes-label { color: var(--muted); }

.stakes-body {
  font-size: 0.93rem;
  line-height: 1.85;
}

.stakes-with .stakes-body { color: var(--text); }
.stakes-without .stakes-body { color: var(--muted); }

/* ——— PRICING ——— */

.pricing-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 400;
}

.pricing-price {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  white-space: nowrap;
}

.deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.deliverable {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.03);
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.deliverable::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.05em;
}

.pricing-closing {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* ——— ADVISOR ——— */

.advisor-section {
  background: #0D0D0D;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

/* ——— DIAGNOSTIC RECEIVED ——— */

.diagnostic-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2.5rem 5rem;
}

.diagnostic-inner {
  max-width: 640px;
  text-align: center;
}

.diagnostic-inner h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.diagnostic-inner p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.diagnostic-inner p a {
  color: var(--gold);
  text-decoration: none;
}

.next-steps {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--divider);
  margin-top: 3rem;
}

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--divider);
}

.next-step-num {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 1.75rem;
}

.next-step-text {
  color: var(--muted);
  font-size: 0.95rem;
  padding-top: 0.2rem;
}

/* ——— PLACEHOLDER PAGES ——— */

.placeholder-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
}

.placeholder-inner h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.placeholder-inner p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 480px;
}

.placeholder-inner a { color: var(--gold); text-decoration: none; }

/* ——— MANAGER UNLEASHED ——— */

.mu-hero-body {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-align: center;
}

.origin p + p { margin-top: 1.25rem; }

.pillars-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pillars-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: #111111;
  border: 1px solid var(--divider);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pillar-number {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.pillar-name {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}

.pillar-label {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.pillar-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.25rem;
}

.stakes-body p + p { margin-top: 1rem; }

.mu-pricing-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.mu-pricing-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.mu-pricing-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.mu-pricing-header p + p { margin-top: 1rem; }

.mu-pricing-block {
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 2.5rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  background: rgba(201, 168, 76, 0.02);
}

.mu-pricing-product-name {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--divider);
}

.mu-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--divider);
}

.mu-pricing-row:last-child { border-bottom: none; }

.mu-price-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.mu-price-founding {
  color: var(--gold);
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 300;
}

.mu-price-founding small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 0.5rem;
}

.mu-price-standard {
  color: var(--muted);
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 300;
}

.tribal-quote {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 0 auto 2.5rem;
  max-width: 620px;
  color: var(--gold);
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
}

.closing-cta {
  background: #0D0D0D;
  border-top: 1px solid var(--divider);
  text-align: center;
  padding: 6rem 2.5rem;
}

.closing-cta-line {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--text);
}

/* ——— LEGAL PAGES ——— */

.legal-page {
  padding: 8rem 2.5rem 6rem;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-heading {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.legal-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--divider);
}

.legal-intro p + p { margin-top: 1rem; }

.legal-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--divider);
}

.legal-section:last-child { border-bottom: none; }

.legal-section-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}

.legal-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.legal-body p + p { margin-top: 0.85rem; }

.legal-items {
  list-style: none;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-items li {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  padding-left: 1rem;
  border-left: 1px solid var(--divider);
}

.legal-subsection {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--divider);
}

.legal-subsection:first-child { margin-top: 1rem; padding-top: 1rem; border-top: none; }

.legal-sub-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-sub-heading {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.25rem 0 0.5rem;
}

.legal-price-list {
  list-style: none;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.93rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--divider);
}

.legal-price-list li:last-child { border-bottom: none; }

.legal-price-list .tier-name { color: var(--text); }
.legal-price-list .tier-price { color: var(--gold); font-family: var(--font-headline); font-size: 1.1rem; }

.legal-contact-block {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.85;
}

.legal-contact-block a { color: var(--gold); text-decoration: none; }

/* ——— RESPONSIVE ——— */

@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .stakes-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .mu-pricing-block { padding: 1.75rem 1.25rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  footer { padding: 3rem 1.5rem; }

  .hero { padding: 6rem 1.5rem 4rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }

  .products-grid { flex-direction: column; }

  .card-connector {
    flex-direction: row;
    padding: 0.75rem 0;
    min-width: auto;
    gap: 10px;
  }

  .connector-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--muted), transparent);
  }

  .step { grid-template-columns: 2.5rem 1fr; gap: 1rem; }

  .pricing-product { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 1rem; }

  .bhos-hero { padding: 6rem 1.5rem 4rem; }
  .diagnostic-page { padding: 6rem 1.5rem 4rem; }
  .placeholder-page { padding: 6rem 1.5rem 4rem; }
}
