/**
 * Ovation Med Spa — Men's Sexual Health Design System
 * Shared styles for all MSH page templates
 * Version: 1.0.0
 *
 * PREFIX: .omh- (Ovation Men's Health)
 * This prevents any collision with your existing theme CSS.
 */

/* ═══════════════════════════════════════════
   CSS VARIABLES (DESIGN TOKENS)
   ═══════════════════════════════════════════ */
:root {
  /* Core palette — masculine, clinical, trustworthy */
  --omh-navy: #1a2332;
  --omh-slate: #2c3e50;
  --omh-charcoal: #1e1e1e;
  --omh-charcoal-soft: #555;
  --omh-cream: #fffdf9;
  --omh-champagne-light: #f8f5f0;
  --omh-white: #ffffff;
  --omh-ice: #e8ecf0;
  --omh-border: rgba(0,0,0,.06);
  --omh-border-steel: rgba(44,62,80,.12);

  /* Accent colors */
  --omh-gold: #c9a96e;
  --omh-gold-dark: #b8944f;
  --omh-gold-light: #e0c992;

  /* Treatment-specific accents */
  --omh-accent-wave: #3B7DD8;    /* GainsWave — blue */
  --omh-accent-pelvic: #5BA88C;  /* Emsella — green */
  --omh-accent-regen: #D4A44A;   /* P-Shot / Exosome — gold */
  --omh-accent-bocox: #7B6BA4;   /* Bocox — purple */

  /* Typography */
  --omh-font-display: 'Cormorant Garamond', Georgia, serif;
  --omh-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --omh-shadow-soft: 0 2px 20px rgba(0,0,0,.06);
  --omh-shadow-card: 0 4px 24px rgba(0,0,0,.08);
  --omh-shadow-hover: 0 8px 36px rgba(0,0,0,.12);
}


/* ═══════════════════════════════════════════
   RESET / BASE (scoped to plugin pages)
   ═══════════════════════════════════════════ */
.omh-page {
  font-family: var(--omh-font-body);
  color: var(--omh-charcoal);
  background: var(--omh-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

.omh-page *, .omh-page *::before, .omh-page *::after {
  box-sizing: border-box;
}

.omh-page img { max-width: 100%; height: auto; }
.omh-page a { color: inherit; }


/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.omh-top-bar {
  background: var(--omh-navy);
  color: var(--omh-ice);
  font-size: .78rem;
  letter-spacing: .08em;
  padding: 10px 0;
  text-align: center;
  font-weight: 300;
}
.omh-top-bar a {
  color: var(--omh-gold-light);
  text-decoration: none;
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.omh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,249,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--omh-border);
}
.omh-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.omh-nav-logo {
  text-decoration: none;
}
.omh-nav-logo-img {
  height: 44px;
  width: auto;
}
.omh-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.omh-nav-links a {
  font-size: .85rem;
  font-weight: 400;
  color: var(--omh-charcoal-soft);
  text-decoration: none;
  transition: color .3s;
}
.omh-nav-links a:hover {
  color: var(--omh-gold);
}
.omh-nav-cta {
  background: var(--omh-gold) !important;
  color: var(--omh-white) !important;
  padding: 12px 28px !important;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: all .3s !important;
}
.omh-nav-cta:hover {
  background: var(--omh-gold-dark) !important;
}

/* WordPress nav menu compatibility */
.omh-nav-links .menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.omh-nav-links .menu li a {
  font-size: .85rem;
  font-weight: 400;
  color: var(--omh-charcoal-soft);
  text-decoration: none;
  transition: color .3s;
}
.omh-nav-links .menu li a:hover {
  color: var(--omh-gold);
}


/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.omh-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  font-size: .78rem;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}
.omh-breadcrumb a {
  text-decoration: none;
  color: var(--omh-charcoal-soft);
}
.omh-breadcrumb a:hover {
  color: var(--omh-gold);
}
.omh-breadcrumb span {
  margin: 0 8px;
  opacity: .5;
}


/* ═══════════════════════════════════════════
   HERO SECTIONS
   ═══════════════════════════════════════════ */
.omh-treatment-hero {
  padding: 40px 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.omh-treatment-hero h1 {
  font-family: var(--omh-font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--omh-charcoal);
  margin-bottom: 24px;
}
.omh-treatment-hero h1 em {
  font-style: italic;
  color: var(--omh-gold);
}
.omh-hero-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 560px;
}

/* Quick stats bar */
.omh-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--omh-border-steel);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
}
.omh-quick-stat {
  background: var(--omh-white);
  padding: 20px 16px;
  text-align: center;
}
.omh-quick-stat-value {
  font-family: var(--omh-font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--omh-charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.omh-quick-stat-label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--omh-charcoal-soft);
  font-weight: 400;
}

/* Hero image area */
.omh-hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.omh-hero-image-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--omh-slate) 0%, var(--omh-navy) 100%);
}
.omh-hero-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .9rem;
  font-weight: 300;
  letter-spacing: .1em;
}
.omh-hero-trust-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--omh-white);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--omh-shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}
.omh-hero-trust-card .trust-icon { font-size: 1.8rem; }
.omh-hero-trust-card .trust-text {
  font-size: .88rem;
  font-weight: 500;
  color: var(--omh-charcoal);
  line-height: 1.4;
}
.omh-hero-trust-card .trust-text small {
  display: block;
  font-size: .72rem;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}


/* ═══════════════════════════════════════════
   SECTION BASICS
   ═══════════════════════════════════════════ */
.omh-section {
  padding: 100px 40px;
}
.omh-section--alt {
  background: var(--omh-champagne-light);
}
.omh-section--dark {
  background: var(--omh-navy);
  color: var(--omh-white);
}

.omh-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.omh-centered { text-align: center; }

.omh-section-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--omh-gold);
  margin-bottom: 16px;
}

.omh-section-title {
  font-family: var(--omh-font-display);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.omh-section-subtitle {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  max-width: 760px;
}
.omh-centered .omh-section-subtitle {
  margin: 0 auto;
}


/* ═══════════════════════════════════════════
   HOW IT WORKS GRID
   ═══════════════════════════════════════════ */
.omh-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.omh-hiw-step {
  text-align: center;
  padding: 40px 24px;
}
.omh-hiw-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.omh-hiw-title {
  font-family: var(--omh-font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.omh-hiw-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}


/* ═══════════════════════════════════════════
   BENEFIT CARDS
   ═══════════════════════════════════════════ */
.omh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto 0;
}
.omh-benefit-card {
  background: var(--omh-white);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--omh-shadow-soft);
  transition: box-shadow .3s;
}
.omh-benefit-card:hover {
  box-shadow: var(--omh-shadow-hover);
}
.omh-benefit-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.omh-benefit-name {
  font-family: var(--omh-font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.omh-benefit-desc {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}


/* ═══════════════════════════════════════════
   DUAL MECHANISM (P-Shot 100)
   ═══════════════════════════════════════════ */
.omh-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.omh-dual-card {
  background: var(--omh-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--omh-shadow-soft);
  border-top: 4px solid var(--omh-gold);
}
.omh-dual-role {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--omh-gold);
  margin-bottom: 10px;
}
.omh-dual-name {
  font-family: var(--omh-font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.omh-dual-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  margin-bottom: 20px;
}
.omh-dual-effects {
  list-style: none;
  padding: 0;
}
.omh-dual-effects li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .86rem;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  line-height: 1.5;
}
.omh-dual-effects li::before {
  content: '→';
  color: var(--omh-gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* Synergy box between dual cards */
.omh-synergy-box {
  background: var(--omh-navy);
  color: var(--omh-white);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  max-width: 1100px;
  margin: 32px auto 0;
}
.omh-synergy-box h3 {
  font-family: var(--omh-font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.omh-synergy-box p {
  font-size: .9rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,.8);
}


/* ═══════════════════════════════════════════
   WHAT TO EXPECT / SIDEBAR LAYOUT
   ═══════════════════════════════════════════ */
.omh-wte-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.omh-wte-content h3 {
  font-family: var(--omh-font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 40px;
}
.omh-wte-content h3:first-child {
  margin-top: 0;
}
.omh-wte-content p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  margin-bottom: 16px;
}
.omh-wte-sidebar {
  position: sticky;
  top: 100px;
}

/* Info cards */
.omh-info-card {
  background: var(--omh-white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--omh-shadow-soft);
  margin-bottom: 20px;
}
.omh-info-card-title {
  font-family: var(--omh-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--omh-border);
}
.omh-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  font-size: .88rem;
}
.omh-info-row:last-child { border-bottom: none; }
.omh-info-row .label {
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}
.omh-info-row .value {
  font-weight: 500;
  color: var(--omh-charcoal);
}

/* Candidate card */
.omh-candidate-card {
  background: var(--omh-white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--omh-shadow-soft);
}
.omh-candidate-card h4 {
  font-family: var(--omh-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.omh-candidate-list {
  list-style: none;
  padding: 0;
}
.omh-candidate-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: .86rem;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  line-height: 1.5;
}
.omh-candidate-list li::before {
  content: '✓';
  color: var(--omh-gold);
  font-weight: 600;
  font-size: .82rem;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.omh-faq-list {
  max-width: 840px;
  margin: 50px auto 0;
}
.omh-faq-item {
  border-bottom: 1px solid var(--omh-border);
}
.omh-faq-question {
  padding: 24px 0;
  font-family: var(--omh-font-display);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.omh-faq-toggle {
  font-size: 1.5rem;
  color: var(--omh-gold);
  transition: transform .3s;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}
.omh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.omh-faq-answer-inner {
  padding: 0 0 24px;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}
.omh-faq-item.open .omh-faq-answer {
  max-height: 600px;
}
.omh-faq-item.open .omh-faq-toggle {
  transform: rotate(45deg);
}


/* ═══════════════════════════════════════════
   TREATMENT CARDS (Related Treatments)
   ═══════════════════════════════════════════ */
.omh-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.omh-related-card {
  background: var(--omh-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--omh-shadow-soft);
  transition: all .3s;
  text-decoration: none;
  display: block;
}
.omh-related-card:hover {
  box-shadow: var(--omh-shadow-hover);
  transform: translateY(-2px);
}
.omh-related-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 500;
  background: var(--omh-champagne-light);
  color: var(--omh-gold);
}
.omh-related-name {
  font-family: var(--omh-font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--omh-charcoal);
}
.omh-related-desc {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  margin-bottom: 16px;
}
.omh-related-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--omh-gold);
}


/* ═══════════════════════════════════════════
   TREATMENT HUB CARDS (Concern page)
   ═══════════════════════════════════════════ */
.omh-treatment-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
}
.omh-treatment-hub-card {
  background: var(--omh-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--omh-shadow-soft);
  transition: all .3s;
  text-decoration: none;
  display: block;
}
.omh-treatment-hub-card:hover {
  box-shadow: var(--omh-shadow-hover);
  transform: translateY(-4px);
}
.omh-treatment-hub-image {
  height: 200px;
  background: linear-gradient(135deg, var(--omh-slate), var(--omh-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .8rem;
}
.omh-treatment-hub-content {
  padding: 28px;
}
.omh-treatment-hub-name {
  font-family: var(--omh-font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--omh-charcoal);
}
.omh-treatment-hub-desc {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
}


/* ═══════════════════════════════════════════
   SYNERGY CARDS (ED Trifecta)
   ═══════════════════════════════════════════ */
.omh-synergy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 60px auto 0;
}
.omh-synergy-card {
  background: var(--omh-white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--omh-shadow-soft);
  position: relative;
  overflow: hidden;
}
.omh-synergy-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.omh-synergy-card:nth-child(1) .omh-synergy-stripe { background: var(--omh-accent-wave); }
.omh-synergy-card:nth-child(2) .omh-synergy-stripe { background: var(--omh-accent-pelvic); }
.omh-synergy-card:nth-child(3) .omh-synergy-stripe { background: var(--omh-accent-regen); }

.omh-synergy-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.omh-synergy-name {
  font-family: var(--omh-font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.omh-synergy-role {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.omh-synergy-card:nth-child(1) .omh-synergy-role { color: var(--omh-accent-wave); }
.omh-synergy-card:nth-child(2) .omh-synergy-role { color: var(--omh-accent-pelvic); }
.omh-synergy-card:nth-child(3) .omh-synergy-role { color: var(--omh-accent-regen); }

.omh-synergy-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  margin-bottom: 20px;
}
.omh-synergy-effects {
  list-style: none;
  padding: 0;
}
.omh-synergy-effects li {
  font-size: .82rem;
  padding: 6px 0;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}
.omh-synergy-effects li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--omh-gold);
}


/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.omh-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: .84rem;
}
.omh-comparison-table th {
  background: var(--omh-navy);
  color: var(--omh-white);
  padding: 16px 14px;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .06em;
  text-align: left;
}
.omh-comparison-table td {
  padding: 14px;
  border-bottom: 1px solid var(--omh-border);
  font-weight: 300;
  color: var(--omh-charcoal-soft);
}
.omh-comparison-table tr:hover td {
  background: var(--omh-champagne-light);
}


/* ═══════════════════════════════════════════
   EDUCATION CALLOUT
   ═══════════════════════════════════════════ */
.omh-edu-callout {
  background: var(--omh-navy);
  color: var(--omh-white);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 32px 0;
}
.omh-edu-callout h4 {
  font-family: var(--omh-font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.omh-edu-callout p {
  font-size: .9rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,.85);
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.omh-btn-gold {
  display: inline-block;
  background: var(--omh-gold);
  color: var(--omh-white) !important;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.omh-btn-gold:hover {
  background: var(--omh-gold-dark);
  transform: translateY(-1px);
}

.omh-btn-outline {
  display: inline-block;
  border: 1px solid var(--omh-charcoal);
  color: var(--omh-charcoal) !important;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}
.omh-btn-outline:hover {
  background: var(--omh-charcoal);
  color: var(--omh-white) !important;
}

.omh-btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--omh-white) !important;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: all .3s;
  background: transparent;
}
.omh-btn-outline-light:hover {
  border-color: var(--omh-white);
  background: rgba(255,255,255,.1);
}


/* ═══════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════ */
.omh-bottom-cta {
  background: var(--omh-navy);
  color: var(--omh-white);
  text-align: center;
  padding: 100px 40px;
}
.omh-bottom-cta .omh-section-eyebrow { color: var(--omh-gold-light); }
.omh-bottom-cta .omh-section-title {
  color: var(--omh-white);
  margin-bottom: 16px;
}
.omh-bottom-cta p {
  font-size: .96rem;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.omh-cta-duo {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.omh-cta-note {
  font-size: .78rem !important;
  color: rgba(255,255,255,.4) !important;
  margin-top: 20px !important;
}


/* ═══════════════════════════════════════════
   STICKY CTA (MOBILE)
   ═══════════════════════════════════════════ */
.omh-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--omh-gold);
  text-align: center;
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform .4s;
  display: none;
}
.omh-sticky-cta.visible {
  transform: translateY(0);
}
.omh-sticky-cta a {
  color: var(--omh-white);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
}


/* ═══════════════════════════════════════════
   CONCERN BRIDGE
   ═══════════════════════════════════════════ */
.omh-concern-bridge {
  background: var(--omh-champagne-light);
  padding: 20px 40px;
}
.omh-concern-bridge-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: .85rem;
  color: var(--omh-charcoal-soft);
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.omh-concern-bridge-inner a {
  color: var(--omh-gold);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════
   FADE-UP ANIMATION
   ═══════════════════════════════════════════ */
.omh-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.omh-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .omh-treatment-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px 24px 60px;
  }
  .omh-synergy-grid {
    grid-template-columns: 1fr;
  }
  .omh-treatment-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .omh-nav-links { display: none; }

  .omh-treatment-hero {
    padding: 20px 24px 60px;
  }
  .omh-treatment-hero h1 {
    font-size: 2.4rem;
  }

  .omh-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .omh-section {
    padding: 60px 24px;
  }

  .omh-section-title {
    font-size: 2rem;
  }

  .omh-hiw-grid,
  .omh-benefits-grid,
  .omh-dual-grid,
  .omh-related-grid {
    grid-template-columns: 1fr;
  }

  .omh-wte-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .omh-wte-sidebar {
    position: static;
  }

  .omh-treatment-hub-grid {
    grid-template-columns: 1fr;
  }

  .omh-cta-duo {
    flex-direction: column;
    align-items: center;
  }

  .omh-sticky-cta {
    display: block;
  }

  .omh-comparison-table {
    font-size: .72rem;
  }
  .omh-comparison-table th,
  .omh-comparison-table td {
    padding: 10px 8px;
  }
}
