/* ============================================
   Man UnPaused — Complete Stylesheet
   Design pattern: PCOS Sisters layout
   Brand: Man UnPaused andropause clinic
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #1B2A4A;
  --navy-light: #243560;
  --amber: #D4913D;
  --amber-hover: #e0a04e;
  --copper: #B8733E;
  --canvas: #F5F1EB;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #e8e8e8;
  --gray-300: #cccccc;
  --gray-600: #666666;
  --gray-800: #333333;
  --text: #333333;
  --text-light: #666666;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-btn: 1px 1px 10px 0px rgba(0, 0, 0, 0.28);
  --shadow-btn-hover: 1px 1px 20px 2px rgba(212, 145, 61, 0.45);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  --radius-pill: 30px;
  --radius-card: 12px;
  --radius-lg: 16px;

  --transition: 0.3s all ease;

  /* --- Aliased variables used by subpages --- */
  --color-canvas: #F5F1EB;
  --color-vitality: #D4913D;
  --color-steady: #666666;
  --color-quiet: #999999;
  --color-grounded: #1B2A4A;
  --color-whisper: #e5e7eb;
  --font-heading: 'Instrument Serif', Georgia, serif;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Icon Utilities ---------- */
.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--xs {
  width: 14px;
  height: 14px;
}

/* ---------- Buttons (PCOS Sisters pill style) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--amber:hover {
  background: var(--amber-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: scale(1.03);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-btn);
}

.btn--white:hover {
  background: var(--gray-100);
  box-shadow: var(--shadow-btn-hover);
  transform: scale(1.03);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 20px 2px rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.btn--sm {
  font-size: 13px;
  padding: 8px 18px;
}

.btn--lg {
  font-size: 17px;
  padding: 16px 36px;
}

/* ========================================
   UTILITY BAR
   ======================================== */
.utility-bar {
  background: var(--navy);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.utility-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* ========================================
   SITE HEADER / MAIN NAV
   ======================================== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 40px;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.site-logo__mark {
  color: var(--amber);
}

.site-logo--footer {
  color: var(--white);
  font-size: 24px;
  display: inline-block;
  margin-bottom: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navigation */
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: var(--transition);
}

.main-nav__list > li > a:hover {
  color: var(--amber);
  background: var(--canvas);
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}

.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.dropdown li a:hover {
  background: var(--canvas);
  color: var(--amber);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: var(--navy);
  padding: 80px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Placeholder Images */
.placeholder-image {
  background: linear-gradient(135deg, #1B2A4A 0%, #243656 50%, #1B2A4A 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(245, 241, 235, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.placeholder-image::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(212, 145, 61, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.placeholder-image--hero {
  width: 100%;
  max-width: 480px;
  min-height: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
}

.placeholder-image--video {
  width: 100%;
  min-height: 350px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  cursor: pointer;
}

.placeholder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B2A4A, #243656);
  color: #D4913D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

/* ========================================
   SECTIONS — General
   ======================================== */
.section {
  padding: 80px 0;
}

.section--white {
  background: var(--white);
}

.section--canvas {
  background: var(--canvas);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--amber);
}

.section-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.section-header--light .section-heading {
  color: var(--white);
}

.section-subheading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 16px;
}

/* ========================================
   WHO WE ARE
   ======================================== */
.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-we-are__text .section-label {
  margin-bottom: 12px;
}

.who-we-are__text .section-heading {
  margin-bottom: 8px;
}

.who-we-are__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 28px;
}

.who-we-are__text .btn {
  margin-top: 4px;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--amber);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--copper);
  gap: 8px;
}

/* ========================================
   FEATURES / WHY CHOOSE US
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-block {
  text-align: center;
  padding: 24px;
}

.feature-block__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 145, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--amber);
}

.feature-block__icon svg {
  width: 30px;
  height: 30px;
}

.feature-block__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-block__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.icon--star {
  width: 18px;
  height: 18px;
  color: var(--amber);
  fill: var(--amber);
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ========================================
   SEEN IN / PRESS
   ======================================== */
.seen-in {
  padding: 48px 0;
}

.seen-in__title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.seen-in__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.press-badge {
  padding: 14px 28px;
  background: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-300);
  border: 1px solid var(--gray-200);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-col__heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col__heading--mt {
  margin-top: 24px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

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

.footer-links--contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links--contact svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--amber);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form__input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.newsletter-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form__input:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom__links a:hover {
  color: var(--amber);
}

/* ========================================
   WAVE DIVIDER (optional SVG separator)
   ======================================== */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ========================================
   SUBPAGE NAVIGATION (.nav classes)
   Mirrors site-header styles for subpages
   ======================================== */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Subpage Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-logo .un {
  color: var(--amber);
}

.nav-logo .play-icon {
  width: 18px;
  height: 18px;
  color: var(--amber);
  margin: 0 2px;
}

/* Subpage Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--amber);
  background: var(--canvas);
}

/* Subpage Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Subpage Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .chevron {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}

.nav-dropdown-menu li a:hover {
  background: var(--canvas);
  color: var(--amber);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  background: var(--canvas);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-badge i, .trust-badge svg {
  color: var(--amber);
  width: 20px;
  height: 20px;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
}

/* ========================================
   BREADCRUMB NAV
   ======================================== */
.breadcrumb-nav {
  background: var(--canvas);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumb-nav a {
  color: var(--amber);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb-nav a:hover {
  color: var(--copper);
}
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--gray-300);
}
.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}

/* ========================================
   SCROLL-MARGIN FOR ANCHOR TARGETS
   ======================================== */
#fatigue,
#weight,
#libido,
#mood,
#brain-fog,
#sleep,
#muscle,
#hair {
  scroll-margin-top: 120px;
}

/* ========================================
   DISABLED LINK STYLE
   ======================================== */
.disabled-link {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.disabled-link::after {
  content: 'Soon';
  font-size: 9px;
  background: var(--amber);
  color: white;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  pointer-events: none;
}

/* ========================================
   SCROLL ANIMATIONS (fade-in-up / stagger)
   ======================================== */

/*
 * Elements start visible by default (no-JS fallback).
 * Once JS adds .js-ready to <html>, non-.visible elements hide.
 * IntersectionObserver adds .visible to reveal them.
 */
.js-ready .fade-in-up:not(.visible) {
  opacity: 0;
  transform: translateY(24px);
}

.fade-in-up {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered children */
.js-ready .stagger:not(.visible) {
  opacity: 0;
  transform: translateY(24px);
}

.stagger {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: if JS fails or takes too long, show everything after 3s */
@keyframes force-visible {
  to { opacity: 1; transform: translateY(0); }
}

.js-ready .fade-in-up:not(.visible),
.js-ready .stagger:not(.visible) {
  animation: force-visible 0s 3s forwards;
}

/* ---------- Branded Placeholders ---------- */
.branded-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.branded-placeholder svg,
.branded-placeholder i {
  width: 48px;
  height: 48px;
  color: var(--amber);
  opacity: 0.7;
}
.branded-placeholder--provider {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 16px;
}
.branded-placeholder--video {
  aspect-ratio: 16/9;
  width: 100%;
  cursor: pointer;
}
.branded-placeholder--hero {
  min-height: 300px;
  width: 100%;
}

/* ---------- Trust Proof Section ---------- */
.trust-proof {
  padding: 48px 0;
  background: var(--canvas);
}
.trust-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.trust-proof__stat {
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}
.trust-proof__label {
  font-size: 14px;
  color: var(--text-light);
}

@media(max-width:599px) {
  .trust-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE — Tablet (< 992px)
   ======================================== */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  /* Subpage nav toggle */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li > a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }

  /* Subpage mobile dropdowns */
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 0 20px;
    background: var(--canvas);
    border-radius: 0;
  }

  .nav-dropdown.is-open > .nav-dropdown-menu {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav__list > li > a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }

  /* Mobile dropdowns */
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 0 20px;
    background: var(--canvas);
    border-radius: 0;
  }

  .has-dropdown.is-open > .dropdown {
    display: block;
  }

  .has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Hero */
  .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__headline {
    font-size: 40px;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image {
    order: -1;
  }

  .placeholder-image--hero {
    max-width: 320px;
    aspect-ratio: 1;
  }

  /* Who We Are */
  .who-we-are {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section-heading {
    font-size: 34px;
  }

  .cta-banner__heading {
    font-size: 34px;
  }
}

/* ========================================
   RESPONSIVE — Mobile (< 600px)
   ======================================== */
@media (max-width: 599px) {
  .utility-bar__inner {
    justify-content: center;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 28px;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner__heading {
    font-size: 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .seen-in__logos {
    gap: 16px;
  }

  .press-badge {
    padding: 10px 20px;
    font-size: 13px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ---------- Science Callouts (GEO) ---------- */
.science-callout {
  background: var(--canvas);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.science-callout strong {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.science-callout cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-light);
  font-style: normal;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  overflow-x: auto;
  margin: 0 auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
}

/* ---------- Page Hero Breadcrumb ---------- */
.page-hero__breadcrumb {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: rgba(245, 241, 235, 0.6);
  margin-bottom: var(--space-lg, 1.5rem);
}
.page-hero__breadcrumb a {
  color: rgba(245, 241, 235, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover {
  color: var(--color-vitality, #D4913D);
}
.page-hero__breadcrumb span {
  color: rgba(245, 241, 235, 0.85);
}

/* Sticky Mobile CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy, #1B2A4A);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-cta-bar.is-visible {
  transform: translateY(0);
}
.mobile-cta-bar__inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.mobile-cta-bar__btn--primary {
  background: var(--amber, #D4913D);
  color: #fff;
}
.mobile-cta-bar__btn--secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }
}
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}
