:root {
  --green: #0d766f;
  --green-dark: #075a55;
  --green-deep: #043f3c;
  --mint: #eaf6ef;
  --mint-2: #d8efe4;
  --cream: #fff9ea;
  --orange: #ef7b35;
  --ink: #213331;
  --muted: #5f706c;
  --line: rgba(13, 118, 111, 0.16);
  --white: #fff;
  --shadow: 0 18px 50px rgba(20, 86, 78, 0.13);
  --shadow-soft: 0 8px 24px rgba(20, 86, 78, 0.08);
  --radius: 20px;
  --header-h: 78px;
  --font: "Manrope", "Noto Sans Devanagari", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #f5fbf7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", "Manrope", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fff 0%, #f3faf6 100%);
}

.section-mint {
  background: var(--mint);
}

.section h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  max-width: 18em;
}

.intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang a {
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
}

.lang a.is-active {
  background: var(--green);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(180deg, #149086 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(13, 118, 111, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-ghost {
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--line);
}

.btn-wide {
  width: 100%;
  margin-top: 18px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--green);
}

.menu-btn span {
  top: 20px;
}

.menu-btn::before {
  top: 14px;
}

.menu-btn::after {
  top: 26px;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  padding: 36px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  margin-bottom: 14px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 12px;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 0;
  list-style: none;
  margin: 8px 0 0;
}

.checks li {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.checks li::before {
  content: "✓ ";
  color: var(--orange);
}

.hero-visual {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat b {
  display: block;
  color: var(--green);
  font-size: 1.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.84rem;
}

/* Banners — keep native resolution, never blur */
.banner-wrap {
  margin: 28px auto 0;
  max-width: 1024px;
}

.banner-wrap img,
.page-banner img,
.inline-banner img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}

.page-banner,
.inline-banner {
  margin: 0 auto 28px;
  max-width: 1024px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.banner-square {
  max-width: 680px;
}

/* Cards / grids */
.warn-grid,
.week-grid,
.benefit-grid,
.ing-grid,
.review-grid,
.pillar-grid,
.who-grid {
  display: grid;
  gap: 16px;
}

.warn-grid,
.benefit-grid,
.who-grid {
  grid-template-columns: repeat(3, 1fr);
}

.week-grid,
.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.point,
.week,
.review,
.ing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}

.card h3,
.point h3,
.week h3,
.review h3,
.ing h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.week-num,
.point-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 22px;
  font-weight: 800;
  color: var(--green-dark);
}

.flow span {
  background: var(--mint);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.flow i {
  font-style: normal;
  color: var(--orange);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  margin: 18px 0 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.88rem;
}

tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 1rem;
}

.faq-item .answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

/* Order */
.order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.order-card,
.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  background: var(--mint);
  color: var(--green);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 800;
}

label {
  display: block;
  font-weight: 800;
  color: var(--green);
  margin: 14px 0 6px;
  font-size: 0.95rem;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  height: 52px;
  border: 1px solid #d5e0dc;
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
  font-size: 1rem;
  color: var(--ink);
}

input:focus {
  outline: 2px solid rgba(13, 118, 111, 0.25);
  border-color: var(--green);
}

.form-note {
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.trust-list li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}

.stars {
  color: #e0a106;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: var(--green-deep);
  color: #d7e8dc;
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer h3,
.footer .logo {
  color: #fff;
}

.footer a {
  display: block;
  margin: 6px 0;
  color: #d7e8dc;
}

.footer a:hover {
  color: #fff;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.85rem;
  color: #b7ccbe;
}

/* Overlay / modal — matches provided example */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 18, 0.55);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  z-index: 90;
  left: 50%;
  top: 50%;
  width: min(860px, calc(100% - 28px));
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  overflow: hidden;
}

.modal.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #3a4a47;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.modal-visual {
  background: linear-gradient(180deg, #f7f8f4, #eef3ef);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 8px 28px 16px;
}

.modal-visual img {
  width: min(280px, 100%);
  height: auto;
}

.modal-form {
  padding: 28px 30px 24px;
}

.modal-form h2 {
  font-size: 1.7rem;
  margin: 8px 0 8px;
}

.page-hero {
  padding: 36px 0 10px;
}

.crumbs {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.crumbs a {
  color: var(--green);
  font-weight: 700;
}

.compare-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--green-dark);
}

.top-btn {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  z-index: 60;
  box-shadow: var(--shadow);
  display: none;
}

.top-btn.is-visible {
  display: grid;
  place-items: center;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    display: none;
    padding: 0 20px 16px;
  }

  .header.is-open .mobile-nav {
    display: grid;
    gap: 10px;
    font-weight: 700;
  }

  .hero-grid,
  .order,
  .modal-grid,
  .footer-grid,
  .warn-grid,
  .week-grid,
  .benefit-grid,
  .ing-grid,
  .review-grid,
  .pillar-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .header-cta {
    display: none;
  }

  .modal {
    width: min(430px, calc(100% - 18px));
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

  .modal-visual {
    padding-top: 44px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .section {
    padding: 48px 0;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 44px;
  }
}
