/* ===================================================
   RSO Plus — Rare Slimming Oil Landing Page
   Author: recreation from source SVG
   Stack: HTML5 + vanilla CSS + tiny JS
   =================================================== */

/* ===== 1. CSS VARIABLES ============================ */
/* =========================================
   MOBILE HERO BUTTON CENTER FIX
========================================= */

@media (max-width: 768px) {

  .hero-buttons,
  .hero-cta,
  .hero-actions,
  .hero-btns {

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;

  }

  .btn-callnow--hero {

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-left: auto !important;
    margin-right: auto !important;

    width: fit-content !important;

  }

}
:root {
  /* brand */
  --color-yellow:        #FFB400;
  --color-yellow-text:   #0C0C0C;     /* text on yellow buttons */
  --color-cream:         #FFF3BF;

  /* surfaces */
  --color-bg-dark:       #0E0702;     /* deepest */
  --color-bg-card:       #1A0D04;     /* card overlay */
  --color-bg-card-2:     #33170B;     /* lighter card overlay */
  --color-brown-1:       #8D4E22;     /* warm brown */

  /* text */
  --color-white:         #FFFFFF;
  --color-text:          #F5F5F5;
  --color-dim:           #989898;

  /* misc */
  --color-blue:          #003BFF;

  /* radii */
  --radius-card:         57px;
  --radius-card-sm:      17px;
  --radius-pill:         16px;
  --radius-btn:          14.5px;

  /* fonts */
  --font-en: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-hi: 'Noto Sans Devanagari', 'Poppins', system-ui, Arial, sans-serif;

  /* layout */
  --page-w: 1440px;
  --content-w: 1366px;
  --pad-x: clamp(16px, 4vw, 64px);
}

/* ===== 2. BASE / RESET ============================== */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x on html (not body) so position:fixed children aren't trapped
   in a sub-scroll-container on iOS/Android */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--color-text);
  line-height: 1.45;
  font-weight: 400;
  background: var(--color-bg-dark);
  /* Full-page repeating smoke tile (mirrored every other tile, like the SVG) */
  background-image: url('assets/images/bg-tile.jpg');
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  /* Do NOT set overflow-x here — it breaks position:fixed on mobile */
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* helpers */
.hi { font-family: var(--font-hi); }
.en, .en-accent { font-family: var(--font-en); font-weight: 600; }
.accent { color: var(--color-yellow); font-weight: 700; }
.en-accent { color: var(--color-yellow); font-weight: 700; }

/* ===== 3. SHARED PRIMITIVES ========================= */

/* Section titles */
.section-title {
  text-align: center;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-yellow);
  font-size: clamp(28px, 4.5vw, 60px);
  margin: 0 0 16px;
  letter-spacing: .01em;
  line-height: 1.18;
}
.section-title .hi,
.section-title .accent { display: inline-block; }
.section-title .hi { color: var(--color-white); }
.section-title.experts-title,
.section-title.reviews-title,
.section-title.problems-title,
.section-title.certs-title { color: var(--color-yellow); }

/* Thin yellow under-divider used by Hindi / English sections */
.hr-line,
.section-title .divider {
  display: block;
  width: clamp(180px, 30%, 360px);
  height: 1.5px;
  background: var(--color-yellow);
  margin: 14px auto 24px;
  border: none;
}
.section-title .divider { margin: 10px auto 18px; }

/* Big yellow Call Now button (used multiple times) */
.btn-callnow {
  display: inline-flex;
  align-items: center;
  bottom: 50px;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-yellow-text);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  padding: 18px 56px;
  border-radius: var(--radius-btn);
  border: none;
  letter-spacing: .005em;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease, filter .2s ease;
  text-align: center;
  cursor: pointer;
}
.btn-callnow:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-callnow:active { transform: translateY(0); filter: brightness(.96); }
.btn-callnow--center { display: flex; margin: 36px auto 0; width: max-content; }

/* ===== 4. TOP ALERT BAR ============================= */
.top-alert {
  background: var(--color-bg-card);
  padding: 8px 16px;
  text-align: center;
}
.top-alert p {
  font-family: var(--font-hi);
  color: var(--color-yellow);
  margin: 0;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 500;
  line-height: 1.3;
}

/* ===== 5. CONSULT HEADER ============================ */
.consult-header {
  background: linear-gradient(to bottom, #1d0d04 0%, #0c0500 100%);
  padding: 14px 16px 18px;
}
.consult-inner {
  text-align: center;
}
.consult-title {
  font-family: var(--font-en);
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 28px);
  margin: 0 0 8px;
}
.consult-phone {
  display: inline-block;
  background: var(--color-brown-1);
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: 8px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: .01em;
}

/* ===== 6. HERO SECTION ============================== */
.hero {
  position: relative;
  width: 100%;
  background: #110804;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;   /* bottles get slightly more space, like the SVG */
  gap: 24px;
  align-items: center;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 36px var(--pad-x) 120px;
  min-height: 760px;
}
.hero-bottles {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-bottles img {
  width: 100%;
  max-width: 660px;
  height: auto;
  margin-left: -2vw;       /* nudge slightly off-grid like the original */
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.55));
}

/* Glassmorphic card */
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(26, 13, 4, 0.5);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 45px;
  padding: 40px 36px 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  max-width: 620px;
  justify-self: end;
  width: 100%;
}

.hero-headline {
  font-family: var(--font-hi);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.22;
  margin: 0 0 18px;
}
.hero-headline > .hi { display: block; }
.hero-headline .dots { letter-spacing: -.05em; }
.hero-headline .accent { font-weight: 700; }

.hero-logo {
  margin: 14px auto 18px;
  max-width: 440px;
}
.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 600;
}
.hero-rating .rating-num { color: var(--color-white); font-weight: 700; }
.hero-rating .stars { color: var(--color-yellow); font-size: 1.05em; letter-spacing: 1px; }
.hero-rating .stars .half {
  background: linear-gradient(90deg, var(--color-yellow) 50%, rgba(255,180,0,.35) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-rating .rating-label { color: var(--color-white); font-weight: 500; }

/* Call Now floating bottom-right of hero */
btn-callnow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-yellow-text);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  padding: 18px 56px;
  border-radius: var(--radius-btn);
  border: none;
  bottom: 28px;
  letter-spacing: .005em;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease, filter .2s ease;
  text-align: center;
  cursor: pointer;
}

/* ===== 7. CERTIFICATIONS ============================ */
.certs {
  padding: 60px var(--pad-x) 64px;
  text-align: center;
  background: transparent; /* page bg shows through */
  position: relative;
}
.certs-title {
  margin-bottom: 28px;
}
.certs-title .hi { color: var(--color-white); font-weight: 700; }
.certs-title .en { color: var(--color-white); font-weight: 700; }

/* 3+2 layout matching the original SVG: WHO / Clinically / CTRI on top,
   GMP + Ayush centered below */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px 24px;
  max-width: 900px;
  margin: 24px auto 0;
  align-items: start;
  justify-items: center;
}
.cert-item:nth-child(1) { grid-column: 1 / span 2; }
.cert-item:nth-child(2) { grid-column: 3 / span 2; }
.cert-item:nth-child(3) { grid-column: 5 / span 2; }
.cert-item:nth-child(4) { grid-column: 2 / span 2; } /* GMP — offset to center the bottom row */
.cert-item:nth-child(5) { grid-column: 4 / span 2; } /* Ayush */
.cert-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cert-item img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
.cert-item p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.25;
}

/* ===== 8. COMMON PROBLEMS =========================== */
.problems {
  padding: 56px var(--pad-x) 56px;
  text-align: center;
  background: rgba(0,0,0,.55);
}
.problems-title { color: var(--color-yellow); margin-bottom: 8px; }
.problems-sub {
  color: var(--color-white);
  font-family: var(--font-hi);
  font-size: clamp(14px, 1.4vw, 20px);
  margin: 0 auto 28px;
  max-width: 800px;
}

.problems-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.problems-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
  overflow: hidden;
}
.problem-card {
  text-align: center;
}
.problem-img {
  display: inline-block;
  width: clamp(80px, 8vw, 124px);
  height: clamp(80px, 8vw, 124px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.85);
  background: #2a2a2a;
}
.problem-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.problem-card p {
  margin: 12px 0 0;
  color: var(--color-white);
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1.3;
}

.carousel-arrow {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  padding: 4px 10px;
  flex-shrink: 0;
  font-weight: 300;
  transition: opacity .2s ease;
}
.carousel-arrow:hover { opacity: .7; }

/* ===== 9. RSO KYA HAI? (Hindi block) =============== */
.rso-kya {
  padding: 60px var(--pad-x);
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}
.rso-kya .section-title { margin-bottom: 4px; }
.rso-kya-lead {
  font-family: var(--font-hi);
  color: var(--color-white);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  margin: 0 auto 28px;
  max-width: 1050px;
  line-height: 1.6;
}
.rso-kya-body {
  color: var(--color-white);
  font-family: var(--font-hi);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1050px;
}

/* ===== 10. WHAT IS RSO? (English) =================== */
.rso-what {
  padding: 24px var(--pad-x) 60px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.rso-what .section-title { color: var(--color-white); font-weight: 700; }
.rso-what .section-title .accent { color: var(--color-yellow); }
.rso-what-body {
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.7;
  margin: 0 auto 18px;
  max-width: 900px;
}

/* ===== 11. RSO KE FAYDE (Benefits) ==================
   Uses the pre-composed Figma artwork as a single visual,
   wrapped in a <figure> with a screen-reader-only caption
   so the page is still semantically accessible. */

.fayde {
  position: relative;
  padding: 40px var(--pad-x) 60px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)),
    url('assets/images/bg-tile.jpg') center/cover no-repeat;
}

.fayde-figure {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

.fayde-figure img {
  display: block;
  width: 100%;
  height: auto;
  /* The asset is a 1:1 composition; CSS lets it scale to
     whatever width the section provides without distortion */
}

/* WCAG-compliant visually-hidden helper used for the
   accessible <figcaption> that mirrors the baked-in text */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   EXPERTS VIEWS
   ============================================================ */
.experts{ padding: 6px 0 8px; text-align: center; }
.experts__title{
  margin: 0 0 14px;
  font-size: clamp(20px, 5.6vw, 24px);
  letter-spacing: 2px;
  font-weight: 800;
}
.experts__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.expert-video{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0d1f0e;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(155,207,58,.18);
  display: block;
  object-fit: cover;
}
.expert-video::-webkit-media-controls-panel{ background: rgba(0,0,0,.6); }
/* ===== 13. CUSTOMER REVIEWS ======================== */
.reviews {
  padding: 60px var(--pad-x) 60px;
  text-align: center;
}
.reviews-title { margin-bottom: 36px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(140px, 180px) 1fr;
  background: var(--color-white);
  border-radius: 8px;
  padding: 8px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  min-height: 170px;
}
.review-pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.review-pic {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
  aspect-ratio: 3/4;
}
.review-pic img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.review-pic .tag {
  position: absolute;
  left: 0; bottom: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-white);
  padding: 4px 8px;
  letter-spacing: .04em;
}
.tag-before { background: var(--color-brown-1); color: var(--color-white); }
.tag-after  { background: var(--color-bg-card);  color: var(--color-white); }

.review-text {
  position: relative;
  padding: 8px 12px 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-text h3 {
  margin: 0;
  font-family: var(--font-en);
  color: #111;
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 19px);
}
.review-text .stars {
  color: var(--color-yellow);
  font-size: 15px;
  letter-spacing: 1px;
}
.review-text .stars .dim { color: #d1d1d1; }
.review-text p {
  margin: 4px 0 0;
  color: #111;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  line-height: 1.35;
}
.review-text .thumb {
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-size: 26px;
  color: var(--color-blue);
}

.reviews-cta { margin-top: 40px; }

/* ===== 14. HOW TO USE (Steps) ====================== */
.howto {
  padding: 30px var(--pad-x) 56px;
}
.howto-card {
  background: rgba(14,7,2, .82);
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 26px;
  padding: 44px 36px 56px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  position: relative;
}
.howto-card .section-title { color: var(--color-white); margin-bottom: 36px; }
.howto-card .section-title .accent { color: var(--color-yellow); }

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.step-badge {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-yellow-text);
  font-family: var(--font-en);
  font-weight: 700;
  padding: 8px 26px;
  border-radius: 999px;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: .01em;
}
.step-text {
  font-family: var(--font-hi);
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.4;
  margin: 0;
}
.step-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }

.step-arrow {
  display: inline-block;
  width: 90px;
  height: 80px;
  opacity: .85;
}
.step-arrow svg { width: 100%; height: 100%; }
.step-arrow--1 { transform: translateY(40px); }
.step-arrow--2 { transform: translateY(-30px); }

/* ===== 15. BIG TESTIMONIAL QUOTE ==================== */
.quote {
  position: relative;
  padding: 60px var(--pad-x) 50px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: serif;
  color: var(--color-yellow);
  font-size: clamp(60px, 7vw, 110px);
  line-height: 1;
  position: absolute;
  font-weight: 700;
}
.quote-mark--open  { top: 16px;    left: clamp(20px, 6vw, 110px); }
.quote-mark--close { bottom: 36px; right: clamp(20px, 6vw, 110px); }

.quote-text {
  font-family: var(--font-hi);
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1.5;
  margin: 14px auto;
  max-width: 900px;
}
.quote-text .accent { color: var(--color-yellow); font-weight: 700; }
.quote-underline {
  display: block;
  width: 200px;
  height: 2.5px;
  background: var(--color-yellow);
  margin: 8px auto 0;
}

/* ===== 16. SUMMARY CARD ============================ */
.summary {
  padding: 30px var(--pad-x) 56px;
  text-align: center;
}
.summary-card {
  background: var(--color-bg-card);
  border-radius: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr .7fr;
  gap: 32px;
  align-items: center;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.summary-left .summary-label {
  font-family: var(--font-en);
  color: var(--color-white);
  font-size: clamp(16px, 1.5vw, 22px);
  margin: 0;
  font-weight: 500;
}
.summary-count {
  margin: 4px 0 8px;
  color: var(--color-yellow);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: .01em;
}
.summary-stars {
  color: var(--color-yellow);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 2px;
}
.summary-stars .half {
  background: linear-gradient(90deg, var(--color-yellow) 50%, rgba(255,180,0,.35) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.summary-mid .summary-title {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px);
  margin: 0 0 14px;
}
.summary-bars { display: flex; flex-direction: column; gap: 6px; }
.summary-bars li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px;
}
.bar-label {
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bar-star { color: var(--color-yellow); font-size: 14px; }
.bar {
  background: var(--color-white);
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: var(--color-yellow);
}

.summary-right { text-align: center; }
.recommend-num {
  margin: 0;
  font-family: var(--font-en);
  color: var(--color-yellow);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
}
.recommend-label {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 18px);
}

.summary-cta { margin-top: 24px; }
.footer-cta {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 24px);
  margin: 22px 0 12px;
}
.footer-cta .accent { color: var(--color-yellow); }

/* =========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px var(--pad-x) 100px;
    min-height: auto;
    gap: 24px;
  }
  .hero-bottles img { max-width: 320px; }
  .hero-card { justify-self: center; max-width: 640px; }
  .btn-callnow--hero {
    position: static;
    margin: 18px auto 0;
    display: flex;
  }

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 22px;
    max-width: 700px;
  }
  .cert-item:nth-child(1),
  .cert-item:nth-child(2),
  .cert-item:nth-child(3),
  .cert-item:nth-child(4),
  .cert-item:nth-child(5) { grid-column: auto; }

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

  /* FAYDE — image scales naturally, just give it room */
  .fayde { padding: 32px var(--pad-x) 48px; }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-arrow { display: none; }

  .summary-card {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .summary-left, .summary-right { text-align: center; }
  .summary-stars { display: inline-block; }
  .summary-bars li { grid-template-columns: 36px 1fr; }

  .quote-mark--open  { top: 6px;    left: 12px; font-size: clamp(46px, 9vw, 80px); }
  .quote-mark--close { bottom: 20px; right: 12px; font-size: clamp(46px, 9vw, 80px); }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ========================================================= */
@media (max-width: 640px) {

  .top-alert p { font-size: 11px; }

  .consult-title { font-size: 18px; }
  .consult-phone { font-size: 13px; padding: 5px 14px; }

  /* HERO */
  .hero-inner { padding: 24px 16px 60px; gap: 18px; }
  .hero-bottles { justify-content: center; }
  .hero-bottles img { max-width: 220px; margin-left: 0; }
  .hero-card { padding: 28px 20px 26px; border-radius: 28px; }
  .hero-headline { font-size: 24px; line-height: 1.25; }
  .hero-logo { max-width: 260px; }
  .hero-rating { font-size: 13px; }
  .btn-callnow--hero { padding: 12px 32px; font-size: 18px; }

  /* CERTS — back to a regular 3-column grid on mobile */
  .certs { padding: 40px 16px; }
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 14px;
    max-width: 100%;
  }
  .cert-item:nth-child(1),
  .cert-item:nth-child(2),
  .cert-item:nth-child(3),
  .cert-item:nth-child(4),
  .cert-item:nth-child(5) { grid-column: auto; }
  .cert-item img { width: 64px; height: 64px; }
  .cert-item p { font-size: 12px; }

  /* PROBLEMS */
  .problems { padding: 40px 12px; }
  .problems-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
  }
  .problem-card p { font-size: 11px; }
  .carousel-arrow { font-size: 26px; padding: 4px 4px; }

  /* RSO TEXT BLOCKS */
  .rso-kya, .rso-what { padding: 36px 16px; }

  /* FAYDE */
  .fayde { padding: 28px 12px 40px; }
  .fayde-figure { border-radius: 24px; }

  /* EXPERTS */
  .experts { padding: 40px 12px; }
  .laurel { width: 44px; opacity: .6; }
  .experts-track { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* REVIEWS */
  .reviews { padding: 40px 12px; }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review-card { grid-template-columns: 130px 1fr; }
  .review-text h3 { font-size: 14px; }
  .review-text p { font-size: 12px; }

  /* HOWTO */
  .howto { padding: 24px 12px 40px; }
  .howto-card { padding: 30px 16px 36px; }
  .howto-card .section-title { font-size: 26px; }
  .step-image { max-width: 180px; }

  /* QUOTE */
  .quote { padding: 36px 16px; }
  .quote-text { font-size: 16px; }
  .quote-underline { width: 120px; }

  /* SUMMARY */
  .summary { padding: 24px 12px 40px; }
  .summary-card { padding: 26px 18px; border-radius: 22px; }
  .summary-bars li { grid-template-columns: 30px 1fr; }
  .bar { height: 8px; }
  .recommend-num { font-size: 32px; }

  .btn-callnow { padding: 12px 36px; font-size: 20px; }
}

/* ==== Print fallback ==== */
@media print {
  .btn-callnow, .carousel-arrow { display: none; }
}

/* =========================================
   HERO CTA MOBILE FIX
========================================= */

@media (max-width: 768px) {

  .btn-callnow--hero {

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: fit-content;
    min-width: 220px;
    min-height: 56px;

    margin: 18px auto 0 auto;

    padding: 0 28px;

    font-size: 18px;
    font-weight: 700;

    position: relative;
    z-index: 20;

    opacity: 1 !important;
    visibility: visible !important;

  }

}
@media (max-width: 768px) {

  .hero,
  .hero-content,
  .hero-inner,
  .hero-wrapper {

    overflow: visible !important;
    height: auto !important;

  }

}
/* =========================================
   FIXED BOTTOM CTA BAR
========================================= */

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px 14px;
  background: linear-gradient(to top, rgba(14,7,2,0.97) 0%, rgba(14,7,2,0.88) 100%);
  border-top: 1px solid rgba(255,180,0,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -6px 32px rgba(0,0,0,.55);

  /* slide-up entrance */
  animation: fixedCtaSlideUp .45s cubic-bezier(.22,.68,0,1.2) both;

  /* Prevent any ancestor transform/filter from hijacking the stacking context */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes fixedCtaSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.fixed-cta__label {
  font-family: var(--font-hi);
  color: var(--color-white);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 500;
  white-space: nowrap;
  opacity: .9;
}

.fixed-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-yellow);
  color: var(--color-yellow-text);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 20px);
  padding: 13px 36px;
  border-radius: var(--radius-btn);
  border: none;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,180,0,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  animation: fixedCtaPulse 2.4s ease-in-out 1s infinite;
}

@keyframes fixedCtaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,180,0,.35); }
  50%       { box-shadow: 0 4px 32px rgba(255,180,0,.65); }
}

.fixed-cta__btn:hover  { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 8px 28px rgba(255,180,0,.5); }
.fixed-cta__btn:active { transform: translateY(0);    filter: brightness(.95); }

.fixed-cta__icon { font-size: 1.15em; line-height: 1; }

/* Bottom clearance so last section isn't hidden behind the bar */
body { padding-bottom: 76px; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .fixed-cta {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px 12px;
  }
  .fixed-cta__label { font-size: 12px; }
  .fixed-cta__btn {
    width: 100%;
    max-width: 340px;
    font-size: 17px;
    padding: 13px 24px;
  }
  body { padding-bottom: 108px; }
}

/* Also override the existing mobile overflow:visible block that was masking z-index */
@media (max-width: 768px) {
  .hero,
  .hero-content,
  .hero-inner,
  .hero-wrapper {
    overflow: visible !important;
    height: auto !important;
    /* No transform here — would create a new stacking context */
  }
}

@media print {
  .fixed-cta { display: none; }
}
/* =========================================
   MOBILE EXPERT INFINITE LOOP
========================================= */

@media (max-width: 768px) {

  .experts-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

 .experts-track {

  display: flex;
  gap: 16px;

  width: fit-content;

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
  -ms-overflow-style: none;

  -webkit-overflow-scrolling: touch;

  touch-action: pan-x;

  padding-inline: 16px;

  animation: expertLoop 25s linear infinite;

}

  .expert-card {

    flex: 0 0 78vw;

    width: 78vw;
    max-width: 320px;

    height: 520px;

    border-radius: 24px;
    overflow: hidden;

  }

  .expert-video {

    width: 100%;
    height: 100%;
    object-fit: cover;

  }

  @keyframes expertLoop {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }

  }

}
/* =========================================
   DISABLE INFINITE LOOP ON DESKTOP
========================================= */

@media (min-width: 769px) {

  .experts-track {
    animation: none !important;
    transform: none !important;
  }

}
/* =========================================
   FIX MOBILE EXPERT OVER-SCROLL
========================================= */

@media (max-width: 768px) {

  .experts-carousel {
    overflow: hidden;
    position: relative;
  }

  .experts-track {

    overflow-x: auto;

    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;

    padding-left: 16px;
    padding-right: 16px;

  }

  .expert-card {

    flex-shrink: 0;

  }

}