/* style.css (UPDATED - LIGHTER THEME) */
:root{
  /* ✅ Lighter premium background (less dark) */
  --bg0:#20263A;
  --bg1:#3A2B58;
  --bg2:#1B4E57;

  --text:#F3F6FF;
  --muted:rgba(243,246,255,.84);

  --accent1:#FFB86B;
  --accent2:#8BE7C1;

  --shadow: 0 20px 55px rgba(0,0,0,.34);
  --shadow2: 0 12px 30px rgba(0,0,0,.24);

  --r-xl:28px;
  --r-lg:20px;
  --r-md:16px;

  --container:1200px;

  /* ✅ Glass system (so sab sections consistent + brighter) */
  --glass: rgba(255,255,255,.085);
  --glass2: rgba(255,255,255,.10);
  --glass3: rgba(255,255,255,.12);
  --bd: rgba(255,255,255,.14);
  --bd2: rgba(255,255,255,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#14182A; /* ✅ lighter base */
  overflow-x:hidden; /* prevents cut */
}

/* FIX: consistent safe padding, mobile edge cut issue fix */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* FULL WIDTH TOPBAR */
.topbar{
  position:relative;
  z-index:2;
  width:100%;
  background: var(--glass);
  border-bottom: 1px solid var(--bd);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topbar__inner{
  padding:12px 0;
  display:flex;
  align-items:center;
  justify-content:center; /* centered line */
  gap:10px;
  font-weight:800;
  color:rgba(243,246,255,.90);
  font-size:13px;
  letter-spacing:.2px;
}
.topbar__dot{
  width:9px;height:9px;border-radius:50%;
  background:var(--accent1);
  box-shadow:0 0 0 6px rgba(255,184,107,.16);
}
.topbar__text{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 100%;
}

/* Hero bg */
.hero{position:relative; overflow:hidden;}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 15% 15%, rgba(255,184,107,.22), transparent 60%),
    radial-gradient(800px 520px at 80% 20%, rgba(139,231,193,.18), transparent 62%),
    linear-gradient(135deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}
/* ✅ reduce heavy overlay so it feels brighter */
.hero__bg::after{
  content:"";
  position:absolute; inset:-60px;
  opacity:.12;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
}

.hero__container{
  position:relative; z-index:1;
  padding:22px 0 70px;
}

/* Row below topbar */
.hero__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

/* Logo */
.brand__logo{
  width:120px;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Desktop Book Now width bigger */
.headerCta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  min-width: 220px;            /* ✅ wider on desktop */
  border-radius:999px;
  background: rgba(139,231,193,.92);
  color:#0E1D1E;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
  box-shadow: 0 14px 34px rgba(139,231,193,.18);

  /* ✅ animation add */
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  will-change: transform;
}
.headerCta__icon{width:18px;height:18px;display:grid;place-items:center;}
.headerCta__icon svg{width:18px;height:18px}

/* ✅ Hover + Shine animation */
.headerCta:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 44px rgba(139,231,193,.22);
  filter: brightness(1.02);
}
.headerCta:active{
  transform: translateY(0) scale(.99);
}
.headerCta::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 35%, transparent 70%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}
.headerCta:hover::after{
  opacity:1;
  animation: btnShine .9s ease forwards;
}
@keyframes btnShine{
  to{ transform: translateX(120%); }
}

/* Grid */
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:stretch;
}

/* Desktop: right video centered vertically */
.videoWrap--desktop{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Title + text */
.title{
  font-family: Fraunces, serif;
  margin:0 0 10px;
  font-weight:650;
  line-height:1.06;
  font-size: clamp(32px, 3.2vw, 56px);
}
.title__accent{color:var(--accent1);}

.sub{
  margin:0 0 16px;
  color: var(--muted);
  line-height:1.65;
  font-size: 15.6px;
  max-width: 62ch;
}
.sub strong{color:rgb(247 4 4 / 94%)}

/* Cards (2 per row desktop + mobile) */
.stats{
  margin:16px 0 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.stat{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius: var(--r-md);
  background: var(--glass2);
  border:1px solid var(--bd);
}
.stat__icon{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:12px;
  background: rgba(255,184,107,.16);
}
.stat strong{display:block;font-weight:900}
.stat small{display:block;color:rgba(243,246,255,.78);font-weight:600;margin-top:2px}

/* Doctor */
.doctorMini{
  margin-top: 10px;
  padding:14px 14px;
  border-radius: var(--r-lg);
  background: var(--glass2);
  border:1px solid var(--bd);
  box-shadow: var(--shadow2);
}
.doctorMini__name{font-weight:900}
.doctorMini__role{margin-top:4px;color:rgba(243,246,255,.82);font-weight:700}
.doctorMini__text{
  margin:10px 0 0;
  color:rgba(243,246,255,.80);
  line-height:1.6;
  font-size:14.2px;
}

/* CTA bottom */
.ctaRow{margin-top:14px; display:flex;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  min-height:52px;
}
.btn--primary{
  background: rgba(139,231,193,.92);
  color:#0E1D1E;
  box-shadow: 0 16px 44px rgba(139,231,193,.16);
}

/* ✅ Desktop: bottom CTA (marked) width increase */
@media (min-width: 769px){
  .ctaRow .btn--primary{
    width: 100%;
    max-width: 520px; /* aap 600px bhi kar sakte ho */
  }
}

/* Video card */
.videoCard{
  width:100%;
  border-radius: var(--r-xl);
  background: var(--glass2);
  border:1px solid var(--bd);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.videoCard__media{
  position:relative;
  aspect-ratio:16/9;
  background: linear-gradient(135deg, rgba(255,184,107,.12), rgba(139,231,193,.12));
}
.video{width:100%; height:100%; object-fit:cover; display:block;}
.soundBtn{
  position:absolute;
  right:14px; bottom:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,184,107,.92);
  color:#23160a;
  font-weight:950;
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.videoWrap--mobile{display:none}

/* MOBILE */
@media (max-width: 768px){
  /* ✅ Fix cut: more safe padding + no overflow */
  .container{padding:0 18px;}
  .hero{overflow-x:hidden;}
  .hero__container{padding:16px 0 46px; margin: 7px;}

  /* Mobile: topbar full width stays */
  .topbar__inner{
    justify-content:center;
    padding:10px 0;
    font-size:12.5px;
  }

  /* Mobile row: left logo, right button */
  .brand__logo{width:92px;}

  .headerCta{
    min-width: 0;      /* ✅ prevent overflow */
    width:auto;
    padding:11px 14px;
  }

  /* Mobile content center */
  .hero__grid{grid-template-columns:1fr; gap:14px;}
  .hero__content{text-align:center;}
  .sub{max-width:100%;}

  .ctaRow{justify-content:center;}
  .btn{width:100%;}

  /* Video: below subheading */
  .videoWrap--desktop{display:none;}
  .videoWrap--mobile{display:block;}
}


/* =========================
SECTION: WHAT-YOU-GET (₹199)
========================== */
.benefits{
  position: relative;
  padding: 34px 0 64px;
}

.benefits::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(600px 280px at 20% 15%, rgba(255,184,107,.16), transparent 60%),
    radial-gradient(520px 320px at 85% 40%, rgba(139,231,193,.14), transparent 65%);
}

.benefits__head{
  position:relative;
  text-align:center;
  margin: 0 auto 18px;
  max-width: 780px;
}

.benefits__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: var(--glass);
  border: 1px solid var(--bd);
  color: rgb(247 4 4 / 94%);
  font-weight: 850;
  letter-spacing:.2px;
  margin: 0 0 12px;
}
.benefits__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.16);
}

.benefits__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 950;
  letter-spacing: .2px;
}
.benefits__subtitle{
  margin:0;
  color: rgba(243,246,255,.82);
  line-height: 1.6;
  font-size: 15.5px;
}

.benefits__grid{
  position:relative;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Card */
.benefitCard{
  position:relative;
  display:flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--r-lg);
  background: var(--glass2);
  border: 1px solid var(--bd2);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.benefitCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  opacity:0;
  pointer-events:none;
  background: radial-gradient(420px 220px at var(--mx, 30%) var(--my, 30%), rgba(255,184,107,.22), transparent 60%);
  transition: opacity .18s ease;
}

.benefitCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: var(--glass3);
}
.benefitCard:hover::before{ opacity:1; }

/* Icon wrap */
.benefitCard__iconWrap{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(139,231,193,.14);
  border: 1px solid rgba(139,231,193,.26);
  position:relative;
  overflow:hidden;
}

/* ✅ Continuous icon floating */
.benefitCard__icon{
  width: 24px;
  height: 24px;
  color: rgba(243,246,255,.94);
  animation: iconFloat 3.2s ease-in-out infinite;
  will-change: transform;
}

/* Icon glow pulse */
.benefitCard__iconWrap::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, rgba(139,231,193,.24), transparent 60%);
  opacity:.75;
  animation: glowPulse 2.8s ease-in-out infinite;
  pointer-events:none;
}

/* Text */
.benefitCard__text h3{
  margin: 0 0 6px;
  font-size: 16.5px;
  font-weight: 950;
  letter-spacing:.15px;
}
.benefitCard__text p{
  margin:0;
  color: rgba(243,246,255,.80);
  line-height: 1.55;
  font-size: 14.4px;
}
.benefitCard__text strong{ color: rgba(243,246,255,.94); }

/* Animations */
@keyframes iconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}
@keyframes glowPulse{
  0%,100%{ transform: scale(1); opacity:.65; }
  50%{ transform: scale(1.08); opacity:.95; }
}

/* Mobile */
@media (max-width: 768px){
  .benefits{ padding: 26px 0 46px; }
  .benefits__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .benefitCard{
    text-align:left;
    padding: 14px;
  }
}

/* ✅ CTA after section */
.benefits__ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.sectionCta{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 950;
  color:#0E1D1E;
  background: rgba(139,231,193,.92);
  box-shadow: 0 16px 44px rgba(139,231,193,.16);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  will-change: transform;
  max-width: 100%;
}

.sectionCta__icon{
  width: 18px; height: 18px;
  display:grid; place-items:center;
}
.sectionCta__icon svg{ width:18px; height:18px; }

.sectionCta:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 54px rgba(139,231,193,.22);
  filter: brightness(1.02);
}
.sectionCta:active{
  transform: translateY(0) scale(.99);
}

/* subtle shine */
.sectionCta::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 35%, transparent 70%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}
.sectionCta:hover::after{
  opacity:1;
  animation: sectionBtnShine .9s ease forwards;
}
@keyframes sectionBtnShine{
  to{ transform: translateX(120%); }
}

/* Mobile full width CTA */
@media (max-width: 768px){
  .sectionCta{
    width: 100%;
    text-align:center;
    padding: 14px 14px;
  }
}

/* =========================
END SECTION: WHAT-YOU-GET
========================== */


/* =========================
SECTION: ABOUT-DOCTOR (DR. SHEETAL)
========================== */
.aboutDoc{
  position:relative;
  padding: 38px 0 66px;
}

.aboutDoc::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.52;
  background:
    radial-gradient(700px 340px at 15% 30%, rgba(139,231,193,.14), transparent 62%),
    radial-gradient(620px 320px at 85% 20%, rgba(255,184,107,.14), transparent 60%);
}

.aboutDoc__grid{
  position:relative;
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items:start;
}

.aboutDoc__media{
  display:flex;
  justify-content:center;
}

.aboutDoc__photoFrame{
  position:relative;
  width:100%;
  max-width: 430px;
  border-radius: var(--r-xl);
  overflow:hidden;
  background: var(--glass2);
  border: 1px solid var(--bd2);
  box-shadow: var(--shadow);
}

.aboutDoc__photo{
  width:100%;
 /* height: 520px; */
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
}

.aboutDoc__badge{
  position:absolute;
  left:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 900;
  color: rgba(243,246,255,.94);
}
.aboutDoc__badgeDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.16);
}

/* Content */
.aboutDoc__content{
  position:relative;
  border-radius: var(--r-xl);
  background: var(--glass2);
  border: 1px solid var(--bd2);
  box-shadow: var(--shadow2);
  padding: 20px 18px;
}

.aboutDoc__kicker{
  margin:0 0 8px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius:999px;
  background: var(--glass);
  border: 1px solid var(--bd);
  color: rgba(243,246,255,.90);
  font-weight: 900;
  letter-spacing:.2px;
}

.aboutDoc__title{
  margin:0 0 10px;
  font-size: clamp(20px, 2.0vw, 30px);
  font-weight: 950;
}

.aboutDoc__text{
  margin: 0 0 14px;
  color: rgba(243,246,255,.82);
  line-height: 1.65;
  font-size: 15.2px;
}
.aboutDoc__text strong{ color: #000000; }

.aboutDoc__listWrap{
  margin-top: 6px;
}

.aboutDoc__listTitle{
  margin:0 0 10px;
  font-weight: 950;
  font-size: 15px;
  color: rgba(243,246,255,.92);
}

.aboutDoc__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.aboutDoc__list li{
  position:relative;
  padding: 12px 12px 12px 38px;
  border-radius: var(--r-md);
  background: var(--glass2);
  border: 1px solid var(--bd);
  color: rgb(115 17 17 / 88%);
  font-weight: 750;
  line-height: 1.35;
}

.aboutDoc__list li::before{
  content:"";
  position:absolute;
  left:12px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  background: rgba(255,184,107,.22);
  border: 1px solid rgba(255,184,107,.30);
  box-shadow: 0 0 0 6px rgba(255,184,107,.12);
}

/* Quote */
.aboutDoc__quote{
  margin: 16px 0 0;
  padding: 16px 16px 14px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bd);
  color: rgba(243,246,255,.86);
  line-height: 1.7;
  position:relative;
}

.aboutDoc__quoteMark{
  position:absolute;
  left:14px; top: 6px;
  font-size: 44px;
  color: rgba(255,184,107,.66);
  font-family: Georgia, serif;
  line-height: 1;
}

.aboutDoc__quote footer{
  margin-top: 10px;
  color: rgba(243,246,255,.76);
  font-weight: 850;
}

/* CTA Row */
.aboutDoc__ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:flex-start;
}

/* Mobile */
@media (max-width: 768px){
  .aboutDoc{ padding: 26px 0 46px; }

  .aboutDoc__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aboutDoc__photo{
    height: 360px;
  }

  .aboutDoc__content{
    padding: 16px 14px;
    text-align:center;
  }

  .aboutDoc__list{
    grid-template-columns: 1fr;
  }

  .aboutDoc__list li{
    text-align:left;
  }

  .aboutDoc__ctaRow{
    justify-content:center;
  }
}

/* ✅ FIX: Desktop me left doctor image ko vertical mid/center */
@media (min-width: 769px){
  .aboutDoc__grid{
    align-items: stretch; /* ensure grid rows stretch */
  }
  .aboutDoc__media{
    align-self: center;   /* ✅ image column center */
    display: flex;
    align-items: center;  /* ✅ photoFrame center inside */
    justify-content: center;
    margin-top: 0 !important;
  }
}

/* =========================
END SECTION: ABOUT-DOCTOR
========================== */


/* =========================
SECTION: WHO-THIS-CONSULTATION-IS-FOR (PREMIUM IMAGE CARDS)
========================== */
.whoFor{
  position:relative;
  padding: 42px 0 72px;
  overflow:hidden;
}

.whoFor::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.45; /* ✅ lighter */
  background:
    radial-gradient(760px 360px at 50% 0%, rgba(139,231,193,.14), transparent 60%),
    radial-gradient(640px 380px at 15% 75%, rgba(255,184,107,.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 22px);
}

.whoFor__head{
  position:relative;
  text-align:center;
  max-width: 860px;
  margin: 0 auto 18px;
}

.whoFor__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: var(--glass);
  border: 1px solid var(--bd);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}
.whoFor__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent1);
  box-shadow: 0 0 0 7px rgba(255,184,107,.16);
}

.whoFor__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 950;
  letter-spacing:.2px;
}
.whoFor__sub{
  margin:0;
  color: rgba(243,246,255,.82);
  line-height: 1.6;
  font-size: 15.2px;
}
.whoFor__sub strong{ color: rgba(243,246,255,.94); }

/* GRID: Desktop 3 per row */
.whoFor__grid{
  position:relative;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* CARD */
.whoCard{
  border-radius: var(--r-xl);
  background: var(--glass2);
  border: 1px solid var(--bd2);
  box-shadow: var(--shadow2);
  overflow:hidden;

  /* ✅ entry animation base */
  opacity: 0;
  transform: translateY(14px);
  animation: whoFadeUp .55s ease forwards;
  will-change: transform, opacity;

  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.whoCard:hover{
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255,255,255,.22);
  background: var(--glass3);
}

/* Image focus */
.whoCard__imgWrap{
  position:relative;
  width:100%;
  height: 200px; /* ✅ more image focus */
  overflow:hidden;
  background: linear-gradient(135deg, rgba(255,184,107,.14), rgba(139,231,193,.14));
}

.whoCard__imgWrap img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.whoCard:hover .whoCard__imgWrap img{
  transform: scale(1.10);
}

/* subtle shine */
.whoCard__imgWrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 35%, transparent 70%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}
.whoCard:hover .whoCard__imgWrap::after{
  opacity:1;
  animation: whoShine .95s ease forwards;
}
@keyframes whoShine{ to{ transform: translateX(120%); } }

/* ✅ CHIP REMOVED */
.whoCard__chip{ display:none !important; }

/* Minimal text under image (center) */
.whoCard__title{
  text-align:center;
  margin: 12px 12px 16px;
  font-size: 15.2px;
  font-weight: 950;
  letter-spacing:.15px;
  line-height: 1.25;
  transition: transform .18s ease;
}
.whoCard:hover .whoCard__title{
  transform: translateY(-1px);
}

/* ✅ stagger */
.whoCard:nth-child(1){ animation-delay: .05s; }
.whoCard:nth-child(2){ animation-delay: .10s; }
.whoCard:nth-child(3){ animation-delay: .15s; }
.whoCard:nth-child(4){ animation-delay: .20s; }
.whoCard:nth-child(5){ animation-delay: .25s; }
.whoCard:nth-child(6){ animation-delay: .30s; }

@keyframes whoFadeUp{
  to{ opacity:1; transform: translateY(0); }
}

/* CTA Row */
.whoFor__ctaRow{
  position:relative;
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Mobile: 2 per row */
@media (max-width: 768px){
  .whoFor{ padding: 30px 0 54px; }

  .whoFor__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .whoCard__imgWrap{ height: 140px; } /* ✅ mobile image focus */

  .whoCard__title{
    font-size: 13.8px;
    margin: 10px 10px 14px;
    text-align:center;
  }
}

/* =========================
END SECTION: WHO-THIS-CONSULTATION-IS-FOR
========================== */


/* =========================
SECTION 5: IMPROVEMENT-TIMELINE
========================== */
.improve{
  position:relative;
  padding: 44px 0 72px;
  overflow:hidden;
}

.improve::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.50;
  background:
    radial-gradient(760px 360px at 20% 10%, rgba(255,184,107,.14), transparent 60%),
    radial-gradient(720px 380px at 85% 35%, rgba(139,231,193,.14), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);
}

.improve__head{
  position:relative;
  text-align:center;
  max-width: 880px;
  margin: 0 auto 18px;
}

.improve__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: var(--glass);
  border: 1px solid var(--bd);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}

.improve__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.16);
}

.improve__title{
  margin:0 0 10px;
  font-size: clamp(22px, 2.3vw, 38px);
  font-weight: 950;
  letter-spacing:.2px;
}
.improve__title span{
  color: var(--accent1);
}

.improve__sub{
  margin:0;
  color: rgb(115 17 17 / 88%);
  line-height: 1.6;
  font-size: 15.3px;
}

/* ✅ Grid */
.improve__grid{
  position:relative;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

/* ✅ Card */
.improveCard{
  position:relative;
  border-radius: var(--r-xl);
  background: var(--glass2);
  border: 1px solid var(--bd2);
  box-shadow: var(--shadow2);
  padding: 16px 14px 14px;
  overflow:hidden;
  text-align:center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

/* subtle glow */
.improveCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  opacity:0;
  pointer-events:none;
  background: radial-gradient(420px 220px at 30% 15%, rgba(255,184,107,.18), transparent 60%);
  transition: opacity .18s ease;
}
.improveCard:hover{
  transform: translateY(-3px);
  background: var(--glass3);
  border-color: rgba(255,255,255,.22);
}
.improveCard:hover::before{opacity:1;}

/* ✅ Big icon + moving */
.improveCard__iconWrap{
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  margin: 0 auto 10px;
  background: rgba(139,231,193,.14);
  border: 1px solid rgba(139,231,193,.26);
  position:relative;
  overflow:hidden;
}

/* continuous float + tiny rotate */
.improveCard__icon{
  width: 34px;
  height: 34px;
  color: rgb(6 68 255 / 94%);
  animation: improveIconFloat 3.1s ease-in-out infinite;
  will-change: transform;
}

/* glow pulse */
.improveCard__iconWrap::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, rgba(139,231,193,.26), transparent 60%);
  opacity:.75;
  animation: improveGlow 2.8s ease-in-out infinite;
  pointer-events:none;
}

.improveCard__text{
  margin:0;
  font-size: 13.6px;
  line-height: 1.35;
  font-weight: 900;
  color: rgb(6 9 17 / 92%);
}

/* stagger the icon movement so all not same */
.improveCard:nth-child(1) .improveCard__icon{ animation-delay: .00s; }
.improveCard:nth-child(2) .improveCard__icon{ animation-delay: .15s; }
.improveCard:nth-child(3) .improveCard__icon{ animation-delay: .30s; }
.improveCard:nth-child(4) .improveCard__icon{ animation-delay: .45s; }
.improveCard:nth-child(5) .improveCard__icon{ animation-delay: .60s; }

@keyframes improveIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-5px) rotate(-2deg); }
}
@keyframes improveGlow{
  0%,100%{ transform: scale(1); opacity:.60; }
  50%{ transform: scale(1.10); opacity:.95; }
}

/* CTA */
.improve__ctaRow{
  position:relative;
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Responsive */
@media (max-width: 1024px){
  .improve__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px){
  .improve{ padding: 32px 0 56px; }
  .improve__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .improveCard__iconWrap{
    width: 60px;
    height: 60px;
  }
  .improveCard__icon{
    width: 32px;
    height: 32px;
  }
  .improveCard__text{
    font-size: 13.2px;
  }
}

/* ✅ Mobile only: 5th card full width */
@media (max-width: 768px){
  .improveCard:nth-child(5){
    grid-column: 1 / -1;   /* span both columns */
  }
}

/* =========================
END SECTION 5: IMPROVEMENT-TIMELINE
========================== */


/* =========================
SECTION 6: HEALING-PROCESS
========================== */
.process{
  position:relative;
  padding: 44px 0 72px;
  overflow:hidden;
}

.process::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.50;
  background:
    radial-gradient(760px 360px at 20% 10%, rgba(255,184,107,.12), transparent 60%),
    radial-gradient(720px 380px at 85% 35%, rgba(139,231,193,.12), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);
}

.process__head{
  position:relative;
  text-align:center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.process__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}

.process__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent1);
  box-shadow: 0 0 0 7px rgba(255,184,107,.14);
}

.process__title{
  margin:0 0 10px;
  font-size: clamp(22px, 2.3vw, 38px);
  font-weight: 950;
  letter-spacing:.2px;
}

.process__sub{
  margin:0;
  color: rgba(243,246,255,.80);
  line-height: 1.6;
  font-size: 15.2px;
}

.process__wrap{
  position:relative;
  margin-top: 18px;
  display:grid;
  gap: 12px;
}

/* Step card */
.stepCard{
  position:relative;
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items:center;
  padding: 16px 16px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.stepCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.075);
}

/* Left side: number + arrow */
.stepCard__left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
}

.stepCard__num{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-weight: 1000;
  font-size: 18px;
  color: rgb(6 9 17 / 92%);
  background: rgba(139,231,193,.14);
  border: 1px solid rgba(139,231,193,.26);
  position:relative;
  overflow:hidden;
}

/* subtle pulse */
.stepCard__num::after{
  content:"";
  position:absolute;
  inset:-14px;
  background: radial-gradient(circle at 30% 30%, rgba(139,231,193,.22), transparent 60%);
  opacity:.8;
  animation: stepGlow 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes stepGlow{
  0%,100%{ transform: scale(1); opacity:.60; }
  50%{ transform: scale(1.10); opacity:.95; }
}

.stepCard__arrow{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(255,184,107,.14);
  border: 1px solid rgba(255,184,107,.24);
  color: rgb(6 68 255 / 94%);
  overflow:hidden;
}

.stepCard__arrow svg{
  width: 24px;
  height: 24px;
  animation: arrowSlide 1.6s ease-in-out infinite;
  will-change: transform;
}
@keyframes arrowSlide{
  0%,100%{ transform: translateX(-2px); opacity:.9; }
  50%{ transform: translateX(4px); opacity:1; }
}

/* Text */
.stepCard__body h3{
  margin:0 0 6px;
  font-size: 16.8px;
  font-weight: 1000;
  letter-spacing:.15px;
}
.stepCard__body p{
  margin:0;
  color: rgba(243,246,255,.78);
  line-height: 1.6;
  font-size: 14.8px;
}

/* Final step highlight */
.stepCard--final{
  border-color: rgba(139,231,193,.28);
  background: rgba(139,231,193,.06);
}

/* CTA */
.process__ctaRow{
  position:relative;
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Responsive */
/* ✅ MOBILE GRID (2 columns) for Healing Process */
@media (max-width: 768px){
  .process{ padding: 32px 0 56px; }

  /* ✅ make steps grid */
  .process__wrap{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* ✅ step card becomes compact tile */
  .stepCard{
    display:flex;                 /* override desktop grid */
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding: 14px 12px;
    min-height: 170px;            /* optional: keeps tiles balanced */
  }

  .stepCard__left{
    justify-content:center;
    margin-bottom: 10px;
  }

  .stepCard__body h3{
    font-size: 14.8px;
    margin: 0 0 6px;
  }

  .stepCard__body p{
    font-size: 13.4px;
    margin: 0;
  }

  /* ✅ optional: last step full width (looks premium) */
  .stepCard:nth-child(5){
    grid-column: 1 / -1;
    min-height: auto;
  }
}

/* ✅ Mobile: arrow down direction */
@media (max-width: 768px){
  /* arrow box same rahega, bas icon rotate ho jayega */
  .stepCard__arrow svg{
    transform: rotate(90deg);      /* right arrow -> down arrow */
    animation: arrowDown 1.6s ease-in-out infinite;
  }

  @keyframes arrowDown{
    0%,100%{ transform: rotate(90deg) translateY(-2px); opacity:.9; }
    50%{ transform: rotate(90deg) translateY(4px); opacity:1; }
  }
}

/* =========================
END SECTION 6: HEALING-PROCESS
========================== */

/* =========================
SECTION 7: DIFFERENT-APPROACH (COMPARISON)
========================== */
.diff{
  position:relative;
  padding: 44px 0 72px;
  overflow:hidden;
}

.diff::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.50;
  background:
    radial-gradient(760px 360px at 15% 10%, rgba(255,184,107,.12), transparent 60%),
    radial-gradient(720px 380px at 85% 45%, rgba(139,231,193,.12), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);
}

.diff__head{
  position:relative;
  text-align:center;
  max-width: 920px;
  margin: 0 auto 18px;
}

.diff__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}
.diff__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent1);
  box-shadow: 0 0 0 7px rgba(255,184,107,.14);
}

.diff__title{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
  letter-spacing:.2px;
  line-height:1.2;
}
.diff__sep{
  opacity:.85;
  margin: 0 6px;
  color: rgba(243,246,255,.85);
}

.diff__sub{
  margin:0;
  color: rgba(243,246,255,.80);
  line-height: 1.6;
  font-size: 15.2px;
}

/* Grid */
.diff__grid{
  position:relative;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Columns */
.diffCol{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  padding: 16px;
  overflow:hidden;
  position:relative;
}

.diffCol--left::before{
  content:"";
  position:absolute;
  inset:-2px;
  opacity:.65;
  pointer-events:none;
  background: radial-gradient(520px 260px at 20% 10%, rgba(255,80,80,.10), transparent 60%);
}
.diffCol--right::before{
  content:"";
  position:absolute;
  inset:-2px;
  opacity:.65;
  pointer-events:none;
  background: radial-gradient(520px 260px at 20% 10%, rgba(139,231,193,.12), transparent 60%);
}

.diffCol__top{
  position:relative;
  display:flex;
  justify-content:center;
  margin-bottom: 12px;
}

.diffCol__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  font-weight: 1000;
  letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
}

.diffCol__badge--bad{ color: rgba(255,255,255,.92); }
.diffCol__badge--good{ color: rgba(255,255,255,.92); }

.diffCol__dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.14);
}

/* Lists */
.diffList{
  position:relative;
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
}

.diffItem{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.diffItem:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.20);
}

.diffIcon{
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
}

.diffIcon--bad{
  background: rgba(255,80,80,.12);
  border: 1px solid rgba(255,80,80,.22);
}
.diffIcon--good{
  background: rgba(139,231,193,.14);
  border: 1px solid rgba(139,231,193,.26);
}

.diffIcon svg{
  width: 22px;
  height: 22px;
  animation: diffIconFloat 3.1s ease-in-out infinite;
}
.diffItem:nth-child(1) .diffIcon svg{animation-delay:.0s}
.diffItem:nth-child(2) .diffIcon svg{animation-delay:.15s}
.diffItem:nth-child(3) .diffIcon svg{animation-delay:.30s}
.diffItem:nth-child(4) .diffIcon svg{animation-delay:.45s}
.diffItem:nth-child(5) .diffIcon svg{animation-delay:.60s}

@keyframes diffIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}

.diffText{
  font-weight: 900;
  color: #0B1B2B;
  line-height: 1.35;
  font-size: 14.8px;
}

/* CTA */
.diff__ctaRow{
  position:relative;
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Mobile */
@media (max-width: 768px){
  .diff{ padding: 32px 0 56px; }

  .diff__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .diffCol{
    padding: 14px;
  }

  .diffText{
    font-size: 14.2px;
  }
}
/* =========================
END SECTION 7: DIFFERENT-APPROACH
========================== */

/* =========================
SECTION 8: TESTIMONIALS (AUTO SCROLL)
========================== */
.tst{
  position:relative;
  padding: 44px 0 72px;
  overflow:hidden;
}

.tst::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.45;
  background:
    radial-gradient(760px 360px at 20% 10%, rgba(139,231,193,.10), transparent 60%),
    radial-gradient(720px 380px at 85% 50%, rgba(255,184,107,.10), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);
}

.tst__head{
  position:relative;
  text-align:center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.tst__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}
.tst__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.14);
}

.tst__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
  letter-spacing:.2px;
  line-height:1.2;
}

.tst__sub{
  margin:0;
  color: rgba(243,246,255,.80);
  line-height: 1.6;
  font-size: 15.2px;
}

/* Marquee Container */
.tst__marquee{
  position:relative;
  margin-top: 18px;
  overflow:hidden;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}

/* Track (auto scroll) */
.tst__track{
  display:flex;
  gap: 14px;
  padding: 14px;
  width: max-content;
  animation: tstMarquee 28s linear infinite;
  will-change: transform;
}

/* Pause on hover (desktop) */
@media (hover:hover){
  .tst__marquee:hover .tst__track{ animation-play-state: paused; }
}

@keyframes tstMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Review card */
.reviewCard{
  flex: 0 0 auto;
  width: 340px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  padding: 14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.reviewCard:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
}

.reviewCard__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.reviewCard__avatar{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  flex: 0 0 auto;
}

.reviewCard__avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.reviewCard__meta{
  line-height:1.1;
}
.reviewCard__name{
  margin:0;
  font-size: 15.5px;
  font-weight: 1000;
}
.reviewCard__loc{
  margin:5px 0 0;
  color: rgba(243,246,255,.70);
  font-weight: 800;
  font-size: 12.8px;
}

.reviewCard__stars{
  margin-left:auto;
  font-weight: 1000;
  letter-spacing: .8px;
  color: rgba(255,184,107,.95);
  text-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.reviewCard__text{
  margin:0;
  color: rgb(2 9 29 / 80%);
  line-height: 1.65;
  font-size: 14.5px;
}

/* Spacer to help loop */
.tst__spacer{ width: 10px; }

/* CTA */
.tst__ctaRow{
  position:relative;
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Mobile */
@media (max-width: 768px){
  .tst{ padding: 34px 0 58px; }

  .reviewCard{ width: 280px; }

  .tst__track{
    padding: 12px;
    gap: 12px;
    animation-duration: 34s; /* slightly slower on mobile */
  }
}
/* =========================
END SECTION 8: TESTIMONIALS
========================== */

/* =========================
SECTION 9: FINAL CTA (TAKE FIRST STEP) ✅ UPDATED
Mobile: image right after heading
Desktop: image on right
========================== */
.finalCta{
  position:relative;
  padding: 44px 0 78px;
  overflow:hidden;
}

.finalCta::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.5;
  background:
    radial-gradient(820px 380px at 15% 25%, rgba(255,184,107,.10), transparent 62%),
    radial-gradient(760px 420px at 85% 45%, rgba(139,231,193,.10), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 24px);
}

.finalCta__wrap{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.finalCta__content{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  padding: 20px 18px;
}

.finalCta__pill{
  margin:0 0 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 1000;
}

.finalCta__dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent1);
  box-shadow: 0 0 0 7px rgba(255,184,107,.14);
}

.finalCta__title{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
  line-height: 1.15;
}

.finalCta__sub{
  margin:0 0 14px;
  color: rgba(243,246,255,.80);
  line-height: 1.65;
  font-size: 15.3px;
}
.finalCta__sub strong{ color: rgb(247 4 4 / 94%); }

.finalCta__list{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

.finalCta__item{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.finalCta__item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.20);
}

.finalCta__icon{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(139,231,193,.12);
  border: 1px solid rgba(139,231,193,.22);
  overflow:hidden;
  position:relative;
}
.finalCta__icon svg{
  width: 22px;
  height: 22px;
  color: rgba(243,246,255,.92);
  animation: fIconFloat 3.1s ease-in-out infinite;
  will-change: transform;
}
@keyframes fIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}

.finalCta__item strong{
  display:block;
  font-weight: 1000;
  letter-spacing:.1px;
}
.finalCta__item p{
  margin:6px 0 0;
  color: rgba(243,246,255,.78);
  line-height: 1.55;
  font-size: 14.4px;
}

.finalCta__ctaRow{
  margin-top: 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.finalCta__note{
  margin:0;
  color: rgb(247 4 4 / 94%);
  font-weight: 850;
  text-align:left;
}

/* Media (base) */
.finalCta__media{
  position:relative;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}

/* Unique shape */
.finalCta__shape{
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow:hidden;
  position:relative;
  transform: rotate(-2deg);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 55px rgba(0,0,0,.35);
  clip-path: polygon(8% 0%, 92% 2%, 100% 18%, 96% 92%, 75% 100%, 10% 98%, 0% 82%, 2% 10%);
}

.finalCta__shape img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: rotate(2deg) scale(1.03);
}

/* Floating tag */
.finalCta__floatingTag{
  position:absolute;
  left: 14px;
  bottom: 14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(243,246,255,.92);
  font-weight: 950;
  font-size: 12.8px;
  animation: floatTag 3.6s ease-in-out infinite;
}
.finalCta__floatingTag span{
  width:9px;height:9px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(139,231,193,.14);
}
@keyframes floatTag{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

/* ✅ Toggle media blocks */
.finalCta__media--mobile{ display:none; }
.finalCta__media--desktop{ display:flex; }

/* Mobile */
@media (max-width: 768px){
  .finalCta{ padding: 34px 0 60px; }

  .finalCta__wrap{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .finalCta__content{
    text-align:center;
    padding: 16px 14px;
  }

  .finalCta__note{ text-align:center; }

  .finalCta__item{ text-align:left; }

  /* ✅ mobile media shows right after heading (because HTML has it there) */
  .finalCta__media--mobile{
    display:flex;
    padding: 12px;
    margin: 10px 0 8px;
  }

  .finalCta__media--desktop{ display:none; }

  .finalCta__shape{ max-width: 360px; }
}
/* =========================
END SECTION 9
========================== */


/* =========================
SECTION 10: FAQ (ACCORDION)
========================== */
.faq{
  position:relative;
  padding: 44px 0 78px;
  overflow:hidden;
}

.faq::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:.45;
  background:
    radial-gradient(740px 360px at 20% 25%, rgba(139,231,193,.10), transparent 62%),
    radial-gradient(680px 380px at 85% 35%, rgba(255,184,107,.10), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 26px);
}

.faq__head{
  position:relative;
  text-align:center;
  max-width: 860px;
  margin: 0 auto 18px;
}

.faq__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 1000;
  margin: 0 0 12px;
}
.faq__dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.14);
}

.faq__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
}
.faq__sub{
  margin:0;
  color: rgba(243,246,255,.78);
  font-size: 15.2px;
  line-height: 1.6;
}

/* Wrap */
.faq__wrap{
  position:relative;
  max-width: 920px;
  margin: 18px auto 0;
  display:grid;
  gap: 12px;
}

/* Item */
.faqItem{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.faqItem:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.20);
}

/* Summary */
.faqItem__q{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 16px 16px;
  font-weight: 950;
  color: rgb(6 6 6 / 92%);
  letter-spacing:.1px;
}
.faqItem__q::-webkit-details-marker{ display:none; }

/* Icon */
.faqItem__qIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,184,107,.12);
  border: 1px solid rgba(255,184,107,.22);
  position:relative;
  overflow:hidden;
  flex: 0 0 auto;
}
.faqItem__qIcon svg{
  width: 22px;
  height: 22px;
  color: rgb(0 0 0 / 92%);
  animation: faqIconFloat 3.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes faqIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}

/* Chevron */
.faqItem__chev{
  margin-left:auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(243,246,255,.72);
  border-bottom: 2px solid rgba(243,246,255,.72);
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.faqItem[open] .faqItem__chev{
  transform: rotate(-135deg);
}

/* Answer */
.faqItem__a{
  padding: 0 16px 16px;
  color: rgb(37 37 38 / 75%);
  line-height: 1.65;
  font-size: 15.2px;
}
.faqItem__a strong{ color: rgb(6 6 6 / 92%); }

/* CTA row */
.faq__ctaRow{
  position:relative;
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Mobile */
@media (max-width: 768px){
  .faq{ padding: 34px 0 60px; }
  .faqItem__q{
    padding: 14px 14px;
    gap: 10px;
  }
  .faqItem__qIcon{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .faqItem__a{
    padding: 0 14px 14px;
    text-align:left;
  }
}
/* =========================
END SECTION 10: FAQ
========================== */


/* =========================
STICKY FOOTER BAR (TIMER + BOOK NOW)
========================== */
.stickyBar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 9999;
  pointer-events: none; /* only inner clickable */
  padding: 0 14px;
}

.stickyBar__inner{
  pointer-events: auto;
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;

  border-radius: 18px;
  background: rgb(239 242 255 / 72%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 10px 10px 10px 12px;
}

/* LEFT */
.stickyBar__left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.stickyBar__badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgb(25 25 27 / 90%);
  font-weight: 900;
  font-size: 12.5px;
  white-space: nowrap;
}

.stickyBar__dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent1);
  box-shadow: 0 0 0 7px rgba(255,184,107,.14);
  animation: stickyPulse 1.6s ease-in-out infinite;
}

@keyframes stickyPulse{
  0%,100%{ transform: scale(1); opacity: .9; }
  50%{ transform: scale(1.12); opacity: 1; }
}

.stickyBar__time{
  display:inline-flex;
  align-items:baseline;
  gap: 4px;
  font-weight: 1000;
  letter-spacing: .5px;
  color: rgba(243,246,255,.95);
  line-height: 1;
}

.stickyBar__num{
  display:inline-block;
  min-width: 22px;
  text-align:center;
  font-size: 18px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.stickyBar__sep{
  font-size: 18px;
  opacity: .8;
  transform: translateY(-1px);
}

.stickyBar__hint{
  color: #0B1B2B;
  font-weight: 750;
  font-size: 12.5px;
  white-space: nowrap;
}

/* RIGHT BUTTON */
.stickyBar__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 1000;
  color: #0E1D1E;
  background: rgba(139,231,193,.95);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(139,231,193,.18);
  white-space: nowrap;

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.stickyBar__btn:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 58px rgba(139,231,193,.22);
  filter: brightness(1.02);
}
.stickyBar__btn:active{
  transform: translateY(0) scale(.99);
}

.stickyBar__arrow{
  font-weight: 1100;
  transform: translateY(-1px);
}

/* subtle shine */
.stickyBar__btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 35%, transparent 70%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}
.stickyBar__btn:hover::after{
  opacity:1;
  animation: stickyShine .9s ease forwards;
}
@keyframes stickyShine{
  to{ transform: translateX(120%); }
}

/* ✅ Responsive */
@media (max-width: 768px){
  .stickyBar{
    bottom: 10px;
    padding: 0 10px;
  }

  .stickyBar__inner{
    padding: 10px;
    gap: 10px;
  }

  .stickyBar__badge{ display:none; } /* mobile clean */

  .stickyBar__hint{
    display:none; /* keep compact */
  }

  .stickyBar__num{
    font-size: 16px;
    min-width: 20px;
    padding: 6px 7px;
  }

  .stickyBar__btn{
    padding: 12px 14px;
  }
}

/* ✅ So sticky bar doesn't overlap last section */
body{
  padding-bottom: 90px;
}

/* ====== MODAL OVERLAY ====== */
.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.modalOverlay.isOpen {
  display: flex;
}

/* ====== MODAL BOX ====== */
.modal {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 22px 18px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Close button */
.modalClose {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.06);
  font-size: 22px;
  line-height: 1;
}

.modalTitle {
  margin: 6px 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: #0b1b2b;
}

.modalSub {
  margin: 0 0 14px;
  color: rgba(11, 27, 43, 0.72);
  font-size: 14px;
}

/* Form */
.modalForm {
  display: grid;
  gap: 12px;
}

.field .label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(11, 27, 43, 0.8);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 27, 43, 0.15);
  outline: none;
  font-size: 14px;
  color: #0b1b2b;
}

.field input:focus {
  border-color: rgba(16, 110, 190, 0.6);
  box-shadow: 0 0 0 4px rgba(16, 110, 190, 0.12);
}

.modalBtn {
  height: 46px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(90deg, #0ea5e9, #0b5bd3);
  transition: transform 0.08s ease;
}

.modalBtn:active {
  transform: scale(0.98);
}

.modalBtn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.modalNote {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(11, 27, 43, 0.65);
  line-height: 1.35;
}

/* Mobile tweak */
@media (max-width: 420px) {
  .modal {
    padding: 18px 14px;
    border-radius: 16px;
  }
}



/* =========================
THEME: LIGHT (Logo Palette)
Paste at END of your style.css
========================= */
:root{
  /* Light backgrounds */
  --bg0:#F7FBFF;
  --bg1:#F2FBF7;
  --bg2:#EAF6FF;

  /* Text (dark for light theme) */
  --text:#0B1B2B;
  --muted:rgba(11,27,43,.72);

  /* Logo accents */
  --accent1:#0267AC;  /* Blue */
  --accent2:#0BA54E;  /* Green */
  --accent3:#9D523E;  /* Brown */

  /* Light glass surfaces */
  --glass: rgba(255,255,255,.82);
  --glass2: rgba(255,255,255,.68);
  --stroke: rgba(2,103,172,.14);
  --stroke2: rgba(11,165,78,.16);

  /* Softer shadows for light */
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow2: 0 10px 26px rgba(0,0,0,.08);
}

/* Page */
body{
  background: linear-gradient(180deg, #F7FBFF 0%, #F2FBF7 55%, #EAF6FF 100%);
  color: var(--text);
}

/* Topbar */
.topbar{
  background: rgba(255,255,255,.76);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{ color: rgba(11,27,43,.78); }
.topbar__dot{
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(11,165,78,.18);
}

/* Hero background: light but same vibe */
.hero__bg{
  background:
    radial-gradient(900px 520px at 15% 15%, rgba(2,103,172,.12), transparent 60%),
    radial-gradient(800px 520px at 80% 20%, rgba(11,165,78,.10), transparent 62%),
    linear-gradient(135deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}
.hero__bg::after{
  opacity:.10;
  background: repeating-linear-gradient(
    135deg,
    rgba(2,103,172,.08) 0 1px,
    transparent 1px 18px
  );
}

/* Headings + accents */
.title{ color: var(--text); }
.title__accent{ color: var(--accent1); } /* Dr. Sheetal Sethi text highlight */
.sub{ color: var(--muted); }

/* All “glass cards” become light */
.stat,
.doctorMini,
.videoCard,
.benefitCard,
.aboutDoc__content,
.aboutDoc__photoFrame,
.whoCard,
.finalCta__content,
.finalCta__item{
  background: var(--glass);
  border: 1px solid var(--stroke);
}

/* Muted text inside cards (turn from white to dark-muted) */
.stat small,
.doctorMini__role,
.doctorMini__text,
.aboutDoc__text,
.aboutDoc__quote,
.benefitCard__text p,
.whoFor__sub,
.finalCta__sub,
.finalCta__item p{
  color: rgba(11,27,43,.74);
}

/* Icons: make them “colorful” */
.stat__icon,
.benefitCard__iconWrap,
.finalCta__icon{
  background: rgba(2,103,172,.10);
  border: 1px solid rgba(2,103,172,.18);
}
.benefitCard__icon,
.finalCta__icon svg{
  color: var(--accent1);
}

/* Buttons: gradient blue→green (logo style) */
.headerCta,
.btn--primary,
.sectionCta{
  background: linear-gradient(135deg, rgba(2,103,172,.96), rgba(11,165,78,.92));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 44px rgba(2,103,172,.18);
}

/* Chips/badges (if you keep them): remove dark overlay feel */
.whoCard__chip,
.aboutDoc__badge,
.finalCta__floatingTag{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--stroke);
  color: rgba(11,27,43,.86);
}
.whoCard__chip span,
.aboutDoc__badgeDot,
.finalCta__floatingTag span{
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(11,165,78,.14);
}

/* Quote becomes soft light */
.aboutDoc__quote{
  background: rgba(2,103,172,.06);
  border-color: var(--stroke);
}
.aboutDoc__quote footer{ color: rgba(11,27,43,.66); }
.aboutDoc__quoteMark{ color: rgba(157,82,62,.55); } /* brown tone */




/* =========================
LIGHT THEME FIXES: icon + text visibility
Paste at END of style.css
========================= */

/* 1) Global text color force (so old white text override ho jaye) */
body, p, li, small, span, strong, h1, h2, h3, h4, h5, h6{
  color: var(--text);
}

/* Muted text */
.sub,
.whoFor__sub,
.benefits__subtitle,
.aboutDoc__text,
.finalCta__sub,
.doctorMini__text,
.benefitCard__text p,
.finalCta__item p,
.stat small{
  color: rgba(11,27,43,.72);
}

/* 2) SVG icons that were white: force currentColor + set color on wrappers */
.stat__icon,
.headerCta__icon,
.sectionCta__icon,
.benefitCard__iconWrap,
.finalCta__icon{
  color: var(--accent1); /* Blue */
}

/* Force ALL svg inside those wrappers to follow currentColor */
.stat__icon svg,
.headerCta__icon svg,
.sectionCta__icon svg,
.benefitCard__iconWrap svg,
.finalCta__icon svg{
  fill: none;
  stroke: currentColor;
}

/* If some SVG uses fill instead of stroke */
.stat__icon svg [fill],
.headerCta__icon svg [fill],
.sectionCta__icon svg [fill],
.benefitCard__iconWrap svg [fill],
.finalCta__icon svg [fill]{
  fill: currentColor !important;
}

/* 3) Chips/badges text visibility (dark overlay hatao) */
.whoCard__chip,
.aboutDoc__badge,
.finalCta__floatingTag{
  color: rgba(11,27,43,.88) !important;
}

/* 4) Button text always visible */
.headerCta,
.btn--primary,
.sectionCta{
  color:#fff !important;
}
.headerCta svg,
.sectionCta svg{
  stroke:#fff; /* icon inside button */
}

/* 5) Any section cards heading ensure visible */
.whoCard__title,
.benefitCard__text h3,
.finalCta__item strong,
.aboutDoc__title,
.aboutDoc__listTitle,
.aboutDoc__kicker{
  color: rgba(11,27,43,.92) !important;
}

/* 6) Safety: glass cards text should never be white */
.stat,
.doctorMini,
.videoCard,
.benefitCard,
.aboutDoc__content,
.whoCard,
.finalCta__content,
.finalCta__item{
  color: rgba(11,27,43,.90);
}



/* =========================
SECTION: NORMAL VS LEAKY GUT
========================== */
/* =========================
SECTION: GUT-COMPARE (NORMAL vs LEAKY)
========================== */
.gutCompare{
  position:relative;
  padding: 44px 0 76px;
  overflow:hidden;
}

.gutCompare::before{
  content:"";
  position:absolute;
  inset:-70px;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(780px 360px at 15% 20%, rgba(139,231,193,.10), transparent 60%),
    radial-gradient(740px 420px at 85% 45%, rgba(255,184,107,.10), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 24px);
}

.gutCompare__head{
  position:relative;
  text-align:center;
  max-width: 880px;
  margin: 0 auto 18px;
}

.gutCompare__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}
.gutCompare__dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.14);
}

.gutCompare__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
  letter-spacing:.2px;
}
.gutCompare__title span{ opacity:.85; font-weight:900; }

.gutCompare__sub{
  margin:0;
  color: rgba(243,246,255,.78);
  line-height: 1.6;
  font-size: 15.2px;
}

/* ✅ Banner image under heading */
.gutCompare__banner{
  margin: 14px auto 0;
  max-width: 980px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}
.gutCompare__banner img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* GRID */
.gutCompare__grid{
  position:relative;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* BOX */
.gutBox{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: gutFadeUp .55s ease forwards;
}
.gutBox:nth-child(1){ animation-delay: .05s; }
.gutBox:nth-child(2){ animation-delay: .12s; }

@keyframes gutFadeUp{
  to{ opacity:1; transform: translateY(0); }
}

.gutBox:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.075);
}

/* top */
.gutBox__top{
  position:relative;
  padding: 16px 16px 0;
}
.gutBox__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  font-weight: 1000;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(243,246,255,.92);
}

/* badge variants */
.gutBox--good .gutBox__badge{
  background: rgba(139,231,193,.14);
  border-color: rgba(139,231,193,.26);
}
.gutBox--bad .gutBox__badge{
  background: rgba(255,184,107,.14);
  border-color: rgba(255,184,107,.28);
}

/* list */
.gutList{
  padding: 14px 16px 18px;
  display:grid;
  gap: 12px;
}

.gutItem{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gutBox--good .gutItem:hover{
  transform: translateY(-2px);
  border-color: rgba(139,231,193,.22);
  background: rgba(139,231,193,.08);
}
.gutBox--bad .gutItem:hover{
  transform: translateY(-2px);
  border-color: rgba(255,184,107,.22);
  background: rgba(255,184,107,.08);
}

/* ICON (✅ readable color fix) */
.gutIcon{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  overflow:hidden;
  position:relative;
  border: 1px solid rgba(255,255,255,.12);
}
.gutBox--good .gutIcon{
  background: rgba(139,231,193,.12);
  border-color: rgba(139,231,193,.24);
}
.gutBox--bad .gutIcon{
  background: rgba(255,184,107,.12);
  border-color: rgba(255,184,107,.24);
}

/* ✅ SVG color same as text (not dark) */
.gutIcon svg{
  width: 24px;
  height: 24px;
  color: rgba(243,246,255,.92);
  animation: gutIconFloat 3.2s ease-in-out infinite;
  will-change: transform;
}

/* glow pulse */
.gutIcon::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius: 22px;
  opacity:.7;
  pointer-events:none;
  animation: gutGlow 2.8s ease-in-out infinite;
}
.gutBox--good .gutIcon::after{
  background: radial-gradient(circle at 30% 30%, rgba(139,231,193,.22), transparent 60%);
}
.gutBox--bad .gutIcon::after{
  background: radial-gradient(circle at 30% 30%, rgba(255,184,107,.22), transparent 60%);
}

@keyframes gutIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}
@keyframes gutGlow{
  0%,100%{ transform: scale(1); opacity:.6; }
  50%{ transform: scale(1.08); opacity:.95; }
}

/* text */
.gutText strong{
  display:block;
  font-weight: 1000;
  letter-spacing:.1px;
  margin-bottom: 4px;
}
.gutText p{
  margin:0;
  color: rgba(243,246,255,.78);
  line-height: 1.55;
  font-size: 14.4px;
}

/* CTA row */
.ctaRow{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}
.btn{
  text-align:center;
  justify-content:center;
}
@media (min-width: 769px){
  .ctaRow .btn--primary{
    width: 100%;
    max-width: 520px;
  }
}

/* MOBILE: keep both boxes side-by-side */
@media (max-width: 768px){
  .gutCompare{ padding: 32px 0 56px; }

  .gutCompare__banner{
    max-width: 100%;
    border-radius: 16px;
  }

  .gutCompare__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gutBox__top{ padding: 12px 10px 0; }

  .gutBox__badge{
    font-size: 12px;
    padding: 8px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gutList{
    padding: 10px 10px 12px;
    gap: 10px;
  }

  .gutItem{
    padding: 10px;
    gap: 10px;
  }

  .gutIcon{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .gutIcon svg{
    width: 22px;
    height: 22px;
  }

  .gutText strong{
    font-size: 13px;
  }

  .gutText p{
    font-size: 12.5px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* =========================
END SECTION: GUT-COMPARE
========================== */



/* =========================
END SECTION: NORMAL VS LEAKY GUT
========================== */


/* =========================
SECTION: GUT-FACTORS (AUTO SCROLL IMAGE CARDS)
========================== */
.gutFactors{
  position:relative;
  padding: 44px 0 78px;
  overflow:hidden;
}

.gutFactors::before{
  content:"";
  position:absolute;
  inset:-80px;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(760px 360px at 18% 20%, rgba(139,231,193,.12), transparent 62%),
    radial-gradient(720px 420px at 85% 55%, rgba(255,184,107,.10), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 22px);
}

.gutFactors__head{
  position:relative;
  text-align:center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.gutFactors__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}
.gutFactors__pillDot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 7px rgba(139,231,193,.14);
}

.gutFactors__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
  letter-spacing:.2px;
}
.gutFactors__sub{
  margin:0;
  color: rgba(243,246,255,.78);
  line-height: 1.6;
  font-size: 15.2px;
}

/* Marquee wrapper */
.gfMarquee{
  position:relative;
  margin-top: 18px;
  overflow:hidden;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}

/* Track (animated) */
.gfTrack{
  display:flex;
  gap: 14px;
  padding: 14px;
  width:max-content;
  animation: gfScroll var(--gfDur, 28s) linear infinite;
  will-change: transform;
}

/* Pause on hover */
.gfMarquee:hover .gfTrack{ animation-play-state: paused; }

/* Card */
.gfCard{
  flex: 0 0 auto;
  width: 260px;
  border-radius: var(--r-xl);
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gfCard:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.075);
}

/* Image area */
.gfMedia{
  position:relative;
  height: 160px;
  background: linear-gradient(135deg, rgba(255,184,107,.12), rgba(139,231,193,.12));
}
.gfMedia img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.03);
  transition: transform .35s ease;
}
.gfCard:hover .gfMedia img{ transform: scale(1.12); }

/* Shine */
.gfMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 35%, transparent 70%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}
.gfCard:hover .gfMedia::after{
  opacity:1;
  animation: gfShine .95s ease forwards;
}
@keyframes gfShine{ to{ transform: translateX(120%);} }

/* Floating icon on image */
.gfIcon{
  position:absolute;
  left: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gfIcon svg{
  width: 24px;
  height: 24px;
  color: rgba(243,246,255,.92);
  animation: gfIconFloat 3.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes gfIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}

/* Text */
.gfBody{
  padding: 12px 12px 14px;
}
.gfBody h3{
  margin:0 0 6px;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing:.1px;
}
.gfBody p{
  margin:0;
  color: #052e1e;
  line-height: 1.5;
  font-size: 13.6px;
}

/* Animation keyframes */
@keyframes gfScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-1 * var(--gfShift, 600px))); }
}

/* CTA row */
.gutFactors__ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Mobile */
@media (max-width: 768px){
  .gutFactors{ padding: 32px 0 56px; }

  .gfTrack{ padding: 12px; gap: 12px; }

  .gfCard{ width: 210px; }
  .gfMedia{ height: 135px; }

  .gfBody h3{ font-size: 14.5px; }
  .gfBody p{
    font-size: 12.8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* =========================
END SECTION: GUT-FACTORS
========================== */

/* =========================
SECTION: IMPORTANCE-OF-GUT-HEALTH
========================== */
.gutImpact{
  position:relative;
  padding: 44px 0 78px;
}

.gutImpact::before{
  content:"";
  position:absolute;
  inset:-80px;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(760px 360px at 18% 20%, rgba(139,231,193,.12), transparent 62%),
    radial-gradient(720px 420px at 85% 55%, rgba(255,184,107,.10), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 24px);
}

.gutImpact__head{
  position:relative;
  text-align:center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.gutImpact__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgb(247 4 4 / 94%);
  font-weight: 950;
  margin: 0 0 12px;
}
.gutImpact__dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent1);
  box-shadow: 0 0 0 7px rgba(255,184,107,.14);
}

.gutImpact__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 1000;
  letter-spacing:.2px;
}
.gutImpact__sub{
  margin:0;
  color: rgba(243,246,255,.78);
  line-height: 1.6;
  font-size: 15.2px;
}

.gutImpact__grid{
  position:relative;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* ✅ desktop 3 */
  gap: 14px;
}

/* Card */
.giCard{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  padding: 16px 14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  position:relative;
  overflow:hidden;
}

.giCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  opacity:0;
  pointer-events:none;
  background: radial-gradient(420px 220px at var(--mx, 30%) var(--my, 30%), rgba(255,184,107,.16), transparent 60%);
  transition: opacity .18s ease;
}

.giCard:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.075);
}
.giCard:hover::before{opacity:1;}

/* Icon */
.giIcon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(139,231,193,.12);
  border: 1px solid rgba(139,231,193,.22);
  position:relative;
  overflow:hidden;
  margin-bottom: 10px;
}

.giIcon svg{
  width: 28px;  /* ✅ bigger icon */
  height: 28px;
  color: rgb(247 4 4 / 94%);
  animation: giFloat 3.1s ease-in-out infinite;
  will-change: transform;
}

/* glow pulse */
.giIcon::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(139,231,193,.22), transparent 60%);
  opacity:.7;
  animation: giGlow 2.8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes giFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-4px) rotate(-2deg); }
}
@keyframes giGlow{
  0%,100%{ transform: scale(1); opacity:.55; }
  50%{ transform: scale(1.10); opacity:.95; }
}

/* Text */
.giCard__title{
  margin:0 0 6px;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing:.1px;
}
.giCard__text{
  margin:0;
  color: #0b1b2b;
  line-height: 1.55;
  font-size: 14px;
}

/* CTA */
.gutImpact__ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Mobile: 2 per row */
@media (max-width: 768px){
  .gutImpact{ padding: 32px 0 56px; }

  .gutImpact__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* ✅ mobile 2 */
    gap: 12px;
  }

  .giCard{ padding: 14px 12px; }
  .giIcon{ width: 50px; height: 50px; border-radius: 16px; }
  .giIcon svg{ width: 26px; height: 26px; }
  .giCard__title{ font-size: 14.5px; }
  .giCard__text{
    font-size: 12.8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* =========================
END SECTION: IMPORTANCE-OF-GUT-HEALTH
========================== */

/* =========================
MOBILE HORIZONTAL SCROLL FIX (NO LEFT-RIGHT SHIFT)
========================== */

/* Strongest cross-browser lock */
html, body{
  width:100%;
  max-width:100%;
}

html{ overflow-x: clip; }
body{ overflow-x: clip; }

@supports not (overflow: clip){
  html, body{ overflow-x:hidden; }
}

/* Any section/pseudo bg that can create overflow */
.hero,
.benefits,
.aboutDoc,
.whoFor,
.finalCta{
  overflow-x: clip;
}

@supports not (overflow: clip){
  .hero,
  .benefits,
  .aboutDoc,
  .whoFor,
  .finalCta{
    overflow-x:hidden;
  }
}

/* Grid children sometimes push width -> stop that */
.hero__grid > *,
.aboutDoc__grid > *,
.whoFor__grid > *,
.benefits__grid > *{
  min-width:0;
}

/* Media safety */
img, video, svg{
  max-width:100%;
  height:auto;
}

/* Optional: stop horizontal pan on mobile (safe for your page) */
@media (max-width:768px){
  body{ touch-action: pan-y; }
}
/* =========================
END FIX
========================== */
