:root {
  --emerald-950: #032c25;
  --emerald-900: #063b32;
  --emerald-800: #075347;
  --teal: #27d7b0;
  --lime: #c8f04b;
  --ivory: #f7f4e8;
  --paper: #fbfaf5;
  --sage: #a9c7b8;
  --ink: #102d28;
  --muted: #60716c;
  --line: #dce5df;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.announcement {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--lime);
  color: var(--emerald-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
}
.announcement i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 44, 37, .98);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}
.nav-shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 150px; max-height: 75px; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2vw, 30px); }
.main-nav > a:not(.login-button) {
  position: relative;
  padding: 34px 0 30px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav > a:not(.login-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--lime);
  transition: right .2s ease;
}
.main-nav > a:hover, .main-nav > a.active { color: var(--white); }
.main-nav > a:hover::after, .main-nav > a.active::after { right: 0; }
.login-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  transition: .2s ease;
}
.login-button:hover { background: var(--lime); color: var(--emerald-950); transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: white; }

.hero-slider { position: relative; overflow: hidden; width: 100%; background: var(--emerald-950); aspect-ratio: 1920 / 685; min-height: 300px; max-height: 650px; }
.slides, .slide { width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 5s ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(3,44,37,.45);
  color: white;
  font-size: 31px;
  line-height: 1;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.hero-slider:hover .slider-arrow, .hero-slider:focus-within .slider-arrow { opacity: 1; pointer-events: auto; }
.slider-arrow:hover { background: var(--lime); border-color: var(--lime); color: var(--emerald-950); }
.slider-arrow.previous { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.6); cursor: pointer; transition: .2s; }
.slider-dots button.active { width: 30px; background: var(--lime); }

.section { padding: 100px 0; }
.section-dark { background: var(--emerald-950); color: white; }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--emerald-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.04em; }
.section-copy h1, .section-heading h2, .community-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1.08;
}
.section-copy p { max-width: 650px; color: var(--muted); line-height: 1.8; }
.section-copy .lead { color: var(--ink); font-size: 17px; }
.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 78px; }
.image-composition { position: relative; min-height: 580px; border-radius: 28px; overflow: hidden; background: #dce8dc; }
.image-composition > img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  background: rgba(3,44,37,.9);
  color: white;
  backdrop-filter: blur(8px);
}
.floating-note strong { color: var(--lime); }
.floating-note span { color: rgba(255,255,255,.75); font-size: 13px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 30px 0 36px; }
.check-grid span { font-size: 14px; font-weight: 700; }
.check-grid span::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 10px; border-radius: 50%; background: #eaf8ca; color: var(--emerald-800); }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--emerald-900); color: white; box-shadow: 0 12px 24px rgba(6,59,50,.16); }
.button-lime { background: var(--lime); color: var(--emerald-950); }
.button-outline-light { border: 1px solid rgba(255,255,255,.4); color: white; }
.icon-link { display: inline-flex; align-items: center; gap: 8px; }
.brand-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: white;
}
.brand-icon svg { width: 15px; height: 15px; fill: currentColor; }
.brand-icon-youtube { background: #ff0033; }
.brand-icon-whatsapp { background: #25d366; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { color: var(--muted); line-height: 1.7; }
.section-heading.light .eyebrow { color: var(--lime); }
.section-heading.light p { color: rgba(255,255,255,.64); }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.heading-row h2 { max-width: 700px; }
.text-link { padding-bottom: 8px; border-bottom: 1px solid var(--emerald-900); font-size: 14px; font-weight: 800; white-space: nowrap; }
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.care-card { position: relative; min-height: 390px; overflow: hidden; border-radius: 18px; }
.care-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(2,28,23,.95)); }
.care-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform .45s ease; }
.care-card:hover img { transform: scale(1.04); }
.care-card div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.care-card span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.care-card h3 { margin: 8px 0 0; font-size: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { padding: 12px 12px 22px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,54,45,.1); }
.product-image { overflow: hidden; aspect-ratio: 1 / 1; border-radius: 12px; background: #f1f4ed; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover img { transform: scale(1.025); }
.product-card h3 { margin: 20px 10px 5px; font-size: 16px; }
.product-card p { margin: 0 10px; color: var(--muted); font-size: 12px; }
.impact-strip { padding: 34px 0; background: var(--lime); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-grid div { padding: 0 26px; border-right: 1px solid rgba(3,44,37,.2); }
.impact-grid div:first-child { padding-left: 0; }
.impact-grid div:last-child { border: 0; }
.impact-grid strong, .impact-grid span { display: block; }
.impact-grid strong { margin-bottom: 5px; font-size: 17px; }
.impact-grid span { font-size: 12px; }
.community-cta { background: #eef1e8; }
.community-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 64px;
  border-radius: 28px;
  background: var(--emerald-900);
  color: white;
  overflow: hidden;
}
.community-panel h2 { max-width: 720px; margin-bottom: 0; }
.community-panel .eyebrow { color: var(--teal); }
.community-actions { display: flex; gap: 12px; flex: 0 0 auto; }

.page-hero { position: relative; height: 210px; display: flex; align-items: center; overflow: hidden; background: var(--emerald-950); color: white; }
.page-hero > img, .page-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { background: linear-gradient(90deg, rgba(3,44,37,.94), rgba(3,44,37,.58)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero span { display: block; margin-bottom: 14px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1; }

.split-content {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 80px;
}
.split-content h2,
.vision-block h2,
.business-intro h2,
.product-page-intro h2,
.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}
.split-content p, .vision-block p, .business-intro p, .product-page-intro p, .contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}
.split-content .lead, .business-intro .lead { color: var(--ink); font-size: 17px; }
.split-content .button { margin-top: 20px; }
.rounded-image { overflow: hidden; min-height: 560px; border-radius: 26px; }
.rounded-image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.soft-section { background: #edf2eb; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.principle-card { min-height: 275px; padding: 30px; border-radius: 18px; background: white; }
.principle-card > span { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.principle-card h3 { margin: 52px 0 14px; font-size: 20px; }
.principle-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.vision-stack { display: grid; gap: 100px; }
.vision-block { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 78px; }
.vision-block.reverse .vision-image { order: 2; }
.vision-image { overflow: hidden; min-height: 500px; border-radius: 26px; background: #e8eee8; }
.vision-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.vision-block blockquote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--lime);
  background: #eef3e6;
  color: var(--emerald-900);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}
.mission-list { margin: 30px 0 0; padding: 0; list-style: none; }
.mission-list li { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.mission-list li::before { content: "✓"; margin-right: 13px; color: var(--emerald-800); }

.business-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-bottom: 70px; }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey-grid article { padding: 38px 28px; border-right: 1px solid var(--line); }
.journey-grid article:last-child { border: 0; }
.journey-grid span { color: var(--teal); font-size: 12px; font-weight: 800; }
.journey-grid h3 { margin: 30px 0 12px; font-size: 21px; }
.journey-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.plan-download { padding: 80px 0; background: var(--emerald-900); color: white; }
.plan-panel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.document-icon { width: 88px; height: 100px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; color: var(--lime); font-size: 18px; font-weight: 900; }
.plan-panel .eyebrow { margin-bottom: 10px; color: var(--teal); }
.plan-panel h2 { margin-bottom: 8px; font-size: clamp(28px, 3vw, 42px); }
.plan-panel p { margin: 0; color: rgba(255,255,255,.65); }
.disclaimer-section { padding: 30px 0; background: #eff3ea; }
.disclaimer { display: flex; gap: 28px; align-items: center; }
.disclaimer strong { flex: 0 0 auto; }
.disclaimer p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.product-page-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.catalogue-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-card { width: 100%; color: inherit; text-align: left; cursor: zoom-in; }
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px 90px;
  background: rgba(1,23,19,.94);
  backdrop-filter: blur(10px);
}
.lightbox figure { margin: 0; max-width: min(720px, 74vw); max-height: 88vh; text-align: center; }
.lightbox figure img { max-height: 78vh; border-radius: 12px; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.lightbox figcaption { margin-top: 15px; color: white; font-weight: 700; }
.lightbox figcaption strong,
.lightbox figcaption span { display: block; }
.lightbox figcaption span { margin-top: 5px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 500; }
.lightbox-close, .lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: white;
  cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 30px; }
.lightbox-arrow { top: 50%; width: 54px; height: 54px; font-size: 34px; transform: translateY(-50%); }
.lightbox-arrow.previous { left: 28px; }
.lightbox-arrow.next { right: 28px; }
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--lime); color: var(--emerald-950); border-color: var(--lime); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.contact-copy p { max-width: 650px; }
.contact-actions { display: flex; gap: 12px; margin-top: 34px; }
.button-soft { background: #e7f0e7; color: var(--emerald-900); }
.contact-card { padding: 44px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 24px 70px rgba(7,53,45,.08); }
.contact-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 26px; border-radius: 50%; background: var(--lime); color: var(--emerald-950); font-size: 25px; }
.contact-card h3 { margin-bottom: 18px; font-size: 22px; }
.contact-card address { margin-bottom: 24px; color: var(--muted); font-size: 14px; font-style: normal; line-height: 1.85; }
.contact-card a { color: var(--emerald-800); font-size: 13px; font-weight: 800; }
.legal-section { background: #f6f7f1; }
.legal-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}
.legal-intro h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}
.legal-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.legal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(7, 53, 45, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(7, 53, 45, .11);
}
.legal-document-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #edf1e9;
  cursor: zoom-in;
}
.legal-document-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform .35s ease;
}
.legal-document-image:hover img { transform: scale(1.018); }
.legal-card-content { padding: 28px 30px 30px; }
.legal-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-status i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eaf8ca;
  font-style: normal;
}
.legal-card h3 { margin: 18px 0 22px; font-size: 22px; }
.legal-card dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal-card dt { color: var(--muted); font-size: 12px; }
.legal-card dd {
  margin: 0;
  color: var(--emerald-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}
.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid #d8e2d0;
  border-radius: 16px;
  background: #edf3e6;
}
.legal-note-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--emerald-900);
  color: white;
  font-weight: 800;
}
.legal-note strong { display: block; margin-bottom: 6px; font-size: 13px; }
.legal-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.php-lightbox { display: none; }
.php-lightbox.open.lightbox { display: grid; }

.policy-page-section { background: #f6f7f1; }
.policy-page { max-width: 980px; }
.policy-page-intro { margin-bottom: 42px; }
.policy-page-intro-secondary { margin-top: 70px; }
.policy-page-intro h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}
.policy-page-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.policy-content-card {
  padding: 46px 52px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: 0 24px 24px 0;
  background: white;
  box-shadow: 0 22px 60px rgba(7,53,45,.07);
}
.policy-content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.policy-content-card p + p { margin-top: 22px; }
.hindi-policy-card {
  font-family: "Nirmala UI", "Mangal", "Kohinoor Devanagari", "Manrope", Arial, sans-serif;
}
.hindi-policy-card p {
  font-size: 16px;
  line-height: 1.95;
}
.policy-number-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: policy;
}
.policy-number-list li {
  position: relative;
  min-height: 92px;
  padding: 26px 30px 26px 92px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--muted);
  line-height: 1.8;
  box-shadow: 0 14px 38px rgba(7,53,45,.045);
  counter-increment: policy;
}
.policy-number-list li::before {
  content: counter(policy, upper-roman);
  position: absolute;
  left: 28px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--emerald-950);
  font-size: 12px;
  font-weight: 900;
}
.policy-section-stack { display: grid; gap: 18px; }
.policy-section-card {
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 38px rgba(7,53,45,.045);
}
.policy-section-card h3 {
  margin-bottom: 16px;
  color: var(--emerald-900);
  font-size: 22px;
}
.policy-section-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}
.policy-section-card p + p { margin-top: 14px; }

.payment-page-section { background: #eef3e8; }
.payment-page { max-width: 1080px; }
.payment-page-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.payment-page-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}
.payment-page-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.payment-bank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.payment-bank-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 58px rgba(7,53,45,.08);
}
.payment-bank-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(200,240,75,.2);
  border-radius: 50%;
}
.featured-bank-card {
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(135deg, var(--emerald-950), var(--emerald-800));
  color: white;
}
.payment-bank-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.payment-bank-head h3 { margin: 0; color: var(--emerald-900); font-size: 28px; text-transform: uppercase; }
.featured-bank-card .payment-bank-head h3 { color: var(--lime); }
.payment-bank-head span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--emerald-950);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.payment-bank-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px 20px;
  margin: 0;
}
.payment-bank-card dt,
.payment-bank-card dd {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.payment-bank-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.payment-bank-card dd {
  margin: 0;
  color: var(--emerald-900);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.featured-bank-card dt,
.featured-bank-card dd { border-top-color: rgba(255,255,255,.14); }
.featured-bank-card dt { color: rgba(255,255,255,.58); }
.featured-bank-card dd { color: white; }

.grievance-page-section { background: #eef3e8; }
.grievance-page-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.grievance-page-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}
.grievance-page-copy > p {
  color: var(--muted);
  line-height: 1.8;
}
.grievance-contact-panel {
  margin-top: 34px;
  padding: 30px;
  border-radius: 22px;
  background: var(--emerald-900);
  color: white;
}
.grievance-contact-panel h3 { margin-bottom: 22px; font-size: 22px; }
.grievance-contact-panel dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 20px;
  margin: 0 0 24px;
}
.grievance-contact-panel dt { color: rgba(255,255,255,.58); font-size: 12px; }
.grievance-contact-panel dd { margin: 0; color: white; font-size: 13px; font-weight: 800; }
.grievance-contact-panel a { color: var(--lime); }
.grievance-contact-panel p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }
.grievance-page-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 70px rgba(7,53,45,.08);
}
.form-alert {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}
.form-alert-success { background: #eaf8ca; color: var(--emerald-900); }
.form-alert-error { background: #fff1f0; color: #9f1c13; }
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-wide-error {
  grid-column: 1 / -1;
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
}
.form-row { display: grid; gap: 9px; }
.form-row.full,
.captcha-row,
.grievance-page-form .button { grid-column: 1 / -1; }
.form-row label,
.captcha-row label {
  color: var(--emerald-900);
  font-size: 12px;
  font-weight: 800;
}
.form-row label span,
.captcha-row label span { color: #b42318; }
.grievance-page-form input[type="text"],
.grievance-page-form input[type="tel"],
.grievance-page-form input[type="email"],
.grievance-page-form textarea, .grievance-page-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfaf5;
  color: var(--ink);
}
.form-row small,
.js-error,
.captcha-row small {
  color: #b42318;
  font-size: 11px;
  font-weight: 700;
}
.grievance-page-form [aria-invalid="true"] {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217,45,32,.08);
}
.grievance-page-form textarea { resize: vertical; }
.radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf5;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.radio-group input { accent-color: var(--emerald-900); }
.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
}
.captcha-row > div { display: grid; gap: 9px; }
.captcha-row strong {
  display: grid;
  place-items: center;
  min-width: 108px;
  min-height: 47px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--emerald-950);
  font-size: 17px;
  letter-spacing: .16em;
}

.legal-lightbox figure { max-width: min(840px, 78vw); }
.legal-lightbox figure img { background: white; }
.banking-lightbox figure { max-width: min(620px, 88vw); }
.banking-lightbox figure img { max-height: 86vh; background: white; object-fit: contain; }

.site-footer { padding-top: 78px; background: #022c25; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .75fr .75fr 1.2fr; gap: 42px; padding-bottom: 58px; }
.footer-grid h2 { margin-bottom: 22px; color: white; font-size: 14px; letter-spacing: .04em; }
.footer-grid > div > a { display: block; margin: 12px 0; font-size: 13px; }
.footer-grid > div > a:hover { color: var(--lime); }
.footer-brand img { width: 190px; margin-bottom: 22px; }
.footer-brand p { max-width: 380px; line-height: 1.7; font-size: 13px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 11px; }
.footer-grid address { margin-bottom: 18px; font-size: 13px; font-style: normal; line-height: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

@media (max-width: 1050px) {
  .nav-shell { min-height: 78px; }
  .brand img { width: 128px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 18px 20px 28px;
    background: var(--emerald-950);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
  }
  .main-nav.open { display: flex; flex-direction: column; gap: 0; }
  .main-nav > a:not(.login-button) { padding: 14px 4px; }
  .main-nav > a:not(.login-button)::after { bottom: 7px; }
  .login-button { justify-content: center; margin-top: 12px; }
  .about-grid { gap: 42px; }
  .care-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .community-panel { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid article:nth-child(2) { border-right: 0; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .announcement { font-size: 9px; }
  .section { padding: 72px 0; }
  .hero-slider { aspect-ratio: 1920 / 685; min-height: 0; }
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow.previous { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .slider-dots { bottom: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .image-composition, .image-composition > img { min-height: 430px; }
  .check-grid { grid-template-columns: 1fr; }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .care-grid, .product-grid { grid-template-columns: 1fr; }
  .care-card, .care-card img { min-height: 420px; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 25px 0; }
  .impact-grid div:nth-child(2) { border-right: 0; }
  .community-panel { padding: 42px 26px; }
  .community-actions { width: 100%; flex-direction: column; }
  .page-hero { height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { flex-direction: column; }
  .split-content, .vision-block, .business-intro, .product-page-intro, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-block.reverse .vision-image { order: 0; }
  .vision-stack { gap: 70px; }
  .plan-panel { grid-template-columns: auto 1fr; }
  .plan-panel .button { grid-column: 1 / -1; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .legal-intro { grid-template-columns: 1fr; gap: 24px; }
  .policy-content-card { padding: 30px 26px; }
  .policy-number-list li { padding: 74px 22px 22px; }
  .policy-number-list li::before { left: 22px; top: 22px; }
  .policy-section-card { padding: 24px 22px; }
  .payment-bank-grid { grid-template-columns: 1fr; }
  .payment-bank-card { padding: 28px 24px; }
  .payment-bank-card dl { grid-template-columns: 1fr; gap: 0; }
  .payment-bank-card dd { padding-top: 4px; }
  .grievance-page-grid,
  .grievance-page-form,
  .radio-group { grid-template-columns: 1fr; }
  .grievance-page-form { padding: 28px 22px; }
  .grievance-contact-panel dl,
  .captcha-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-slider { aspect-ratio: 1920 / 685; }
  .care-grid, .product-grid, .footer-grid, .impact-grid, .principle-grid, .journey-grid, .catalogue-grid { grid-template-columns: 1fr; }
  .impact-grid div { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(3,44,37,.2); }
  .floating-note { align-items: flex-start; flex-direction: column; }
  .journey-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan-panel { grid-template-columns: 1fr; }
  .document-icon { width: 72px; height: 82px; }
  .lightbox { padding: 70px 15px 30px; }
  .lightbox-arrow { top: auto; bottom: 18px; }
  .lightbox-arrow.previous { left: calc(50% - 66px); }
  .lightbox-arrow.next { right: calc(50% - 66px); }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card dl { align-items: flex-start; flex-direction: column; gap: 6px; }
  .legal-lightbox figure { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
