:root {
  --bg: #030406;
  --ink: #f8f3e6;
  --muted: #ffffff;
  --faint: rgba(248, 243, 230, 0.42);
  --gold: #fce160;
  --gold-2: #ffd66d;
  --card: rgba(8, 10, 14, 0.74);
  --line: rgba(255, 255, 255, 0.09);
}

* { box-sizing: border-box; }
html {
  -webkit-overflow-scrolling: touch;
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site {
  min-height: 100vh;
  position: relative;
  background: transparent;
}
.site::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 4, 6, 0.17);
  z-index: -1;
  pointer-events: none;
}

.nav {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  top: 0 !important;
}
.nav * {
  pointer-events: auto;
}
.nav.scrolled {
  top: 0 !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.nav.shifted {
  top: 36px !important;
}

.nav-logo img {
  width: 138px;
  transition: width 0.3s ease;
}
.nav-links {
  background: var(--gold);
  border: 1px solid rgba(229, 184, 66, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.16);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) !important;
}
.nav-links.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) !important;
}
.nav-item {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #070707;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-item:hover {
  color: var(--gold);
  background: #070707;
}
.nav-links a, .section-kicker, .micro-trust, .subscription-copy {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-links a:hover, .nav-phone:hover { color: var(--gold); }
.nav-phone {
  color: #f8f3e6;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-phone:hover {
  color: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 184, 66, 0.55);
  background: var(--gold);
  color: #070707;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.16);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: #ffffff;
  color: #070707;
  border-color: #ffffff;
}
.nav-actions-pill {
  background: rgba(12, 15, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  
  /* Scroll transition styles */
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-actions-pill.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.primary-button, .center-button, .pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(229, 184, 66, 0.55);
  background: var(--gold);
  color: #070707;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.16);
  transition: all 0.2s ease;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .primary-button, .center-button, .pill-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .primary-button, .center-button, .pill-button {
    padding: 1.25rem 6rem;
    font-size: 1.125rem;
  }
}
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .secondary-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .secondary-button {
    padding: 1.25rem 6rem;
    font-size: 1.125rem;
  }
}
.menu-button {
  transition: all 0.3s ease;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}
.menu-button.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-button.open span:nth-child(2) {
  opacity: 0;
}
.menu-button.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .nav, .nav.scrolled {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.9) 65%, rgba(0, 0, 0, 0) 100%) !important;
  }
  #navLinks {
    display: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  #navLinks.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem !important;
    right: 1rem !important;
    transform: none !important;
    background: var(--gold);
    border: 1px solid rgba(229, 184, 66, 0.55);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    align-items: stretch;
    gap: 0.35rem;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
  }
  #navLinks.open .nav-item {
    text-align: center;
    font-size: 0.85rem;
    padding: 0.85rem;
    border-radius: 0.5rem;
    border-bottom: 1px solid rgba(7, 7, 7, 0.08);
  }
  #navLinks.open .nav-item:last-child {
    border-bottom: none;
  }
}

h1, h2, h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 0.85);
}
.eyebrow-shadow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.85);
}
h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 8.7vw, 8.8rem);
  line-height: 0.88;
  text-align: center;
  text-shadow: 0 18px 60px rgba(0,0,0,0.68);
}
h1 span, h2 span { display: block; color: var(--gold); }

.hero-title-line-1,
.hero-title-line-2 {
  display: block;
  font-size: 3.465rem;
  line-height: 0.95;
  text-transform: none;
}

.hero-title-line-1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.0425em;
  color: var(--ink);
}

.hero-title-line-2 {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.068em;
  color: var(--gold);
  margin-top: 0.03em;
}

@media (min-width: 640px) {
  .hero-title-line-1,
  .hero-title-line-2 {
    font-size: 4.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title-line-1,
  .hero-title-line-2 {
    font-size: 6rem;
  }
  .hero-title-line-1 {
    letter-spacing: -0.05em;
  }
  .hero-title-line-2 {
    letter-spacing: -0.08em;
  }
}

h2 { font-size: clamp(2.5rem, 6vw, 6rem); line-height: 0.92; }
h3 { font-size: 1.5rem; line-height: 1; }
p { line-height: 1.65; }

.hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  overflow: hidden;
  background: #000;
}
.hero-media, .hero-media video, .hero-media picture, .hero-media img, .hero-top-fade, .hero-bottom-fade {
  position: absolute;
  inset: 0;
}
.hero-media video, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.hero-media video.is-playing {
  opacity: 1;
}
.hero-media picture { z-index: 0; }
.hero-video-mobile { display: none; }
.hero-media img {
  opacity: 1;
}
.hero-top-fade {
  z-index: 2;
  height: 34%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.35), transparent);
}
.hero-bottom-fade {
  z-index: 2;
  top: auto;
  height: 52%;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.76) 24%, transparent);
}
.hero-title {
  position: absolute;
  z-index: 3;
  top: 23%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  pointer-events: none;
}
.hero-title p {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}
.hero-actions {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}
.micro-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 768px) {
  .micro-trust {
    font-size: 0.497rem; /* 15% increase from 0.432rem */
    gap: 0.45rem 0.75rem;
  }
}

.about-section, .solution-section, .pathway-section-container, .offers, .testimonials, .guarantee, .faq, .formula, .final-cta, .ingredients-section {
  position: relative;
  z-index: 5;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

/* Base Section Setup */
.about-section {
  width: 100%;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding-top: clamp(3.24rem, 5.85vw, 5.2rem);
  padding-bottom: clamp(3.24rem, 5.85vw, 5.2rem);
}

/* Two-column layout grid */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 7fr;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Left panel columns positioning */
.about-left-col {
  padding: 65px 5% 65px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}

/* Right panel columns positioning */
.about-right-col {
  padding: 65px 10% 65px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Label Spacing */
.about-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Flex aligned statistics group */
.about-stat-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}

.about-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  color: var(--gold);
}

.about-stat-plus {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-2);
}

.about-stat-unit {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 900;
  margin-left: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-stat-desc {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
  color: var(--muted);
}

/* Right side content layout */
.about-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: var(--ink);
}

.about-highlight {
  display: block;
  color: var(--gold);
}

/* Align CTA button and avatars on same line */
.about-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* CTA Pill Button dimensions & flex alignments */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 8px 8px 8px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 16px;
  background: var(--gold);
  border: 1px solid rgba(229, 184, 66, 0.55);
  color: #070707;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.16);
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(229, 184, 66, 0.25);
}

/* Inner arrow circle */
.about-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
  background: #050507;
  color: var(--gold);
}

.about-cta-btn:hover .about-btn-arrow {
  transform: translateX(2px);
}

.about-btn-arrow svg {
  width: 16px;
  height: 16px;
}

/* Overlapping Avatar Stack Layout */
.about-avatars {
  display: flex;
  align-items: center;
}

.about-avatar-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #050507;
  overflow: hidden;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
}

.about-avatars .about-avatar-bubble:first-child {
  margin-left: 0;
}

.about-avatar-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #050507;
}

/* Absolute positioned background graphic */
.about-bg-graphic {
  position: absolute;
  right: -2%;
  bottom: -8%;
  width: clamp(180px, 20vw, 260px);
  height: clamp(180px, 20vw, 260px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  color: var(--gold);
}

.about-bg-graphic svg {
  width: 100%;
  height: 100%;
}

.section-kicker { margin: 0 0 1rem; color: var(--gold); }

.section-heading p, .checkout-panel p, .faq p, .formula p, .final-cta p, .footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.left { text-align: left; }
.solution-section {
  overflow: hidden;
}

/* Background Ambient Glows */
.solution-ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.solution-glow-1 {
  top: 20%;
  right: -10%;
  width: 35%;
  height: 35%;
  background: rgba(229, 184, 66, 0.04);
  filter: blur(120px);
}

.solution-glow-2 {
  bottom: 20%;
  left: -10%;
  width: 35%;
  height: 35%;
  background: rgba(229, 184, 66, 0.04);
  filter: blur(120px);
}

.solution-container {
  max-width: 1152px; /* 6xl */
  margin: 0 auto;
}

/* Heading block space-y-3 */
.solution-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 3rem;
  max-width: 672px; /* 2xl */
  text-align: left;
}

.solution-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--gold-2);
  width: fit-content;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.85);
}

.solution-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.solution-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

@media (min-width: 1024px) {
  .solution-header {
    max-width: 896px; /* 4xl */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
  }
}

/* Anchor Image Block */
.solution-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1024px; /* 5xl */
  margin: 0 auto 3rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .solution-image-wrapper {
    max-width: 850px;
  }
}

/* Backdrop glow behind the image */
.solution-backdrop-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(229, 184, 66, 0.07);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 640px) {
  .solution-backdrop-glow {
    width: 450px;
    height: 450px;
    filter: blur(130px);
  }
}

@media (min-width: 1024px) {
  .solution-backdrop-glow {
    width: 400px;
    height: 400px;
    filter: blur(120px);
  }
}

.solution-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.55));
  user-select: none;
  -webkit-user-select: none;
}

/* CTA Container */
.solution-cta-wrapper {
  display: flex;
  justify-content: center;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--gold);
  border: 1px solid rgba(229, 184, 66, 0.55);
  color: #070707;
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Mobile padding and size */
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .solution-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .solution-cta {
    padding: 1.25rem 6rem;
    font-size: 1.125rem;
  }
}

.solution-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 48px rgba(229, 184, 66, 0.35);
}

.solution-cta:active {
  transform: scale(0.95);
}

.solution-cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.solution-cta:hover .solution-cta-icon {
  transform: translateX(4px);
}



.ingredient-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.07);
}
.ingredient-showcase::-webkit-scrollbar {
  height: 6px;
  display: block;
}
.ingredient-showcase::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  margin-inline: 1.5rem;
}
.ingredient-showcase::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}
.ingredient-showcase article {
  scroll-snap-align: center;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--card);
  overflow: hidden;
}
.ingredient-showcase img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ingredient-showcase h3, .ingredient-showcase p {
  padding-inline: 1.1rem;
}
.ingredient-showcase h3 { margin-top: 1rem; }
.ingredient-showcase p { color: var(--muted); }


.checkout-panel, .package-card, .review-marquee article, .faq details, .facts-card, .formula-cards article {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
}


/* ======================================================= */
/* 1. LAYOUT TOGGLING (MEDIA BREAKPOINT)                  */
/* ======================================================= */
@media (min-width: 769px) {
  .pathway-mobile-view {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pathway-desktop-view {
    display: none !important;
  }
}

/* ======================================================= */
/* 2. DESKTOP LAYOUT SYSTEM                               */
/* ======================================================= */
.pathway-desktop-section {
  width: 100%;
  padding: 110px 0;
  overflow: hidden;
}

.pathway-desktop-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.pathway-desktop-header {
  display: grid;
  grid-template-columns: 6.5fr 3.5fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.pathway-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.85);
}

.pathway-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  color: var(--ink);
}

.pathway-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.pathway-desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pathway-desktop-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pathway-desktop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 225, 96, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Desktop Offset Layout Trigger */
.pathway-offset-card {
  transform: translateY(24px);
}
.pathway-offset-card:hover {
  transform: translateY(20px);
}

.pathway-desktop-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 0.75rem;
}

.pathway-desktop-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.pathway-desktop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pathway-desktop-card:hover .pathway-desktop-img {
  transform: scale(1.05);
}

.pathway-desktop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: var(--gold);
  color: #070707;
  font-size: 0.75rem;
  font-weight: 950;
  border: 1px solid rgba(229, 184, 66, 0.55);
  box-shadow: 0 4px 12px rgba(229, 184, 66, 0.3);
}

.pathway-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}

.pathway-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 8px 0;
}

.pathway-card-body {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.pathway-desktop-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  width: 100%;
}

.pathway-btn, .pathway-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(229, 184, 66, 0.55);
  background: var(--gold);
  color: #070707;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.16);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .pathway-btn, .pathway-mobile-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .pathway-btn, .pathway-mobile-btn {
    padding: 1.25rem 6rem;
    font-size: 1.125rem;
  }
}

.pathway-btn:hover, .pathway-mobile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(229, 184, 66, 0.28);
  background: var(--gold-2);
}

/* ======================================================= */
/* 3. MOBILE LAYOUT SYSTEM                                */
/* ======================================================= */
.pathway-mobile-section {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.pathway-mobile-wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.pathway-mobile-header {
  text-align: left;
  margin-bottom: 32px;
}

.pathway-mobile-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: 0.95;
  color: var(--ink);
  margin-top: 8px;
}

.pathway-mobile-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 0 0;
}

.pathway-mobile-divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

.pathway-mobile-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Horizontal 45% / 55% split card layout */
.pathway-mobile-card {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  align-items: stretch;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pathway-mobile-card-left {
  width: 45%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.pathway-mobile-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pathway-mobile-card-right {
  width: 55%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.pathway-mobile-card-step {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}

.pathway-mobile-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 6px 0;
}

.pathway-mobile-card-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.pathway-mobile-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.offers {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.offers .section-heading {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.offer-configurator {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.offer-showcase {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 6rem;
}
.slideshow-container {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
}
.slideshow-container > img {
  grid-area: stack;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(229,184,66,0.12), rgba(0,0,0,0.55) 48%, #050507);
}
.slideshow-container > img.active {
  opacity: 1;
}
.showcase-thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.thumbnail-btn {
  width: 70px;
  height: 70px;
  border-radius: 0.65rem;
  border: 2px solid var(--line);
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnail-btn:hover {
  border-color: rgba(229, 184, 66, 0.5);
}
.thumbnail-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(229, 184, 66, 0.3);
}

.checkout-panel {
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  background: var(--card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  scroll-margin-top: 100px;
}
.rating {
  font-weight: 900;
}
.rating .stars {
  color: var(--gold);
}
.rating .rating-text {
  color: #ffffff;
}
.checkout-panel h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.checkout-logo {
  height: 2.81em;
  display: inline-block;
}
.checkout-panel details {
  margin: 0.5rem 0;
  padding: 0.6rem 0.8rem;
  border-block: 1px solid var(--line);
}
.checkout-panel summary {
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.package-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 98px;
  padding: 0.75rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e5b842, #fff0a8);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.15s ease;
}
.package-card span, .package-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
  transition: color 0.15s ease;
}
.package-card strong {
  display: block;
  margin: 0.3rem 0;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  transition: color 0.15s ease;
}
.package-card.active {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: #050507;
}
.package-card.active::before {
  opacity: 1;
}
.package-card.active strong,
.package-card.active span,
.package-card.active em {
  color: #050507;
}
.package-card.subscription-card {
  grid-column: span 3;
  min-height: 70px;
}
.subscription-copy {
  margin-top: 0.5rem;
  font-size: 0.68rem;
}
.checkout-button, .primary-button.checkout-button {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 1.125rem !important;
  padding: 0.9rem 2rem !important;
  min-height: 58px !important;
  transition: none !important;
}

.call-to-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.65rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  background: #080a0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.call-to-order-btn:hover {
  border-color: rgba(252, 225, 96, 0.45);
  background: #0e1117;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 14px rgba(252, 225, 96, 0.12);
}

.call-to-order-btn:active {
  transform: scale(0.985);
}

.call-to-order-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.call-to-order-btn:hover .call-to-order-icon {
  transform: scale(1.1);
}

.call-to-order-text {
  letter-spacing: -0.01em;
}

.call-to-order-text strong {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .call-to-order-btn {
    font-size: 0.82rem;
    padding: 0.7rem 0.9rem;
    min-height: 46px;
    gap: 0.45rem;
  }
  .call-to-order-icon {
    width: 15px;
    height: 15px;
  }
}

.review-marquee {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: grab;
  user-select: none;
}
.review-marquee::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.review-marquee:active {
  cursor: grabbing;
}
.review-marquee article {
  flex: 0 0 min(390px, 86vw);
  min-height: 460px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.review-marquee img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.review-marquee span { color: var(--gold); margin-bottom: 0.5rem; display: inline-block; }
.review-marquee h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  line-height: 1.28;
  margin: 0.5rem 0 1rem;
  font-size: 1.15rem;
  flex-grow: 1;
}
.review-marquee p { color: var(--muted); margin: 0; }

/* Testimonials CTA Button Styles */
.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Card Layout Variants */
.card-var-b {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.card-var-b .speech-bubble {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-var-b .bubble-tail {
  position: absolute;
  bottom: -10px;
  left: 24px;
  width: 20px;
  height: 10px;
  fill: #06080c;
  stroke: var(--line);
  stroke-width: 1px;
}
.card-var-c {
  padding: 1.5rem 1.5rem 1.25rem !important;
  background: var(--card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.card-var-d h3 {
  font-style: italic;
}
.card-var-d p.author {
  text-align: right;
  font-weight: bold;
}
.card-var-e {
  flex: 0 0 min(420px, 90vw) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(rgba(4,4,6,0.9), rgba(4,4,6,0.94)),
    url("https://try.nox47.com/images/herosection-1.png") center/cover;
}
.final-cta p {
  max-width: 760px;
  margin: 1rem auto 2rem;
}

/* ==========================================================================
   Guarantee Section Redesign
   ========================================================================== */
.guarantee {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(4,4,6,0.92), rgba(4,4,6,0.95)),
    url("https://try.nox47.com/images/herosection-1.png") center/cover;
}

.guarantee-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee .section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.guarantee .section-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.guarantee-cta-wrapper {
  margin-bottom: 3.5rem;
}

.guarantee-btn {
  padding: 1.1rem 2.8rem !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
}

/* Trust Stamps Grid */
.trust-stamps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 760px;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
  margin-top: 1rem;
}

.stamp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.25s ease;
}

.stamp-card:hover {
  transform: translateY(-2px);
}

.stamp-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
  transition: all 0.25s ease;
}

.stamp-card:hover .stamp-icon-wrapper {
  border-color: rgba(229, 184, 66, 0.4);
  background: rgba(229, 184, 66, 0.05);
  box-shadow: 0 0 15px rgba(229, 184, 66, 0.05);
}

.stamp-label {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .trust-stamps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    padding-top: 2rem;
  }
  .stamp-icon-wrapper {
    width: 62px;
    height: 62px;
  }
}

/* ==========================================================================
   FAQ Section Layout & Styles (Premium Redesign)
   ========================================================================== */

/* Outer Section Container overrides */
.faq-section-premium {
  width: 100%;
}

/* Two Column Grid Setup */
.faq-two-col {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Sidebar Column (Sticky Effect on Scroll) */
.faq-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.faq-sidebar .section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  color: var(--gold);
}

.faq-sidebar .section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--ink);
}

.faq-sidebar .section-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--muted);
}

/* Card Stack Layout */
.faq-list-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Individual FAQ Cards & Hover Effects */
.faq-item-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Hover Interactive Styling */
.faq-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229, 184, 66, 0.08);
  border-color: rgba(229, 184, 66, 0.4);
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
  color: var(--ink);
  flex-grow: 1;
  padding-right: 16px;
}

.faq-icon-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item-card.active .faq-icon-toggle {
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  display: none;
}

.faq-item-card.active .faq-answer-wrapper {
  display: block;
}

.faq-answer {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  padding-top: 14px;
  color: var(--muted);
}

/* Action Button Layouts & Animations */
.faq-action-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}

.faq-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(229, 184, 66, 0.55);
  border-radius: 9999px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  background-color: var(--gold);
  color: #070707;
  box-shadow: 0 18px 42px rgba(229, 184, 66, 0.16);
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .faq-action-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .faq-action-btn {
    padding: 1.25rem 6rem;
    font-size: 1.125rem;
  }
}

/* Hover/Active states for button */
.faq-action-btn:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.18);
}

.faq-action-btn:active {
  transform: scale(0.98);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .faq-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    padding: 60px 40px;
    box-sizing: border-box;
  }
  
  .faq-sidebar {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  
  .faq-list-container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .faq-two-col {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    border-radius: 1.5rem;
  }
}

@media (min-width: 992px) {
  .faq-two-col {
    grid-template-columns: 6.4fr 5.6fr;
    gap: 60px;
  }
  
  .faq-sidebar {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    box-sizing: border-box;
  }
  
  .faq-list-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    box-sizing: border-box;
  }
  
  .faq-sidebar .section-label {
    font-size: 1.22rem;
  }
  
  .faq-sidebar .section-title {
    font-size: 4.55rem;
    line-height: 1.2;
  }
  
  .faq-sidebar .section-desc {
    font-size: 1.61rem;
  }
}

.formula-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1rem;
}
.facts-card, .formula-cards article {
  padding: 1.25rem;
  background: var(--card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.formula-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-wrapper {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 3rem 1.5rem;
  background-color: #050507;
  border-top: 1px solid var(--line);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-slot {
  display: flex;
  align-items: center;
}

.brand-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Form Styles */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.newsletter-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-subtext {
  font-size: 0.8rem;
  color: var(--faint);
  margin-top: -0.25rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
  color: var(--faint);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(229, 184, 66, 0.2);
}

.newsletter-submit-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: calc(2.5rem - 8px);
  height: calc(2.5rem - 8px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background-color: var(--gold);
  color: #070707;
  transition: transform 0.15s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-submit-btn:hover {
  background-color: var(--gold-2);
  box-shadow: 0 0 20px rgba(229, 184, 66, 0.4);
}

.newsletter-submit-btn:active {
  transform: scale(0.9);
}

.success-message-slot {
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: footerFadeInUp 0.4s ease forwards;
  color: var(--gold);
  background: rgba(229, 184, 66, 0.06);
  border: 1px solid rgba(229, 184, 66, 0.2);
}

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

/* Link list & Interactive hover dots */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-button {
  background: none;
  border: none;
  font-size: 0.875rem;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-align: left;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-button:hover {
  color: var(--gold);
}

.hover-dot {
  display: inline-block;
  width: 0;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transition: width 0.25s ease, margin-right 0.25s ease, opacity 0.25s ease;
  background-color: var(--gold);
}

.nav-button:hover .hover-dot {
  width: 6px;
  margin-right: 8px;
  opacity: 1;
}

/* Badge list items */
.badge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.badge-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  transition: color 0.25s ease, transform 0.25s ease;
  color: var(--gold);
}

.badge-item:hover .badge-icon-wrapper {
  color: var(--ink);
  transform: scale(1.08);
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

/* Contact layout */
.contact-intro {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.phone-link, .email-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink);
  transition: color 0.25s ease;
}

.phone-link:hover, .email-link:hover {
  color: var(--gold);
}

.meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.meta-info strong {
  color: var(--ink);
}

.meta-info span {
  color: var(--gold-2);
}

/* Compliance Disclaimer Box */
.disclaimer-box {
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclaimer-text {
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: justify;
  color: var(--faint);
}

/* Bottom Bar */
.bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright-info {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--muted);
}

@media (max-width: 767px) {
  .copyright-info {
    text-align: center;
  }
}

.manufacturing-info {
  font-size: 0.75rem;
  color: var(--faint);
}

/* Card Pill Container Wrapper */
.payment-methods {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  
  /* Translucent backdrop that adapts to any background color */
  background-color: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.10);
  
  /* Neutral elevated drop shadow */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16); 
}

/* Individual Badge Styling */
.payment-badge {
  width: 44px;
  height: 28px;
  border-radius: 4px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover Zoom & Opacity Effect */
.payment-badge:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Legal Links & Circular Back-to-Top Button */
.legal-and-top {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.legal-link {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.legal-link:hover {
  color: var(--gold);
}

.scroll-top-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: #0c0f14;
  border: 1px solid rgba(229, 184, 66, 0.35);
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(229, 184, 66, 0.1);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.scroll-top-btn:hover {
  transform: translateY(-2px);
  background-color: var(--gold);
  color: #070707;
  border-color: var(--gold);
  box-shadow: 0 10px 35px rgba(229, 184, 66, 0.3);
}

.scroll-top-btn:active {
  transform: translateY(-2px) scale(0.9);
}

/* Giant Wide Decorative Image Block */
.giant-logo-cap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  user-select: none;
  pointer-events: none;
  width: 100%;
}

.giant-logo-placeholder {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .giant-logo-placeholder {
    max-width: 95%;
  }
}

/* ==========================================================================
   Legal & Regulatory Compliance Footer (Site Bottom Sub-Footer)
   ========================================================================== */
.compliance-footer {
  width: 100%;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 44px 1.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.compliance-container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.compliance-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.2rem;
}

.compliance-logo {
  width: 44px;
  height: auto;
  display: block;
  opacity: 0.9;
  filter: brightness(0.95);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.compliance-logo:hover {
  opacity: 1;
  filter: brightness(1.1);
}

.compliance-copyright {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #71717a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.compliance-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.compliance-link {
  color: #71717a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.compliance-link:hover {
  color: #f8f3e6;
}

.compliance-bullet {
  color: #3f3f46;
  margin: 0 0.4rem;
  font-size: 0.75rem;
  user-select: none;
}

.compliance-disclaimer {
  font-size: 0.625rem;
  font-weight: 400;
  color: #52525b;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
  max-width: 820px;
  margin: 0.2rem 0 0 0;
}

@media (max-width: 1120px) {
  .about-grid, .offer-configurator, .formula-layout {
    grid-template-columns: 1fr;
  }
  .about-left-col {
    padding: 39px 24px;
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .about-right-col {
    padding: 39px 24px;
    text-align: left;
  }
  .about-stat-group {
    justify-content: center;
  }
  .about-action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .about-avatars {
    width: 100%;
    justify-content: flex-start;
    margin-left: 6px;
  }
  .offer-showcase {
    position: relative;
    top: auto;
    max-width: 360px;
    width: 100%;
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 760px) {
  .nav-logo img { width: 112px; }
  .hero { min-height: 640px; }
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
  .hero-title { top: 22%; }
  .hero-actions { bottom: 7%; }
  h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .about-section, .solution-section, .pathway-section-container, .offers, .testimonials, .guarantee, .faq, .formula, .final-cta, .ingredients-section {
    padding-inline: 1rem;
  }
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .package-card.subscription-card {
    grid-column: span 3;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .package-card {
    padding: 0.8rem;
    min-height: 135px;
    text-align: center;
  }
  .package-card span {
    font-size: 0.8rem;
    font-weight: 700;
  }
  .package-card strong {
    font-size: 1.35rem;
    margin: 0.15rem 0;
  }
  .package-card em {
    font-size: 0.72rem;
    line-height: 1.2;
    display: block;
  }
  .package-card span.text-\[9px\] {
    font-size: 0.65rem;
    line-height: 1.2;
    display: block;
  }
  .package-card:not(.subscription-card) em {
    min-height: 2.4em;
  }
  .package-card:not(.subscription-card) span.text-\[9px\] {
    min-height: 3.6em;
  }
  @media (max-width: 360px) {
    .package-grid {
      gap: 0.3rem;
    }
    .package-card {
      padding: 0.5rem 0.3rem;
      min-height: 125px;
    }
    .package-card span {
      font-size: 0.72rem;
    }
    .package-card strong {
      font-size: 1.15rem;
    }
    .package-card em {
      font-size: 0.65rem;
    }
    .package-card span.text-\[9px\] {
      font-size: 0.58rem;
    }
  }
  .formula-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .formula {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .formula-layout {
    background: var(--card) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .facts-card, .formula-cards article {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .facts-card {
    border-bottom: 1px solid var(--line) !important;
    padding-bottom: 1.25rem !important;
  }
  .facts-card p {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
    font-size: 0.85rem;
    line-height: 1.35;
  }
  .formula-cards article h3 {
    font-size: 1.05rem !important;
  }
  .formula-cards article p {
    margin-top: 0.2rem !important;
    margin-bottom: 0 !important;
    font-size: 0.85rem;
    line-height: 1.35;
  }
  .ingredient-showcase { 
    grid-template-columns: repeat(4, 50vw); 
  }
  .ingredient-showcase article {
    scroll-snap-align: start;
    min-height: 330px;
  }
  .ingredient-showcase img {
    height: 160px;
  }
  .ingredient-showcase p {
    font-size: 0.65rem;
    line-height: 1.4;
  }
}

/* ==========================================================================
   Bento Grid Section (Vanilla CSS styled to exact markup utility classes)
   ========================================================================== */
#performance-grid {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 1rem;
}

#performance-grid .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  auto-rows: 160px;
}

#performance-grid .bento-card {
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#performance-grid .bento-card:hover {
  border-color: rgba(252, 225, 96, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

/* Base Utility Mapping inside Bento */
#performance-grid .col-span-2 { grid-column: span 2; }
#performance-grid .col-span-1 { grid-column: span 1; }
#performance-grid .row-span-1 { grid-row: span 1; }
#performance-grid .row-span-2 { grid-row: span 2; }

#performance-grid .p-4 { padding: 1rem; }
#performance-grid .p-5 { padding: 1.25rem; }

#performance-grid .rounded-\[1\.5rem\] { border-radius: 1.5rem; }

#performance-grid .flex { display: flex; }
#performance-grid .flex-col { flex-direction: column; }
#performance-grid .justify-center { justify-content: center; }
#performance-grid .justify-between { justify-content: space-between; }
#performance-grid .items-center { align-items: center; }
#performance-grid .text-center { text-align: center; }

/* Image Highlight Card styling */
#performance-grid .image-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#performance-grid .image-card:hover img {
  transform: scale(1.06);
}

/* Card 5 Swipe Reveal Styling */
#performance-grid .interactive-card {
  padding: 0 !important;
  border-color: rgba(252, 225, 96, 0.15);
}
#performance-grid .base-layer,
#performance-grid .reveal-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  border-radius: inherit;
}
#performance-grid .base-layer {
  background: #1c1c1e;
}
#performance-grid .reveal-layer {
  background: transparent;
  border: 1px solid var(--gold);
}

/* Desktop Breakpoints (768px and up) */
@media (min-width: 768px) {
  #performance-grid {
    padding: 6rem 1.5rem !important;
  }
  #performance-grid .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    auto-rows: 240px;
  }
  #performance-grid .md\:col-span-2 { grid-column: span 2; }
  #performance-grid .md\:col-span-1 { grid-column: span 1; }
  #performance-grid .md\:row-span-1 { grid-row: span 1; }
  #performance-grid .md\:row-span-2 { grid-row: span 2; }
  #performance-grid .md\:p-8 { padding: 2rem; }
  #performance-grid .md\:rounded-\[2rem\] { border-radius: 2rem; }
  #performance-grid .md\:justify-between { justify-content: space-between; }


}

/* Overlap Prevention for Mobile Sticky CTA */
@media (max-width: 767px) {
  #performance-grid .stat-card {
    order: 1;
  }
  #activation-card {
    order: 2;
  }
  .footer-wrapper {
    padding-bottom: 2rem !important;
  }
  .compliance-footer {
    padding-bottom: calc(36px + 70px) !important;
  }
}


/* ==========================================================================
   Radial Layout Grid Section
   ========================================================================== */
.radial-grid-section {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
}

.radial-grid-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

#problem .radial-grid-container,
#solution .radial-grid-container {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: clamp(3rem, 5.85vw, 5.2rem) clamp(1.5rem, 5vw, 5rem);
}

@media (max-width: 1398px) {
  #problem,
  #solution {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 640px) {
  #problem .radial-grid-container,
  #solution .radial-grid-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    border-radius: 1.5rem;
  }
}

/* Glass card styling for Performance Grid and Science Sections */
#performance-grid > .max-w-6xl,
#science .pathway-desktop-wrapper,
#science .pathway-mobile-wrapper,
.offers-container,
.testimonials-container,
.ingredients-container,
.formula-container {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: clamp(3rem, 5.85vw, 5.2rem) clamp(1.5rem, 5vw, 5rem);
}

.offers-container,
.formula-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ingredients-container {
  max-width: 1550px;
  width: 96%;
  margin: 0 auto;
}

.testimonials-container {
  max-width: 1800px;
  width: 98%;
  margin: 0 auto;
}

.ingredients-section {
  padding-left: clamp(1rem, 2vw, 2rem) !important;
  padding-right: clamp(1rem, 2vw, 2rem) !important;
}

.testimonials {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

@media (max-width: 1398px) {
  .pathway-desktop-section,
  .pathway-mobile-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 640px) {
  #performance-grid > .max-w-6xl,
  #science .pathway-desktop-wrapper,
  #science .pathway-mobile-wrapper,
  .offers-container,
  .testimonials-container,
  .ingredients-container,
  .formula-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    border-radius: 1.5rem;
  }
  .formula-container {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

.radial-grid-layout {
  display: grid;
  grid-template-columns: 4fr 2.5fr 4fr;
  gap: 20px;
  align-items: center;
  position: relative;
}

.grid-col-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.grid-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.center-anchor-visual {
  width: 100%;
  max-width: 525px;
  position: relative;
  z-index: 2;
}

#solution .center-anchor-visual {
  max-width: 908px; /* Increased by 400% from base 227px */
}

.anchor-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.55));
}

/* Vectors & Arrows pointing inwards */
.connecting-arrow {
  position: absolute;
  width: 58px;
  height: 58px;
  z-index: 1;
  pointer-events: none;
}

.arrow-tl {
  top: 34%;
  left: -42px;
  transform: rotate(20deg);
}

.arrow-bl {
  bottom: 15%;
  left: -42px;
  transform: rotate(-20deg);
}

.arrow-tr {
  top: 34%;
  right: -42px;
  transform: scaleX(-1) rotate(20deg);
}

.arrow-br {
  bottom: 15%;
  right: -42px;
  transform: scaleX(-1) rotate(-20deg);
}

/* Card layout (Horizontal splits on desktop) */
.grid-card {
  display: flex;
  overflow: hidden;
  height: 240px;
  border-radius: 20px;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 225, 96, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-left {
  flex-direction: row;
}

.card-right {
  flex-direction: row-reverse;
}

.card-media {
  width: 50%;
  align-self: stretch;
  flex-shrink: 0;
  overflow: hidden;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  width: 50%;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.card-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.card-icon svg {
  width: 14px;
  height: 14px;
}

.card-title {
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.card-accent-line {
  width: 32px;
  height: 2px;
  margin: 8px 0 12px 0;
  flex-shrink: 0;
  background-color: currentColor;
}

.card-body {
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   Tablet Adaptive Adjustments (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
  .radial-grid-layout {
    grid-template-columns: minmax(0, 4fr) minmax(0, 2.5fr) minmax(0, 4fr);
    gap: 16px;
  }

  .center-anchor-visual {
    max-width: 220px;
  }

  /* Keep cards in horizontal split layout on tablet screens */
  .grid-card {
    height: 200px;
    position: relative;
    width: 100%;
  }

  .card-media {
    width: 50% !important;
    height: 100% !important;
  }

  .card-content {
    width: 50% !important;
    padding: 16px 20px !important;
    align-items: flex-start;
  }

  /* Overlay badge icons directly on top-left of card images */
  .card-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(7, 7, 7, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-color: var(--gold-2);
  }

  /* Slightly scale down connecting arrows */
  .connecting-arrow {
    width: 38px;
    height: 38px;
  }

  .arrow-tl, .arrow-bl {
    left: -28px;
  }

  .arrow-tr, .arrow-br {
    right: -28px;
  }
}

/* ==========================================
   Mobile Adaptive Adjustments (max-width: 640px)
   ========================================== */
@media (max-width: 640px) {
  .radial-grid-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* Strict scaling for narrow mobile views to prevent wrapping */
  .radial-grid-layout {
    grid-template-columns: minmax(0, 3.2fr) minmax(0, 3.6fr) minmax(0, 3.2fr);
    gap: 6px;
  }

  .center-anchor-visual {
    max-width: none !important;
    width: 100% !important;
    overflow: visible;
  }

  /* Scale up and center main product anchor mockup on small mobile screen */
  .anchor-image {
    width: 110% !important;
    max-width: none !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }


  .grid-card {
    flex-direction: column !important;
    height: auto;
    border-radius: 12px;
  }

  .card-media {
    width: 100% !important;
    height: 70px !important;
  }

  .card-content {
    width: 100% !important;
    padding: 4px 6px 6px 6px !important;
  }

  .card-icon {
    width: 13px;
    height: 13px;
    top: 3px;
    left: 3px;
    border-width: 1px;
  }

  .card-icon svg {
    width: 6.5px;
    height: 6.5px;
  }

  .card-title {
    font-size: 3.6px;
    line-height: 1.2;
    word-break: break-word;
  }

  .card-accent-line {
    width: 13px;
    height: 1px;
    margin: 2px 0 2px 0;
  }

  .card-body {
    font-size: 1.08px;
    line-height: 1.2;
  }

  /* Scale connecting arrows down for mobile screens */
  .connecting-arrow {
    width: 20px;
    height: 20px;
    z-index: 4;
  }

  .arrow-tl, .arrow-bl {
    left: -15px;
  }

  .arrow-tr, .arrow-br {
    right: -15px;
  }

  /* Specific mobile adjustments for Problem Section: remove cards and center anchor image */
  #problem .grid-col-side {
    display: none !important;
  }

  #problem .connecting-arrow {
    display: none !important;
  }

  #problem .radial-grid-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #problem .center-anchor-visual {
    max-width: 350px !important;
    margin: 0 auto;
  }

  #problem .anchor-image {
    width: 100% !important;
    max-width: 100% !important;
    position: static;
    transform: none;
  }

}

@media (min-width: 1121px) {
  .offer-configurator {
    align-items: stretch;
  }
  .offer-showcase {
    height: 100%;
  }
  .slideshow-container {
    height: calc(100% - 90px);
  }
  .slideshow-container > img {
    height: 100%;
    object-fit: contain;
  }
}

/* Remove Problem Section cards and arrows globally across all viewports */
#problem .grid-col-side {
  display: none !important;
}

#problem .connecting-arrow {
  display: none !important;
}

#problem .radial-grid-layout {
  display: flex !important;
  justify-content: center !important;
}

#problem .center-anchor-visual {
  max-width: 850px !important;
  width: 100% !important;
  margin: 0 auto;
}

#problem .anchor-image {
  width: 100% !important;
  max-width: 100% !important;
  position: static !important;
  transform: none !important;
}

/* Remove Solution Section cards and arrows globally across all viewports */
#solution .grid-col-side {
  display: none !important;
}

#solution .connecting-arrow {
  display: none !important;
}

#solution .radial-grid-layout {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

/* ==========================================================================
   Sticky Intro Offer Marquee Banner Styles
   ========================================================================== */
.marquee-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: #F5AC27;
  color: #070707; /* Clear dark text */
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 100;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, color 0.2s ease;
  transform: translateY(-100%);
}

.marquee-banner.visible {
  transform: translateY(0);
}

.marquee-banner:hover {
  background: var(--gold);
  color: #070707;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}



