/*
Theme Name: Virtual - Child
Version: 587
Description: A child theme of DMM by Almina
Template: mts_schema
Text Domain: schema
*/

/* Carousel */
@import url("../mts_schema/style.css");

/* general */

* {
    box-sizing: border-box;
}

#page {
    padding: 0px;
}

/* ========================================
   VirtuallyWell — ro.co-style layout
   ======================================== */

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

:root {
  --navy: #283654;
  --teal: #93D2C7;
  --charcoal: #191B1D;
  --offwhite: #FDDFFE;
  --lightgrey: #DFDFDF;
  --white: #ffffff;
  --black: #000000;
  --font: 'IBM Plex Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--charcoal); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.25;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary-pill {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary-pill:hover { background: #7ec4b7; transform: translateY(-1px); }
.btn-dark-pill {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark-pill:hover { background: var(--navy); transform: translateY(-1px); }
.btn-white-pill {
  display: inline-block;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-white-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* ========================
   ANNOUNCEMENT BAR
   ======================== */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  height: 40px;
  font-size: 13px;
  transition: transform .3s ease, height .3s ease, padding .3s ease;
  position: relative;
  z-index: 100;
}
.announcement-bar.hidden {
  transform: translateY(-100%);
  height: 0;
  padding: 0;
  overflow: hidden;
}
.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-social { display: flex; gap: 12px; }
.announcement-social a { color: var(--white); opacity: .6; transition: opacity .2s; }
.announcement-social a:hover { opacity: 1; }
.announcement-center { font-weight: 400; }
.announcement-center strong { color: var(--teal); }
.announcement-selectors { display: flex; gap: 8px; }
.announcement-selectors select {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  padding: 2px 6px;
  font-size: 11px;
  border-radius: 3px;
  font-family: var(--font);
}
.announcement-selectors select option { color: var(--black); }

/* ========================
   NAVIGATION
   ======================== */
.site-nav {
  background: #FDDFFE;
  border-bottom: none;
  box-shadow:  -6px 9px 14px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 99;
  height: 80px;
  transition: height .3s ease, box-shadow .3s ease;
  z-index: 999;
}
.site-nav.scrolled {
  height: 55px;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left {display: flex;align-items: center;gap: 36px;flex: 1 1 100%;}
.nav-logo {display: flex;align-items: center;gap: 8px;max-width: 70px;}
.logo-img { height: 36px; width: auto; transition: height .3s; }
.site-nav.scrolled .logo-img { height: 28px; }
.logo-text { font-size: 1.15rem; color: var(--navy); letter-spacing: -.3px; }
.logo-text strong { font-weight: 700; }

.nav-links {display: flex;align-items: center;margin: 0px auto;margin-right: 0px;}

/* ul/li nav menu — WP-compatible structure */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item { position: relative; }
.menu-item > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 20px 0;
  display: block;
  transition: color var(--transition);
}
.menu-item > a:hover { color: var(--teal); }

/* Submenu dropdown */
#siteNav .sub-menu {
  position: absolute;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  min-width: 240px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 98;
  top: 100% !important;
  right: auto !important;
}
.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
}
.sub-menu li a:hover {
  background: rgba(147,210,199,.1);
  color: var(--navy);
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-icon-btn { color: var(--charcoal); padding: 6px; border-radius: 8px; transition: background var(--transition); }
.nav-icon-btn:hover { background: rgba(0,0,0,.05); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ========================
   HERO
   ======================== */
.hero-section { padding: 48px 0 56px; background: var(--white); }
.hero-layout {}
.hero-left h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.hero-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-cards {display: grid;grid-template-columns: 1fr 1fr;gap: 10px;margin-bottom: 10px;}
.hero-card {
  background: #f5f5f5;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: box-shadow .3s;
}
.hero-card:hover { box-shadow: var(--shadow-md); }
.hero-card-label {font-size: 25px;font-weight: 500;color: var(--charcoal);margin-bottom: 12px;}
.hero-card img {height: 300px !important;object-fit: contain;align-self: flex-end;margin-top: auto;}
.hero-card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.hero-card-tag {
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-card-arrow { font-size: 20px; color: var(--charcoal); }

.hero-quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-quick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f5f5f5;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: background var(--transition);
}
.hero-quick:hover { background: #eee; }
.quick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-right {padding-top: 0px;}
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}
.hero-checklist li svg { flex-shrink: 0; margin-top: 2px; }
.hero-right .btn-primary-pill { margin-top: 20px; }

/* ========================
   PRODUCT ROW
   ======================== */
.product-row-section { padding: 56px 0 40px; }
.product-row-featured { padding: 64px 0 48px; background: var(--white); border-top: 1px solid #eee; }
.product-row-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.row-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--lightgrey);
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  background: var(--white);
}
.row-tab:hover { border-color: var(--charcoal); }
.row-tab.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.product-row-scroll { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; margin: 0 -24px; padding: 0 24px; }
.product-row-scroll::-webkit-scrollbar { display: none; }
.product-row { display: flex; gap: 16px; padding-bottom: 8px; }

.p-card {
  flex: 0 0 220px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  position: relative;
}
.p-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Large product cards for featured row */
.p-card-lg { flex: 0 0 260px; }
.product-row-lg { gap: 20px; }

.p-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .3px;
  z-index: 2;
}
.p-card-img {
  background: #f8f8f8;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.p-card-img-lg { height: 240px; padding: 28px 20px; }
.p-card-img img { max-height: 140px; object-fit: contain; }
.p-card-img-lg img { max-height: 200px; }
.p-card-info { padding: 16px; }
.p-card-info h3 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.p-card-desc { font-size: 12px; color: #888; margin-bottom: 8px; line-height: 1.4; }
.p-card-price { font-size: 13px; color: var(--charcoal); margin-bottom: 4px; }
.p-card-price strong { font-weight: 700; }
.p-card-member { font-size: 12px; color: var(--teal); font-weight: 500; margin-bottom: 12px; }
.p-card-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--charcoal);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--transition);
}
.p-card-btn:hover { background: var(--charcoal); color: var(--white); }
.product-row-disclaimer { font-size: 11px; color: #999; margin-top: 20px; line-height: 1.5; }

/* ========================
   LIFESTYLE BANNER
   ======================== */
.lifestyle-banner {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lifestyle-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.lifestyle-banner-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 600px;
}
.lifestyle-banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.lifestyle-banner-content p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ========================
   PROBLEM SECTION
   ======================== */
.problem-section {padding: 80px 0;background: #283654;}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.problem-text p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}
.problem-text .btn-primary-pill {margin-top: 12px;color: #000;}
.journey-visual {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: rgba(147,210,199,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-path { width: 100%; height: 100%; }

/* ========================
   FOUR PILLARS
   ======================== */
.pillars-section { padding: 80px 0; background: var(--white); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pillar-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid #eee;
  transition: transform .3s, box-shadow .3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon { margin-bottom: 16px; }
.pillar-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar-card p { font-size: 13px; color: #555; line-height: 1.6; }

/* ========================
   HOW IT WORKS
   ======================== */
.steps-section { padding: 80px 0; background: #f8f8f8; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.step-card { text-align: center; padding: 32px 20px; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* ========================
   BMI SLIDER
   ======================== */
.bmi-section { padding: 80px 0; background: var(--white); }
.bmi-widget {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #f0faf8 0%, var(--white) 100%);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.bmi-vial-img {
  max-height: 280px;
  margin: 0 auto;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.bmi-slider-panel h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.bmi-result { text-align: center; margin-bottom: 24px; }
.bmi-loss { font-size: 4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.bmi-unit { font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-left: 4px; }
.bmi-label { font-size: 14px; color: #555; margin-bottom: 8px; display: block; }
.bmi-input-row { display: flex; align-items: center; gap: 16px; }
.weight-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--lightgrey);
  outline: none;
}
.weight-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.weight-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  border: none;
}
.weight-display { font-size: 1.15rem; font-weight: 700; color: var(--navy); min-width: 80px; }

.bmi-visual { display: flex; justify-content: center; align-items: center; }
.progress-svg { width: 120px; height: 120px; }
.progress-circle { transition: stroke-dashoffset .5s ease; transform: rotate(-90deg); transform-origin: center; }
.bmi-progress-ring { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.progress-label { position: absolute; font-size: 1.5rem; font-weight: 700; color: var(--teal); }

/* ========================
   WHY DIFFERENT
   ======================== */
.why-section { padding: 80px 0; background: var(--navy); color: var(--white); }
.why-section .section-heading { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .3s;
}
.why-card:hover { border-color: var(--teal); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; }

/* ========================
   SAFETY & TRUST
   ======================== */
.trust-section { padding: 80px 0; background: #f8f8f8; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.trust-card:hover { transform: translateY(-4px); }
.trust-icon { margin-bottom: 14px; }
.trust-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: #555; line-height: 1.6; }

/* ========================
   MID CTA
   ======================== */
.mid-cta { padding: 72px 0; background: var(--teal); text-align: center; }
.mid-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ========================
   SOCIAL PROOF
   ======================== */
.social-proof-section { padding: 80px 0; background: #f5f5f5; }
.social-proof-section .section-heading { max-width: 700px; margin-left: auto; margin-right: auto; }
.social-proof-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.proof-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proof-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: #ddd;
}
.proof-photo img { width: 100%; height: 100%; object-fit: cover; }

.proof-stat {
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-stat-inner { text-align: center; padding: 28px 20px; }
.proof-logo {height: 28px;margin: 0 auto 20px;opacity: .25;max-width: 100px;}

/* Testimonial carousel in proof panel */
.testimonial-carousel { position: relative; min-height: 80px; margin-bottom: 12px; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slide.active { opacity: 1; position: relative; }
.testimonial-slide blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  padding: 0px;
  margin: 0px;
}
.testimonial-dots { display: flex; justify-content: center; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lightgrey);
  transition: background .2s;
}
.dot.active { background: var(--navy); }

.stats-row { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.25rem; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 13px; color: #555; max-width: 200px; }

/* ========================
   FINAL CTA
   ======================== */
.final-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,27,29,.75);
}
.final-cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; padding: 60px 24px; }
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ========================
   FOOTER
   ======================== */
.site-footer { background: var(--white); border-top: 1px solid #eee; padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13px; color: #666; margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--charcoal); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid #eee;
  gap: 24px;
  flex: 1;
  width: 100%;
}
.footer-logo { height: 24px; opacity: .35; }
.footer-bottom-center p { font-size: 12px; color: #999; }
.footer-address { font-size: 11px; color: #aaa; margin-top: 4px; }
.footer-disclaimer {/* max-width: 500px; */font-size: 11px;color: #bbb;line-height: 1.5;margin-top: 6px;}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: #999; transition: color var(--transition); }
.footer-social a:hover { color: var(--charcoal); }

/* ========================
   MOBILE DRAWER
   ======================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transition: right .3s ease;
  box-shadow: -4px 0 32px rgba(0,0,0,.12);
}
.mobile-drawer.open { right: 0; }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.drawer-title { font-size: 16px; color: var(--navy); }
.drawer-title strong { font-weight: 700; }
.drawer-close { font-size: 28px; color: var(--charcoal); line-height: 1; }
.drawer-links a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid #f5f5f5;
}
.drawer-links a:hover { background: #fafafa; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-quick-links { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bmi-widget { grid-template-columns: 1fr 1fr; }
  .bmi-vial { display: none; }
  .social-proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .announcement-social,
  .announcement-selectors { display: none; }
  .announcement-inner { justify-content: center; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-left h1 { font-size: 2rem; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-quick-links { grid-template-columns: 1fr; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-graphic { order: -1; }

  .pillars-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }

  .bmi-widget { grid-template-columns: 1fr; padding: 28px 20px; }
  .bmi-visual { order: -1; }

  .lifestyle-banner { height: 320px; }
  .lifestyle-banner-content { padding: 24px; }
  .lifestyle-banner-content h2 { font-size: 24px; }

  .stats-row { gap: 24px; }
  .stat-number { font-size: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-left h1 { font-size: 1.75rem; }
  .section-heading { font-size: 1.35rem; }
  .proof-photos { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/*New*/
ul#menu-main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    gap: 26px;
}

.menu-item-has-children > a:after {
    right: -10px;
}

.hero-layout > div {
    justify-content: space-between;
    margin-bottom: 20px;
}

section.problem-section * {
    color: #fff;
}

blockquote:after {
    opacity: 0;
}