/* ============================================
   SkinnyVIP — Premium Warm Medical-Wellness
   ============================================ */

:root {
  /* Colors */
  --bg-primary: #FDFBF7;
  --bg-secondary: #F5F0E8;
  --dark: #1A1A1A;
  --dark-alt: #1E1E1E;
  --gold: #B9975B;
  --gold-hover: #A6854A;
  --gold-light: rgba(185, 151, 91, 0.12);
  --text-primary: #1A1A1A;
  --text-secondary: #6B6459;
  --text-muted: #9A9189;
  --green: #4A7C59;
  --red: #C45C4B;
  --white: #FFFFFF;
  --footer-bg: #151515;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.label--gold {
  color: var(--gold);
}

.section-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(185, 151, 91, 0.3);
}
.btn--gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 24px rgba(185, 151, 91, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--sm { padding: 10px 24px; font-size: 0.8rem; }
.btn--lg { padding: 18px 42px; font-size: 0.95rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.anim-fade-up.is-visible {
  animation-name: fadeUp;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.nav.is-scrolled {
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(185, 151, 91, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.nav__logo span {
  font-weight: 800;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav__link:hover {
  color: var(--text-primary);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__login {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav__login:hover { color: var(--gold); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 32px;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__mobile.is-open {
  display: flex;
}
.nav__mobile-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.3s;
}
.nav__mobile-link:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--bg-primary);
  padding: 160px 24px 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle gold gradient accent */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(185,151,91,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}
.hero__sub strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero__proof {
  font-size: 1.0625rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero__proof strong {
  color: var(--gold);
  font-size: 1.1875rem;
  font-weight: 700;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__text-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  transition: all 0.3s;
}
.hero__text-link:hover {
  color: var(--gold-hover);
}
.hero__text-link span {
  display: inline-block;
  transition: transform 0.3s;
}
.hero__text-link:hover span {
  transform: translateX(4px);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__card {
  position: relative;
  width: 340px;
  height: 440px;
  background: linear-gradient(145deg, var(--bg-secondary) 0%, #EDE7DA 100%);
  border-radius: 24px;
  border: 1.5px solid rgba(185, 151, 91, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08), 0 4px 24px rgba(185,151,91,0.06);
}

.hero__card-inner {
  text-align: center;
  padding: 40px;
}

.hero__vial {
  margin-bottom: 24px;
}

.hero__vial-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.hero__card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.hero__card-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.hero__card-price strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Decorative circles */
.hero__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__circle--1 {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -60px;
  background: radial-gradient(circle, rgba(185,151,91,0.15) 0%, transparent 70%);
}
.hero__circle--2 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: -40px;
  background: radial-gradient(circle, rgba(185,151,91,0.1) 0%, transparent 70%);
}
.hero__circle--3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(185,151,91,0.05) 0%, transparent 70%);
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.proof {
  background: var(--bg-secondary);
  padding: 60px 24px;
  border-top: 1px solid rgba(185, 151, 91, 0.1);
  border-bottom: 1px solid rgba(185, 151, 91, 0.1);
}

.proof__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.proof__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.proof__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof__stat {
  text-align: center;
}

.proof__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.proof__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(185, 151, 91, 0.25);
}

/* ============================================
   COMPETITOR COMPARISON
   ============================================ */
.compare {
  background: var(--dark);
  padding: 120px 24px;
}

.compare__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.compare__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}

.compare__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.compare__table-wrap {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
  -webkit-overflow-scrolling: touch;
}

.compare__table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.compare__table th,
.compare__table td {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.compare__table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
  padding-bottom: 24px;
}

.compare__th--vip {
  color: var(--gold) !important;
  font-size: 1rem !important;
  position: relative;
}
.compare__th--vip::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.compare__feature {
  text-align: left !important;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.compare__vip {
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem !important;
}
.compare__vip svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.compare__competitor {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.compare__footnote {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-top: 24px;
  margin-bottom: 40px;
}

.compare__cta {
  margin-top: 8px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
  background: var(--bg-primary);
  padding: 120px 24px;
  text-align: center;
}

.steps__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.steps__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.steps__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.steps__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 20px;
  left: 28px;
  line-height: 1;
}

.steps__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.steps__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.steps__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.steps__cta {
  margin-top: 56px;
}

/* ============================================
   MEDICATIONS
   ============================================ */
.meds {
  background: var(--bg-secondary);
  padding: 120px 24px;
  text-align: center;
}

.meds__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.meds__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 56px auto 0;
  max-width: 900px;
}

.meds__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.meds__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.meds__card--featured {
  border: 2px solid var(--gold);
}

.meds__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  align-self: flex-start;
}

.meds__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.meds__compound {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.meds__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.meds__price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.meds__price strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ============================================
   PEPTIDE THERAPY
   ============================================ */
.peptides {
  background: var(--dark);
  padding: 120px 24px;
  text-align: center;
}

.peptides__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.peptides__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.peptides__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 56px;
}

.peptides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.peptides__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.peptides__card:hover {
  border-color: rgba(185, 151, 91, 0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.peptides__icon {
  margin-bottom: 16px;
}

.peptides__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.peptides__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 16px;
}

.peptides__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  transition: all 0.3s;
}
.peptides__link:hover {
  color: var(--gold-hover);
}

/* Center last 2 items when 5 total (3 top, 2 bottom) */
.peptides__grid > .peptides__card:nth-child(4) {
  grid-column: 1 / 2;
}
.peptides__grid > .peptides__card:nth-child(5) {
  grid-column: 2 / 3;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--bg-primary);
  padding: 120px 24px;
  text-align: center;
}

.pricing__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.pricing__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.pricing__card--featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(185, 151, 91, 0.12), var(--shadow-card);
}
.pricing__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing__plan {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing__amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing__dollar {
  font-size: 1.8rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing__savings-line {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing__savings-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--green);
  background: rgba(74, 124, 89, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.pricing__features {
  margin-bottom: 32px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
}

.pricing__features li svg {
  flex-shrink: 0;
}

.pricing__note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-secondary);
  padding: 120px 24px;
  text-align: center;
}

.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonials__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.testimonials__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonials__quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.testimonials__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonials__author strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonials__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-primary);
  padding: 120px 24px;
  text-align: center;
}

.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq__list {
  margin-top: 48px;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s;
}
.faq__question:hover {
  color: var(--gold);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--dark);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(185,151,91,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  padding: 80px 24px 48px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}
.footer__logo span {
  font-weight: 800;
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  padding: 5px 0;
  transition: color 0.3s;
}
.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 800px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   MOBILE FLOATING CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(253,251,247,0.95) 30%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta__btn {
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08), 0 4px 16px rgba(185,151,91,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual {
    justify-content: center;
  }
  .hero__card {
    width: 280px;
    height: 360px;
  }
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__actions {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 130px 24px 80px;
  }
  .hero__headline {
    font-size: 2.2rem;
  }
  .hero__badges {
    gap: 12px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .proof__stats {
    gap: 24px;
  }
  .proof__divider {
    display: none;
  }
  .proof__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .compare {
    padding: 80px 24px;
  }
  .compare__table {
    font-size: 0.8rem;
  }
  .compare__table th,
  .compare__table td {
    padding: 14px 12px;
  }

  .steps {
    padding: 80px 24px;
  }
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps__card {
    padding: 36px 28px;
  }

  .meds {
    padding: 80px 24px;
  }
  .meds__grid {
    grid-template-columns: 1fr;
  }
  .meds__card {
    padding: 36px 28px;
  }

  .peptides {
    padding: 80px 24px;
  }
  .peptides__grid {
    grid-template-columns: 1fr;
  }
  .peptides__grid > .peptides__card:nth-child(4),
  .peptides__grid > .peptides__card:nth-child(5) {
    grid-column: auto;
  }

  .pricing {
    padding: 80px 24px;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .pricing__card--featured {
    transform: none;
    order: -1;
  }
  .pricing__card--featured:hover {
    transform: translateY(-4px);
  }

  .testimonials {
    padding: 80px 24px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 80px 24px;
  }

  .final-cta {
    padding: 80px 24px;
  }

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

  .mobile-cta {
    display: block;
  }

  .section-headline {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 1.85rem;
  }
  .hero__card {
    width: 240px;
    height: 320px;
  }
  .hero__vial-img {
    width: 160px;
    height: 160px;
  }
  .compare__table {
    font-size: 0.72rem;
  }
  .compare__table th,
  .compare__table td {
    padding: 12px 8px;
  }
  .pricing__amount {
    font-size: 2.5rem;
  }
}
