/* मेरा धान मेरा अभिमान - design system v2
   White canvas. Green (paddy) + gold (grain) as brand structure.
   Single family: Anek Devanagari 300-800.
   Layered cutouts, giant display type, parallax floats. */

:root {
  --ink: oklch(0.22 0.03 150);
  --ink-soft: oklch(0.4 0.02 150);
  --paper: #ffffff;
  --green: oklch(0.45 0.12 148);
  --green-deep: oklch(0.3 0.08 150);
  --green-tint: oklch(0.96 0.02 148);
  --gold: oklch(0.76 0.13 84);
  --gold-deep: oklch(0.62 0.13 80);
  --gold-tint: oklch(0.96 0.03 90);
  --radius: 22px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* z-scale */
  --z-float: 2;
  --z-content: 5;
  --z-nav: 100;
  --z-progress: 110;
  font-size: clamp(15px, 1vw + 12px, 18px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: "Anek Devanagari", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
h1, h2, h3 { text-wrap: balance; line-height: 1.12; }
p { text-wrap: pretty; }
section { scroll-margin-top: 76px; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: var(--z-progress);
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--green), var(--gold));
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 3px 0 auto 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 oklch(0.92 0.01 150);
}
.nav-brand {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}
.nav-brand span { font-weight: 400; color: var(--gold-deep); }
.nav-links { display: flex; gap: clamp(14px, 3vw, 32px); }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--gold); }
.nav-syngenta { height: 26px; width: auto; }

/* ---------- Floating cutouts ---------- */
.float {
  position: absolute;
  z-index: var(--z-float);
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(20, 40, 20, 0.14));
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  will-change: transform;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, oklch(0.18 0.05 150 / 0.72) 0%, transparent 46%),
    linear-gradient(105deg, oklch(0.2 0.05 150 / 0.5) 0%, transparent 55%);
}
.hero-content {
  padding: 0 clamp(20px, 5vw, 76px) clamp(72px, 12vh, 130px);
  max-width: 1240px;
  color: #fff;
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.06;
  text-shadow: 0 2px 28px oklch(0.2 0.05 150 / 0.5);
}
.hero-sub {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  font-weight: 400;
  max-width: 36ch;
  color: oklch(0.96 0.01 120);
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-gold, .btn-ghost {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  min-height: 44px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.btn-gold {
  background: var(--gold);
  color: oklch(0.24 0.05 85);
  box-shadow: 0 10px 26px oklch(0.3 0.08 85 / 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px oklch(0.3 0.08 85 / 0.45); }
.btn-ghost {
  /* a <button> would otherwise inherit the UA's grey buttonface */
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green-deep);
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost:hover { transform: translateY(-2px); background: var(--green-tint); }
.btn-ghost--light {
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}
.btn-ghost--light:hover { background: rgba(255,255,255,0.14); }
.hero-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  translate: -50% 0;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 7px;
}
.hero-scrollcue span {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.2; }
}

/* ---------- Guide ---------- */
.guide {
  position: relative;
  padding: clamp(72px, 11vh, 130px) clamp(16px, 4vw, 48px);
  overflow: clip;
}
.guide-grains { right: 2%; top: 40px; width: clamp(80px, 11vw, 160px); transform: rotate(-15deg); }
.guide-seedling { left: -1%; bottom: 4%; width: clamp(100px, 13vw, 190px); transform: rotate(6deg); opacity: 0.95; }
.products-grains { right: 4%; top: -10px; width: clamp(70px, 9vw, 130px); transform: rotate(22deg); }
.deco-mini { width: clamp(60px, 8vw, 110px) !important; opacity: 0.85; }
.deco-mini--tr { top: -6% !important; right: 0 !important; left: auto !important; bottom: auto !important; transform: rotate(-18deg); }
.deco-mini--bl { bottom: -2% !important; left: 2% !important; right: auto !important; top: auto !important; transform: rotate(10deg); }
.guide-card {
  position: relative;
  z-index: var(--z-content);
  max-width: 1000px;
  margin-inline: auto;
  background: linear-gradient(160deg, var(--green-tint), oklch(0.98 0.01 120));
  border: 1px solid oklch(0.9 0.03 148);
  border-radius: calc(var(--radius) * 1.6);
  padding: clamp(26px, 5vw, 56px);
}
.guide-head h2, .journey-head h2, .products-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.guide-head p, .journey-head p, .products-head p {
  margin-top: 8px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 52ch;
}
.guide-tool { margin-top: 36px; }
.region-toggle {
  display: inline-flex;
  border-radius: 999px;
  background: #fff;
  border: 1px solid oklch(0.9 0.03 148);
  padding: 4px;
  gap: 4px;
}
.region-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  padding: 9px 22px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.region-btn.is-active { background: var(--green-deep); color: #fff; }
.dial-wrap {
  margin-top: 36px;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.dial {
  position: relative;
  width: min(78vw, 380px);
  aspect-ratio: 1;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  outline-offset: 6px;
  border-radius: 50%;
}
.dial:active { cursor: grabbing; }
.dial:focus-visible { outline: 3px solid var(--gold); }
.dial svg { width: 100%; height: 100%; display: block; }
#dialRing { transition: transform 0.18s var(--ease-out); will-change: transform; }
.dial.is-dragging #dialRing { transition: none; }
.dial-pointer {
  position: absolute;
  top: 2px;
  left: 50%;
  translate: -50% 0;
  width: 3px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold-deep);
}
.dial-center {
  position: absolute;
  inset: 29%;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid oklch(0.93 0.01 150);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0;
  pointer-events: none;
}
.dial-value {
  font-size: clamp(2.9rem, 9vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.dial-unit {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 2px;
}
.dial-hint {
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: oklch(0.62 0.02 150);
}
.dat-stage {
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--ink);
  text-align: center;
  min-height: 1.6em;
}
.guide-results { margin-top: 32px; display: grid; gap: 14px; }
.guide-hit.pop { animation: pop 0.5s var(--ease-out); }
@keyframes pop {
  0% { opacity: 0; transform: scale(0.92) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.guide-hit {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid oklch(0.9 0.02 148);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.guide-hit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20,40,20,0.1); }
.guide-hit img { height: 84px; width: 64px; object-fit: contain; }
.guide-hit > span:not(.guide-hit-dose) { display: grid; gap: 2px; }
.guide-hit-name { font-weight: 800; font-size: 1.2rem; line-height: 1.2; }
.guide-hit-why { color: var(--ink-soft); font-size: 0.95rem; }
.guide-hit-dose {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--hit-accent, var(--green));
  white-space: nowrap;
}
.guide-empty {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px dashed oklch(0.85 0.02 148);
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Journey ---------- */
.journey { position: relative; padding: clamp(40px, 7vh, 90px) 0 clamp(64px, 9vh, 110px); overflow: clip; }
.journey-panicle { left: -3%; top: 0; width: clamp(120px, 16vw, 240px); transform: rotate(-22deg) scaleX(-1); }
.journey-head, .products-head {
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
  z-index: var(--z-content);
}
.journey-track {
  margin-top: 36px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 420px);
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px clamp(20px, 5vw, 72px) 24px;
  scrollbar-width: none;
}
.journey-track::-webkit-scrollbar { display: none; }
.journey-card {
  scroll-snap-align: center;
  border-radius: calc(var(--radius) * 1.3);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--green-tint);
}
.journey-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.journey-card:hover img { transform: scale(1.045); }
.journey-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 56px 22px 20px;
  background: linear-gradient(to top, oklch(0.2 0.05 150 / 0.85), transparent);
  color: #fff;
  display: grid;
  gap: 2px;
}
.journey-card strong { font-size: 1.35rem; font-weight: 800; }
.journey-card span { font-size: 0.92rem; opacity: 0.92; }

/* ---------- Field band ---------- */
.field-band {
  height: clamp(240px, 38vh, 420px);
  overflow: hidden;
  position: relative;
}
.field-band img {
  position: absolute;
  inset: -18% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

/* ---------- Products ---------- */
.products-head { padding-top: clamp(24px, 5vh, 60px); }
.product {
  position: relative;
  padding: clamp(76px, 12vh, 140px) clamp(20px, 5vw, 72px);
  overflow: clip;
}
.product-giant {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(6rem, 22vw, 19rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  color: color-mix(in oklab, var(--accent) 7%, white);
  z-index: 1;
  user-select: none;
}
.product--flip .product-giant { top: auto; bottom: 4%; }
.product-inner {
  position: relative;
  z-index: var(--z-content);
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.product--flip .product-inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.product--flip .product-visual { order: 2; }
.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.product-visual > img:not(.product-deco) {
  position: relative;
  z-index: 3;
  max-height: min(56vh, 540px);
  width: auto;
  filter: drop-shadow(0 34px 44px rgba(20, 30, 15, 0.22));
  transition: transform 0.6s var(--ease-out);
}
.product:hover .product-visual > img:not(.product-deco) { transform: translateY(-10px) rotate(-1deg); }
.product-num {
  position: absolute;
  top: -6%;
  left: 4%;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in oklab, var(--accent) 34%, white);
  z-index: 2;
}
.product-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(20, 40, 20, 0.1)); opacity: 0.9;
}
.deco-grains { width: clamp(90px, 12vw, 170px); bottom: -4%; right: 2%; transform: rotate(12deg); }
.deco-tiller { width: clamp(140px, 18vw, 260px); bottom: -8%; left: -10%; transform: rotate(-10deg); }
.deco-panicle { width: clamp(130px, 17vw, 250px); top: -10%; right: -8%; transform: rotate(18deg); }
.product-window { font-weight: 600; color: var(--accent-ink); font-size: 1rem; }
.product-window b { font-weight: 800; font-size: 1.15em; }
.product-copy h3 {
  margin-top: 8px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product-copy h3 sup { font-size: 0.35em; font-weight: 600; }
.product-tag {
  margin-top: 10px;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--accent-ink);
  max-width: 30ch;
}
.product-body {
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 58ch;
  font-size: 1.02rem;
}
.product-specs {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  border-top: 2px solid color-mix(in oklab, var(--accent) 20%, white);
  padding-top: 22px;
}
.product-specs dt { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.product-specs dd { font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.product-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 52ch;
  border: 1px solid color-mix(in oklab, var(--accent) 25%, white);
  border-radius: 12px;
  padding: 12px 16px;
  background: #fff;
}

/* ---------- Closing ---------- */
.closing { padding: clamp(30px, 6vh, 80px) clamp(16px, 4vw, 48px) clamp(70px, 10vh, 120px); }
.closing-card {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
  min-height: 480px;
  border-radius: calc(var(--radius) * 1.8);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
}
.closing-media, .closing-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.closing-content { padding: clamp(48px, 9vh, 100px) 24px; color: #fff; }
.closing h2 {
  font-size: clamp(2rem, 5.6vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.closing .btn-gold { margin-top: 28px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-deep);
  color: oklch(0.86 0.02 150);
  padding: clamp(48px, 8vh, 88px) clamp(20px, 5vw, 72px) 32px;
  font-size: 0.95rem;
}
.footer-top {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-campaign {
  margin-top: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
}
.footer-brandcol p:not(.footer-campaign) { margin-top: 8px; line-height: 1.7; }
.footer-colhead {
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
}
.footer-col { display: grid; gap: 9px; align-content: start; }
.footer-col a {
  color: oklch(0.86 0.02 150);
  text-decoration: none;
  padding: 2px 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  border-top: 1px solid oklch(0.4 0.05 150);
  padding-top: 20px;
  display: grid;
  gap: 10px;
}
.footer-fine {
  font-size: 0.82rem;
  color: oklch(0.7 0.02 150);
  max-width: 80ch;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .product-inner,
  .product--flip .product-inner { grid-template-columns: 1fr; gap: 34px; }
  .product--flip .product-visual { order: 0; }
  .product-visual > img:not(.product-deco) { max-height: 44vh; }
  .product-giant { font-size: clamp(5rem, 26vw, 9rem); top: 2%; }
  .guide-hit { grid-template-columns: 52px 1fr; }
  .guide-hit-dose { grid-column: 2; justify-self: start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ================= Contact ================= */
.contact {
  position: relative;
  padding: clamp(72px, 11vh, 130px) clamp(20px, 5vw, 72px);
  background: linear-gradient(170deg, var(--green-tint), #fff 70%);
  overflow: clip;
}
.contact-panicle { right: -2%; top: 6%; width: clamp(110px, 14vw, 210px); transform: rotate(24deg); }
.contact-inner {
  position: relative;
  z-index: var(--z-content);
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.contact-copy > p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 46ch;
}
.contact-perks {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  list-style: none;
}
.contact-perks li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: var(--ink);
}
.contact-perks li::before {
  content: "🌾";
  position: absolute;
  left: 0;
  top: 0;
}
.contact-alt {
  margin-top: 24px;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-alt a { color: var(--green-deep); }

/* ================= Lead form ================= */
.lead-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid oklch(0.9 0.02 148);
  border-radius: calc(var(--radius) * 1.2);
  padding: clamp(20px, 3.5vw, 32px);
}
.lead-form label { display: grid; gap: 6px; }
.lead-form label span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.lead-form input,
.lead-form select {
  font: inherit;
  font-size: 1.05rem;
  padding: 13px 15px;
  min-height: 50px;
  border-radius: 12px;
  border: 1.5px solid oklch(0.88 0.02 148);
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(0.45 0.12 148 / 0.15);
}
.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"] {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}
.form-submit {
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
}
.form-submit[disabled] { opacity: 0.65; cursor: progress; }
.form-msg {
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.3em;
}
.form-msg.is-ok { color: var(--green-deep); }
.form-msg.is-err { color: #c62828; }
.form-fine {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ================= Floater ================= */
.floater {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: var(--z-nav);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: oklch(0.24 0.05 85);
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px oklch(0.3 0.08 85 / 0.4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  opacity: 0;
  translate: 0 20px;
  pointer-events: none;
}
.floater.is-shown {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
  animation: wobble 3.2s ease-in-out 1.2s infinite;
}
@keyframes wobble {
  0%, 62%, 100% { transform: rotate(0deg) scale(1); }
  66% { transform: rotate(-6deg) scale(1.06); }
  70% { transform: rotate(5deg) scale(1.06); }
  74% { transform: rotate(-4deg) scale(1.04); }
  78% { transform: rotate(3deg) scale(1.03); }
  82% { transform: rotate(-2deg) scale(1.02); }
  86% { transform: rotate(0deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .floater.is-shown { animation: none; }
}
.floater:hover { animation: none; transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 36px oklch(0.3 0.08 85 / 0.5); }
.floater-icon { font-size: 1.2rem; }
.floater-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--gold);
  animation: floatpulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes floatpulse {
  0% { opacity: 0.65; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.32); }
}
@media (prefers-reduced-motion: reduce) {
  .floater-pulse { animation: none; opacity: 0; }
}

/* ================= Modal ================= */
.lead-modal {
  border: 0;
  padding: 0;
  border-radius: calc(var(--radius) * 1.4);
  max-width: min(920px, 94vw);
  width: 100%;
  max-height: 92svh;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  margin: auto;
}
.lead-modal::backdrop {
  background: oklch(0.18 0.04 150 / 0.62);
  backdrop-filter: blur(3px);
}
.lead-modal[open] {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.modal-visual {
  position: relative;
  background: linear-gradient(165deg, var(--green-deep), oklch(0.38 0.1 150));
  display: grid;
  place-items: center;
  padding: 28px;
}
.modal-visual img {
  width: min(100%, 260px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}
.modal-body {
  padding: clamp(24px, 3.4vw, 40px);
  overflow-y: auto;
  max-height: 92svh;
}
.modal-body h2 { padding-right: 44px; }
.modal-body h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.15;
}
.modal-body > p {
  margin-top: 10px;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.modal-body .lead-form {
  border: 0;
  padding: 0;
  border-radius: 0;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.modal-skip {
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
  padding: 8px 0;
  min-height: 44px;
}

@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; }
  .lead-modal[open] { grid-template-columns: 1fr; }
  .modal-visual { display: none; }
  .floater { right: 14px; bottom: 14px; padding: 13px 18px; }
}

/* ---- Extra lead-form fields ---- */
.lead-form .req { color: #c62828; }
.lead-check {
  border: 1.5px solid oklch(0.9 0.02 148);
  border-radius: 12px;
  padding: 12px 14px 14px;
}
.lead-check legend {
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0 6px;
  color: var(--ink);
}
.lead-check .opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  margin-top: 6px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}
.lead-check input[type="radio"] {
  width: 22px;
  height: 22px;
  min-height: 0;
  accent-color: var(--green);
  margin: 0;
}

/* ---- Success confetti ---- */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -14px;
  width: 10px;
  height: 14px;
  opacity: 0;
  will-change: transform, opacity;
  animation: confetti-fall var(--dur, 2.6s) cubic-bezier(0.2, 0.6, 0.4, 1) var(--delay, 0s) forwards;
}
@keyframes confetti-fall {
  0%   { opacity: 1; transform: translate3d(0, -10vh, 0) rotate(0deg); }
  100% { opacity: 0; transform: translate3d(var(--drift, 0px), 108vh, 0) rotate(var(--spin, 540deg)); }
}
.form-msg.is-ok { animation: msg-pop 0.5s var(--ease-out); }
@keyframes msg-pop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .confetti-piece { animation: none; display: none; }
  .form-msg.is-ok { animation: none; }
}

/* ================= Web series (चौपाल) ================= */
.series {
  position: relative;
  padding: clamp(72px, 11vh, 130px) clamp(20px, 5vw, 72px);
  background: linear-gradient(175deg, #fff 0%, var(--green-tint) 100%);
  overflow: clip;
}
.series-panicle { right: -3%; top: 3%; width: clamp(90px, 12vw, 180px); transform: rotate(20deg); }
@media (max-width: 900px) { .series-panicle { display: none; } }
.series-inner { position: relative; z-index: var(--z-content); max-width: 1180px; margin-inline: auto; }
.series-head { max-width: 60ch; }
.series-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.series-head h2 {
  margin-top: 4px;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.series-sub {
  margin-top: 10px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--ink-soft);
}
.series-grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.ep {
  background: #fff;
  border: 1px solid oklch(0.9 0.02 148);
  border-radius: calc(var(--radius) * 1.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.ep.is-live:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20, 40, 20, 0.13); }
.ep-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  background: var(--green-deep);
  cursor: pointer;
  overflow: hidden;
}
.ep-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease-out);
}
.ep-media:hover img { transform: scale(1.05); filter: brightness(0.92); }
.ep-media:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.ep-play {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s var(--ease-out), background 0.3s var(--ease-out);
}
.ep-play::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 54%;
  translate: -50% -50%;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--green-deep);
}
.ep-media:hover .ep-play { transform: scale(1.12); background: #fff; }
.ep-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.ep-media--soon {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    135deg,
    oklch(0.95 0.015 148),
    oklch(0.95 0.015 148) 12px,
    oklch(0.93 0.02 148) 12px,
    oklch(0.93 0.02 148) 24px
  );
  cursor: default;
}
.ep-media--soon .ep-badge { background: oklch(0.62 0.02 150); }
.ep-soonmark { font-size: 2.4rem; opacity: 0.55; }
.ep-body { padding: 18px 20px 22px; display: grid; gap: 6px; align-content: start; flex: 1; }
.ep-body h3 { font-size: 1.24rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.ep-body p { font-size: 0.95rem; color: var(--ink-soft); }
.ep-link {
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  align-self: start;
  padding-bottom: 1px;
}
.ep-link:hover { color: var(--gold-deep); }
.ep.is-soon { opacity: 0.82; }
.ep.is-soon .ep-body h3 { color: var(--ink-soft); }
.series-cta { margin-top: clamp(26px, 4vw, 40px); text-align: center; }
.series-cta .btn-ghost { display: inline-block; }
.ep-media iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ================= Conversion: hero form, popup steps, guide CTA ================= */
.hide { display: none !important; }

/* Hero inline form */
.hero-form {
  margin-top: 22px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 14px 16px 16px;
}
.hero-form-label {
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.hero-form-row { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-form-row input {
  flex: 1 1 140px;
  min-width: 0;
  font: inherit;
  padding: 12px 14px;
  min-height: 48px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.hero-form-row input:focus { outline: none; border-color: var(--gold); }
.hero-form-row input[aria-invalid="true"] { border-color: #ff6b6b; }
.hero-form-row button { flex: 0 0 auto; margin-top: 0; padding: 13px 26px; }
.hero-form .form-msg { margin-top: 8px; color: #fff; font-size: 0.9rem; min-height: 1.2em; }
.hero-form .form-msg.is-ok { color: #b6f0c2; font-weight: 700; }
.hero-form .form-msg.is-err { color: #ffc9c9; }
.form-more { margin-top: 6px; font-size: 0.95rem; padding: 11px 20px; }
@media (max-width: 560px) {
  .hero-form-row input { flex: 1 1 100%; }
  .hero-form-row button { width: 100%; }
}

/* Popup: value-first step 1 */
.modal-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.modal-benefits {
  list-style: none;
  margin: 14px 0 18px;
  display: grid;
  gap: 8px;
}
.modal-benefits li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.modal-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.modal-trust {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}
.step2-tick {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 1.5rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.step2-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.lead-form--step2 .lead-check { padding: 10px 12px 12px; }
.lead-form--step2 .lead-check legend { font-size: 0.88rem; }

/* Guide CTA after wheel result */
.guide-cta {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-deep), oklch(0.36 0.09 150));
  color: #fff;
  text-align: center;
  animation: cta-in 0.5s var(--ease-out);
}
.guide-cta[hidden] { display: none; }
@keyframes cta-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.guide-cta-head { font-weight: 800; font-size: 1.12rem; }
.guide-cta-sub { font-size: 0.94rem; opacity: 0.9; margin-top: 4px; margin-bottom: 14px; }
.guide-cta .btn-gold { margin-top: 0; }
@media (prefers-reduced-motion: reduce) { .guide-cta { animation: none; } }

/* ---- Calendar delivery after form submit ---- */
.cal-deliver {
  background: linear-gradient(135deg, var(--green-tint), oklch(0.98 0.02 100));
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  text-align: center;
  animation: cal-in 0.5s var(--ease-out);
}
.cal-deliver-head {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.cal-deliver .cal-dl {
  display: inline-block;
  margin: 0 0 10px;
  padding: 13px 26px;
  font-size: 1rem;
}
.cal-deliver .cal-view {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 1px;
}
.hero-form .cal-deliver {
  background: rgba(255,255,255,0.95);
  margin-bottom: 0;
}
@keyframes cal-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .cal-deliver { animation: none; } }

/* ---- Guide CTA inline form (replaces modal-opening button) ---- */
.guide-inline-form {
  /* sits directly on the green CTA panel - drop the white .lead-form card */
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 2px;
  display: block;
}
.guide-inline-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.guide-inline-form input {
  flex: 1 1 150px;
  min-width: 0;
  width: auto;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
}
.guide-inline-form input::placeholder { color: oklch(0.55 0.02 150); }
.guide-inline-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px oklch(0.76 0.13 84 / 0.4);
}
.guide-inline-form input[aria-invalid="true"] {
  border-color: #ff8a8a;
  box-shadow: 0 0 0 3px rgba(255, 138, 138, 0.3);
}
.guide-inline-row button {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 14px 30px;
  min-height: 50px;
}
.guide-inline-form .form-msg {
  margin-top: 10px;
  color: #fff;
  font-size: 0.92rem;
  text-align: center;
}
.guide-inline-form .form-msg.is-ok { color: #cdf5d6; font-weight: 700; }
.guide-inline-form .form-msg.is-err { color: #ffd7d7; font-weight: 600; }
.guide-cta .cal-deliver { margin-top: 14px; margin-bottom: 0; text-align: center; }
.cal-hint {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 620px) {
  .guide-inline-row input,
  .guide-inline-row button { flex: 1 1 100%; width: 100%; }
}

/* On the dark green CTA panel the secondary link needs light ink */
.guide-cta .cal-view { color: var(--gold); }
.guide-cta .cal-view:hover { color: #fff; }
