/* =============================================
   ORYGN triGLP — Brand-compliant stylesheet
   Colors: #000000 bg | #FE5000 orange | #FFFFFF white
   #1D1E2C navy | #434344 charcoal | #45CB85 teal
   Font: Poppins (300/400/500/600/900)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;900&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

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

:root {
  --black:   #000000;
  --orange:  #FE5000;
  --white:   #FFFFFF;
  --navy:    #1D1E2C;
  --charcoal:#434344;
  --teal:    #45CB85;
  --muted:   rgba(255,255,255,0.65);
  --font:    'Poppins', 'Noto Sans KR', sans-serif;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Typography scale ─────────────────────────── */
.display {
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

h1, h2 {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; }

p { color: var(--muted); font-weight: 300; font-size: 1.05rem; line-height: 1.8; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 2px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: transparent;
  color: var(--orange);
}

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

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

/* ── Layout helpers ───────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.text-orange { color: var(--orange); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }

/* ── Navigation ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(254,80,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo svg {
  height: 28px;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language toggle — hidden until KO content is ready */
.lang-toggle { display: none !important; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Drop watermark */
.hero-drop {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  max-width: 700px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ── Problem section ──────────────────────────── */
.section-problem {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.problem-image {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.problem-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s;
}
.problem-image:hover img { filter: grayscale(0%); }

.problem-content h2 {
  margin-bottom: 0.4rem;
}
.problem-sub {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
}

/* ── Solution section ─────────────────────────── */
.section-solution {
  background: var(--navy);
}

.solution-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.pathway-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(254,80,0,0.15);
  border: 1.5px solid rgba(254,80,0,0.15);
}

.pathway-card {
  background: var(--navy);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.pathway-card:hover { background: rgba(254,80,0,0.06); }

.pathway-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(254,80,0,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: var(--font);
}

.pathway-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

.pathway-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.pathway-sub {
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pathway-card p { font-size: 0.95rem; }

/* ── Results / Stats ──────────────────────────── */
.section-results {
  background: var(--black);
  text-align: center;
}

.results-intro {
  max-width: 600px;
  margin: 0 auto 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--black);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.stat-card:hover::after { transform: scaleX(1); }

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.8rem;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
  display: block;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

.results-image {
  margin: 4rem auto 0;
  max-width: 900px;
}
.results-image img {
  width: 100%;
  border-radius: 2px;
}

/* ── Purity section ───────────────────────────── */
.section-purity {
  background: var(--navy);
}

.purity-points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.purity-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--orange);
  background: rgba(0,0,0,0.3);
}
.purity-point-icon {
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.purity-point span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
}

/* ── Potency section ──────────────────────────── */
.section-potency {
  background: var(--black);
}

/* ── Order section ────────────────────────────── */
.section-order { background: var(--navy); }

.order-horiz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 2rem 0;
}

.order-horiz-text h2 { margin-bottom: 1rem; }
.order-horiz-text p  { max-width: 440px; margin-bottom: 0; }

.order-horiz-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.order-horiz-ctas .btn {
  width: 100%;
  text-align: center;
}

.order-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ── Footer ───────────────────────────────────── */
footer {
  background: #000;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-logo svg { height: 24px; color: var(--white); }

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  max-width: 800px;
  line-height: 1.6;
}

.footer-rights {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ── Opportunity page specific ────────────────── */
.hero-opportunity {
  background: radial-gradient(ellipse at 60% 50%, rgba(254,80,0,0.08) 0%, transparent 70%);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(254,80,0,0.1);
  margin: 4rem 0;
}

.market-stat {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
}
.market-stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.market-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  background: rgba(255,255,255,0.04);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 3rem;
  background: var(--black);
  transition: background 0.3s;
}
.step:hover { background: rgba(254,80,0,0.04); }

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(254,80,0,0.2);
  line-height: 1;
}
.step h3 { margin-bottom: 0.4rem; }

.opp-cta-section {
  background: var(--orange);
  padding: 7rem 2rem;
  text-align: center;
}
.opp-cta-section h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.opp-cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.opp-cta-section .btn-outline {
  border-color: var(--white);
}

/* ── Animations ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ── Divider ──────────────────────────────────── */
.orange-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 1.5rem 0;
}

.orange-line-center {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 1.5rem auto;
}

/* ── Video-only hero ──────────────────────────── */
.hero-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-cue svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* ── Hero intro (below video) ─────────────────── */
.hero-intro {
  background: var(--black);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-intro-drop {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  max-width: 600px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-intro .hero-eyebrow {
  justify-content: center;
}
.hero-intro .hero-eyebrow::before { display: none; }

.hero-intro h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-intro h1 span { display: block; }

.hero-intro .hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-intro .hero-ctas { justify-content: center; }

/* ── Pathway stat badge ───────────────────────── */
.pathway-stat {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.5rem 1rem;
  background: rgba(254,80,0,0.1);
  border-left: 2px solid var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ── Purity image ─────────────────────────────── */
.purity-img-wrap {
  height: 100%;
  min-height: 480px;
}
.purity-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  display: block;
}

/* ── Step numbers bright ─────────────────────── */
.step-number-bright {
  color: var(--orange) !important;
  opacity: 1 !important;
}

/* ── Product Advantage ───────────────────────── */
.prod-adv-section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 500 !important;
  color: var(--white) !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 3rem;
}

.prod-adv-dark {
  background-image: url('https://drerinoksol.orygn.co/assets/featuredProduct3-CAmrkDrW.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem 0;
}
.prod-adv-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.2) 100%);
}
.prod-adv-dark .container { position: relative; }
.prod-adv-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  letter-spacing: 0.01em !important;
  margin-bottom: 1.5rem;
}
.prod-adv-h2 strong { font-weight: 700; }
.prod-adv-dark p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 480px; }
.prod-adv-dark p strong { color: var(--white); }
.prod-adv-img-wrap { display: flex; align-items: flex-end; justify-content: center; }
.prod-adv-img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* ── Why ORYGN (light section) ───────────────── */
.why-orygn-section {
  background: #fbfbfb !important;
  text-align: center;
}
.why-orygn-h2 {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  color: #111 !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0.8rem;
}
.why-orygn-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.2rem;
}
.why-orygn-body {
  color: #333 !important;
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 1rem;
}
.why-orygn-bold {
  font-weight: 600;
  font-size: 1rem;
  color: #111 !important;
  margin: 1rem auto 3rem;
  max-width: 600px;
}
.why-orygn-section .orange-line-center { background: var(--orange); }

.why-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.why-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.why-icon-svg {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.why-icon-label {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
}

/* ── KLOZR image ──────────────────────────────── */
.klozr-img-wrap { display: flex; align-items: center; }
.klozr-img {
  width: 100%;
  border-radius: 2px;
  max-height: 420px;
  object-fit: cover;
}

/* ── Why Now ──────────────────────────────────── */
.why-now-section {
  position: relative;
  background-image: url('https://drerinoksol.orygn.co/assets/fishwall-tCMtOjcL.png');
  background-size: cover;
  background-repeat: repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.why-now-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
}
.why-now-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  text-align: center;
}
.why-now-content h2 { color: #111 !important; }
.why-now-content .orange-line-center { margin: 1.5rem auto; }
.why-now-sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: #111 !important;
  margin-bottom: 1rem;
}
.why-now-content p { color: #333 !important; max-width: 700px; margin: 0 auto 1rem; }
.why-now-end {
  font-weight: 500;
  font-size: 1.1rem;
  color: #111 !important;
  margin-top: 1.5rem;
}

/* ── Opportunity hero ────────────────────────── */
.opp-hero-h1 span { display: block; }
.opp-hero-h1 span:first-child {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.opp-hero-sub {
  font-size: clamp(1.2rem, 3vw, 1.8rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  opacity: 0.9;
  max-width: 540px;
  line-height: 1.4 !important;
}

/* ── Compensation Plan ────────────────────────── */
.comp-section {
  background: #fbfbfb;
  color: #111;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.comp-header {
  max-width: 72rem;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  text-align: center;
}
.comp-header-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  color: #111 !important;
}
.comp-split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2rem;
  align-items: start;
  /* image bleeds to left edge */
}
.comp-img-col {
  position: relative;
  width: 100%;
  height: 384px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  overflow: hidden;
}
.comp-split-overlay {
  position: absolute;
  bottom: 0.5rem;
  right: 1.5rem;
  text-align: right;
}
.comp-split-overlay div {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin: 0.5rem 0;
  line-height: 1.4;
}
.comp-text-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 3rem;
}
.comp-text-col h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}
.comp-text-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
}

/* ── Bottle feature image (pathway section) ───── */
.sol-bottle-feature {
  margin: 3rem 0 4rem;
  overflow: hidden;
  border-radius: 2px;
}
.sol-bottle-feature img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── Pathway card image ───────────────────────── */
.pathway-card-img {
  display: block;
  width: calc(100% + 5rem);
  margin: -3rem -2.5rem 2rem -2.5rem;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

/* ── Testimonials ─────────────────────────────── */
.section-testimonials { background: var(--black); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial-name   { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testimonial-location {
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Timeline ─────────────────────────────────── */
.section-timeline {
  background-image: url('https://drerinoksol.orygn.co/assets/heroImage3-CfjbUuB3.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}
.section-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29,30,44,0.97) 0%, rgba(29,30,44,0.92) 55%, rgba(29,30,44,0.1) 100%);
  pointer-events: none;
}
.section-timeline .container { position: relative; }

.timeline-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 560px;
}

.timeline-start {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.timeline-phase-v {
  margin-bottom: 2.2rem;
}

.timeline-weeks {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.timeline-weeks span { color: var(--white); }

.timeline-phase-v ul {
  list-style: disc;
  padding-left: 1.4rem;
}
.timeline-phase-v li {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  padding: 0.25rem 0;
  line-height: 1.6;
}

.timeline-image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ── Potency big stat ─────────────────────────── */
.potency-big-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.potency-abs-stat {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.potency-abs-label {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 280px;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-list { margin-top: 3rem; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(254,80,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .grid-4          { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-split    { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .grid-2            { grid-template-columns: 1fr; }
  .grid-3            { grid-template-columns: 1fr; }
  .pathway-cards     { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .market-stats      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline-split    { grid-template-columns: 1fr; min-height: auto; }

  .hero-drop { display: none; }

  .potency-big-number { align-items: center; text-align: center; }
  .potency-abs-label  { max-width: 100%; }

  .order-horiz { grid-template-columns: 1fr; gap: 2.5rem; }
  .comp-split { grid-template-columns: 1fr; }
  .comp-text-col { padding: 2rem 1.5rem; }
  .why-icons { grid-template-columns: 1fr; }
  .order-horiz-ctas { align-items: center; }

  .pathway-card-img { width: calc(100% + 3rem); margin-left: -1.5rem; margin-right: -1.5rem; }

  .step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-number { font-size: 2.5rem; }

  .footer-top { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .order-details { flex-direction: column; gap: 1.5rem; }
  h1 { font-size: 2.2rem; }
}
