/* ===========================================================
   Arogya Netram — Vanvasi Ayurveda landing page
   Mobile-first design matching the Figma SVG (iPhone 16/17 Pro).
   =========================================================== */

:root{
  --green:#6cc320;
  --green-dark:#55a70e;
  --gold:#ffb400;
  --yellow:#fafa18;
  --bg-dark:#0f1410;
  --accent:       #9bcf3a;
  --accent-2:     #7ec02b;
  --text:         #ffffff;
  --text-dim:     rgba(255,255,255,.85);
  --star:         #fafa18;
  --shadow-lg:    0 18px 40px rgba(0,0,0,.35);
  --shadow-md:    0 8px 22px rgba(0,0,0,.28);
  --r-lg:         22px;
  --r-md:         16px;
  --r-sm:         12px;
  --pad-x:        18px;
  --max-w:        500px;
}

*,*::before,*::after{ box-sizing:border-box; }

html,body{ margin:0; padding:0; }

body{
  font-family: 'Poppins', 'Noto Sans Devanagari', system-ui, -apple-system, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  min-height: 100vh;
  background-color: #1f3a1f;
}

/* =========================
   MOBILE BACKGROUND IMAGE
========================= */
@media (max-width: 720px){
  body::before{
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image:
      linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
      url("assets/bg-img.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

img{ max-width:100%; display:block; height:auto; }

:lang(hi), .hindi{ font-family:'Noto Sans Devanagari','Poppins',sans-serif; }

.hl{ color: var(--accent); font-weight: 700; }
.hl-soft{ color: var(--accent-soft); font-weight: 700; }
.white{ color: #fff; }
.excl{ color: var(--accent); }

.page{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 0;
}

/* ============================================================
   HERO — image is the backdrop for the header AND the cards
   ============================================================ */
.hero{
  position: relative;
  margin: 0 calc(var(--pad-x) * -1) 0;
  overflow: visible;
  background: transparent;
}

.hero__bg{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 402 / 620;          /* slightly taller to fit header on top */
  object-fit: cover;
  object-position: center;
}

/* Header layered on top of the hero image */
.hero__header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px var(--pad-x) 0;
  text-align: center;
  /* Soft top-down shade so text stays readable over the image */
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 70%, transparent 100%);
}
.hero__header-line1{
  font-family:'Noto Sans Devanagari', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 500;
  letter-spacing: .1px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hero__header-strip{
  position: relative;
  height: 9px;
  background: var(--green);
  margin: 0 calc(var(--pad-x) * -1);
}
.hero__header-title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  background: var(--green);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 4px 26px;
  border-radius: 4px;
  white-space: nowrap;
  margin: 0;
}
.hero__header-phone{
  display: inline-block;
  margin-top: 22px;
  background: var(--green);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 6px 22px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: transform .12s ease, box-shadow .12s ease;
}
.hero__header-phone:hover{ transform: translateY(-1px); }
.hero__header-phone:active{ transform: translateY(0); }

/* Container for the two cards below the hero */
.hero__overlay{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 calc(var(--pad-x) + 28px);
  margin-top: -45px;
  position: relative;
  z-index: 2;
}

.hero__badge{
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 12px 16px;
  text-align: center;
  color: #fff;
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge-line1{ margin: 0; font-size: 14px; font-weight: 500; color: #fff; }
.hero__badge-line2{
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: .3px;
}

.hero__badge--main{ border-radius: 30px; padding: 22px 20px 20px; }
.hero__tagline{ margin: 0; font-size: 15px; line-height: 1.65; font-weight: 500; color: #fff; }
.hero__tagline .hl{ color: var(--yellow); font-weight: 700; }
.hero__brand{
  margin: 16px 0 14px;
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: .3px;
}
.hero__rating{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.hero__rating-num{ font-size: 20px; font-weight: 800; color: #fff; }
.hero__stars{
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.hero__stars svg{ display: block; }
.hero__rating-sub{
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .3px;
  font-weight: 500;
}

@media (min-width: 400px){
  .hero__brand{ font-size: 32px; }
  .hero__tagline{ font-size: 16px; }
  .hero__rating-num{ font-size: 22px; }
}

/* ============================================================
   CTA STRIP & BUTTON
   ============================================================ */
.cta-strip{
  display: flex;
  justify-content: center;
  padding: 18px 0 18px;
}
.cta-strip--last{ padding-bottom: 8px; }

.cta-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #103010;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .3px;
  box-shadow:
    0 10px 24px rgba(155,207,58,.35),
    inset 0 -3px 0 rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.cta-btn__icon{ width: 18px; height: 18px; fill: #103010; }
.cta-btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px rgba(155,207,58,.45), inset 0 -3px 0 rgba(0,0,0,.15); }
.cta-btn:active{ transform: translateY(0); }

@keyframes pulse{
  0%, 100% { box-shadow: 0 10px 24px rgba(155,207,58,.35), inset 0 -3px 0 rgba(0,0,0,.15); }
  50%      { box-shadow: 0 10px 28px rgba(155,207,58,.55), 0 0 0 6px rgba(155,207,58,.10), inset 0 -3px 0 rgba(0,0,0,.15); }
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title{
  text-align: center;
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 5.4vw, 24px);
  margin: 6px 0 10px;
  line-height: 1.35;
}
.section-rule{
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  margin: 0 auto 18px;
}

/* ============================================================
   FORMULA + BADGES
   ============================================================ */
.formula{ padding: 6px 0 22px; text-align: center; }
.badges{ margin: 6px auto 0; max-width: 100%; }
.badges img{ width: 100%; height: auto; }

/* ============================================================
   GENERIC CARD
   ============================================================ */
.card{
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border-radius: var(--r-lg);
  padding: 22px 18px 24px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.05);
}

/* ============================================================
   COMMON PROBLEMS
   ============================================================ */
.problems{ position: relative; }
.problems__title{
  text-align: center;
  margin: 0 0 6px;
  font-size: clamp(22px, 5.8vw, 26px);
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
}
.problems__sub{
  text-align: center;
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 8px 18px;
  color: var(--text-dim);
}
.problems__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 8px;
  margin: 6px 0 6px;
}
.problem{
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.problem__img{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.3), 0 0 0 3px rgba(155,207,58,.25);
  margin-bottom: 8px;
}
.problem__img img{ width:100%; height:100%; object-fit: cover; }
.problem figcaption{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  font-size: 11.5px;
  line-height: 1.35;
  color: #fff;
  font-weight: 500;
}
.houseboat{ margin-top: 18px; text-align: center; }
.houseboat img{ width: 90%; margin: 0 auto; opacity: .95; }

/* ============================================================
   EXPLAINER
   ============================================================ */
.explainer__title{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  text-align: center;
  font-size: clamp(20px, 5.6vw, 24px);
  margin: 0 0 14px;
  font-weight: 800;
}
.explainer__title--en{
  margin-top: 22px;
  font-family:'Poppins','Noto Sans Devanagari',sans-serif;
}
.explainer__body{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 12px;
}
.explainer__body strong{ color: var(--accent); font-weight: 700; }
.explainer__body--en{ font-family:'Poppins',sans-serif; font-size: 13px; }
.temple{ margin-top: 20px; text-align: center; }
.temple img{ width: 100%; opacity: .85; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__title{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  text-align: center;
  font-size: clamp(22px, 6vw, 26px);
  margin: 0 0 18px;
  font-weight: 800;
}
.benefits__list{ list-style: none; padding: 0; margin: 0; }
.benefits__list li{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #fff;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.benefits__list li:last-child{ border-bottom: 0; }
.benefits__list li::before{
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #bff066 0%, var(--accent) 60%, var(--accent-2) 100%);
  box-shadow: 0 0 0 3px rgba(155,207,58,.2);
}
.benefits__list li::after{
  content: "";
  position: absolute;
  left: 5px; top: 17px;
  width: 8px; height: 4px;
  border-left: 2px solid #103010;
  border-bottom: 2px solid #103010;
  transform: rotate(-45deg);
}

/* ============================================================
   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); }

/* ============================================================
   USAGE
   ============================================================ */
.usage{ padding: 6px 0 14px; text-align: center; }
.usage__title{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  margin: 0 0 16px;
  font-size: clamp(20px, 5.6vw, 24px);
  font-weight: 800;
}
.usage__layout{ display: flex; flex-direction: column; gap: 14px; }
.usage__hero{ border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.usage__hero img{ width:100%; height:auto; }
.usage__steps{ display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.usage-step{
  text-align: left;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(155,207,58,.18);
  border-radius: var(--r-md);
  padding: 14px 14px 12px;
}
.usage-step__label{
  display: inline-block;
  background: var(--accent);
  color: #103010;
  font-weight: 800;
  font-size: 12.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.usage-step__text{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{ padding: 6px 0 14px; text-align: center; }
.reviews__title{
  margin: 0 0 14px;
  font-size: clamp(20px, 5.6vw, 24px);
  letter-spacing: 2px;
  font-weight: 800;
}
.reviews__image{ border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.reviews__image img{ width:100%; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote{ position: relative; margin: 18px 0 22px; text-align: center; padding: 10px 24px 20px; }
.quote__mark{
  font-family: serif;
  color: var(--accent);
  font-size: 70px;
  line-height: 0.5;
  font-weight: 900;
  margin: 4px 0;
  user-select: none;
}
.quote__mark--open{ text-align: left; }
.quote__mark--close{ text-align: right; margin-top: -8px; }
.quote__text{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #fff;
  margin: -4px 0 -4px;
  font-weight: 500;
}

/* ============================================================
   SUMMARY
   ============================================================ */
.summary{
  background: linear-gradient(180deg, #20422a 0%, #18331e 100%);
  border-radius: var(--r-lg);
  padding: 20px 16px 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(155,207,58,.15);
}
.summary__title{
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(20px, 5.4vw, 24px);
  letter-spacing: 2px;
  font-weight: 800;
}
.summary__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 10px;
  align-items: center;
}
.summary__left{ text-align: center; }
.summary__label{ margin: 0 0 4px; font-size: 11px; color: var(--text-dim); font-weight: 500; }
.summary__big{ margin: 0; font-size: clamp(20px, 5.6vw, 24px); font-weight: 800; color: #fff; }
.summary__stars{ margin-top: 4px; color: var(--star); letter-spacing: 1px; font-size: 14px; }
.summary__bars{ display: flex; flex-direction: column; gap: 6px; }
.bar-row{ display: flex; align-items: center; gap: 6px; }
.bar-row__num{ font-size: 11px; color: var(--text-dim); width: 8px; text-align: right; }
.bar{
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
}
.bar__fill{
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  border-radius: 999px;
  animation: bar-grow 1.2s ease forwards;
  transform-origin: left;
}
@keyframes bar-grow{ from{ width: 0; } to{ width: var(--w, 50%); } }
.summary__right{ text-align: center; }
.summary__pct{
  margin: 0;
  font-size: clamp(26px, 8vw, 34px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.summary__pct span{ font-size: 0.55em; }
.summary__rec{ margin: 2px 0 0; font-size: 11px; color: var(--text-dim); font-weight: 600; }

/* ============================================================
   PANORAMA
   ============================================================ */
.panorama{ margin: 8px -18px 0; overflow: hidden; }
.panorama img{ width: 100%; opacity: .9; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  margin: 0 -18px;
  background: linear-gradient(180deg, #1a3318 0%, #0f2210 100%);
  padding: 22px 22px 24px;
  text-align: center;
  border-top: 1px solid rgba(155,207,58,.2);
}
.footer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand{ display: flex; align-items: center; gap: 10px; text-align: left; }
.footer__leaf{ width: 36px; height: 40px; flex: 0 0 auto; }
.footer__brand-text{ display: flex; flex-direction: column; line-height: 1; }
.footer__brand-hindi{
  font-family:'Noto Sans Devanagari','Poppins',sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: .5px;
}
.footer__brand-en{
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-top: 2px;
}
.footer__social{ text-align: right; }
.footer__social-label{
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: .5px;
}
.footer__social-icons{ display: inline-flex; gap: 8px; }
.social{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  transition: transform .15s ease, background .15s ease;
}
.social svg{ width: 16px; height: 16px; fill: #1a3318; }
.social:hover{ transform: translateY(-2px); background: var(--accent); }
.social:hover svg{ fill: #fff; }

.footer__bottom{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__rule{
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}
.footer__domain{
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 380px){
  .problem__img{ width: 92px; height: 92px; }
  .problem figcaption{ font-size: 12.5px; }
}

@media (min-width: 480px){
  :root{ --pad-x: 22px; }
  .problem__img{ width: 100px; height: 100px; }
}

@media (min-width: 720px){
  body{
    background-image:
      linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
      url("assets/bg-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .page{ box-shadow: 0 0 60px rgba(0,0,0,.5); border-radius: var(--r-lg); padding-bottom: 24px; margin-top: 24px; margin-bottom: 24px; }
  .footer{ border-radius: 0 0 var(--r-lg) var(--r-lg); }
}

/* ============================================================
   FIXED BOTTOM CTA — always visible
   ============================================================ */
.cta-fixed{
  position: fixed !important;
  left: 50% !important;
  bottom: 20px;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  transform: translateX(-50%);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #103010;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .3px;
  white-space: nowrap;
  box-shadow:
    0 10px 30px rgba(0,0,0,.5),
    0 6px 20px rgba(155,207,58,.45),
    inset 0 -3px 0 rgba(0,0,0,.15);
  animation: pulse 2.4s ease-in-out infinite;
}
.cta-fixed__icon{
  width: 18px;
  height: 18px;
  fill: #103010;
}
.cta-fixed:active{
  transform: translateX(-50%) translateY(2px);
}

body{
  padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}

@media (prefers-reduced-motion: reduce){
  .cta-btn,
  .cta-fixed,
  .bar__fill{ animation: none; }
  *{ transition: none !important; }
}
.footer__logo{
  display: block;
  max-height: 100px;
  width: auto;
}