:root {
  --ink: #141414;
  --muted: #6d6d6d;
  --paper: #fff9ec;
  --white: #ffffff;
  --red: #d90429;
  --deep-red: #8b0014;
  --yellow: #ffcc00;
  --green: #098b45;
  --blue: #103f7a;
  --line: rgba(20, 20, 20, .14);
  --shadow: 0 18px 50px rgba(0, 0, 0, .18);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hindi-page {
  font-family: "Noto Sans Devanagari", Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body,
button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.top-call {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  background: linear-gradient(90deg, #b9001f 0%, var(--red) 48%, #ff1744 100%);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  letter-spacing: .2px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22), inset 0 -2px 0 rgba(255, 255, 255, .18);
  animation: callBarPulse 1.7s ease-in-out infinite;
}

.top-call::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .32) 47%, transparent 60%, transparent 100%);
  transform: translateX(-100%);
  animation: callBarShine 2.4s ease-in-out infinite;
  pointer-events: none;
}

.top-call .phone-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-size: .95rem;
  line-height: 1;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .55);
  animation: phoneRing 1.15s ease-in-out infinite;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 204, 0, .55), transparent 26%),
    linear-gradient(145deg, #121212 0%, #39000b 48%, #101010 100%);
  color: var(--white);
}

.ticker {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span {
  flex: 0 0 auto;
  padding: 5px 12px;
  border: 2px solid rgba(0, 0, 0, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
  animation: slide 3s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: auto;
  padding: 22px 16px 34px;
  align-items: start;
}

.label {
  margin: 0 0 9px;
  color: var(--yellow);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.label.red {
  color: var(--red);
}

.hero h1,
h2 {
  font-family: Oswald, Impact, sans-serif;
  letter-spacing: 0;
  line-height: .96;
  text-transform: uppercase;
}

.hindi-page .hero h1,
.hindi-page h2,
.hindi-page .claim-grid strong,
.hindi-page .package strong,
.hindi-page .sale-burst strong,
.hindi-page .thanks-panel h1 {
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.35rem, 6.6vw, 3rem);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.mobile-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, 26vw);
  gap: 8px;
  align-items: center;
}

.mobile-heading-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.mobile-heading-visual img {
  width: min(24vw, 112px);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .35));
}

.mobile-heading-visual span {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.hook {
  max-width: 620px;
  margin: 14px 0 0;
  color: #fff1d5;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 430px;
  margin: 18px 0;
}

.proof-row img {
  width: 100%;
  min-height: 50px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  object-fit: contain;
}

.hero-actions,
.sticky-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn,
.offer-strip a,
.submit-btn,
.sticky-actions a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-actions .btn {
  min-height: 58px;
  padding: 10px;
  line-height: 1.2;
}

.btn-primary,
.offer-strip a,
.submit-btn,
.sticky-actions .main-action {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 204, 0, .28);
  animation: pulse 1.4s ease-in-out infinite;
}

.btn-call,
.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.hero-media {
  position: relative;
  display: none;
  place-items: center;
  align-self: center;
  min-height: 205px;
}

.hero-media img {
  width: min(92vw, 500px);
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .42));
}

.hero-lifestyle {
  width: 100% !important;
  min-width: 118px;
  aspect-ratio: 3 / 4;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  opacity: .82;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08) brightness(.78) !important;
}

.product-shot-wrapper {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: min(58vw, 380px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  z-index: 3;
}

.hero-oil-img {
  grid-area: 1 / 1;
  width: 65% !important;
  transform: translate(-20%, -12px);
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.45)) !important;
}

.hero-capsules-img {
  grid-area: 1 / 1;
  width: 72% !important;
  justify-self: end;
  z-index: 3;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.45)) !important;
}

.sale-burst {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 92px;
  aspect-ratio: 1;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.sale-burst strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.sale-burst span {
  display: block;
  padding: 1px 8px 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.05;
}

.problem-band,
.offer-strip {
  padding: 22px 16px;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.mood-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: #111;
}

.mood-strip img {
  width: 100%;
  height: clamp(130px, 34vw, 260px);
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(.86) contrast(1.08);
}

.problem-band h2,
.split-section h2,
.order-copy h2,
.testimonials h2,
.faq h2 {
  margin: 0;
  font-size: clamp(2rem, 10vw, 4rem);
}

.problem-band p {
  max-width: 760px;
  margin: 12px auto 0;
  font-weight: 700;
  line-height: 1.45;
}

.health-problems,
.works-section {
  padding: 34px 14px;
}

.health-problems {
  background: #fff7e6;
}

.works-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 204, 0, .22), transparent 24%),
    linear-gradient(145deg, #171717, #43000c);
  color: var(--white);
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 9vw, 4rem);
}

.works-section .section-intro h2 {
  color: var(--white);
}

.section-intro p:not(.label) {
  margin: 12px auto 0;
  color: #3d3d3d;
  font-weight: 800;
  line-height: 1.48;
}

.works-section .section-intro p:not(.label) {
  color: #ffe9bd;
}

.mechanism-card {
  display: grid;
  gap: 16px;
  margin: 0 auto 16px;
  padding: 16px;
  max-width: 920px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.mechanism-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(255, 204, 0, .26), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(0, 0, 0, .22));
}

.core-icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .32);
  animation: heartbeat 1.4s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  width: 112px;
  height: 112px;
  border: 3px solid rgba(255, 204, 0, .72);
  border-radius: 50%;
  animation: ringPulse 2.4s ease-out infinite;
}

.ring-two {
  animation-delay: .8s;
}

.flow-line {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: .82;
  animation: flowMove 1.8s linear infinite;
}

.line-one {
  top: 34%;
}

.line-two {
  top: 50%;
  animation-delay: .35s;
}

.line-three {
  top: 66%;
  animation-delay: .7s;
}

.mechanism-copy strong {
  display: block;
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
}

.mechanism-copy p {
  margin: 8px 0 0;
  color: #ffe9bd;
  font-weight: 800;
  line-height: 1.5;
}

.problem-visual-grid,
.works-grid {
  display: grid;
  gap: 12px;
}

.problem-visual-grid article {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: 8px;
  background: #111;
  color: var(--white);
  box-shadow: var(--shadow);
}

.problem-visual-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08) brightness(.75);
}

.problem-visual-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .60) 76%);
}

.problem-visual-grid strong,
.problem-visual-grid p,
.icon-pill {
  position: relative;
  z-index: 1;
}

.icon-pill {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 154px 14px 12px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.problem-visual-grid strong {
  display: block;
  padding: 0 14px;
  color: var(--yellow);
  font-size: 1.32rem;
  font-weight: 900;
}

.problem-visual-grid p {
  margin: 8px 0 0;
  padding: 0 14px 16px;
  color: #fff2d7;
  font-weight: 800;
  line-height: 1.45;
}

.works-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.work-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
}

.works-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.24rem;
  font-weight: 900;
}

.works-grid p {
  margin: 8px 0 0;
  color: #ffe9bd;
  font-weight: 800;
  line-height: 1.45;
}

.manual-media {
  padding: 34px 14px;
  background: #fff;
}

.manual-media-grid {
  display: grid;
  gap: 12px;
}

.manual-media-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.editable-image-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  border: 2px dashed rgba(217, 4, 41, .45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 204, 0, .22), rgba(217, 4, 41, .08)),
    #fff7e6;
  color: var(--deep-red);
  text-align: center;
  font-weight: 900;
}

.editable-image-slot.has-image {
  border-style: solid;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.editable-image-slot.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .62));
}

.editable-image-slot span {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: var(--deep-red);
}

.editable-image-slot.has-image span {
  background: rgba(0, 0, 0, .58);
  color: var(--white);
}

.manual-media-grid img.preview {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
  filter: contrast(1.06) brightness(.92);
}

.manual-media-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--deep-red);
  font-size: 1.12rem;
  font-weight: 900;
}

.manual-media-grid p {
  margin: 7px 0 0;
  color: #4a4a4a;
  font-weight: 800;
  line-height: 1.45;
}

.claim-grid {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--ink);
}

.claim-grid article {
  min-height: 120px;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 204, 0, .95), rgba(255, 255, 255, .95));
}

.claim-grid strong {
  display: block;
  color: var(--deep-red);
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.claim-grid span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.split-section {
  display: grid;
  gap: 22px;
  padding: 36px 16px;
  background: var(--white);
}

.split-section h2,
.order-copy h2,
.testimonials h2,
.faq h2 {
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 14px;
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: #f3fff7;
  font-weight: 800;
}

.split-section > img {
  width: min(100%, 420px);
  margin: auto;
}

.visual-stack {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 410px;
}

.visual-stack img:first-child {
  width: min(100%, 360px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  filter: contrast(1.08) brightness(.82);
  box-shadow: var(--shadow);
}

.visual-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72%, 280px);
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .28));
}

.offer-strip {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .16), transparent),
    var(--blue);
}

.offer-strip span,
.offer-strip strong {
  display: block;
}

.offer-strip span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.offer-strip strong {
  font-size: 1.25rem;
}

.order-section {
  display: grid;
  gap: 18px;
  padding: 34px 14px;
  background: #f7f0df;
  scroll-margin-top: 56px; /* clears sticky call bar on anchor scroll */
}

#leadForm {
  scroll-margin-top: 56px;
}

/* Ensure sticky nav never covers form content */
main {
  padding-bottom: 80px;
}

.order-copy p:not(.label) {
  color: #373737;
  font-weight: 700;
  line-height: 1.5;
}

.delivery-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px dashed var(--green);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

.delivery-box img {
  width: 84px;
}

.order-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.order-visuals img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.08);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.package {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 128px;
  padding: 13px;
  border: 3px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.package.active,
.package:has(input:checked) {
  border-color: var(--red);
  background: #fff2bf;
}

.package input {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

.package span {
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.package b {
  font-size: 1.7rem;
}

.package small {
  color: var(--muted);
  font-weight: 800;
}

.lead-form label,
.lead-form legend {
  font-weight: 900;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(16, 63, 122, .16);
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px;
  border-radius: 8px;
  background: #f5f5f5;
}

fieldset input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: .9rem;
  font-weight: 900;
}

.submit-btn {
  width: 100%;
  min-height: 62px;
  font-size: 1.1rem;
  cursor: pointer;
}

.submit-btn:disabled {
  cursor: wait;
  filter: grayscale(.4);
  opacity: .8;
}

.fine-print {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.testimonials {
  padding: 34px 14px;
  background: var(--white);
}

.testimonial-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
}

.testimonial-list img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-list p {
  grid-column: 2;
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-list strong {
  grid-column: 2;
  color: var(--deep-red);
}

.faq {
  display: grid;
  gap: 10px;
  padding: 34px 14px 92px;
  background: #111;
  color: var(--white);
}

.faq h2 {
  color: var(--white);
}

details {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

summary {
  padding: 14px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 14px 14px;
  color: #f5ddb5;
  font-weight: 700;
}

.sticky-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  padding: 8px;
  background: rgba(17, 17, 17, .94);
  box-shadow: 0 -10px 26px rgba(0, 0, 0, .24);
}

.sticky-actions a {
  min-height: 48px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: .82rem;
}

.sticky-actions a + a {
  margin-left: 7px;
}

.sticky-actions a[href^="tel"] {
  background: var(--green);
  color: var(--white);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes callBarPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.16);
  }
}

@keyframes callBarShine {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .55);
  }
  18% {
    transform: rotate(-12deg) scale(1.05);
  }
  36% {
    transform: rotate(12deg) scale(1.05);
  }
  54% {
    transform: rotate(-8deg) scale(1.04);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120px);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.08);
  }
  52% {
    transform: scale(.96);
  }
  70% {
    transform: scale(1.04);
  }
}

@keyframes ringPulse {
  0% {
    opacity: .85;
    transform: scale(.72);
  }
  100% {
    opacity: 0;
    transform: scale(2.25);
  }
}

@keyframes flowMove {
  from {
    transform: translateX(-42%);
  }
  to {
    transform: translateX(42%);
  }
}

/* Hindi tagline — prominent, centred, animated glow */
.hero-tagline {
  font-size: clamp(2.6rem, 10.5vw, 4.4rem) !important;
  line-height: 1.1 !important;
  margin: 0 0 14px !important;
  text-align: center !important;
  animation: taglineGlow 2.8s ease-in-out infinite;
}

@keyframes taglineGlow {
  0%, 100% { text-shadow: 0 2px 6px rgba(0,0,0,.5); }
  50% { text-shadow: 0 0 28px rgba(255, 204, 0, .7), 0 0 56px rgba(255, 204, 0, .35), 0 2px 6px rgba(0,0,0,.5); }
}

/* Proof row pulled below hero-grid */
.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 480px;
  width: 100%;
  margin: 4px auto 0;
  padding: 0 16px 12px;
}

.hero-proof-row img {
  width: 100%;
  min-height: 50px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  object-fit: contain;
}

/* Order copy text */
.order-copy-highlight {
  color: #d90429 !important;
  font-weight: 900 !important;
  font-size: 1.05rem;
  margin: 0 0 14px !important;
}

.order-benefits {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.benefit-item {
  padding: 10px 14px;
  border-left: 5px solid #098b45;
  border-radius: 6px;
  background: #f0fff6;
  font-weight: 800;
  font-size: .97rem;
  color: #141414;
}

/* Bold form redesign */
.hindi-form {
  background: #0a1f5c !important;
  border-color: #ffcc00 !important;
  border-width: 3px !important;
  color: #fff !important;
  padding: 0 !important;
  overflow: hidden;
  gap: 8px !important; /* tighter spacing on mobile */
}

/* Package picker always 2 columns on mobile — compact side-by-side */
.hindi-form .package-picker {
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  width: calc(100% - 28px);
  box-sizing: border-box;
}

/* Compact package card for mobile */
.hindi-form .package {
  min-height: 90px !important;
  padding: 10px 8px !important;
}

.hindi-form .package strong,
.hindi-form .package b {
  font-size: 1.3rem !important;
}

.hindi-form .package span {
  font-size: .7rem !important;
}

.hindi-form .package small {
  font-size: .7rem !important;
}

.form-header-banner {
  background: #ffcc00;
  color: #0a1f5c;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  padding: 14px 16px;
  letter-spacing: .3px;
}

.form-guarantee-bar {
  background: #d90429;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 9px 14px;
  font-size: .92rem;
  line-height: 1.3;
}

.hindi-form .package-picker,
.hindi-form fieldset,
.hindi-form label:not(.package),
.hindi-form input[type="text"],
.hindi-form input[type="tel"] {
  margin-left: 14px;
  margin-right: 14px;
}

.hindi-form > label,
.hindi-form > .package-picker,
.hindi-form > fieldset,
.hindi-form > input,
.hindi-form > .form-status,
.hindi-form > .fine-print {
  display: block;
  margin-left: 14px;
  margin-right: 14px;
}

.hindi-form label:not(.package),
.hindi-form legend {
  color: #ffe680 !important;
  font-weight: 900;
  margin-top: 10px;
}

.hindi-form input[type="text"],
.hindi-form input[type="tel"] {
  background: #fff !important;
  border: 2px solid #ffcc00 !important;
  color: #141414 !important;
  border-radius: 6px;
  width: calc(100% - 28px) !important;
}

.hindi-form fieldset {
  border: 2px solid rgba(255, 204, 0, .4) !important;
  border-radius: 8px;
  width: calc(100% - 28px) !important;
  box-sizing: border-box;
  margin-top: 8px;
}

.hindi-form fieldset label {
  background: rgba(255, 255, 255, .1) !important;
  color: #fff !important;
  border-radius: 6px;
}

.hindi-form fieldset input {
  accent-color: #ffcc00;
}

.hindi-submit {
  background: #ffcc00 !important;
  color: #0a1f5c !important;
  box-shadow: 0 8px 28px rgba(255, 204, 0, .5) !important;
  animation: pulse 1.4s ease-in-out infinite !important;
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  margin: 10px 14px 0 !important;
  width: calc(100% - 28px) !important;
  letter-spacing: .3px !important;
}

.hindi-form .fine-print {
  color: rgba(255, 255, 255, .65) !important;
  padding: 10px 14px 14px;
  margin: 0 !important;
}

.hindi-form .form-status {
  padding: 0 14px;
  margin: 4px 0 0 !important;
}

.hindi-form .package {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,204,0,.4);
  color: #fff;
}

.hindi-form .package.active,
.hindi-form .package:has(input:checked) {
  border-color: #ffcc00;
  background: rgba(255, 204, 0, .18);
}

.hindi-form .package span { color: #ffcc00; }
.hindi-form .package strong,
.hindi-form .package b { color: #fff; }
.hindi-form .package small { color: rgba(255,255,255,.6); }

/* Hindi page hero overrides */
/* Background handled by <img class="hero-bg-gif"> for reliable mobile rendering */
.hindi-page .hero {
  position: relative;
  background: #08000e;
}

/* No gradient overlay — user request: show full background image */
.hindi-page .hero::before {
  content: none;
}

/* GIF background img — hidden by default, shown for hindi page */
.hero-bg-gif {
  display: none;
}

.hindi-page .hero-bg-gif {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: -90px; /* extends below hero; overflow:hidden on .hero clips it, hiding the watermark */
  width: 100%;
  height: calc(100% + 90px);
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* Lift all hero content above the bg img */
.hindi-page .hero > .ticker,
.hindi-page .hero > .hero-grid {
  position: relative;
  z-index: 2;
}

/* Strong text-shadow so tagline reads over bare GIF */
.hindi-page .hero-tagline {
  text-shadow: 2px 2px 0 rgba(0,0,0,.85), 0 4px 18px rgba(0,0,0,.75) !important;
}

.hindi-page .hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding-top: 16px;
  padding-bottom: 8px;
  overflow: visible;
  background: none;
  gap: 0;
}


/* 40% coin badge next to product */
.product-coin-wrap {
  position: relative;
  display: inline-block;
}

.discount-coin {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 10;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ff3355, #d90429 55%, #8b0014);
  border: 3px solid #ffcc00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 204, 0, .35), 0 0 24px rgba(217, 4, 41, .6), 0 6px 18px rgba(0, 0, 0, .55);
  animation: saleGlowPulse 2s ease-in-out infinite;
}

.discount-coin strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffcc00;
  line-height: 1;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
}

.discount-coin > span {
  display: block;
  font-size: .74rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
}

.discount-coin small {
  display: block;
  font-size: .58rem;
  color: #ffe8a0;
  margin-top: 2px;
  line-height: 1.1;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
}

.hindi-page .hero-media .product-shot-wrapper {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(88vw, 420px);
}

.hindi-page .hero-media .sale-burst {
  position: absolute;
  top: 8px;
  left: 8px;
  right: auto;
  z-index: 20;
  margin: 0;
  width: 108px;
  height: 108px;
  animation: saleGlowPulse 2s ease-in-out infinite;
}

.hindi-page .hero-media .sale-burst strong {
  font-size: 2.4rem;
}

.hindi-page .hero-media .sale-burst span {
  font-size: .9rem;
  letter-spacing: .4px;
}

@keyframes saleGlowPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 50px rgba(0,0,0,.18), 0 0 0 0 rgba(217, 4, 41, .75), 0 0 0 0 rgba(255, 204, 0, .45);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 18px 50px rgba(0,0,0,.18), 0 0 0 12px rgba(217, 4, 41, 0), 0 0 22px 8px rgba(255, 204, 0, .3);
  }
}

.hindi-page .hero-combo-img {
  width: min(96vw, 460px);
  filter: drop-shadow(0 0 32px rgba(255, 204, 0, .6)) drop-shadow(0 20px 32px rgba(0, 0, 0, .8));
}

/* Gupt delivery highlight badge */
.gupt-highlight {
  display: inline-block;
  background: #ffcc00;
  color: #0a1f5c;
  font-weight: 900;
  font-size: .88em;
  padding: 1px 7px 2px;
  border-radius: 4px;
  letter-spacing: .3px;
}

.free-oil-badge {
  display: inline-block;
  background: #098b45;
  color: #fff;
  font-weight: 900;
  font-size: .88em;
  padding: 1px 7px 2px;
  border-radius: 4px;
  letter-spacing: .3px;
}

/* Order section label — override yellow-on-cream for hindi page */
.hindi-page .order-copy .label {
  display: inline-block;
  background: #d90429;
  color: #fff !important;
  font-size: .92rem !important;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .6px;
  box-shadow: 0 4px 12px rgba(217, 4, 41, .35);
}

/* COD highlight badge */
.cod-badge {
  display: inline-block;
  background: #d90429;
  color: #fff;
  font-weight: 900;
  font-size: .88em;
  padding: 1px 7px 2px;
  border-radius: 4px;
  letter-spacing: .3px;
}

/* Sticky bar — make ऑर्डर करें gold & prominent for hindi page */
.hindi-page .sticky-actions .main-action {
  background: #ffcc00 !important;
  color: #141414 !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, .4) !important;
}

/* 3rd card in manual-media: GIF background behind product */
.offer-card-special {
  position: relative;
  overflow: hidden;
  background: #080010 !important;
  border-color: #ffcc00 !important;
  border-width: 2px !important;
}

.offer-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
}

.offer-card-special .preview {
  position: relative;
  z-index: 1;
  object-fit: contain;
  background: none;
  padding: 12px;
  height: 200px;
}

.offer-card-special > strong {
  position: relative;
  z-index: 1;
  color: #ffcc00 !important;
}

.offer-card-special > p,
.offer-card-special > a {
  position: relative;
  z-index: 1;
}

.offer-card-special > p {
  color: #fff !important;
}

/* Offer strip — highlighted 3-card layout */
.offer-highlights {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  text-align: left;
}

.offer-hl-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
}

.offer-hl-card.ohl-green {
  background: #098b45;
  border: 2px solid #12d467;
  box-shadow: 0 4px 20px rgba(9, 139, 69, .4);
}

.offer-hl-card.ohl-navy {
  background: #0a1f5c;
  border: 2px solid #ffcc00;
  box-shadow: 0 4px 20px rgba(10, 31, 92, .5);
}

.offer-hl-card.ohl-red {
  background: #d90429;
  border: 2px solid #ff6080;
  box-shadow: 0 4px 20px rgba(217, 4, 41, .4);
}

.ohl-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.ohl-content {
  flex: 1;
}

.ohl-content strong {
  display: block;
  color: #ffcc00;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.15;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
}

.offer-hl-card.ohl-green .ohl-content strong {
  color: #fff;
}

.ohl-content span {
  display: block;
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  font-weight: 700;
  margin-top: 3px;
  line-height: 1.3;
}

/* Offer strip — premium navy/gold redesign */
.hindi-offer-strip {
  background: linear-gradient(135deg, #081440 0%, #0d1f60 100%);
  padding: 28px 16px;
  display: block !important;
  text-align: center;
}

.offer-strip-inner {
  max-width: 820px;
  margin: 0 auto;
  border: 2px solid #c9a227;
  border-radius: 14px;
  padding: 26px 20px 20px;
  background: linear-gradient(135deg, #0c1f55, #0a1844);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, .15), 0 20px 52px rgba(0, 0, 0, .4);
  position: relative;
}

.offer-strip-inner::before,
.offer-strip-inner::after {
  content: "❧";
  position: absolute;
  font-size: 1.6rem;
  color: #c9a227;
  top: 10px;
}

.offer-strip-inner::before { left: 14px; }
.offer-strip-inner::after { right: 14px; transform: scaleX(-1); }

.offer-title {
  color: #f0c040;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
  font-size: clamp(1.05rem, 3.5vw, 1.45rem);
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 10px;
}

.offer-sub {
  color: #f0c040;
  font-size: clamp(.9rem, 2.6vw, 1.1rem);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.4;
}

.offer-perks {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.offer-perks div {
  color: #fff;
  font-weight: 700;
  font-size: .96rem;
  line-height: 1.45;
}

.offer-cta-btn {
  display: inline-block;
  width: min(100%, 360px);
  padding: 16px 24px;
  background: linear-gradient(135deg, #b8870f, #f0c040 50%, #b8870f);
  color: #0a1a4a;
  font-family: "Noto Sans Devanagari", Poppins, sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(201, 162, 39, .5);
  animation: pulse 1.4s ease-in-out infinite;
  letter-spacing: .4px;
}

.offer-footer-text {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  font-weight: 700;
  margin: 14px 0 0;
}

@media (min-width: 680px) {
  .hero-grid,
  .split-section,
  .order-section,
  .testimonials,
  .faq,
  .health-problems,
  .works-section,
  .manual-media {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(220px, .62fr);
    align-items: center;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .mobile-hero-row {
    display: block;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.2rem);
  }

  .mobile-heading-visual {
    display: none;
  }

  .hero-media {
    display: grid;
    min-height: 340px;
  }

  .hindi-page .hero-media {
    min-height: 0;
  }

  .hindi-page .hero-combo-img {
    width: min(100%, 520px);
  }

  .product-shot-wrapper {
    right: -12px;
    bottom: 6px;
    width: min(52vw, 420px);
  }

  .claim-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }

  .package-picker {
    grid-template-columns: 1fr 1fr;
  }

  .offer-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .testimonial-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .problem-visual-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .mechanism-card {
    grid-template-columns: .75fr 1fr;
    align-items: center;
  }

  .manual-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .top-call {
    font-size: 1.15rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
    max-width: 1180px;
    min-height: 720px;
    margin: 0 auto;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 5.2vw, 5.8rem);
  }

  .hook,
  .proof-row,
  .hero-actions {
    grid-column: auto;
  }

  .hook {
    font-size: 1.22rem;
  }

  .hero-media {
    min-height: 560px;
  }

  .product-shot-wrapper {
    right: -28px;
    bottom: 30px;
    width: min(54vw, 520px);
  }

  .claim-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .health-problems,
  .works-section,
  .manual-media {
    padding-right: max(28px, calc((100vw - 1180px) / 2));
    padding-left: max(28px, calc((100vw - 1180px) / 2));
  }

  .works-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .split-section,
  .order-section {
    grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
  }

  .offer-strip {
    padding-right: max(28px, calc((100vw - 1180px) / 2));
    padding-left: max(28px, calc((100vw - 1180px) / 2));
  }

  .testimonials,
  .faq {
    padding-right: max(28px, calc((100vw - 1180px) / 2));
    padding-left: max(28px, calc((100vw - 1180px) / 2));
  }
}
