/* ============================================================
   home.css — landing page sections
   ============================================================ */

/* ---------- HERO BANNER (static, replaces slider) ---------- */
.hero-banner {
  width: 100%;
  height: calc(100vh - 120px); /* 100vh minus sticky header (56px top + 64px main) */
  min-height: 600px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(254,80,0,0.05) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
/* ---------- scroll cue ---------- */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.2s;
}
.hero-scroll-cue:hover { color: #FE5000; }
.hero-scroll-cue-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero-scroll-cue-arrow {
  color: #FE5000;
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue-arrow { animation: none; }
}
.hero-banner-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hero-banner-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-banner-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  line-height: 51px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FE5000;
  margin: 0 0 20px;
}
.hero-banner-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 400;
  font-style: normal;
  line-height: 57px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin: 0 0 20px;
}
.hero-banner-body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0px;
  color: #555;
  max-width: 440px;
  margin: 0 0 28px;
}
.hero-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hb-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  display: inline-block;
}
.hb-btn--solid {
  background: #FE5000;
  color: #fff;
  border: 2px solid #FE5000;
}
.hb-btn--solid:hover { opacity: 0.88; }
.hb-btn--outline {
  background: transparent;
  color: #FE5000;
  border: 2px solid #FE5000;
}
.hb-btn--outline:hover { background: #FE5000; color: #fff; }
.hero-banner-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 16px 24px;
  width: fit-content;
}
.hb-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
}
.hb-stat:first-child { padding-left: 0; }
.hb-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FE5000;
  line-height: 1;
}
.hb-stat-lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.2;
}
.hb-stat-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.hero-banner-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner-img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.12));
  transform: scale(1.18) translateY(4%);
  transform-origin: center bottom;
}
@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    min-height: 100vh;
    padding: 48px 0;
  }
  .hero-banner-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 32px;
    height: auto;
  }
  .hero-banner-right { order: -1; }
  .hero-banner-img { max-height: 280px; }
  .hero-banner-heading { font-size: 2.4rem; }
  .hero-banner-stats { flex-wrap: wrap; gap: 12px; }
  .hb-stat { padding: 0 12px; }
  .hero-scroll-cue { display: none; }
}

/* ---------- FEATURED PRODUCTS ---------- */
.featured {
  width: 100%;
  padding: 72px 0 88px;
  background: #fff;
}
.featured-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FE5000;
  margin: 0 0 12px;
}
.featured-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
  color: #1a1a1a;
  margin: 0 0 48px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fp-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}
.fp-card:hover {
  box-shadow: 0 18px 44px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.fp-media {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.fp-media img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.fp-media--combo {
  gap: 12px;
}
.fp-media--combo img {
  max-height: 150px;
  max-width: 40%;
}
.fp-plus {
  font-family: 'Barlow', sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: #111;
  line-height: 1;
  flex-shrink: 0;
}
.fp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.fp-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
  margin: 0 0 24px;
  flex: 1;
}
.fp-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 11px 24px;
  border-radius: 6px;
  border: 2px solid #FE5000;
  color: #FE5000;
  background: transparent;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.fp-btn:hover { background: #FE5000; color: #fff; }

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; gap: 24px; }
  .featured-heading { font-size: 40px; }
  .fp-media { height: 260px; }
}

/* ---------- Shared slider chrome ---------- */
.slider-viewport { width: 100%; overflow: hidden; }
.slider-track { display: flex; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.35); color: #fff; border: none;
  font-size: 20px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.slider-prev { left: 12px; } .slider-next { right: 12px; }
.slider-dots { display: flex; gap: 8px; justify-content: center; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: #D9D9D9; cursor: pointer; padding: 0;
}
.slider-dot.active { background: var(--color-primary); }

/* ---------- HERO ---------- */
.hero { width: 100%; }
.hero .slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 709;
  min-height: 320px;
}
.hero .slider-track {
  position: absolute;
  inset: 0;
}
.hero-dots {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 10;
}
.slide-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 709;
  min-height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    #ffffff 0%, #ffffff 50%,
    rgba(255,255,255,0.88) 60%,
    rgba(255,255,255,0.4) 72%,
    rgba(255,255,255,0) 83%);
  pointer-events: none;
}
.slide-container {
  position: relative; z-index: 1; width: 100%;
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
}
.slide-content {
  width: 44%; display: flex; flex-direction: column;
  gap: clamp(20px, 2.8vw, 40px);
}
.slide-heading {
  font-family: var(--ffc); font-size: 64px; font-weight: 400;
  line-height: 57px; color: var(--ink-strong); margin: 0;
}
.slide-heading .heading-orange { color: var(--color-primary); }
.slide-sub { font-family: var(--ff); font-size: 24px; font-weight: 500; line-height: 100%; color: #2d2d2d; }
.slide-sub strong { color: var(--color-primary); font-weight: 700; }
.slide-body { font-family: var(--ff); font-size: 16px; color: var(--muted); line-height: 100%; }
.slide-icons { display: flex; flex-wrap: wrap; gap: clamp(10px,1.5vw,20px) clamp(14px,2vw,28px); margin-top: clamp(8px,1.5vw,20px); }
.icon-item { display: flex; flex-direction: column; align-items: center; gap: 6px; width: clamp(60px,5.5vw,80px); text-align: center; }
.icon-img { width: clamp(32px,3vw,45px); height: clamp(32px,3vw,45px); flex-shrink: 0; }
.icon-label { font-family: var(--ff); font-size: 15px; line-height: 100%; color: var(--muted-2); }

@media (max-width: 768px) {
  .hero .slider-viewport { aspect-ratio: unset; min-height: 640px; }
  .slide-banner { aspect-ratio: unset; min-height: unset; height: 100%; flex-direction: column; align-items: stretch; background-image: none !important; }
  .slide-banner::before {
    content: ''; display: block; width: 100%; height: 220px;
    background-image: var(--slide-bg); background-size: cover;
    background-position: var(--slide-bg-pos, center center); flex-shrink: 0;
  }
  .slide-overlay { display: none; }
  .slide-container { background: #fff; padding-top: 24px; padding-bottom: 32px; }
  .slide-content { width: 100%; gap: 16px; }
  .slide-heading { font-size: 40px; line-height: 38px; }
  .slide-sub { font-size: 18px; }
  .slide-body { font-size: 14px; }
  .slide-icons { gap: 12px 16px; margin-top: 12px; justify-content: center; }
  .icon-item { width: 72px; }
  .icon-img { width: 40px; height: 40px; }
  .icon-label { font-size: 12px; }
}

/* ---------- REAL SCIENCE band ---------- */
.rs-band {
  width: 100%;
  min-height: 677px;
  display: flex;
  align-items: center;
  background: #171717;
  padding: 80px 0 96px;
}
.rs-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FE5000;
  margin: 0 0 12px;
}
.rs-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 48px;
}
.rs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rs-card {
  background: #1f1f1f;
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.rs-card:hover { border-color: #3d3d3d; transform: translateY(-4px); }
.rs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #FE5000;
  color: #FE5000;
  margin-bottom: 22px;
}
.rs-icon svg { width: 22px; height: 22px; }
.rs-icon--img { border: none; }
.rs-icon--img img { width: 100%; height: 100%; object-fit: contain; }
.rs-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
.rs-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #9a9a9a;
  margin: 0;
}
@media (max-width: 900px) {
  .rs-grid { grid-template-columns: 1fr; gap: 20px; }
  .rs-heading { font-size: 40px; }
}

/* ---------- TriGLP banner ---------- */
.triglp { width: 100%; background: #fff; padding: 20px 0; overflow: hidden; }
.triglp-inner { display: flex; flex-direction: column; align-items: center; }
.triglp-left { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 20px 0; }
.triglp-tagline { color: var(--color-primary); font-size: 24px; line-height: 51px; }
.triglp-h { font-size: 40px; line-height: 57px; color: #111827; font-weight: 400; }
.triglp-h.orange { color: var(--color-primary); }
.triglp-sub { color: #4b5563; font-size: 24px; line-height: 100%; }
.triglp-icons { display: flex; align-items: flex-start; margin-top: 8px; }
.triglp-ic { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.triglp-ic img { width: 40px; height: 40px; }
.triglp-ic .t1 { font-size: 15px; color: #111827; }
.triglp-ic .t2 { font-size: 15px; color: #6b7280; }
.triglp-div { align-self: stretch; width: 1px; background: #e5e7eb; margin: 4px 8px 0; }
.triglp-btn { margin-top: 16px; align-self: flex-start; }
.triglp-fine { font-size: 14px; color: #9ca3af; max-width: 24rem; }
.triglp-right { flex: 1; display: flex; align-items: center; justify-content: center; }
.triglp-right img { width: 100%; max-width: 12rem; object-fit: contain; }
@media (min-width: 768px) {
  .triglp { padding: 0; }
  .triglp-inner { flex-direction: row; }
  .triglp-h { font-size: 64px; }
  .triglp-right img { max-width: 50%; }
}

/* ---------- TriGLP Info (reveal cards) ---------- */
.triglp-info { width: 100%; background: var(--page-bg); padding: 96px 0; }
.triglp-info-head { text-align: center; margin-bottom: 64px; }
.triglp-info-head h2 { font-size: 2.25rem; font-weight: 500; color: #374151; }
.triglp-info-head .orange { color: var(--color-primary); font-weight: 600; }
.triglp-info-row {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.triglp-bottle { z-index: 0; }
.triglp-bottle img { height: 300px; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2)); }
.triglp-card {
  max-width: 24rem; background: #fff; border-radius: 12px; z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 24px; border: 1px solid #e5e7eb;
  transition: opacity 2000ms cubic-bezier(0.22,1,0.36,1), transform 2000ms cubic-bezier(0.22,1,0.36,1);
}
.triglp-card .badge { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: #000; margin-bottom: 8px; }
.triglp-card .badge.muted { color: #374151; }
.triglp-card .dot {
  position: relative; display: inline-flex; height: 10px; width: 10px;
}
.triglp-card .dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--color-primary); filter: blur(3px);
}
.triglp-card .dot::after {
  content: ''; position: relative; height: 10px; width: 10px;
  border-radius: 50%; background: var(--color-primary);
}
.triglp-card h3 { font-weight: 700; font-size: 1.125rem; margin-bottom: 8px; }
.triglp-card p { color: #4b5563; font-size: 0.875rem; line-height: 1.6; }
/* reveal states */
.triglp-card.left  { opacity: 0; transform: translateX(-80px); }
.triglp-card.right { opacity: 0; transform: translateX(80px); }
.triglp-info-row.is-visible .triglp-card.left,
.triglp-info-row.is-visible .triglp-card.right { opacity: 1; transform: translateX(0); }

@media (min-width: 1024px) {
  .triglp-info-row { flex-direction: row; gap: 0; }
  .triglp-bottle { order: 2; }
  .triglp-bottle img { height: 567px; }
  .triglp-card.left  { position: absolute; left: 0; order: 1; }
  .triglp-card.right { position: absolute; right: 0; order: 3; }
}

/* ---------- Results Info ---------- */
.results-info {
  width: 100%; min-height: 560px; position: relative;
  background-image: url('../assets/images/home/buynow/resultsInfo.png');
  background-size: cover; background-repeat: no-repeat; background-position: 80% top;
  font-family: 'Poppins', var(--ffc);
}
.results-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.results-content {
  position: relative; z-index: 10; max-width: 1200px; margin: 0 auto;
  padding: 40px 20px; display: flex; align-items: center;
}
.results-text { width: 100%; }
.results-text h2 { color: #fff; font-size: 42px; line-height: 43px; font-weight: 500; margin-bottom: 16px; max-width: 620px; }
.results-text p { color: rgba(255,255,255,0.9); font-size: 1rem; line-height: 1.6; max-width: 620px; }
@media (min-width: 1024px) {
  .results-info { min-height: 667px; }
  .results-content { padding: 64px 32px; }
  .results-text { width: 66.66%; padding-right: 48px; }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 80px 0; font-family: 'Poppins', var(--ffc); }
.testimonials h2 { font-size: 2rem; line-height: 1; color: #000; font-weight: 600; margin-bottom: 40px; text-align: center; }
.testimonials h2 .text-primary { color: var(--color-primary); }
.testimonials-wrap { position: relative; width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.t-card {
  background: #fff; color: #000; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 24px; height: 560px; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between; margin: 0 12px;
  transition: transform 0.3s;
}
.t-card:hover { transform: scale(1.03); }
.t-card img { height: 300px; width: 100%; border-radius: 12px; object-fit: cover; margin-bottom: 16px; }
.t-card .t-name { font-size: 1rem; font-weight: 600; }
.t-card .t-loc { font-size: 13px; margin: 12px 0; }
.t-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.t-stars svg { width: 20px; height: 20px; }
.t-stars .on { color: #f97316; }
.t-stars .off { color: #4b5563; }
.t-review { font-size: 14px; color: #000; line-height: 1.6; text-align: center; margin-top: auto; }
@media (min-width: 1024px) { .testimonials h2 { font-size: 42px; line-height: 43px; } }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; background: var(--page-bg); }
.faq-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.faq h2 { text-align: center; font-size: 1.875rem; font-weight: 500; margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--divider); padding: 16px 0; }
.faq-q { width: 100%; display: flex; align-items: flex-start; gap: 12px; text-align: left; background: none; border: none; cursor: pointer; }
.faq-q .caret { margin-top: 4px; color: #000; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q .caret { transform: rotate(90deg); }
.faq-q .q-text { font-weight: 600; color: #000; line-height: 1.4; }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.3s ease; padding-left: 28px; color: #4b5563; font-size: 0.875rem; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; opacity: 1; padding-top: 12px; }
