@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700;800&display=swap');

:root {
  --color-green-dark: #1b4b27;
  --color-green-medium: #225f33;
  --color-green-light: #28a745;
  --color-green-pale: #2c6e20;
  --color-yellow: #ffe045;
  --color-yellow-bright: #fffb00;
  --color-yellow-gold: #fecb00;
  --color-orange: #ff9900;
  --color-orange-dark: #ff8a00;
  --color-red: #fd2613;
  --color-red-bright: #ff1500;
  --color-purple: #491747;
  --color-purple-dark: #0e0060;
  --color-blue: #1766eb;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-dark: #222222;
  --color-text-body: #222035;
  --color-bg-light: #eef8f4;
  --color-bg-teal: #c9e8e2;
  --color-bg-gray: #f5f5f5;
  --color-border-gray: #c3c3c3;
  --font-primary: 'Open Sans', sans-serif;
  --font-devanagari: 'Noto Sans Devanagari', 'Open Sans', sans-serif;
  --spacing-xs: 6px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-full: 68px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-devanagari);
  background-color: #0b1a0f;
  color: var(--color-black);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

input:focus::-webkit-input-placeholder { opacity: 0; }
input:focus::-moz-placeholder { opacity: 0; }
input:focus-visible { outline: none; }

.page {
  max-width: 530px;
  min-width: 340px;
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Header & Trust Bar */
.brand-header {
  background-color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #28a745;
}

.brand-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-header__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-header__badges {
  display: flex;
  gap: 8px;
}

.brand-badge {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-ticker {
  background: #0f3d1b;
  color: #fde047;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: 0.3px;
}

/* Hero Section */
.hero, .final-cta {
  background-color: var(--color-green-dark);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 16px var(--spacing-md) var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.final-cta {
  border-radius: var(--radius-md);
  padding-top: 24px;
}

.hero__title {
  font-family: var(--font-devanagari);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  line-height: 1.25;
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-yellow);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero__tagline {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-orange);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__description {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  line-height: 28px;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-list--wide {
  gap: var(--spacing-md);
}

.bullet-list__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.bullet-list__text {
  font-size: 18px;
  color: var(--color-white);
  line-height: 24px;
  font-weight: 500;
}

/* Product Showcase */
.product {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(27,75,39,0) 70%);
  padding: 10px 0;
}

.product__image {
  max-width: 320px;
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.45));
  transition: transform 0.3s ease;
}

.product__image:hover {
  transform: scale(1.03);
}

/* Order Form */
.order-form {
  background-color: rgba(22, 101, 52, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.order-form--modal {
  background-color: #11692e;
}

.order-form__sale {
  display: flex;
  justify-content: center;
  margin-top: -6px;
}

.order-form__sale-image {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.order-form__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.35;
  padding: 0 8px;
}

/* Special Offer Banner - NO PRICE MENTION */
.special-offer-box {
  width: 95%;
  background: linear-gradient(180deg, #133a1e 0%, #0d2815 100%);
  border: 2px dashed var(--color-yellow-gold);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin: 6px 0;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
}

.special-offer-box__tag {
  background: var(--color-red-bright);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.special-offer-box__title {
  color: var(--color-yellow-bright);
  font-size: 21px;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  margin-top: 4px;
  line-height: 1.3;
}

.special-offer-box__details {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
}

.special-offer-box__cod {
  color: #86efac;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.order-form__stock {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  line-height: 24px;
  margin-top: 10px;
}

/* Forms */
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: 0 var(--spacing-sm);
  margin-top: 4px;
}

.form__group {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-md);
  box-shadow: inset -1px 2px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid #d1d5db;
  transition: border-color 0.2s;
}

.form__group:focus-within {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.form__group--whatsapp {
  gap: var(--spacing-sm);
}

.form__whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.form__input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  background: transparent;
  letter-spacing: 0.5px;
}

.form__input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.form__label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #6b7280;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.form__group--whatsapp .form__label {
  left: 48px;
}

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label {
  opacity: 0;
  visibility: hidden;
}

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

/* CTA Buttons */
.btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn--primary {
  color: var(--color-white);
  height: 60px;
  font-size: 22px;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  margin-top: 10px;
  background: linear-gradient(329deg, #ff3d00 4.5%, #ff8a00 50.9%, #ffd600 97.4%);
  box-shadow: -1px 0 4px 0 #ff6a1c, 0 6px 0 0 #984500, 0 4px 18px rgba(255, 107, 0, 0.85);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: pulseButton 2.4s infinite ease-in-out;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: -1px 0 4px 0 #ff6a1c, 0 8px 0 0 #984500, 0 6px 24px rgba(255, 107, 0, 0.95);
}

.btn--primary:active {
  transform: translateY(4px);
  box-shadow: -1px 0 2px 0 #ff6a1c, 0 2px 0 0 #984500, 0 2px 8px rgba(255, 107, 0, 0.7);
}

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

.btn--small {
  height: 52px;
  font-size: 19px;
  margin: 0 var(--spacing-md);
  width: calc(100% - var(--spacing-md) * 2);
}

.btn--risks {
  padding: 12px 24px;
  height: auto;
  font-size: 18px;
}

.btn--modal {
  width: 100%;
}

/* Block 2: Natural Section */
.natural-section {
  padding: 10px var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.natural-section__heart {
  width: 40px;
  height: 32px;
}

.natural-section__title {
  font-family: var(--font-devanagari);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green-pale);
  text-align: center;
  line-height: 1.35;
}

.natural-section__stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 14px;
  border-left: 4px solid #16a34a;
  width: 100%;
}

.natural-section__stat {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-purple);
  line-height: 1.35;
}

.natural-section__question {
  font-size: 17px;
  font-weight: 700;
  color: #dc2626;
  line-height: 1.35;
}

.doctor {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.doctor__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.natural-section__cta {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
  line-height: 24px;
  margin-top: 4px;
}

/* Block 3: Disease Risks */
.risks-section {
  background-color: var(--color-green-medium);
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
  border-radius: var(--radius-md);
}

.risks-section__intro {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.risks-section__note {
  font-size: 17px;
  color: var(--color-white);
  text-align: center;
  line-height: 22px;
}

.disease-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.disease-card {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.disease-card__image-wrapper {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border: 2px solid #ef4444;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--color-white);
}

.disease-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disease-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.disease-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-yellow-bright);
  line-height: 1.25;
}

.disease-card__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 20px;
}

.cause-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.cause-block__header {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.cause-block__icon-wrapper {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border: 2px solid #ef4444;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.cause-block__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cause-block__title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cause-block__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

/* Block 4: Benefits Section */
.benefits-section {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  border: 1px solid #d1fae5;
}

.benefits-section__intro {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-purple);
  text-align: center;
  line-height: 1.35;
}

.benefits-section__cta {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-red-bright);
  text-align: center;
  line-height: 22px;
  margin-top: -6px;
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.numbered-list__item {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.numbered-list__number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.numbered-list__number--green {
  background: #15803d;
  border: 2px solid white;
}

.numbered-list__text {
  font-size: 16.5px;
  color: var(--color-black);
  flex: 1;
  line-height: 1.35;
}

/* Product Chart Gallery */
.chart-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.chart-card img {
  width: 100%;
  height: auto;
}

/* Block 5: Testimonials */
.testimonials-section {
  background-color: var(--color-bg-teal);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.testimonials-section__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  line-height: 1.35;
}

.testimonials-section__note {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
  line-height: 22px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card__header {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #22c55e;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

.testimonial-card__stars {
  color: #eab308;
  font-size: 14px;
}

.testimonial-card__body {
  font-size: 16px;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.45;
}

/* Trust Badges Grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin: 10px 0;
}

.trust-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a8a;
  border: 1px solid #bfdbfe;
}

.trust-card__icon {
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

.footer__brand {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.footer__disclaimer {
  font-size: 11px;
  color: #6b7280;
}

.footer__link {
  color: #38bdf8;
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 58px;
  height: 58px;
  z-index: 999;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float__icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  animation: whatsappPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.12) rotate(10deg); }
  60% { transform: scale(1.12) rotate(-10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  overflow-y: auto;
  padding: 20px 12px;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal__close-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: -10px;
}

.modal__close {
  background: #ffffff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 2005;
}

.modal__close:hover {
  background: #f3f4f6;
}

/* Utility text classes */
.text--yellow { color: var(--color-yellow); font-weight: 600; }
.text--yellow-bold { color: var(--color-yellow-bright); font-weight: 800; }
.text--bold { font-weight: 700; }
.text--semibold { font-weight: 600; }
.text--link { text-decoration: underline; color: #1766eb; cursor: pointer; }
.text--orange-underline { color: var(--color-orange-dark); text-decoration: underline; cursor: pointer; }
.text--blue-underline { color: var(--color-blue); text-decoration: underline; font-weight: 700; cursor: pointer; }
.text--red { color: #ef4444; font-weight: 700; }
.js-modal-trigger { cursor: pointer; }
