:root {
  --ink: #17312e;
  --muted: #647671;
  --green: #0b5f56;
  --green-dark: #073f3a;
  --green-soft: #eaf5f1;
  --accent: #f2a93b;
  --accent-dark: #db8e19;
  --cream: #fbf8f1;
  --white: #ffffff;
  --line: #dce8e4;
  --shadow: 0 24px 70px rgba(10, 65, 58, .13);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.promo-bar {
  background: var(--green-dark);
  color: #eafff9;
  font-size: 14px;
}
.promo-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.promo-inner a {
  color: #ffd289;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(220, 232, 228, .8);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green), #159178);
  box-shadow: 0 10px 26px rgba(11, 95, 86, .22);
}
.brand-mark svg { width: 27px; height: 27px; }
.brand-mark path {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand strong { font-size: 18px; letter-spacing: -.03em; }
.brand small {
  margin-top: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3c514d;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a { transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--green); transform: translateY(-1px); }
.main-nav .nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green);
  color: white;
}
.main-nav .nav-cta:hover { color: white; background: var(--green-dark); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--green-soft);
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
  border-radius: 5px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 169, 59, .11), transparent 30%),
    linear-gradient(180deg, #f8fcfa 0%, #fff 82%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(11, 95, 86, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 86, .05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid {
  min-height: 675px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 84px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.light { color: #c8f4e8; }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(45px, 6vw, 76px);
  line-height: .99;
  letter-spacing: -.062em;
}
.hero-text {
  max-width: 675px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 15px 28px rgba(11, 95, 86, .18);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 19px 34px rgba(11, 95, 86, .25); }
.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}
.btn-secondary:hover { box-shadow: 0 13px 30px rgba(23, 49, 46, .1); }
.btn-accent { border: 0; background: var(--accent); color: #33230c; }
.btn-accent:hover { background: #ffc267; }
.btn-light { background: white; color: var(--green-dark); }
.btn-full { width: 100%; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 25px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  color: #49605b;
  font-size: 13px;
  font-weight: 700;
}
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list svg { width: 18px; height: 18px; }
.trust-list path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel { position: relative; z-index: 2; }
.route-card {
  position: relative;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 31px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.route-card::after {
  content: "";
  position: absolute;
  right: -90px; top: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(242, 169, 59, .16);
}
.route-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.route-label { font-size: 14px; font-weight: 900; }
.route-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}
.route-line { position: relative; z-index: 1; margin: 31px 0; }
.route-point {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 14px;
}
.route-point > span {
  display: grid;
  place-items: center;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 9px 25px rgba(11, 95, 86, .19);
}
.route-point div { display: flex; flex-direction: column; line-height: 1.3; }
.route-point small { color: var(--muted); font-size: 11px; }
.route-point strong { margin-top: 2px; font-size: 14px; }
.route-track {
  width: 2px;
  height: 29px;
  margin-left: 21px;
  background: repeating-linear-gradient(to bottom, #9bbcb4 0 5px, transparent 5px 10px);
}
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
.mini-cards article {
  padding: 17px 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fbfdfc;
  text-align: center;
}
.mini-icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin: 0 auto 8px;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}
.mini-cards strong, .mini-cards small { display: block; }
.mini-cards strong { font-size: 13px; }
.mini-cards small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
  padding: 18px;
  border-radius: 18px;
  background: var(--green-dark);
  color: white;
}
.offer-card div { display: flex; flex-direction: column; }
.offer-card small { color: #bfeade; font-size: 10px; }
.offer-card strong { font-size: 13px; }
.offer-card a { color: #ffd68f; font-size: 12px; font-weight: 900; }

.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.hero-orb-one {
  width: 300px; height: 300px;
  right: 7%; bottom: 4%;
  background: rgba(28, 151, 123, .11);
}
.hero-orb-two {
  width: 170px; height: 170px;
  right: 35%; top: 12%;
  background: rgba(242, 169, 59, .13);
}

.stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfdfc; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}
.stats-grid div:first-child { border-left: 1px solid var(--line); }
.stats-grid strong { font-size: 16px; }
.stats-grid span { color: var(--muted); font-size: 12px; }

.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.split-copy h2,
.signup-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading > p:last-child,
.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 272px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--green-soft);
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: #bed8d1;
  box-shadow: 0 22px 50px rgba(19, 72, 65, .1);
}
.service-card:hover::after { transform: scale(1.25); }
.icon-wrap {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
}
.icon-wrap svg { width: 25px; height: 25px; }
.icon-wrap path, .icon-wrap rect, .icon-wrap circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin: 23px 0 9px; font-size: 19px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.india-section { overflow: hidden; background: var(--cream); }
.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
  align-items: center;
}
.india-visual {
  position: relative;
  min-height: 535px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 45%, rgba(255,255,255,.96), rgba(236,244,239,.78) 48%, rgba(222,235,229,.8));
  box-shadow: inset 0 0 0 1px rgba(11,95,86,.08), 0 30px 70px rgba(75,86,67,.12);
}
.india-visual::before,
.india-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(11,95,86,.1);
  border-radius: 50%;
}
.india-visual::before { width: 390px; height: 390px; }
.india-visual::after { width: 290px; height: 290px; }
.visual-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(30,71,63,.1);
}
.map-shape { position: relative; z-index: 2; width: 270px; filter: drop-shadow(0 22px 25px rgba(15, 74, 59, .19)); }
.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(11,95,86,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(27,78,66,.12);
  font-size: 12px;
  font-weight: 800;
}
.floating-note span {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 11px;
}
.note-one { top: 120px; left: -25px; }
.note-two { right: -25px; bottom: 85px; }
.split-copy .lead { max-width: 690px; }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 34px;
}
.check-grid > div {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(11,95,86,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.66);
}
.check-grid > div > span {
  display: grid; place-items: center;
  width: 37px; height: 37px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 900;
}
.check-grid p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.check-grid strong { color: var(--ink); font-size: 14px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 29px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.other-section { background: var(--green-dark); color: white; }
.other-section .eyebrow { color: #8be0cb; }
.other-section .section-heading > p:last-child { color: #b9d6d0; }
.country-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .9fr .9fr;
  gap: 34px;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.country-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(242,169,59,.12);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(139,224,203,.12);
  color: #9aead7;
  font-size: 11px;
  font-weight: 900;
}
.status-pill i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #74ebc8;
  box-shadow: 0 0 0 5px rgba(116,235,200,.1);
}
.country-copy { position: relative; z-index: 2; }
.country-copy h3 { margin: 21px 0 10px; font-size: 29px; letter-spacing: -.03em; }
.country-copy p { margin: 0 0 24px; color: #bed4cf; font-size: 14px; }
.country-copy .btn-primary { background: var(--accent); color: #32230d; box-shadow: none; }
.globe {
  position: relative;
  width: 250px;
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(139,224,203,.26), rgba(16,78,69,.15) 62%);
  box-shadow: inset -22px -20px 45px rgba(0,0,0,.12), 0 25px 70px rgba(0,0,0,.16);
}
.globe::before {
  content: "";
  position: absolute;
  inset: 18px 60px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.globe-ring, .globe-line { position: absolute; border: 1px solid rgba(255,255,255,.2); }
.globe-ring { inset: 40% 0; border-left: 0; border-right: 0; }
.ring-two { inset: 27% 0; }
.globe-line { top: 50%; left: 8%; width: 84%; transform: rotate(32deg); }
.line-two { transform: rotate(-24deg); }
.pin {
  position: absolute;
  width: 11px; height: 11px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242,169,59,.16);
}
.pin-one { top: 30%; left: 31%; }
.pin-two { top: 52%; right: 22%; }
.pin-three { bottom: 21%; left: 43%; }
.country-services {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.country-services article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.country-services article > span {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: rgba(139,224,203,.12);
  color: #93e5d2;
  font-size: 11px;
  font-weight: 900;
}
.country-services div { display: flex; flex-direction: column; }
.country-services strong { font-size: 14px; }
.country-services small { color: #aac8c1; font-size: 11px; }

.process-section { background: #fbfdfc; }
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: var(--line);
}
.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}
.step-no {
  display: grid;
  place-items: center;
  width: 63px; height: 63px;
  margin: 0 auto 21px;
  border: 7px solid #fbfdfc;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 1px var(--line);
}
.process-grid h3 { margin: 0; font-size: 17px; }
.process-grid p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.signup-section { background: linear-gradient(135deg, #0b5f56, #063b37); color: white; }
.signup-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: center;
}
.signup-copy h2 { max-width: 540px; }
.signup-copy > p:not(.eyebrow):not(.small-note) {
  max-width: 600px;
  margin: 21px 0 0;
  color: #c1ddd6;
  font-size: 17px;
}
.offer-points {
  display: grid;
  gap: 12px;
  margin-top: 29px;
}
.offer-points div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
}
.offer-points span {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #ffd795;
}
.small-note { margin-top: 28px; color: #9dbdb6; font-size: 11px; }
.signup-form {
  padding: 31px;
  border-radius: 26px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
.form-heading { display: flex; flex-direction: column; margin-bottom: 22px; }
.form-heading span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.form-heading strong { margin-top: 3px; font-size: 25px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.signup-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #3f5450;
  font-size: 12px;
  font-weight: 800;
}
.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfdfd;
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
  font-weight: 500;
  transition: border .2s ease, box-shadow .2s ease;
}
.signup-form textarea { resize: vertical; }
.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: #79ad9f;
  box-shadow: 0 0 0 4px rgba(11,95,86,.08);
}
.signup-form .consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 2px 0 17px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}
.consent input { width: 16px; height: 16px; margin: 1px 0 0; }
.form-message {
  min-height: 20px;
  margin: 11px 0 0;
  text-align: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.form-message.error { color: #bb3f3f; }

.faq-section { padding: 100px 0; background: var(--cream); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid #d8dfda;
  padding: 20px 4px;
}
.faq-list summary {
  position: relative;
  list-style: none;
  padding-right: 38px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -5px;
  color: var(--green);
  font-size: 27px;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 12px 45px 0 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 69px 0; background: var(--accent); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta .eyebrow { color: #5c410f; }
.final-cta h2 { color: #30230b; font-size: clamp(31px, 4vw, 46px); }
.final-cta .btn-light { box-shadow: 0 14px 32px rgba(90,59,10,.13); }

.site-footer { padding: 72px 0 26px; background: #071f1d; color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: 55px;
  padding-bottom: 48px;
}
.brand-footer .brand-mark { width: 39px; height: 39px; }
.brand-footer small { color: #8addc9; }
.footer-brand p { max-width: 360px; margin: 20px 0 0; color: #95b1aa; font-size: 13px; }
.footer-grid h3 { margin: 0 0 17px; color: #c8eee4; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid span { margin-bottom: 8px; color: #97afa9; font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-small { margin: 0; color: #819b95; font-size: 11px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #78918b;
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #22c66b;
  box-shadow: 0 15px 35px rgba(20,110,64,.35);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; }
.whatsapp-float path:first-child { fill: white; }
.whatsapp-float path:last-child { fill: #22c66b; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .main-nav { gap: 17px; font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero h1 { font-size: 57px; }
  .split-layout { gap: 55px; }
  .country-panel { grid-template-columns: 1fr 1fr; }
  .country-services { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .signup-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .promo-inner { justify-content: space-between; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 22px 50px rgba(15,57,52,.14);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .main-nav .nav-cta { text-align: center; margin-top: 5px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 62px; gap: 42px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-panel { max-width: 590px; width: 100%; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:nth-child(3) { border-left: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .india-visual { max-width: 610px; width: 100%; margin: 0 auto; }
  .country-panel { grid-template-columns: 1fr; text-align: center; }
  .country-copy .btn { display: inline-flex; }
  .country-services { grid-column: auto; grid-template-columns: 1fr; text-align: left; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 15px; }
  .process-grid::before { display: none; }
  .signup-grid { grid-template-columns: 1fr; }
  .signup-copy { text-align: center; }
  .signup-copy h2, .signup-copy > p { margin-inline: auto; }
  .offer-points { justify-content: center; }
  .offer-points div { justify-content: center; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .promo-inner { min-height: 49px; flex-direction: column; gap: 0; padding: 7px 0; line-height: 1.3; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand strong { font-size: 16px; }
  .hero-grid { min-height: auto; padding-top: 52px; padding-bottom: 65px; }
  .hero h1 { font-size: 43px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-list { flex-direction: column; align-items: center; }
  .route-card { padding: 22px; }
  .route-top { align-items: flex-start; }
  .mini-cards { grid-template-columns: 1fr; }
  .mini-cards article { display: grid; grid-template-columns: 38px 1fr; text-align: left; align-items: center; column-gap: 10px; }
  .mini-icon { grid-row: 1 / 3; margin: 0; }
  .offer-card { align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div, .stats-grid div:nth-child(3) { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stats-grid div:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .india-visual { min-height: 450px; }
  .map-shape { width: 230px; }
  .india-visual::before { width: 310px; height: 310px; }
  .india-visual::after { width: 230px; height: 230px; }
  .note-one { left: 8px; top: 88px; }
  .note-two { right: 8px; bottom: 55px; }
  .check-grid { grid-template-columns: 1fr; }
  .country-panel { padding: 29px 19px; }
  .globe { width: 210px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { padding: 0 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .signup-form { padding: 23px 18px; }
  .final-cta-inner { align-items: stretch; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 33px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* Bilingual language controls */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f9f7;
}
.lang-btn {
  min-width: 59px;
  min-height: 32px;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #536863;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.lang-btn:hover { color: var(--green); }
.lang-btn.active {
  background: var(--green);
  color: white;
  box-shadow: 0 5px 14px rgba(11, 95, 86, .17);
}
html[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Hind Siliguri", "Nirmala UI", Inter, ui-sans-serif, system-ui, sans-serif;
}
html[lang="bn"] .hero h1,
html[lang="bn"] .section-heading h2,
html[lang="bn"] .split-copy h2,
html[lang="bn"] .signup-copy h2,
html[lang="bn"] .final-cta h2 {
  line-height: 1.2;
  letter-spacing: -.025em;
}
html[lang="bn"] .eyebrow {
  letter-spacing: .07em;
}
html[lang="bn"] .hero-text,
html[lang="bn"] .section-heading > p:last-child,
html[lang="bn"] .lead {
  line-height: 1.85;
}
html[lang="bn"] .main-nav { font-size: 13px; }

@media (max-width: 820px) {
  .main-nav .language-switcher {
    width: 100%;
    justify-content: center;
    margin: 7px 0 6px;
  }
  .lang-btn { flex: 1; }
}
