/* =============================================
   TLC PEPTIDES — MAIN STYLESHEET
   Fonts: Playfair Display (headings) + DM Sans (body)
   Palette: Deep Navy, Vibrant Teal, Gold, Rose
============================================= */

:root {
  --navy:      #0A1628;
  --navy-light:#0F2040;
  --teal:      #00D4AA;
  --teal-dark: #00A882;
  --teal-light:#E6FAF7;
  --gold:      #F5C842;
  --gold-dark: #D4A800;
  --rose:      #FF6B8A;
  --rose-dark: #E0405E;
  --white:     #FFFFFF;
  --off-white: #F8F9FB;
  --gray-100:  #F1F3F6;
  --gray-200:  #E2E6EE;
  --gray-400:  #94A0B5;
  --gray-600:  #566278;
  --gray-800:  #2D3748;
  --text:      #0A1628;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 64px rgba(10,22,40,0.18);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,170,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

.btn-hero {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
}
.btn-hero:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245,200,66,0.45);
}

.btn-outline-hero {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ---- NAV ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

#navbar.scrolled {
  background: rgba(10,22,40,0.98);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.chevron {
  font-style: normal;
  font-size: 12px;
  transition: transform var(--transition);
  display: inline-block;
}
.has-dropdown:hover .chevron { transform: rotate(90deg); }

/* Invisible bridge fills the 8px gap so the dropdown stays open
   while the cursor travels from the parent link down to the menu */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown li a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-ctas .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.25); padding: 8px 20px; }
.nav-ctas .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.nav-ctas .btn-primary { padding: 10px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner { padding: 32px 24px; }
.mobile-section { margin-bottom: 32px; }
.mobile-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.mobile-section a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-section a:hover { color: var(--teal); }
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.mobile-ctas .btn { width: 100%; justify-content: center; }
.mobile-ctas .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.25); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,170,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245,200,66,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 10% 60%, rgba(255,107,138,0.1) 0%, transparent 50%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  animation: heroFadeUp 0.9s ease-out both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,170,0.15);
  border: 1px solid rgba(0,212,170,0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: heroFadeUp 0.9s 0.1s ease-out both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(56px, 9vw, 110px);
  color: var(--white);
  animation: heroFadeUp 0.9s 0.15s ease-out both;
}
.hero-title .line2 {
  display: block;
  font-size: clamp(40px, 7vw, 80px);
  color: var(--teal);
  animation: heroFadeUp 0.9s 0.2s ease-out both;
}
.hero-title .line3 {
  display: block;
  font-size: clamp(22px, 4vw, 44px);
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-style: italic;
  animation: heroFadeUp 0.9s 0.25s ease-out both;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: heroFadeUp 0.9s 0.3s ease-out both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: heroFadeUp 0.9s 0.35s ease-out both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: heroFadeUp 0.9s 0.4s ease-out both;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease-out both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--teal);
  padding: 14px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  padding: 0 24px;
}
.trust-inner .dot { opacity: 0.4; font-size: 18px; }

/* ---- SECTION HELPERS ---- */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.section-eyebrow.centered { text-align: center; }
.section-eyebrow.light { color: var(--teal); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 56px;
}
.section-sub.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- ABOUT STRIP ---- */
.about-strip {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text h2 em { color: var(--teal-dark); font-style: italic; }
.about-text p {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  flex-shrink: 0;
}
.about-card span { font-size: 15px; font-weight: 500; line-height: 1.4; }

.card-teal  { background: var(--teal-light); }
.card-teal strong { color: var(--teal-dark); }
.card-teal span { color: var(--teal-dark); }

.card-gold  { background: #FFF9E6; }
.card-gold strong { color: var(--gold-dark); }
.card-gold span { color: #8B6800; }

.card-rose  { background: #FFF0F4; }
.card-rose strong { color: var(--rose-dark); }
.card-rose span { color: #9C2840; }

/* ---- PROGRAMS GRID ---- */
.programs {
  padding: 100px 0;
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.program-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  display: block;
}
.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-card:hover::before { opacity: 1; }

.prog-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.program-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.prog-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.prog-weightloss { background: linear-gradient(135deg, #E6FAF7 0%, #CCF5EC 100%); }
.prog-weightloss h3 { color: var(--navy); }
.prog-weightloss p { color: var(--gray-600); }
.prog-weightloss .prog-link { color: var(--teal-dark); }
.prog-weightloss:hover { box-shadow: 0 20px 60px rgba(0,168,130,0.2); }

.prog-longevity { background: linear-gradient(135deg, #FFF9E6 0%, #FFF0B3 100%); }
.prog-longevity h3 { color: var(--navy); }
.prog-longevity p { color: var(--gray-600); }
.prog-longevity .prog-link { color: var(--gold-dark); }
.prog-longevity:hover { box-shadow: 0 20px 60px rgba(212,168,0,0.2); }

.prog-microdose { background: linear-gradient(135deg, #F0F4FF 0%, #DDE5FF 100%); }
.prog-microdose h3 { color: var(--navy); }
.prog-microdose p { color: var(--gray-600); }
.prog-microdose .prog-link { color: #4060D0; }
.prog-microdose:hover { box-shadow: 0 20px 60px rgba(64,96,208,0.2); }

.prog-sexual { background: linear-gradient(135deg, #FFF0F4 0%, #FFCCD8 100%); }
.prog-sexual h3 { color: var(--navy); }
.prog-sexual p { color: var(--gray-600); }
.prog-sexual .prog-link { color: var(--rose-dark); }
.prog-sexual:hover { box-shadow: 0 20px 60px rgba(224,64,94,0.18); }

.prog-skincare { background: linear-gradient(135deg, #FFF4F0 0%, #FFE0D6 100%); }
.prog-skincare h3 { color: var(--navy); }
.prog-skincare p { color: var(--gray-600); }
.prog-skincare .prog-link { color: #C24000; }
.prog-skincare:hover { box-shadow: 0 20px 60px rgba(194,64,0,0.18); }

.prog-protein { background: linear-gradient(135deg, #F4F0FF 0%, #E0D6FF 100%); }
.prog-protein h3 { color: var(--navy); }
.prog-protein p { color: var(--gray-600); }
.prog-protein .prog-link { color: #6040C0; }
.prog-protein:hover { box-shadow: 0 20px 60px rgba(96,64,192,0.18); }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 0;
  background: var(--navy);
}
.how-it-works .section-eyebrow { color: var(--teal); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}

.step-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(0,212,170,0.1);
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--teal), rgba(0,212,170,0.2));
  flex-shrink: 0;
  margin: 0 -2px;
}

.steps-cta { text-align: center; margin-top: 56px; }

/* ---- FEATURED PRODUCT ---- */
.featured-product {
  padding: 100px 0;
  background: var(--off-white);
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-text .section-eyebrow { color: var(--teal-dark); }
.featured-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}
.featured-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.featured-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.feat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.feat-icon { font-size: 16px; }

.featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
}
.ring1 {
  width: 100%;
  height: 100%;
  border-color: rgba(0,212,170,0.2);
  animation: rotateSlow 20s linear infinite;
}
.ring2 {
  width: 75%;
  height: 75%;
  border-color: rgba(245,200,66,0.3);
  animation: rotateSlow 14s linear infinite reverse;
}
.ring3 {
  width: 50%;
  height: 50%;
  border-color: rgba(255,107,138,0.3);
  animation: rotateSlow 9s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orb-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0,212,170,0.4);
  z-index: 2;
}
.orb-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}
.orb-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(10,22,40,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- SCIENCE ---- */
.science {
  padding: 100px 0;
  background: var(--white);
}

.science-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.science-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  display: block;
}
.science-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.sci-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin: 16px 16px 0;
}

.sci-img {
  height: 200px;
  margin: 12px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
}
.sci-img-1 {
  background: linear-gradient(135deg, #1D9E75 0%, #0F6E56 100%);
}
.sci-img-2 {
  background: linear-gradient(135deg, #534AB7 0%, #3C3489 100%);
}

.sci-body { padding: 20px; }
.sci-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sci-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.sci-author {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 600;
}

.sci-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-color: var(--navy);
  min-height: 320px;
}
.sci-more-inner { text-align: center; padding: 40px; }
.sci-more-icon {
  display: block;
  font-size: 48px;
  color: var(--teal);
  margin-bottom: 16px;
}
.sci-more p {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sci-more span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.sci-more:hover { box-shadow: 0 20px 60px rgba(0,212,170,0.25); }

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testi-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,212,170,0.12) 0%, transparent 70%);
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.testi-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

/* ---- QUALITY ---- */
.quality {
  padding: 100px 0;
  background: var(--off-white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.quality-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}
.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.q-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.quality-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.quality-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---- CONSULTATION ---- */
.consultation {
  padding: 100px 0;
  background: var(--white);
}

.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consult-text .section-eyebrow { color: var(--teal-dark); }
.consult-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}
.consult-text p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.consult-bonus strong { color: var(--rose-dark); }

.consult-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.consult-card-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.consult-time { text-align: center; }
.ct-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.ct-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.consult-detail { flex: 1; padding-top: 8px; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.cd-item:last-child { border-bottom: none; }
.cd-icon {
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,212,170,0.2) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 19px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

/* ---- FOOTER ---- */
.footer {
  background: #060F1E;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { font-size: 28px; margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,212,170,0.1);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-newsletter {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-newsletter p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

/* =============================================
   MOBILE RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-track { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 26px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1; min-width: 140px; }

  .about-grid,
  .featured-inner,
  .consult-inner { grid-template-columns: 1fr; gap: 40px; }

  .featured-visual { order: -1; }
  .product-orb { width: 240px; height: 240px; }
  .orb-core { width: 110px; height: 110px; }

  .programs-grid { grid-template-columns: 1fr; }

  .steps-grid {
    flex-direction: column;
    gap: 24px;
  }
  .step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--teal), rgba(0,212,170,0.2));
  }

  .science-cards { grid-template-columns: 1fr; }

  .testi-track { grid-template-columns: 1fr; }

  .quality-grid { grid-template-columns: 1fr; }

  .consult-card-inner { flex-direction: column; gap: 24px; }
  .consult-time { display: flex; align-items: center; gap: 16px; }
  .ct-num { font-size: 56px; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter-form { min-width: unset; width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .trust-inner { gap: 12px; font-size: 12px; }
  .trust-inner .dot { display: none; }
  .trust-inner span:not(.dot) {
    background: rgba(10,22,40,0.12);
    padding: 4px 12px;
    border-radius: 100px;
  }

  .section-sub { font-size: 16px; }
}

@media (max-width: 480px) {
  .about-cards { gap: 12px; }
  .about-card { padding: 20px; }
  .about-card strong { font-size: 32px; }
  .consult-card { padding: 32px 24px; }
  .hero-stats .stat-divider { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

/* ---- SCROLL REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   LEGAL PAGES — Privacy, Terms, Telehealth
============================================= */

.legal-hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,212,170,0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(245,200,66,0.10), transparent 50%);
  pointer-events: none;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero .section-eyebrow {
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 12px;
  color: var(--white);
}
.legal-hero .legal-meta {
  margin-top: 16px;
  color: var(--gray-400);
  font-size: 14px;
}
.legal-hero .legal-meta strong {
  color: var(--teal);
  font-weight: 600;
}

.legal-section {
  background: var(--off-white);
  padding: 64px 0 96px;
}

.legal-prose {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-prose > p:first-of-type,
.legal-prose > .legal-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.legal-prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}
.legal-prose h2:first-child { margin-top: 0; }

.legal-prose h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-prose p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.legal-prose ul,
.legal-prose ol {
  margin: 12px 0 20px 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-800);
}
.legal-prose li {
  margin-bottom: 8px;
}
.legal-prose ul li { list-style: disc; }
.legal-prose ol li { list-style: decimal; }

.legal-prose a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-prose a:hover {
  color: var(--navy);
}

.legal-prose strong { color: var(--navy); font-weight: 600; }

.legal-callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 18px 22px;
  margin: 24px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  letter-spacing: 0.2px;
}

.legal-warning {
  background: #FFF4F1;
  border-left: 4px solid var(--rose-dark);
  padding: 18px 22px;
  margin: 24px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  letter-spacing: 0.2px;
}

.legal-contact-block {
  background: var(--gray-100);
  padding: 24px 28px;
  margin: 20px 0;
  border-radius: var(--radius-md);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-800);
}

.legal-state {
  margin-top: 20px;
  margin-bottom: 14px;
}
.legal-state strong {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.legal-toc {
  background: var(--off-white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
}
.legal-toc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.9;
}
.legal-toc a {
  color: var(--navy);
  text-decoration: none;
}
.legal-toc a:hover {
  color: var(--teal-dark);
}

@media (max-width: 768px) {
  .legal-hero { padding: 64px 0 48px; }
  .legal-section { padding: 40px 0 64px; }
  .legal-prose { padding: 32px 24px; border-radius: var(--radius-md); }
  .legal-prose h2 { font-size: 24px; margin-top: 36px; }
  .legal-prose h3 { font-size: 17px; margin-top: 24px; }
}

/* =============================================
   PRODUCTS — Category listing + Product detail
============================================= */

/* ---- Category listing ---- */
.cat-hero {
  background: var(--off-white);
  padding: 64px 0 32px;
}
.cat-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}
.cat-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.cat-hero h1 .cat-icon {
  font-size: 0.7em;
  display: inline-block;
}
.cat-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  max-width: 760px;
}

.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 24px;
  border-top: 1px solid var(--gray-200);
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-600);
}
.cat-toolbar select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding-bottom: 80px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.product-card-img {
  background: var(--off-white);
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-tag {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.product-tag.tag-form     { background: #E6E2F8; color: #4A3F8E; }
.product-tag.tag-stock    { background: var(--teal-light); color: var(--teal-dark); }

.product-card-price {
  font-size: 14px;
  color: var(--teal-dark);
  font-weight: 500;
}
.product-card-price strong {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 2px;
}

.product-card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card-actions .btn { width: 100%; }

/* ---- Product detail ---- */
.pd-section {
  padding: 48px 0 96px;
  background: var(--off-white);
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
}

.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.pd-gallery-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pd-thumb {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumb.active,
.pd-thumb:hover { border-color: var(--navy); }

.pd-info { display: flex; flex-direction: column; gap: 18px; }

.pd-crumbs {
  font-size: 13px;
  color: var(--gray-600);
}
.pd-crumbs a { color: var(--gray-600); text-decoration: none; }
.pd-crumbs a:hover { color: var(--navy); }
.pd-crumbs .sep { margin: 0 8px; color: var(--gray-400); }

.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}
.pd-stars {
  color: var(--gold-dark);
  letter-spacing: 2px;
  font-size: 16px;
}

.pd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pd-badge .check { color: var(--teal-dark); font-weight: 700; }

.pd-short {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  margin: 6px 0;
}

.pd-price {
  font-size: 16px;
  color: var(--teal-dark);
  font-weight: 500;
}
.pd-price strong {
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 4px;
}

.pd-cta {
  margin-top: 6px;
}
.pd-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}

.pd-section-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 12px;
}
.pd-section-card summary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd-section-card summary::-webkit-details-marker { display: none; }
.pd-section-card summary::after {
  content: "−";
  font-size: 20px;
  color: var(--gray-400);
  font-weight: 300;
  transition: transform var(--transition);
}
.pd-section-card:not([open]) summary::after { content: "+"; }

.pd-section-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-800);
}
.pd-section-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 6px;
}
.pd-section-body h4:first-child { margin-top: 0; }
.pd-section-body ul {
  margin: 8px 0 0 0;
  padding-left: 0;
  list-style: none;
}
.pd-section-body ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.pd-section-body ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--navy);
  font-weight: 700;
}
.pd-spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 8px 0;
}
.pd-spec-row .pd-spec-label {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 13px;
}
@media (max-width: 600px) {
  .pd-spec-row { grid-template-columns: 1fr; gap: 2px; }
}

/* =============================================
   AUTH PAGES — Register / Login / Dashboard
============================================= */

.auth-section {
  background: var(--off-white);
  padding: 64px 0 96px;
  min-height: 70vh;
}

.auth-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .auth-card { padding: 32px 24px; border-radius: var(--radius-md); }
}

.auth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0 0 36px 0;
  list-style: none;
}
.auth-steps li {
  height: 6px;
  background: var(--gray-200);
  border-radius: 999px;
  list-style: none;
}
.auth-steps li.active { background: var(--teal); }

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
}
.auth-sub {
  color: var(--gray-600);
  font-size: 15px;
  margin: 0 0 28px 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 500px) { .auth-row { grid-template-columns: 1fr; } }

.auth-field {
  position: relative;
}
.auth-field input {
  width: 100%;
  padding: 22px 18px 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition);
}
.auth-field input:focus { border-color: var(--teal); }
.auth-field label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray-600);
  pointer-events: none;
  transition: all var(--transition);
  background: var(--white);
  padding: 0 4px;
}
.auth-field input:focus + label,
.auth-field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 11px;
  color: var(--teal-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.auth-password input { padding-right: 50px; }
.auth-pw-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  padding: 6px;
  display: flex;
}
.auth-pw-toggle:hover { color: var(--navy); }

.auth-rules {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-rules li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-800);
}
.auth-rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  font-family: serif;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  flex-shrink: 0;
}

.auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.5;
  cursor: pointer;
  padding: 4px 0;
}
.auth-consent input[type="checkbox"] {
  margin: 2px 0 0 0;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}
.auth-consent a {
  color: var(--teal-dark);
  text-decoration: underline;
}
.auth-consent a:hover { color: var(--navy); }

.auth-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 4px;
  border-radius: 999px;
}

.auth-alt {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin: 12px 0 0 0;
}
.auth-alt a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
}
.auth-alt a:hover { color: var(--navy); }

.auth-privacy-note {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--gray-800);
}
.auth-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 999px;
  flex-shrink: 0;
}
