/* ============================================================
   MAXX REJUVENATION — styles.css
   Brand: Luxury Health & Wellness Telehealth
   Colors: Light Grayish Blue + Gold
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --gold:           #B8952A;
  --gold-light:     #D4AE52;
  --gold-dark:      #8F7020;
  --blue-light:     #E8EDF2;
  --blue-mid:       #B8C8D4;
  --blue-dark:      #5A7A90;
  --blue-deeper:    #2C4F65;
  --navy:           #1C2B38;
  --navy-deep:      #111D27;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #F7F9FC;
  --gray-50:        #F0F4F8;
  --gray-100:       #E2EAF0;
  --gray-300:       #7A9AB0;
  --gray-500:       #3E5A6E;
  --gray-700:       #243D52;
  --gray-900:       #1A2E3D;

  /* Typography */
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad:    90px;
  --container:      1200px;
  --radius:         12px;
  --radius-lg:      20px;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(26,46,61,0.08);
  --shadow-md:      0 8px 30px rgba(26,46,61,0.12);
  --shadow-lg:      0 20px 60px rgba(26,46,61,0.18);

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   QUALIFICATION QUIZ GATE
   ============================================================ */
.quiz-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.quiz-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.quiz-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.quiz-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,14,20,0.82);
  backdrop-filter: blur(2px);
}

.quiz-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  background: rgba(20,30,40,0.92);
  border: 1px solid rgba(184,149,42,0.3);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
}

.quiz-logo {
  text-align: center;
  margin-bottom: 32px;
}

.quiz-logo img {
  height: 52px;
  width: auto;
  margin: 0 auto;
  mix-blend-mode: lighten;
}

.quiz-progress-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  margin-bottom: 10px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 100px;
  width: 20%;
  transition: width 0.5s ease;
}

.quiz-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
}

.quiz-slide {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.4s ease forwards;
}

.quiz-slide.active { display: flex; }

.quiz-question {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--white);
  line-height: 1.3;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-option {
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(184,149,42,0.25);
  border-radius: 8px;
  color: rgba(232,237,242,0.88);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.quiz-option:hover,
.quiz-option.selected {
  background: rgba(184,149,42,0.15);
  border-color: var(--gold);
  color: var(--white);
}

.quiz-option-other { grid-column: 1 / -1; }

.quiz-other-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.quiz-other-input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(184,149,42,0.3);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}

.quiz-other-input:focus { border-color: var(--gold); }
.quiz-other-input::placeholder { color: rgba(255,255,255,0.3); }

.quiz-optional-label {
  text-align: center;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-top: -8px;
}

.quiz-data-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quiz-field-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(184,200,212,0.7);
}

.quiz-field-group input {
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(184,149,42,0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.quiz-field-group input:focus { border-color: var(--gold); }
.quiz-field-group input::placeholder { color: rgba(255,255,255,0.25); }

.quiz-finish-btn { width: 100%; justify-content: center; margin-top: 8px; }

.quiz-skip-link {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: underline;
}

.quiz-skip-link:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 600px) {
  .quiz-inner { padding: 32px 24px; }
  .quiz-options-grid { grid-template-columns: 1fr; }
  .quiz-other-wrap { flex-direction: column; align-items: stretch; }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 13px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-full { width: 100%; }

/* ---------- Animations ---------- */
.fade-in { opacity: 0; animation: fadeInUp 0.8s var(--ease) forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(15,30,42,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1300px;
  margin: 0 auto;
  transition: padding 0.3s;
}

.navbar.scrolled .nav-container { padding-top: 14px; padding-bottom: 14px; }

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  transition: opacity 0.2s;
}

.logo-img:hover { opacity: 0.85; }

.footer-logo-img {
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-deep);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.mobile-menu.open {
  max-height: 500px;
  padding: 20px 24px 28px;
  display: flex;
}

.mobile-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }

.mobile-phone {
  font-size: 14px;
  color: var(--blue-light);
  padding: 14px 0;
  font-weight: 500;
}

.mobile-cta { margin-top: 20px; text-align: center; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(8,14,20,0.72) 0%, rgba(12,22,32,0.60) 50%, rgba(8,14,20,0.55) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239BB8CC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(212,227,239,0.9);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,149,42,0.4);
  color: rgba(232,220,190,0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.hero-social-proof {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin: -8px 0 24px;
  opacity: 0.9;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.35);
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: rgba(14,20,26,0.96);
  border-top: 1px solid rgba(184,149,42,0.35);
  border-bottom: 1px solid rgba(184,149,42,0.35);
  padding: 28px 0;
  backdrop-filter: blur(12px);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
}

.trust-icon { font-size: 22px; }

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}
.trust-text span {
  font-size: 13px;
  color: var(--gray-300);
  letter-spacing: 0.3px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(155,184,204,0.2);
  flex-shrink: 0;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue-deeper);
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--gold-dark); gap: 8px; }


/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,122,155,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content .section-title { color: var(--white); }
.why-us-content .section-label { color: var(--gold); }

.why-us-desc {
  font-size: 16px;
  color: rgba(212,227,239,0.95);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-list li strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.why-list li p {
  font-size: 15px;
  color: rgba(190,210,225,0.95);
  line-height: 1.65;
  margin: 0;
}

.why-us-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-photo {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 40%;
  border: 1px solid rgba(184,149,42,0.25);
  display: block;
}

.stats-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  backdrop-filter: blur(10px);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(155,184,204,0.2);
}

.visual-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(74,122,155,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.visual-icon { font-size: 40px; margin-bottom: 16px; }

.visual-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.visual-card p {
  font-size: 15px;
  color: rgba(212,227,239,0.95);
  line-height: 1.65;
  margin-bottom: 22px;
}


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}

.products-section .section-title { color: var(--white); }
.products-section .section-subtitle { color: var(--gray-300); }

.products-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.products-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  pointer-events: none;
}

.product-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(155,184,204,0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.product-search-input::placeholder { color: var(--gray-500); }
.product-search-input:focus { border-color: var(--gold); }

.product-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(155,184,204,0.25);
  background: transparent;
  color: var(--gray-300);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,184,204,0.12);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.product-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card.featured-card {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.06);
}

.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(74,122,155,0.25);
  color: var(--blue-light);
  width: fit-content;
}

.featured-badge {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
}

.panel-badge {
  background: rgba(100,160,120,0.2);
  color: #8ecfa8;
}

.supply-badge {
  background: rgba(155,184,204,0.15);
  color: var(--blue-mid);
}

.consult-badge {
  background: rgba(180,130,80,0.2);
  color: #e0aa6a;
}

.product-info { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.3;
}

.product-desc {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.no-results {
  text-align: center;
  padding: 60px 0;
  color: var(--gray-500);
  font-size: 15px;
}

.product-card.hidden-product {
  display: none;
}

.product-card.hidden-product.revealed {
  display: flex;
  animation: fadeInUp 0.4s var(--ease) forwards;
}

.products-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 36px;
}

.btn-show-more {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(155,184,204,0.3);
  padding: 13px 36px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-show-more:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.products-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(155,184,204,0.12);
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.products-footer p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-controls { flex-direction: column; align-items: stretch; }
  .products-search-wrap { max-width: 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.step-number::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  margin-top: 22px;
  opacity: 0.6;
}

.how-cta { text-align: center; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info .section-title { color: var(--navy); }

.contact-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon { font-size: 20px; margin-top: 2px; }

.contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-detail strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-700);
}
.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: var(--gray-500);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid;
  transition: all 0.3s var(--ease);
}

.social-link.facebook {
  color: #1877F2;
  border-color: #1877F2;
}
.social-link.facebook:hover {
  background: #1877F2;
  color: var(--white);
}

.social-link.instagram {
  color: #C13584;
  border-color: #C13584;
}
.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05c5c;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B8899' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field-error {
  font-size: 12px;
  color: #e05c5c;
  display: none;
}
.field-error.visible { display: block; }

/* Checkbox */
.form-consent { flex-direction: row; align-items: flex-start; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.2s;
  background: var(--white);
}

.checkbox-label input:checked ~ .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-label input:checked ~ .checkmark::after {
  content: '✓';
  font-size: 11px;
  color: var(--navy-deep);
  font-weight: 700;
}

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 14px;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 8px;
}
.form-success a { color: var(--gold); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: var(--gray-300);
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(155,184,204,0.12);
}

.footer-logo .logo-maxx { font-size: 18px; }
.footer-logo .logo-rejuvenation { font-size: 8px; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(155,184,204,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group li a,
.footer-links-group li span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links-group li a:hover { color: var(--blue-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p:first-child {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-credit a {
  color: #6BBFFF;
  transition: opacity 0.2s;
}

.footer-credit a:hover { opacity: 0.8; }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(107,136,153,0.6);
  max-width: 700px;
  line-height: 1.6;
}


/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px;
  gap: 12px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-cta .btn { flex: 1; text-align: center; }


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

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

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-list li {
  font-size: 17px;
  color: var(--gray-700);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.problem-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.4;
}

.problem-truth {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.problem-truth p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.7;
}


/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.founder-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,149,42,0.25);
  display: block;
}

.founder-video-placeholder {
  width: 100%;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-300);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s;
}

.founder-video-placeholder:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.founder-content .section-title { color: var(--white); }
.founder-content .section-label { color: var(--gold); }

.founder-bio {
  font-size: 16px;
  color: rgba(212,227,239,0.9);
  line-height: 1.8;
  margin-bottom: 18px;
}


/* ============================================================
   WHY 3 MONTHS
   ============================================================ */
.three-months-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.three-months-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.three-months-content p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.8;
}

.three-months-emphasis {
  font-family: var(--font-serif) !important;
  font-size: 1.4rem !important;
  color: var(--navy) !important;
  font-weight: 600;
}


/* ============================================================
   INVESTMENT & ELIGIBILITY
   ============================================================ */
.investment-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}

.investment-section .section-title { color: var(--white); }
.investment-section .section-subtitle { color: var(--gray-300); max-width: 680px; }

.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.investment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.investment-card-alt {
  border-color: rgba(155,184,204,0.2);
  background: rgba(255,255,255,0.03);
}

.investment-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.investment-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.investment-card p {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.7;
}

.eligibility-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,184,204,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.eligibility-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.eligibility-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(212,227,239,0.9);
}

.eli-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.eligibility-disclaimer {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}


/* ============================================================
   CLIENT RESULTS
   ============================================================ */
.results-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.results-placeholder {
  background: var(--white);
  border: 2px dashed var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: border-color 0.2s;
}

.results-placeholder:hover { border-color: var(--gold); }

.placeholder-icon {
  font-size: 36px;
}


/* ============================================================
   HOW IT WORKS — vertical steps
   ============================================================ */
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
}

.steps-vertical::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--blue-mid));
  opacity: 0.3;
}

.step-v {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}

.step-v .step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-v .step-content {
  padding-top: 12px;
}

.step-v .step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-v .step-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}


/* ============================================================
   WHO THIS IS FOR / NOT FOR
   ============================================================ */
.who-for-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.who-for-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,184,204,0.15);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.who-for-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.who-for-yes { color: var(--gold); }
.who-for-no { color: rgba(212,227,239,0.6); }

.who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
}

.who-yes li { color: rgba(212,227,239,0.9); }
.who-no li { color: rgba(212,227,239,0.55); }

.who-yes li span { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.who-no li span { color: #e05c5c; font-weight: 700; flex-shrink: 0; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
}

.final-cta-sub {
  font-size: 17px;
  color: rgba(212,227,239,0.85);
  line-height: 1.8;
}

.final-cta-question {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
}

.final-cta-disclaimer {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: var(--blue-mid); }

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,149,42,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,149,42,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(184,149,42,0.15);
  color: var(--gold-light);
  width: fit-content;
  border: 1px solid rgba(184,149,42,0.3);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(232,237,242,0.88);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--blue-mid);
  letter-spacing: 0.3px;
}

/* ── Investment card hierarchy ── */
.investment-card-primary {
  border-color: rgba(184,149,42,0.5);
  background: rgba(184,149,42,0.07);
}

.investment-card-secondary {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  opacity: 0.85;
}

.investment-label-secondary {
  color: var(--blue-mid) !important;
  font-size: 10px !important;
}

.investment-price-secondary {
  font-size: 2rem !important;
  color: var(--blue-mid) !important;
}

.investment-note {
  font-size: 13px !important;
  color: rgba(184,200,212,0.6) !important;
  font-style: italic;
}

/* why-us tagline */
.why-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 8px;
}

/* footer restore tagline */
.footer-restore {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 16px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px; }

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

  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .investment-grid { grid-template-columns: 1fr; }
  .who-for-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; gap: 16px; }
  .step-connector { width: 2px; height: 40px; margin: 0; flex: none; }
  .steps-vertical::before { left: 27px; }

  .eligibility-wrap { padding: 36px 24px; }

  .sticky-cta { display: flex; }
  .contact { padding-bottom: 80px; }
}

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; gap: 0; }
  .trust-divider { width: 80%; height: 1px; }
  .trust-item { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .nav-container { padding: 16px 20px; }
  .stats-card { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .results-grid { grid-template-columns: 1fr; }
  .who-for-col { padding: 32px 24px; }
  .hero-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 2.6rem; }
  .badge { font-size: 11px; padding: 6px 12px; }
}
