/* ============================================================
   VITAL PRO — Dark Luxury + Clean Wellness Theme
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Backgrounds */
  --bg-deep: #0b0c0f;
  --bg-base: #121317;
  --bg-section: #0f1014;
  --bg-card: #171b21;
  --bg-graphite: #2a2d34;

  /* Text */
  --text-white: #ffffff;
  --text-primary: #f3f4f6;
  --text-secondary: #c8ced8;
  --text-muted: #aeb4be;

  /* Accents */
  --accent: #5e6f8e;
  --accent-light: #7183a3;
  --accent-dark: #4e5d78;
  --accent-faint: rgba(94, 111, 142, 0.12);

  /* Borders */
  --border: #2b313b;
  --border-light: rgba(43, 49, 59, 0.5);

  /* Utility */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px rgba(94, 111, 142, 0.18);
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  max-width: 100vw;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for fixed navbar */
}

html {
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family:
    "Inter",
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

section,
footer,
header,
div {
  max-width: 100%;
  box-sizing: border-box;
}

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

.container {
  max-width: 1320px; /* Increased for better presence on large screens */
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

/* ---------- ACCENT TEXT ---------- */
.accent-text {
  color: var(--accent-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-white);
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(94, 111, 142, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 12, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-white);
}
.nav-logo span {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--text-white);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 24px;
  padding: 10px 22px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--bg-base);
  border-left: 1px solid var(--border);
  z-index: 999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover {
  color: var(--text-white);
}
.mobile-cta {
  margin-top: 24px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0b0c0f 0%, #161a20 100%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 70% 50%,
      rgba(94, 111, 142, 0.09) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(78, 93, 120, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.6);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.3);
  color: var(--accent-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: fit-content;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}
.tag:hover {
  border-color: var(--accent);
  color: var(--text-white);
}
.tag svg {
  color: var(--accent-light);
}

.hero-cta-line {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-stars {
  display: flex;
  gap: 2px;
  color: #f4c430;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(94, 111, 142, 0.22) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.hero-img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
  animation: heroFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}
.stat-number::after {
  content: "+";
  color: var(--accent-light);
}
.stat-number[data-count="60"]::after,
.stat-number[data-count="12"]::after {
  content: "";
}
.stat-number[data-count="98"]::after {
  content: "%";
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   KEY BENEFITS
   ============================================================ */
.benefits-section {
  background: var(--bg-base);
}

/* --- two-col layout --- */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* LEFT: benefit cards column */
.benefits-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.benefit-card-v2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card-v2:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}
.benefit-card-v2:hover::after {
  opacity: 1;
}

.benefit-num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(94, 111, 142, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  padding-top: 2px;
  transition: var(--transition);
}
.benefit-card-v2:hover .benefit-num {
  -webkit-text-stroke-color: var(--accent-light);
}

.benefit-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.benefit-icon-v2 {
  width: 44px;
  height: 44px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.benefit-card-v2:hover .benefit-icon-v2 {
  background: rgba(94, 111, 142, 0.2);
  border-color: var(--accent);
}

.benefit-text {
  flex: 1;
}
.benefit-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.benefit-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.btag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.25);
  color: var(--accent-light);
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* RIGHT: proof panel */
.benefits-proof-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

/* quote card */
.benefits-quote-card {
  background: linear-gradient(145deg, #171b21 0%, #1c2129 100%);
  border: 1px solid rgba(94, 111, 142, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.benefits-quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-dark),
    var(--accent-light),
    var(--accent-dark)
  );
}
.bq-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}
.bq-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  quotes: none;
}
.bq-line {
  height: 1px;
  background: var(--border);
}
.bq-source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* checklist */
.benefits-checklist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.benefits-checklist h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
}
.benefits-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.benefits-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.benefits-checklist li svg {
  flex-shrink: 0;
}

/* mini CTA */
.benefits-mini-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.benefits-mini-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.benefits-mini-cta .btn {
  width: 100%;
  justify-content: center;
}
.benefits-guarantee {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.benefits-guarantee svg {
  color: var(--accent-light);
}

/* ============================================================
   HOW VITALPRO WORKS
   ============================================================ */
.how-section {
  background: var(--bg-deep);
}

/* masonry-style grid: first 2 cards span wider, last 3 equal */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

/* first 2 cards get the full 1.5-col width on a 3-col grid */
.how-card--wide {
  grid-column: span 1;
}

/* On larger screens, first two each take half the top row */
@media (min-width: 901px) {
  .how-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .how-card--wide {
    grid-column: span 3;
  }
  .how-card {
    grid-column: span 2;
  }
}

/* Individual card styles */
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(94, 111, 142, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.how-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(94, 111, 142, 0.12);
}

/* top row: icon + step number */
.how-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.how-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: var(--transition);
}
.how-card:hover .how-icon {
  background: rgba(94, 111, 142, 0.2);
  border-color: var(--accent);
}

.how-step-num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(94, 111, 142, 0.25);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: var(--transition);
}
.how-card:hover .how-step-num {
  -webkit-text-stroke-color: rgba(94, 111, 142, 0.55);
}

.how-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}
.how-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}

/* ingredient tag row */
.how-ing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.how-ing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 11px;
  background: rgba(94, 111, 142, 0.08);
  border: 1px solid rgba(94, 111, 142, 0.2);
  color: var(--text-muted);
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.how-ing svg {
  color: var(--accent);
  opacity: 0.8;
}
.how-card:hover .how-ing {
  border-color: rgba(94, 111, 142, 0.4);
  color: var(--text-secondary);
}

/* ── Synergy conversion banner ── */
.how-synergy-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #171b21 0%, #1a2030 100%);
  border: 1px solid rgba(94, 111, 142, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  position: relative;
  overflow: hidden;
}
.how-synergy-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    var(--accent-light),
    var(--accent),
    transparent
  );
}
.how-synergy-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(94, 111, 142, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.synergy-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.synergy-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.synergy-left h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.synergy-left p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}
.synergy-left strong {
  color: var(--text-white);
  font-weight: 600;
}

/* responsive banner */
@media (max-width: 768px) {
  .how-synergy-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .how-synergy-banner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* responsive grid */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-card--wide {
    grid-column: span 1;
  }
  .how-card {
    grid-column: span 1;
  }
}
@media (max-width: 560px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.ba-section {
  background: var(--bg-section);
}

/* -- Toggle row -- */
.ba-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.ba-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ba-label--before {
  color: var(--text-muted);
}
.ba-label--after {
  color: var(--accent-light);
}

.ba-toggle-track {
  width: 56px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.ba-toggle-track.active {
  background: var(--accent);
  border-color: var(--accent);
}
.ba-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition);
}
.ba-toggle-track.active .ba-toggle-thumb {
  transform: translateX(28px);
  background: white;
}

/* -- Table wrapper -- */
.ba-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

/* -- Header row -- */
.ba-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-graphite);
}
.ba-col-head {
  padding: 18px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-col--before {
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.ba-col--timeline {
  color: var(--accent-light);
  border-right: 1px solid var(--border);
  justify-content: center;
}
.ba-col--after {
  color: #6dbf8a;
}

/* -- Data rows -- */
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
.ba-row:hover {
  background: rgba(255, 255, 255, 0.015);
}
.ba-row:hover .ba-cell--before {
  border-right-color: rgba(94, 111, 142, 0.3);
}
.ba-row:hover .ba-cell--after {
  background: rgba(109, 191, 138, 0.03);
}

/* -- Cells -- */
.ba-cell {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.ba-cell p {
  margin: 0;
  color: var(--text-secondary);
}

.ba-cell--before {
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}
.ba-cell--before p {
  color: var(--text-muted);
}

.ba-cell--timeline {
  border-right: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: rgba(94, 111, 142, 0.03);
}
.ba-cell--timeline p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ba-cell--after {
  background: rgba(109, 191, 138, 0.02);
}
.ba-cell--after p {
  color: var(--text-secondary);
  font-weight: 500;
}

/* emoji icons */
.ba-before-icon,
.ba-after-icon {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-before-icon {
  background: rgba(174, 180, 190, 0.08);
  border: 1px solid rgba(174, 180, 190, 0.15);
}
.ba-after-icon {
  background: rgba(109, 191, 138, 0.1);
  border: 1px solid rgba(109, 191, 138, 0.2);
}

/* timeline pill */
.timeline-pill {
  display: inline-block;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.3);
  color: var(--accent-light);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* -- Footer row -- */
.ba-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ba-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 280px;
}
.ba-disclaimer svg {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.ba-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

.ba-cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}
.ba-cta-block p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  /* Stack to card-based layout */
  .ba-header-row {
    display: none;
  }

  .ba-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-lg);
  }

  .ba-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-top: 1px solid var(--border);
  }
  .ba-row:first-child {
    border-top: none;
  }

  .ba-cell {
    padding: 10px 0;
    border: none !important;
    background: none !important;
  }
  .ba-cell--timeline {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    border-top: 1px dashed var(--border) !important;
    border-bottom: 1px dashed var(--border) !important;
    padding: 10px 0 !important;
    margin: 4px 0;
  }

  .ba-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ba-cta-block {
    align-items: flex-start;
    width: 100%;
  }
  .ba-cta-block .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ba-toggle-row {
    gap: 12px;
  }
  .ba-label {
    font-size: 0.78rem;
  }
}

/* ============================================================
   INGREDIENTS
   ============================================================ */

.ingredients-section {
  background: var(--bg-base);
}

.nutri-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.nutri-table {
  width: 100%;
  border-collapse: collapse;
}

.nutri-col-img {
  width: 80px;
  text-align: center;
}
.nutri-col-name {
  width: 220px;
}
.nutri-col-dose {
  width: 140px;
  text-align: center;
}

.nutri-table th,
.nutri-table td {
  padding: 24px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.nutri-img {
  text-align: center;
  padding: 16px !important;
}

.ing-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  transition: var(--transition);
}

.nutri-table tr:hover .ing-thumb {
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(94, 111, 142, 0.3);
}

.nutri-table thead {
  background: linear-gradient(
    135deg,
    rgba(94, 111, 142, 0.08) 0%,
    rgba(94, 111, 142, 0.02) 100%
  );
  border-bottom: 2px solid rgba(94, 111, 142, 0.3);
}

.nutri-table th {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Specific Column Widths */
.nutri-col-name {
  width: 30%;
}
.nutri-col-dose {
  width: 15%;
}
.nutri-col-desc {
  width: 55%;
}

.nutri-table tbody tr {
  transition: var(--transition);
}
.nutri-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.015);
}

.nutri-name {
  font-size: 0.95rem;
  color: var(--text-white);
}
.nutri-name strong {
  color: var(--text-white);
  font-weight: 600;
}

.nutri-dose {
  font-size: 0.9rem;
  font-weight: 700;
  color: #6dbf8a; /* subtle generic green */
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.02em;
}

.nutri-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Remove bottom border from last row */
.nutri-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--bg-section);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.review-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #171b21 0%, #1a1f28 100%);
  box-shadow:
    0 0 0 1px rgba(94, 111, 142, 0.15),
    var(--shadow-glow);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #f4c430;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.review-card:hover .author-avatar {
  border-color: var(--accent);
  transform: scale(1.1);
}
.review-author strong {
  display: block;
  color: var(--text-white);
  font-size: 0.92rem;
}
.review-author span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* -- Trust Conversion Row -- */
.reviews-trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
}
.r-trust-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.r-trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.r-trust-content p {
  font-size: 1rem;
  color: var(--text-secondary);
}
.r-trust-content strong {
  color: var(--text-white);
  font-size: 1.1rem;
}
.r-trust-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   EXPERT SECTION
   ============================================================ */
.expert-section {
  background: var(--bg-section);
}

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

/* -- Visual Side -- */
.expert-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.expert-img-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.expert-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(94, 111, 142, 0.1) 0%,
    transparent 60%,
    rgba(94, 111, 142, 0.05) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.expert-actual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 2px);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.expert-img-card:hover .expert-actual-img {
  transform: scale(1.05);
}

/* Floating Expert Badges */
.expert-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.eb-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
#expert-badge-1 {
  bottom: 24px;
  left: -24px;
}
#expert-badge-2 {
  top: 32px;
  right: -20px;
}

/* -- Content Side -- */
.expert-content {
  display: flex;
  flex-direction: column;
}
.expert-intro {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.expert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.expert-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.expert-list strong {
  color: var(--text-white);
  font-weight: 600;
}
.e-list-icon {
  width: 26px;
  height: 26px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.e-list-icon svg {
  width: 14px;
  height: 14px;
}

/* Conversion Trigger */
.expert-trigger {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(94, 111, 142, 0.08) 0%,
    rgba(94, 111, 142, 0.02) 100%
  );
  border: 1px solid rgba(94, 111, 142, 0.2);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
}
.et-quote-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(94, 111, 142, 0.15);
  z-index: 0;
}
.expert-trigger p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-left: 12px;
}
.expert-trigger strong {
  color: var(--text-white);
  font-style: normal;
}

/* ============================================================
   WHO SHOULD USE
   ============================================================ */
.who-section {
  background: var(--bg-deep);
}

.who-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* -- Ideal Profile Card -- */
.who-ideal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.who-ideal-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(109, 191, 138, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.who-ideal-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

.who-ideal-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.who-ideal-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.who-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(109, 191, 138, 0.1);
  border: 1px solid rgba(109, 191, 138, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6dbf8a;
  flex-shrink: 0;
  margin-top: 2px;
}
.who-icon svg {
  width: 14px;
  height: 14px;
}

.who-ideal-list p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -- Warning Card -- */
.who-warning-card {
  background: linear-gradient(
    135deg,
    rgba(35, 39, 48, 0.6) 0%,
    rgba(26, 30, 38, 0.6) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.warning-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 100, 100, 0.08);
  color: #ff7b7b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.who-warning-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}
.who-warning-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING BUNDLES
   ============================================================ */
.pricing-section {
  background: var(--bg-section);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* -- Pricing Cards Flexbox -- */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end; /* Align cards to bottom so the featured card pops up */
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 111, 142, 0.4);
}

.price-card--featured {
  background: linear-gradient(160deg, #171b21 0%, #1a1f28 100%);
  border: 1px solid var(--accent);
  padding: 56px 36px 40px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(94, 111, 142, 0.15);
  margin-bottom: 12px;
}
.price-card--featured:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-glow);
}

.pc-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(94, 111, 142, 0.4);
}

.pc-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  height: 180px; /* fixed height container for uniform cards */
}
.pc-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.pc-header h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 4px;
}
.pc-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pc-price {
  margin: 24px 0 8px;
  color: var(--text-white);
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.pc-currency {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-secondary);
}
.pc-price {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
}
.pc-cents {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.pc-per {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-left: 4px;
}

.pc-total {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pc-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6dbf8a;
}

/* -- Pricing Info / Persuasion -- */
.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pi-reasons-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pi-reasons-card h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.pi-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.pi-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pi-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(109, 191, 138, 0.1);
  color: #6dbf8a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pi-icon svg {
  width: 14px;
  height: 14px;
}

.pi-trigger {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.pi-trigger strong {
  color: var(--text-white);
}

.pi-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 16px;
}
.pi-disclaimer svg {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.pi-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   GUIDELINES & SAFETY
   ============================================================ */
.guidelines-section {
  background: var(--bg-base);
}

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

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.guide-card:hover {
  border-color: rgba(94, 111, 142, 0.4);
}

.guide-icon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.guide-icon-header h3 {
  font-size: 1.4rem;
  color: var(--text-white);
}

.guide-icon-primary {
  color: #6dbf8a;
}
.guide-icon-warning {
  color: #ff7b7b;
}

.guide-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1; /* Pushes trigger box to the bottom reliably */
}
.guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-white);
  line-height: 1.6;
}
.guide-list strong {
  font-weight: 600;
  color: #6dbf8a;
}

.gl-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}
.guide-list--warning .gl-marker {
  background: #ff7b7b;
}

.guide-trigger {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: auto;
}
.guide-trigger p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.guide-trigger strong {
  color: var(--text-white);
}
.gt-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-trigger--success {
  background: rgba(109, 191, 138, 0.04);
  border: 1px dashed rgba(109, 191, 138, 0.2);
}
.guide-trigger--success .gt-icon {
  color: #6dbf8a;
}

.guide-trigger--warning {
  background: rgba(255, 123, 123, 0.04);
  border: 1px dashed rgba(255, 123, 123, 0.2);
}
.guide-trigger--warning .gt-icon {
  color: #ff7b7b;
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-section {
  background: var(--bg-section);
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.guarantee-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at 100% 50%,
    rgba(184, 154, 94, 0.05) 0%,
    transparent 80%
  );
  pointer-events: none;
}

/* -- Visual Side -- */
.guar-visual {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guar-badge-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    circle,
    rgba(184, 154, 94, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 0;
}
.guar-badge-img {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guar-badge-actual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(184, 154, 94, 0.3));
  transition: transform 0.4s ease;
}
.guar-badge-img:hover .guar-badge-actual {
  transform: scale(1.08) rotate(5deg);
}

/* -- Content Side -- */
.guar-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.guar-content h2 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin: 12px 0 20px;
}
.guar-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Conversion Trigger */
.guar-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(184, 154, 94, 0.05);
  border: 1px dashed rgba(184, 154, 94, 0.25);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  width: 100%;
}
.guar-trigger svg {
  color: #b89a5e;
  flex-shrink: 0;
}
.guar-trigger span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.guar-trigger strong {
  color: var(--text-white);
}

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  background: var(--bg-deep);
}

.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.order-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(94, 111, 142, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.order-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin: 12px 0;
  letter-spacing: -0.02em;
}
.order-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.order-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.checkout-trust-box {
  margin-top: 24px;
  background: rgba(109, 191, 138, 0.05);
  border: 1px solid rgba(109, 191, 138, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ct-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ct-header h4 {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 600;
}
.ct-icon {
  color: #6dbf8a; /* Trust Green */
}
.ct-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ct-desc strong {
  color: var(--text-white);
}
.ct-trigger {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  padding-top: 16px;
  border-top: 1px dashed rgba(109, 191, 138, 0.2);
}

.order-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.order-img {
  max-width: 100%;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.6));
  animation: heroFloat 5s ease-in-out infinite;
}
.order-badge-wrap {
  position: absolute;
  top: 8px;
  right: -8px;
}
.order-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(94, 111, 142, 0.4);
}
.order-badge svg {
  color: white;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-base);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent-light);
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--accent-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}
.footer-links-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}
.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-group a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--text-white);
}
.footer-disclaimer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 14px;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT VITALPRO
   ============================================================ */
.about-section {
  background: var(--bg-deep);
}

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

/* --- Visual (left) --- */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.about-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Align bottle to bottom of card on desktop */
  padding: 40px;
  height: 100%;
}
.about-img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.7));
  z-index: 1;
  transition: transform 0.5s ease;
}
.about-img-card:hover .about-img {
  transform: translateY(-8px);
}

/* floating badges */
.about-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.about-float-badge svg {
  color: var(--accent-light);
  flex-shrink: 0;
}
.about-float-badge:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(94, 111, 142, 0.3);
}
.about-float-badge--tl {
  top: -12px;
  left: 32px;
  animation: badgeFloat1 4s ease-in-out infinite;
}
.about-float-badge--br {
  bottom: -12px;
  right: 32px;
  animation: badgeFloat2 4.5s ease-in-out infinite;
}
@keyframes badgeFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes badgeFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ingredient pills row */
.about-ingredients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 8px;
}
.about-ing-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.about-ing-pill:hover {
  border-color: var(--accent);
  color: var(--text-white);
  background: var(--accent-faint);
}

/* --- Content (right) --- */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.about-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* conversion trigger */
.about-trigger {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    rgba(94, 111, 142, 0.1) 0%,
    rgba(94, 111, 142, 0.04) 100%
  );
  border: 1px solid rgba(94, 111, 142, 0.25);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.trigger-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}
.trigger-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.trigger-text strong {
  color: var(--text-white);
  font-weight: 600;
}

/* feature list */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 26px;
  height: 26px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.about-feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}
.about-feature-item span {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA row */
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.about-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.about-guarantee svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ============================================================
   SECURE CHECKOUT SECTION
   ============================================================ */
.secure-checkout-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.secure-checkout-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(94, 111, 142, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.secure-checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Content --- */
.secure-checkout-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.secure-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.secure-feature-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.secure-feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(94, 111, 142, 0.3);
  transform: translateX(8px);
}

.sf-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.sf-content strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.sf-content span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.secure-checkout-trust-box {
  background: rgba(109, 191, 138, 0.04);
  border: 1px dashed rgba(109, 191, 138, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}

.secure-checkout-trust-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.secure-checkout-trust-header h4 {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 600;
}

.secure-checkout-trust-icon {
  color: #6dbf8a;
}

.secure-checkout-trust-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Right Image --- */
.secure-checkout-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.secure-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.secure-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(94, 111, 142, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.secure-visual-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.secure-img-wrapper:hover .secure-visual-img {
  transform: translateY(-12px) scale(1.03);
}

.secure-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.secure-badge-float svg {
  color: #6dbf8a;
}

.secure-badge-float span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
}

/* ============================================================
   CONTACT SUPPORT SECTION
   ============================================================ */
.contact-support-section {
  background: var(--bg-base);
  padding: 100px 0;
}

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

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-faint);
  border: 1px solid rgba(94, 111, 142, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.ci-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.ci-text p,
.ci-text span {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-trigger {
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(94, 111, 142, 0.08) 0%,
    rgba(94, 111, 142, 0.02) 100%
  );
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
}

.contact-trigger p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.contact-visual {
  position: relative;
}

.contact-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-img-wrapper:hover .contact-img {
  transform: scale(1.05);
}

/* ============================================================
   LAST UPDATED SECTION
   ============================================================ */
.last-updated-section {
  background: var(--bg-deep);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

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

.updated-visual {
  position: relative;
}

.updated-img-wrapper {
  background: var(--bg-card);
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.updated-img-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.updated-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.updated-content {
  max-width: 650px;
}

.updated-header {
  margin-bottom: 20px;
}

.updated-header h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

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

.updated-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.ut-icon {
  color: var(--accent-light);
  flex-shrink: 0;
}

.updated-trigger p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.updated-trigger strong {
  color: var(--text-white);
  font-style: italic;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .updated-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .updated-visual {
    margin: 0 auto;
  }

  .updated-trigger {
    justify-content: center;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate="fade-right"] {
  transform: translateX(-40px);
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid {
    gap: 48px;
  }
  .benefits-layout {
    grid-template-columns: 1fr;
  }
  .benefits-proof-col {
    position: static;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-card {
    grid-template-columns: 1fr;
    padding: 48px;
    gap: 40px;
  }
  .order-right {
    justify-content: center;
  }
  .order-img {
    max-width: 400px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    align-items: center;
  }
  .hero-subtitle {
    text-align: center;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-img {
    max-width: 260px;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
  .hero-glow {
    width: 200px;
    height: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-visual {
    order: -1;
  }
  .about-img {
    max-width: 170px;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
  .about-img-card {
    padding: 12px 16px;
    min-height: 240px;
    height: auto;
    align-items: center;
  }
  .about-float-badge--tl {
    top: 12px;
    left: 12px;
    transform: scale(0.85);
    background: rgba(18, 19, 23, 0.95);
  }
  .about-float-badge--br {
    bottom: 12px;
    right: 12px;
    transform: scale(0.85);
    background: rgba(18, 19, 23, 0.95);
  }
  .about-content {
    text-align: left;
  }
  .about-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .expert-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .expert-visual {
    order: -1;
  }
  .expert-img-card {
    max-width: 380px;
  }
  .expert-list {
    margin-bottom: 24px;
  }
  .expert-trigger {
    padding: 20px 24px;
  }
  .et-quote-icon {
    width: 24px;
    height: 24px;
    top: 16px;
    left: 16px;
  }

  .secure-checkout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .secure-checkout-left {
    order: 0;
    align-items: center;
  }
  .secure-checkout-right {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .secure-badge-float {
    right: 0;
    bottom: -12px;
    transform: scale(0.9);
  }

  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-ideal-card {
    padding: 40px;
  }
  .who-warning-card {
    padding: 32px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-info {
    margin-top: 24px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .guide-card {
    padding: 40px 32px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 48px 32px;
  }
  .guar-content {
    align-items: center;
  }
  .guar-trigger {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-column {
    gap: 12px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .reviews-trust-row {
    gap: 20px;
  }
  .r-trust-line {
    display: none;
  }
  .r-trust-content {
    width: 100%;
  }
  .r-trust-content .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }

  .benefit-card-v2 {
    flex-direction: column;
    gap: 12px;
  }
  .benefit-num {
    width: auto;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .price-card {
    padding: 32px 24px;
  }
  .price-card--featured {
    padding: 40px 24px;
    margin-top: 0;
  }
  .order-card {
    padding: 32px 20px;
    gap: 32px;
    text-align: left;
    position: relative;
  }
  .order-title {
    font-size: 1.8rem;
  }
  .order-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .order-list li {
    font-size: 0.85rem;
  }
  .order-img {
    max-width: 170px;
    margin: 0 auto;
    display: block;
    max-height: 220px;
    object-fit: contain;
  }
  .order-right {
    order: 1;
    margin-top: -10px;
  }
  .guide-card {
    padding: 32px 24px;
  }
  .guarantee-card {
    padding: 32px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .secure-checkout-grid {
    gap: 32px;
  }
  .secure-checkout-right {
    max-width: 320px;
  }
  .secure-badge-float {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  .secure-checkout-trust-box {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-img {
    max-width: 220px;
    max-height: 280px;
  }
  .hero-tags {
    gap: 8px;
  }
  .tag {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .nutri-table th,
  .nutri-table td {
    padding: 16px 12px;
    font-size: 0.8rem;
  }
  .nutri-col-name {
    min-width: 140px;
  }
  .nutri-col-desc {
    min-width: 200px;
  }
  .ing-thumb {
    width: 40px;
    height: 40px;
  }
  .order-img {
    max-width: 150px;
    max-height: 200px;
  }
  .order-card {
    padding: 24px 16px;
    gap: 24px;
  }
  .about-img {
    max-width: 140px;
    max-height: 180px;
  }
  .about-img-card {
    padding: 10px;
    min-height: 200px;
    height: auto;
    margin-top: 10px;
  }
  .about-float-badge--tl {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }
  .about-float-badge--br {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }
  .about-ingredients-row {
    gap: 6px;
  }
  .about-ing-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .footer-disclaimer {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   ULTRA-WIDE SCREEN ENHANCEMENTS (1600px+)
   ============================================================ */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }

  .section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }
  .hero-title {
    font-size: clamp(3rem, 5.5vw, 4.8rem);
  }
  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
  }

  .contact-grid,
  .secure-checkout-grid,
  .expert-grid,
  .about-grid {
    gap: 140px;
  }
}
