:root {
  --green: #1a4d2e;
  --green-dark: #143d24;
  --gold: #d4af37;
  --ink: #0a0a0a;
  --muted: #4b5563;
  --paper: #fff;
  --mist: #f3f6f4;
  --line: #e5e7eb;
  --font: "Mukta", "Inter", sans-serif;
  --display: "Outfit", "Mukta", sans-serif;
  --brand: "Amita", serif;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 60;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 4.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-nav .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.brand-lock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 51;
}

.mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, var(--green), var(--green-dark));
  display: grid;
  place-items: center;
  color: #fff;
}

.mark svg {
  width: 1.35rem;
  height: 1.35rem;
}

.mark-gold {
  background: var(--gold);
}

.brand-name {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
}

html[lang="en"] .brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.lang button {
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.85rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0 0.2rem;
}

.lang button[aria-pressed="true"] {
  color: var(--green);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 2rem;
  height: 1.3rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 6px 0;
  background: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--green-dark);
}

.btn-white {
  background: #fff;
  color: var(--green);
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-apply {
  height: 2.35rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
}

.hero-section {
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green) 42%, #1d5636 100%);
  color: #fff;
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: min(55vw, 680px);
  height: min(70vh, 620px);
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: -12%;
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
  pointer-events: none;
  z-index: 0;
}

.hero-waves svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave {
  transform-origin: center;
}

.hero-wave-1 {
  fill: rgba(255, 255, 255, 0.07);
  animation: waveDrift 14s ease-in-out infinite;
}

.hero-wave-2 {
  fill: rgba(255, 255, 255, 0.05);
  animation: waveDrift 18s ease-in-out infinite reverse;
}

.hero-wave-3 {
  fill: rgba(255, 255, 255, 0.03);
  animation: waveDrift 22s ease-in-out infinite 1s;
}

@keyframes waveDrift {
  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-2.5%) scaleY(1.04);
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.hero-section h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
}

html[lang="hi"] .hero-section h1 {
  font-family: var(--font);
}

.gold {
  color: var(--gold);
}

.hero-section .lede {
  font-size: 1.15rem;
  color: #f3f4f6;
  margin: 0 0 1.5rem;
  max-width: 36em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  padding: 1.25rem;
  border-top: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-checks > span,
.hero-check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.check-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.check-copy strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.check-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.25;
}

.check-emoji {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  overflow: visible;
}

.hero-image-wrap {
  position: relative;
  margin: 1.35rem;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 28px 56px -12px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%, rgba(10, 28, 18, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 50% 22%;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-image-frame.is-story {
  aspect-ratio: 3 / 2;
  height: auto;
  background: transparent;
}

.hero-image-frame.is-story::after {
  display: none;
}

.hero-image-frame.is-story img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  animation: none;
}

.hero-image-wrap:has(.is-story) .hero-chip {
  display: none;
}

.hero-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-radius: 0.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  max-width: 10.5rem;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-chip-emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.hero-chip-tr {
  top: 0;
  right: 0;
  transform: translate(38%, -38%);
  animation: heroChipTR 4.8s ease-in-out infinite;
}

.hero-chip-bl {
  bottom: 0;
  left: 0;
  transform: translate(-38%, 38%);
  animation: heroChipBL 5.2s ease-in-out infinite 0.4s;
}

.hero-chip-br {
  bottom: 0;
  right: 0;
  transform: translate(38%, 38%);
  animation: heroChipBR 5s ease-in-out infinite 0.8s;
}

@keyframes heroChipTR {
  0%,
  100% {
    transform: translate(38%, -38%) translateY(0);
  }
  50% {
    transform: translate(38%, -38%) translateY(-8px);
  }
}

@keyframes heroChipBL {
  0%,
  100% {
    transform: translate(-38%, 38%) translateY(0);
  }
  50% {
    transform: translate(-38%, 38%) translateY(-8px);
  }
}

@keyframes heroChipBR {
  0%,
  100% {
    transform: translate(38%, 38%) translateY(0);
  }
  50% {
    transform: translate(38%, 38%) translateY(-8px);
  }
}

.hero-chip strong,
.hero-chip-val {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
}

.hero-chip-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.stats {
  padding: 1.5rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(248, 250, 248, 0) 0%, var(--mist) 18%, var(--mist) 100%);
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}

.stats .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(26, 77, 46, 0.12);
}

.stats-panel.is-in {
  opacity: 1;
  transform: none;
}

.stat-item {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 7.5rem;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--mist);
  transform: translateY(-2px);
}

.stat-emoji {
  font-size: 1.65rem;
  line-height: 1;
}

.stat-val {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
  max-width: 11rem;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.band {
  padding: 4.5rem 0;
}

.band-mist {
  background: linear-gradient(180deg, var(--mist), #fff);
}

.center-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.kicker {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--green);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

html[lang="hi"] h2 {
  font-family: var(--font);
  font-weight: 700;
}

.sub {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 35% 40%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.split img.about-img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 16px 36px rgba(26, 77, 46, 0.12);
}

.why-block {
  margin-top: 2.5rem;
}

.why-head {
  margin: 0 0 1.25rem;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.35rem;
  text-align: center;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.25rem 0.85rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26, 77, 46, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 77, 46, 0.25);
  box-shadow: 0 14px 28px rgba(26, 77, 46, 0.12);
}

.why-card-ico {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.why-card strong {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.biz-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 1.35rem 0.75rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 77, 46, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.biz-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 77, 46, 0.28);
  box-shadow: 0 16px 36px rgba(26, 77, 46, 0.13);
}

.biz-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(26, 77, 46, 0.08), rgba(212, 175, 55, 0.12));
  font-size: 1.55rem;
  line-height: 1;
}

.biz-card strong {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

html[lang="hi"] .biz-card strong {
  font-family: var(--font);
}

.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 52rem;
  margin-inline: auto;
}

.card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}

.card.is-in {
  opacity: 1;
  transform: none;
}

.card:hover {
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-ico {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(26, 77, 46, 0.1);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.25rem;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.2rem;
}

.card .desc {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.card .btn {
  width: 100%;
  margin-top: auto;
}

.card ul {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.card li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}

.card li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.calc-card {
  max-width: 52rem;
  margin: 0 auto;
  border: 2px solid #f3f4f6;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.calc-head {
  background: linear-gradient(to bottom right, var(--green), var(--green-dark));
  color: #fff;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
}

.calc-head p {
  margin: 0.2rem 0 0;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.calc-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.amount-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 1.25rem;
}

.amount-picks button {
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  cursor: pointer;
  color: var(--green);
  font-weight: 600;
}

.amount-picks button.is-on {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.calc-meta {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

.calc-card.calc-weekly .calc-daily-only {
  display: none;
}

.calc-card.calc-weekly .calc-results-4 {
  grid-template-columns: 1fr;
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
}

.calc-card.calc-weekly .calc-results strong {
  font-size: 1.75rem;
}

.calc-results div {
  background: var(--mist);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.calc-results div.calc-pop {
  animation: calcPop 0.5s ease;
}

.calc-results strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--green);
  transition: color 0.2s ease, transform 0.2s ease;
}

.calc-results div.calc-pop strong {
  animation: calcNumFlash 0.5s ease;
}

@keyframes calcPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.04);
    background: rgba(26, 77, 46, 0.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes calcNumFlash {
  0% {
    color: var(--green);
    transform: scale(1);
  }
  40% {
    color: #9a7b1a;
    transform: scale(1.06);
  }
  100% {
    color: var(--green);
    transform: scale(1);
  }
}

.calc-results small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.calc-body > .btn {
  width: 100%;
}

.process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 72rem;
  margin: 0 auto;
}

.process-step {
  width: min(100%, 14rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem 1rem 1.1rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 77, 46, 0.1);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.process-step.is-in {
  opacity: 1;
  transform: none;
}

.process-step:hover {
  box-shadow: 0 14px 32px rgba(26, 77, 46, 0.14);
}

.process-num {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.process-ico {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: rgba(26, 77, 46, 0.08);
  color: var(--green);
}

.process-step h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.35;
}

.process-arrow {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0.35rem 0;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.process-arrow::before {
  content: "↓";
}

.process-flow .process-step:nth-child(1) { transition-delay: 0ms; }
.process-flow .process-step:nth-child(3) { transition-delay: 80ms; }
.process-flow .process-step:nth-child(5) { transition-delay: 160ms; }
.process-flow .process-step:nth-child(7) { transition-delay: 240ms; }
.process-flow .process-step:nth-child(9) { transition-delay: 320ms; }

@media (min-width: 960px) {
  .process-flow {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }

  .process-step {
    flex: 1 1 0;
    width: auto;
    max-width: 11.5rem;
    min-height: 100%;
  }

  .process-arrow {
    flex: 0 0 auto;
    align-self: center;
    width: 1.75rem;
    margin: 0 0.15rem;
  }

  .process-arrow::before {
    content: "→";
  }
}

.trust-panel {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 22px 50px rgba(26, 77, 46, 0.24);
  color: #fff;
}

.trust-panel-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.trust-panel-head .kicker {
  color: var(--gold);
}

.trust-panel-head h2 {
  margin: 0;
  color: #fff;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  padding: 1.15rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
}

.trust-check {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.22);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 0;
}

.cta-band-text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--green);
  max-width: 42rem;
}

.legal-notice {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 52rem;
}

.legal-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-notice p + p {
  margin-top: 0.65rem;
}

.legal-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.55;
}

.legal-page-links {
  margin-top: 0.85rem !important;
}

.legal-page-links a {
  color: var(--gold);
}

.legal-doc {
  max-width: 40rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.legal-doc h2 {
  margin: 0 0 0.4rem;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.2rem;
}

html[lang="hi"] .legal-doc h2 {
  font-family: var(--font);
  font-weight: 700;
}

.legal-doc p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-doc-more {
  padding-top: 0.5rem;
}

.legal-doc-more a {
  color: var(--green);
  font-weight: 600;
}

.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.branches-slider {
  margin-top: 0.25rem;
}

.branches-viewport {
  overflow: hidden;
  border-radius: 1rem;
}

.branches-track {
  display: flex;
  gap: 1.15rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .branches-track {
    transition: none;
  }
}

.branches-track .branch {
  flex: 0 0 100%;
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .branches-track .branch {
    flex: 0 0 calc((100% - 1.15rem) / 2);
  }
}

@media (min-width: 960px) {
  .branches-track .branch {
    flex: 0 0 calc((100% - 2.3rem) / 3);
  }
}

.branches-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.branches-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.branches-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.branches-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.branches-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 14rem;
}

.branches-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(26, 77, 46, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.branches-dot.is-on {
  background: var(--green);
  transform: scale(1.25);
}

.branches-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.branch {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 36px rgba(26, 77, 46, 0.14);
  min-height: 15.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.branch.is-in {
  opacity: 1;
  transform: none;
}

.branch img {
  width: 100%;
  height: 15.5rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.branch:hover img {
  transform: scale(1.06);
}

.branch-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 2.75rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(10, 28, 18, 0.55) 28%, rgba(10, 28, 18, 0.92));
  color: #fff;
}

.branch-cap h3 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

html[lang="hi"] .branch-cap h3 {
  font-family: var(--font);
}

.branch-cap p {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.branch-call {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(212, 175, 55, 0.95);
  color: #1a2e14;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.branch-call:hover {
  background: #fff;
}

.branches-note {
  text-align: center;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.story {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 1.1rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(26, 77, 46, 0.09);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.story:hover {
  box-shadow: 0 18px 44px rgba(26, 77, 46, 0.15);
}

.story.is-in {
  opacity: 1;
  transform: none;
}

.story-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 18, 0.08) 0%, transparent 35%, rgba(10, 28, 18, 0.42) 100%);
  z-index: 1;
  pointer-events: none;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 50% 35%);
  margin: 0;
  border: none;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.story:hover .story-media img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05);
}

.story-stars {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.story-body {
  padding: 1.2rem 1.3rem 1.35rem;
}

.story blockquote {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  color: #1f2937;
  line-height: 1.55;
  font-style: normal;
}

.story blockquote::before {
  content: "\201C";
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 0.15rem;
}

.story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.story strong {
  color: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-grid h3 {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-family: var(--display);
}

.form-card {
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.enquire {
  display: grid;
  gap: 1.15rem;
}

.enquire label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.enquire input,
.enquire select,
.enquire textarea {
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  padding: 0 0.75rem;
  font: inherit;
}

.enquire input,
.enquire select {
  height: 3rem;
}

.enquire textarea {
  padding: 0.75rem;
  min-height: 6rem;
  resize: vertical;
}

.enquire .btn {
  width: 100%;
  height: 3rem;
}

.form-ok {
  margin: 0;
  color: var(--green);
  font-weight: 600;
}

.info-block h3 {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-family: var(--display);
}

.info-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.info-item .ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(26, 77, 46, 0.1);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--green);
}

.info-item a,
.info-item span {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-foot {
  background: var(--green);
  color: #d1d5db;
  padding: 3rem 0 1.5rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-foot h4 {
  color: #fff;
  margin: 0 0 1rem;
  font-family: var(--display);
}

.site-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.site-foot a {
  text-decoration: none;
  color: #d1d5db;
}

.site-foot a:hover {
  color: var(--gold);
}

.foot-brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.foot-brand-row .brand-name {
  color: #fff;
  font-family: var(--display);
}

html[lang="hi"] .foot-brand-row .brand-name {
  font-family: var(--brand);
}

.copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.page-inner main {
  padding-top: 5.5rem;
}

.page-mast {
  padding-bottom: 1rem;
}

.page-mast h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--green);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

html[lang="hi"] .page-mast h1 {
  font-family: var(--font);
  font-weight: 700;
}

.section-lede {
  margin: 0;
  color: var(--muted);
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.yojana {
  display: grid;
  gap: 1rem;
}

.plan-row {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.35rem 1.5rem;
}

.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.plan-amt {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.plan-emi {
  color: var(--muted);
}

.plan-row .btn {
  margin-top: 0.75rem;
}

.review-list {
  display: grid;
  gap: 1.25rem;
}

.review-list article {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.review-list blockquote {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.review-meta {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 51;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8vw;
    gap: 1.1rem;
    font-size: 1.3rem;
    margin: 0;
    z-index: 40;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .hero-grid,
  .split,
  .cards-2,
  .stories,
  .contact-grid,
  .foot-grid,
  .calc-results,
  .calc-results-4 {
    grid-template-columns: 1fr;
  }

  .calc-results-4 {
    grid-template-columns: 1fr 1fr;
  }

  .stories-8 {
    grid-template-columns: 1fr 1fr;
  }

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

  .stat-item {
    min-height: 8.5rem;
    padding: 1.1rem 0.65rem;
  }

  .stat-val {
    font-size: 1.85rem;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-visual img,
  .hero-image-frame:not(.is-story) img {
    height: 16rem;
  }

  .hero-image-frame.is-story img {
    height: 100%;
  }

  .hero-image-frame {
    border-radius: 1rem;
  }

  .hero-image-wrap {
    margin: 1rem 0.65rem;
  }

  .hero-chip-tr {
    transform: translate(30%, -30%);
  }

  .hero-chip-bl {
    transform: translate(-30%, 30%);
  }

  .hero-chip-br {
    transform: translate(30%, 30%);
  }

  .split img:not(.about-img) {
    height: 16rem;
  }

  .split img.about-img {
    height: auto;
  }

  .hero-section {
    padding: 6.5rem 0 2.5rem;
  }

  .hero-chip {
    padding: 0.5rem 0.65rem;
    max-width: 9.5rem;
  }

  .hero-chip-val,
  .hero-chip strong {
    font-size: 0.95rem;
  }

  .hero-chip-label {
    font-size: 0.65rem;
  }

  .hero-checks {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 520px) {
  .stories-8,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: auto;
    border-right: none !important;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip-tr,
  .hero-chip-bl,
  .hero-chip-br {
    animation: none !important;
  }

  .hero-image-frame img {
    animation: none !important;
    transform: none !important;
  }

  .hero-wave-1,
  .hero-wave-2,
  .hero-wave-3 {
    animation: none !important;
  }

  .calc-results div.calc-pop,
  .calc-results div.calc-pop strong {
    animation: none !important;
  }

  .process-step {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .story:hover .story-media img {
    transform: none;
  }

  [data-reveal],
  .stats-panel,
  .card,
  .branch,
  .story {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
