/* ================================================================
   OptivMD - Main Stylesheet
   Fonts: Poppins (headings) + Inter (body)
   Brand Color: #15BECF (teal)
   ================================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #15BECF;
  --primary-rgb: 21, 190, 207;
  --primary-dark: #0fa8ba;
  --primary-dark-rgb: 15, 168, 186;
  --primary-darker: #0a8a99;
  --primary-pale: #e0f7fa;
  --primary-bg: #f0fbfc;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --dark: #0d2d40;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  /* position: fixed;  */
  top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: 72px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--gray-600);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-darker); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-login {
  background: var(--white); color: var(--gray-700);
  padding: 10px 24px; border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.btn-login:hover { border-color: var(--gray-300); background: var(--gray-50); }
.btn-get-started {
  background: var(--primary); color: var(--white);
  padding: 10px 24px; border-radius: 8px;
  border: none; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.btn-get-started:hover { background: var(--primary-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  padding: 48px 0 48px;
  max-width: 1280px; margin: 0 auto;
  padding-left: 48px; padding-right: 48px;
}
.hero-intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--dark); margin-bottom: 18px;
  letter-spacing: -1px; white-space: nowrap;
}
.hero-subtitle {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--gray-500); margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 14px 28px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--primary);
}
.btn-hero-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--dark);
  padding: 14px 28px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--gray-200);
}

.btn-hero-secondary:hover { border-color: var(--gray-300); background: var(--gray-50); }

/* Hero product showcase - BIGGER cards with image on top */
.hero-products {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}

.hero-product-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: all 0.3s; cursor: pointer;
  text-decoration: none; color: inherit;
  overflow: hidden;
}
.hero-products a.hero-product-card{
  flex-direction: row-reverse;
}
.hero-product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(21,190,207,0.12);
  transform: translateY(-4px);
}
.hero-product-img {
  width: 43%;
  background: linear-gradient(135deg, #f0fbfc, #e0f7fa);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.hero-product-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-product-img .hero-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  transition: transform 0.4s;
}
.hero-product-card:hover .hero-emoji { transform: scale(1.1) translateY(-4px); }
.hero-product-img .hero-image {
 height: 340px;
 max-width: 100%;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  padding: 20px;
  transition: transform 0.4s;
  display: block;
  margin: 0;
}
.hero-product-img .hero-img-badge{display: none;}
.hero-product-card:hover .hero-image { transform: scale(1.1) translateY(-4px); }
.hero-product-info .hero-img-badge,  .hero-product-img .hero-img-badge{
  position: absolute; top: 14px; left: 14px;
  background: rgba(var(--primary-dark-rgb), 0.9); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-product-info {
  padding: 24px 28px 28px;
  width: 57%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-product-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.hero-product-info p {
  font-size: 0.88rem; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 14px;
}
.hero-product-link {
  font-size: 0.85rem; font-weight: 600; color: var(--primary-darker);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-product-link svg { transition: transform 0.2s; }
.hero-product-card:hover .hero-product-link svg { transform: translateX(4px); }

/* Secondary hero products (3 column, horizontal card) */
.hero-products-secondary {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 20px;
}
.hero-product-card-sm {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  display: flex; flex-direction: row; align-items: stretch;
  transition: all 0.3s; cursor: pointer;
  text-decoration: none; color: inherit;
  overflow: hidden;
}
.hero-product-card-sm:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(21,190,207,0.1);
  transform: translateY(-2px);
}
.hero-product-img-sm {
  width: 100px; min-height: 100%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, #f0fbfc, #e0f7fa);
}
.hero-product-img-sm .hero-emoji {
  font-size: 2.2rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
  transition: transform 0.4s;
}
.hero-product-card-sm:hover .hero-emoji { transform: scale(1.1); }
.hero-product-info-sm {
  padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-product-info-sm h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; font-weight: 700; color: var(--dark);
  margin-bottom: 3px; line-height: 1.3;
}
.hero-product-info-sm .hero-price {
  font-size: 0.75rem; color: var(--gray-400); margin-bottom: 6px;
}
.hero-product-info-sm .hero-price strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; font-weight: 800; color: var(--dark);
}
.hero-product-info-sm p {
  font-size: 0.76rem; color: var(--gray-500); line-height: 1.45;
  margin-bottom: 8px;
}

/* Hero pricing label */
.hero-price {
  font-size: 0.82rem; color: var(--gray-400); margin-bottom: 10px;
}
.hero-price strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--dark);
}

/* Show more button - centered */
.show-more-wrap {
  text-align: center; margin-bottom: 8px;
}
.show-more-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; color: var(--gray-500);
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  padding: 10px 20px; transition: all 0.2s;
  border-radius: 8px;
}
.show-more-btn:hover { color: var(--primary-darker); background: var(--gray-50); }
.show-more-btn svg { transition: transform 0.3s; }
.show-more-btn.expanded svg { transform: rotate(180deg); }

/* Hidden extra products */
.hero-products-extra {
  display: none;
  margin-bottom: 20px;
}
.hero-products-extra.visible {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeSlideDown 0.4s ease;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TRUST BAR (Auto-sliding) ── */
.trust-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before, .trust-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, white, transparent); }
.trust-bar::after { right: 0; background: linear-gradient(to left, white, transparent); }
.trust-slide-track {
  display: flex; align-items: center; gap: 48px;
  animation: trustScroll 30s linear infinite;
  width: max-content;
}
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar:hover .trust-slide-track { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; flex-shrink: 0;
}
.trust-item-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 20px; height: 20px; }
.trust-item-icon.teal { background: #e0f7fa; color: var(--primary); }
.trust-item-icon.blue { background: #dbeafe; color: #3b82f6; }
.trust-item-icon.green { background: #dcfce7; color: #22c55e; }
.trust-item-icon.purple { background: #ede9fe; color: #8b5cf6; }
.trust-item-icon.orange { background: #fff7ed; color: #f97316; }
.trust-item-icon.rose { background: #ffe4e6; color: #f43f5e; }
.trust-item-text strong {
  font-size: 0.8rem; font-weight: 700; color: var(--dark);
  display: block;
}
.trust-item-text span {
  font-size: 0.72rem; color: var(--gray-400);
}

/* ── LIFESTYLE BANNER ── */
.lifestyle-banner {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
}
.lifestyle-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,30,40,0.7) 0%, rgba(0,30,40,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(48px, calc((100% - 1280px)/2 + 48px));
  color: #fff;
}
.lifestyle-banner-overlay h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.lifestyle-banner-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0 0 24px;
  max-width: 480px;
}
.lifestyle-banner-overlay .btn-get-started {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}
.lifestyle-banner-overlay .btn-get-started:hover {
  background: #11a8b8;
}

/* ── RESULTS BANNER ── */
.results-banner {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e9dac 0%, #15BECF 50%, #0a8a99 100%);
  display: flex;
}
.results-banner-inner {
  display: flex; width: 100%; min-height: 480px;
}
.results-banner-content {
  position: relative; z-index: 2;
  width: 50%;
  padding: 80px 48px;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
}
.results-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.results-banner p {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  max-width: 480px; line-height: 1.7;
}
.results-banner-visual {
  width: 50%; position: relative;
  overflow: hidden;
}
.results-banner-visual img {
  position: absolute; inset: 0;
  height: 100%; width: 100%; object-fit: cover; object-position: top center;
}

/* ── HOW IT WORKS ── */
.section {
  padding: 80px 0;
}
.section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
}
.section-center { text-align: center; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.7; max-width: 520px;
}
.section-center .section-sub { margin: 0 auto; }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 32px); right: calc(12.5% + 32px);
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
  border-radius: 2px;
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(21,190,207,0.3);
  position: relative;
}
.step-card h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.84rem; color: var(--gray-500); line-height: 1.6;
}
.step-cta {
  text-align: center; margin-top: 48px;
}
.btn-dark {
  background: var(--dark); color: var(--white);
  padding: 14px 36px; border-radius: 8px; border: none;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--gray-700); }

/* ── PRESCRIPTION PRODUCTS CAROUSEL ── */
.products-section {
  background: var(--gray-50);
  padding: 80px 0;
}
.products-section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
}
.products-scroll-wrap {
  position: relative; margin-top: 48px;
  overflow: hidden;
}
.products-track {
  display: flex; gap: 24px;
  justify-content: center;
  transition: transform 0.5s ease;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s;
  /* cursor: pointer; */
  display: flex; flex-direction: column;
  max-width: 400px;
  width: 100%;
  /* flex-shrink: 0; */
  flex: 1;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.product-card-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0fbfc, #e0f7fa);
}
.product-card-img figure{
  margin: 0;
  display: block;
  height: 100%;
  max-width: 100%;

}
.product-card-img figure img{
  max-width: 100%;
  max-height: 100%;
}
.product-card-img .emoji-icon { font-size: 4rem; }
.product-new-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.product-card-body {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.product-price-line {
  font-size: 0.85rem; color: var(--gray-400); margin-bottom: 8px;
}
.product-price-line strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--dark);
}
.product-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
}
.product-card-body p {
  font-size: 0.82rem; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 20px; flex: 1;
}
.product-card-actions {
  display: flex; gap: 10px; margin-top: auto;
}
.btn-outline-sm {
  flex: 1; text-align: center;
  padding: 10px 16px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-700);
}
.btn-outline-sm:hover { border-color: var(--primary); color: var(--primary-darker); }
.btn-filled-sm {
  flex: 1; text-align: center;
  padding: 10px 16px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--primary);
  background: var(--primary); color: var(--white);
}
.btn-filled-sm:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.scroll-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.2s; z-index: 2;
  font-size: 1.2rem; color: var(--gray-600);
}
.scroll-arrow:hover { border-color: var(--primary); color: var(--primary); }
.scroll-arrow.left { left: -4px; }
.scroll-arrow.right { right: -4px; }

/* Carousel dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--primary); width: 28px; border-radius: 5px;
}

/* ── DOCTOR SECTION ── */
.doctor-section {
  padding: 80px 0;
}
.doctor-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.doctor-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary-darker);
  margin-bottom: 16px;
}
.doctor-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--dark);
  line-height: 1.15; margin-bottom: 24px;
}
.doctor-content p {
  font-size: 1rem; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 32px; max-width: 480px;
}
.doctor-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 480px;
}
.doctor-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  border-radius: 20px;
}

/* ── WHY OPTIVMD ── */
.why-section {
  padding: 80px 0;
}
.why-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 0;
}
.why-visual {
  background: linear-gradient(135deg, #f0fbfc, #e0f7fa);
  border-radius: 24px; padding: 50px 40px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(21,190,207,0.06);
}
.why-visual::after {
  content: '';
  position: absolute; bottom: -60px; left: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(21,190,207,0.04);
}
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  position: relative; z-index: 1;
}
.why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(21,190,207,0.12);
  border: 1px solid rgba(21,190,207,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.why-feature-text h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 4px;
}
.why-feature-text p {
  font-size: 0.8rem; color: var(--gray-400); line-height: 1.5;
}
.why-content { display: flex; flex-direction: column; gap: 10px; }
.why-content .section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary-darker); margin-bottom: 4px;
}
.why-content .section-title { margin-bottom: 8px; }
.why-content .section-sub {
  font-size: 0.95rem; color: var(--gray-500); line-height: 1.7;
  max-width: 480px; margin-bottom: 24px;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-pale); color: var(--primary-darker);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
  font-weight: 700;
}
.why-point-text h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--dark);
  margin-bottom: 4px;
}
.why-point-text p {
  font-size: 0.84rem; color: var(--gray-500); line-height: 1.6;
}

/* ── FAQ ── */
.faq-section {
  background: var(--gray-50);
  padding: 80px 0;
}
.faq-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; text-align: center; }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left;
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
  font-family: 'Inter', sans-serif; transition: color 0.2s;
}
.faq-question:hover { color: var(--primary-darker); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
  font-size: 1.1rem; color: var(--gray-400); line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--primary); border-color: var(--primary);
  color: var(--white); transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.88rem; color: var(--gray-500); line-height: 1.7;
}
.faq-cta { text-align: center; margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-cta p {
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
  margin-bottom: 16px;
}

/* ── FOOTER ── */
footer {
  background: var(--gray-900); padding: 60px 0 32px;
  color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 20px;
}
.footer-logo-img { height: 36px; filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: all 0.2s; font-size: 1rem;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.footer-details {
  padding: 32px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.footer-detail-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-detail-icon { color: var(--primary); font-size: 0.85rem; margin-top: 2px;}
.footer-detail-text { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-detail-text strong { color: rgba(255,255,255,0.6); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.footer-bottom a {
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/*-------old footer ends-----------*/
.footer-new { background: var(--gray-900); padding: 50px 0; color: var(--gray-300); font-family: 'Poppins', sans-serif; font-size: 0.87rem;}
.footer-new .footer-inner{max-width: 1280px; margin: 0 auto; padding: 0 48px;}
.footer-new a{color: var(--gray-300);}
.footer-new a:hover{color: var(--primary);}
.f-cntct i{color: var(--primary); width: 20px;}
.legiscript-img { width: 180px;}
.legiscript-img img { max-width: 100%; filter: drop-shadow(0 0 20px rgba(255,255,255,0.25)); display: inline-block;}
.f-btm-txt, .statement-sec{color: var(--gray-400);}
.statement-sec{border: 1px solid var(--gray-400);}
.logo-menu{font-size: 15px; margin-bottom: 48px;}
/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: none; flex-direction: column; gap: 4px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-600); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100); display: block;
}
.mobile-menu a:last-child { border: none; color: var(--primary-darker); font-weight: 600; }

/* ── GOAL MODAL ── */
.goal-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.goal-modal-overlay.active { display: flex; }
.goal-modal {
  background: var(--white); border-radius: 24px;
  width: 90%; max-width: 520px;
  padding: 48px 40px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.goal-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--gray-400);
  transition: color 0.2s; line-height: 1;
}
.goal-modal-close:hover { color: var(--dark); }
.goal-modal h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--dark);
  text-align: center; margin-bottom: 32px;
}
.goal-options { display: flex; flex-direction: column; gap: 16px; }
.goal-option {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-radius: 16px;
  background: var(--primary-bg); border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.25s;
  text-decoration: none; color: var(--dark);
}
.goal-option:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
  transform: translateX(4px);
}
.goal-option-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(21,190,207,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.goal-option-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  flex: 1;
}
.goal-option-arrow {
  font-size: 1.2rem; color: var(--gray-400);
  transition: color 0.2s;
}
.goal-option:hover .goal-option-arrow { color: var(--primary); }


/*  States and pharmacy modal */

.modal-sec {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(2px);
}

.modal-content-sec {
    background: #fff;
    margin: 0 auto;
    max-height: 95vh;
    width: 90%;
    max-width: 640px;
    border-radius: 8px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.modal-content-sec .modal-body{
  max-height: calc(80vh - 66px);
  overflow: auto;
  font-weight: 400;
  min-height: 250px;
}

.modal-content-sec .modal-body a{
  text-decoration: none;
  color: var(--primary);
  transition: all 300ms ease-in-out 0s;
}
.modal-content-sec .modal-body a:hover{
  color: var(--primary-darker);
}
.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--primary);
    border: 2px solid #000;
    transform: translate(50%, -50%);
}

.states-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.modal-content-sec .modal-header{
  border-bottom: 1px solid #d3d3d3;
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 640px) {
  .states-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}
.hero-actions{gap: 9px;}
.btn-hero-primary, .btn-hero-secondary{
    padding: 9px 16px;
}
}
/* -- Privacy Policy -- */

  .content-sec {
    font-family: 'Poppins', sans-serif;
  }
  .content-sec h1 {
      font-size: 24px;
      color: #000;
      margin-bottom: 20px;
    }
 
    .content-sec h1.main-heading {
      font-size: 32px;
      color: #15becf;
    }
    .content-sec h2 {
      font-size: 15px;
      font-weight: 700;
      color: #000;
      margin-top: 28px;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
 
    .content-sec h3 {
      font-size: 15px;
      font-weight: 700;
      color: #000;
      margin-top: 18px;
      margin-bottom: 4px;
    }
 
    .content-sec p { margin-bottom: 12px; }
 
    .content-sec a { color: #000; }
 
    .content-sec ol {
      padding-left: 20px;
      margin-bottom: 12px;
    }
    .content-sec li { margin-bottom: 4px; }
 
    .content-sec ul{
      list-style: none;
      padding: 0;
      margin: 10px 0 18px 0;
    }
    .content-sec ul li{
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
      font-size: 1rem;
      color: #000;
      line-height: 1.8;
    }
    .content-sec ul li:before{
        content: '';
        position: absolute;
        left: 0;
        top: 11px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #000;
    }
    .content-sec .toc {
      list-style: decimal;
      padding-left: 20px;
      margin-bottom: 28px;
    }
 
    .content-sec .toc a {
      color: #000;
      text-decoration: none;
    }
 
    .content-sec .toc a:hover { text-decoration: underline; }
 
    .content-sec .notice {
      border-left: 3px solid #000;
      padding: 10px 14px;
      margin: 16px 0;
      background: #f3f3f3;
      font-size: 13px;
    }
 
    .content-sec table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: 14px;
    }
 
    .content-sec th {
      background: #a1a1a1;
      color: #fff;
      text-align: left;
      padding: 8px 10px;
    }
 
    .content-sec td {
      padding: 8px 10px;
      border: 1px solid #ddd;
      vertical-align: top;
    }
 
    /* .content-sec tr:nth-child(even) td { background: #f9f9f9; } */
 
    .content-sec .last-updated {
      margin-top: 36px;
      font-size: 13px;
      color: #000;
    }
 
    .content-sec hr {
      border: none;
      border-top: 1px solid #e0e0e0;
      margin: 32px 0;
    }

    .opt-out-box {
      border: 1px solid #e4e4e4;
      border-radius: 6px;
      padding: 10px 14px;
      margin: 24px 0;
      background: #fafafa;
    }

    .opt-out-box h2 {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .opt-out-box p {
      font-size: 13px;
      margin-bottom: 16px;
    }

    .btn-opt-out {
      display: inline-block;
      background: #000;
      color: #fff;
      font-family: Arial, sans-serif;
      font-size: 14px;
      font-weight: 700;
      padding: 10px 24px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.3px;
    }

    .btn-opt-out:hover {
      background: #000;
      color: #fff;
    }
/* ── RESPONSIVE ── */

@media(min-width: 1682px) {
  .lifestyle-banner {
        height: 740px;
  }
}
@media(max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-inner{padding-left: 24px; padding-right: 24px;}
  .hero { padding: 48px 24px 48px; }
 .hero-product-info{padding: 24px 15px 28px;}
  .hero-products-secondary { grid-template-columns: 1fr 1fr; }
  .hero-products-extra.visible { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-bar { padding: 16px 0; }
  .section { padding: 64px 0; }
  .section-inner { padding: 0 24px; }
  .why-section { padding: 64px 0;}
  .why-inner { padding: 0 24px; }
  .products-section { padding: 64px 0; }
  .products-section-inner { padding: 0 24px; }
  .faq-section { padding: 64px 0; }
  .faq-inner { padding: 0 24px; }
  footer { padding: 48px 0 24px; }
  .footer-inner { padding: 0 24px; }
  .footer-details { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-banner { height: 480px; }
  .lifestyle-banner-overlay { padding: 0 24px; }
  .results-banner { flex-direction: column; }
  .results-banner-inner { flex-direction: column; min-height: auto; }
  .results-banner-content { width: 100%; padding: 60px 24px; }
  .results-banner-visual { width: 100%; height: 300px; }
  .doctor-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .doctor-section { padding: 64px 0; }
  .doctor-visual { height: 360px; }
  .steps-grid{margin-top: 45px;}
  .step-cta, .faq-list, .faq-cta{margin-top: 40px;}
  .logo-menu{margin-bottom: 40px;}
}

@media(max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner{padding-left: 0; padding-right: 0;}
  .hero-subtitle{font-size: 1rem;}
  .hero{padding: 30px 24px;}
  .nav-right .btn-login, .nav-right .btn-get-started { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; white-space: normal;}
  .why-section, .doctor-section, .section, .products-section, .faq-section { padding: 30px 0;}
  /* .hero-product-img { height: 160px; } */
  .hero-products-secondary { grid-template-columns: 1fr; }
   .hero-products { grid-template-columns: 1fr; margin-bottom: 0;}
   .hero-products a.hero-product-card{flex-direction: column;}
  .hero-products-extra.visible { grid-template-columns: 1fr; }
  .hero-product-img .hero-image{height: 350px;}
  .hero-product-img, .hero-product-info{width: 100%;}
  .hero-product-card-sm { flex-direction: column; }
  .hero-product-img-sm { width: 100%; min-height: 100px; height: 100px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .lifestyle-banner { height: 400px; }
  .results-banner-visual { height: 240px; }
  .doctor-visual { height: 280px; }
  .doctor-content h2 { font-size: 2rem; }
  .scroll-arrow { display: none; }
  .footer-details { grid-template-columns: 1fr; }
  .goal-modal { padding: 36px 24px; }
  .goal-modal h3 { font-size: 1.3rem; }
  .goal-option { padding: 14px 18px; }
  .products-track{flex-direction: column; align-items: center;}
  .goal-option-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .hero-product-img .hero-img-badge{display: block;}
  .hero-product-info .hero-img-badge{display: none;}
  .steps-grid{margin-top: 35px;}
  .step-cta, .faq-list, .faq-cta{margin-top: 30px;}
  .logo-menu{margin-bottom: 30px;}
  .footer-new .footer-inner{padding: 0 24px;}
}
