:root {
  --ink: #071724;
  --ink-2: #13283a;
  --text: #213549;
  --muted: #64758a;
  --line: #dce6ee;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --mist: #eaf2f6;
  --green: #17d59a;
  --green-dark: #069676;
  --cyan: #6bdde3;
  --gold: #f1b84b;
  --rose: #be3156;
  --shadow: 0 20px 54px rgba(7, 23, 36, 0.14);
  --shadow-dark: 0 30px 80px rgba(7, 23, 36, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.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;
}

.container {
  width: calc(100vw - 32px);
  max-width: 1180px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(220, 230, 238, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--green);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 820;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 11px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(23, 213, 154, 0.12);
  color: var(--green-dark);
  outline: none;
}

.site-nav .nav-login {
  background: var(--ink);
  color: var(--paper);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(23, 213, 154, 0.2), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(241, 184, 75, 0.16), transparent 26%),
    linear-gradient(135deg, #071724 0%, #0d2434 58%, #111f25 100%);
  color: var(--paper);
  isolation: isolate;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
  animation: patternMove 22s linear infinite;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 38px;
  align-items: start;
  padding: 70px 0 64px;
}

.hero-story {
  min-width: 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--green);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5.2vw, 4.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.footer-layout div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 880;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button.primary {
  background: var(--green-dark);
  color: var(--paper);
  box-shadow: 0 16px 32px rgba(6, 150, 118, 0.26);
}

.button.primary:hover:not(:disabled) {
  background: #047a62;
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.button.outline-compact {
  min-height: 44px;
  border-color: var(--line);
  background: var(--paper);
  color: var(--green-dark);
  padding: 10px 13px;
}

.button.outline-compact:hover:not(:disabled) {
  border-color: var(--green-dark);
  background: rgba(23, 213, 154, 0.12);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.full-width {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-metrics button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  padding: 14px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-metrics button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 12%, rgba(255, 255, 255, 0.14) 46%, transparent 78%);
  content: "";
  transform: translateX(-110%);
  animation: shine 4.8s ease-in-out infinite;
}

.hero-metrics button:hover,
.hero-metrics button:focus-visible {
  border-color: rgba(23, 213, 154, 0.48);
  background: rgba(23, 213, 154, 0.12);
  outline: none;
  transform: translateY(-4px);
}

.hero-metrics strong,
.hero-metrics span,
.hero-metrics small {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-metrics small {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-metrics strong {
  margin-top: 8px;
  font-size: 1.04rem;
  line-height: 1.15;
}

.hero-metrics span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 820;
}

.advisor-scene {
  position: relative;
  min-height: 280px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.advisor-scene img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.04);
  animation: imageDrift 16s ease-in-out infinite alternate;
}

.scene-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 23, 36, 0.78);
  padding: 12px 14px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.scene-note span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.scene-note-one {
  left: 18px;
  bottom: 18px;
}

.scene-note-two {
  right: 18px;
  top: 18px;
}

.lead-panel {
  position: sticky;
  top: 86px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-dark);
}

.lead-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold), var(--green));
  background-size: 260% 100%;
  content: "";
  animation: accentRun 7s linear infinite;
}

.lead-panel-head {
  padding: 26px 24px 10px;
}

.lead-panel h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.18;
}

.lead-panel-head p:not(.kicker) {
  margin: 8px 0 0;
  color: var(--muted);
}

.application-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 24px 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: center;
}

.application-steps span {
  border-radius: 999px;
  background: var(--soft);
  padding: 8px 6px;
}

.application-steps .active {
  background: var(--ink);
  color: var(--paper);
}

.enquiry-form {
  padding: 0 24px 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 820;
}

input,
select,
textarea {
  min-height: 44px;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(23, 213, 154, 0.14);
  outline: none;
}

.address-preview,
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.address-preview strong,
.form-note strong {
  color: var(--ink);
}

.form-note.error {
  color: var(--rose);
}

.otp-panel {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(23, 213, 154, 0.28);
  border-radius: 8px;
  background: rgba(23, 213, 154, 0.08);
  padding: 14px;
}

.otp-panel[hidden] {
  display: none;
}

.otp-panel-copy strong,
.otp-panel-copy span {
  display: block;
}

.otp-panel-copy strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.otp-panel-copy span,
.otp-message {
  color: var(--muted);
  font-size: 0.82rem;
}

.otp-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.otp-message {
  margin: 0;
}

.otp-message.error {
  color: var(--rose);
}

.otp-message.success {
  color: var(--green-dark);
}

.optional-details {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.optional-details summary {
  cursor: pointer;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 850;
}

.optional-grid {
  margin-top: 12px;
}

.full-field {
  grid-column: 1 / -1;
}

.consent-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 14px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.consent-line input {
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.product-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 12px 0;
  animation: tickerMove 26s linear infinite;
}

.strip-track button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--text);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 850;
}

.strip-track button:hover,
.strip-track button:focus-visible {
  border-color: rgba(23, 213, 154, 0.44);
  background: rgba(23, 213, 154, 0.12);
  outline: none;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 770px;
  margin-bottom: 34px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p:not(.kicker) {
  color: var(--muted);
}

.product-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.process-step,
.calculator-panel,
.documents-panel,
.faq-grid details,
.terms-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(7, 23, 36, 0.04);
}

.product-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 24px 24px 74px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(23, 213, 154, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-card h3,
.process-step h3 {
  margin: 18px 0 8px;
  font-size: 1.14rem;
}

.product-card p,
.process-step p,
.contact-card p,
.faq-grid p {
  color: var(--muted);
}

.product-card button {
  position: absolute;
  bottom: 22px;
  left: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-dark);
  padding: 10px 13px;
  font-size: 0.83rem;
  font-weight: 850;
}

.product-card button:hover {
  border-color: var(--green-dark);
  background: rgba(23, 213, 154, 0.12);
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 52px 52px;
  color: var(--paper);
}

.process-section .section-head p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.process-road {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-road::before {
  position: absolute;
  top: 42px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
  content: "";
  transform-origin: left;
  animation: roadDraw 1.2s ease both;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 216px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  padding: 22px;
  backdrop-filter: blur(14px);
}

.process-step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.calculator-layout,
.documents-layout,
.contact-layout,
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 38px;
  align-items: start;
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.72fr);
  gap: 22px;
  padding: 24px;
}

.emi-tool {
  display: grid;
  gap: 14px;
}

.emi-result-panel {
  display: grid;
  align-content: center;
  gap: 18px;
}

.emi-ring {
  position: relative;
  display: grid;
  width: 178px;
  height: 178px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  overflow: hidden;
  border-radius: 50%;
  background: conic-gradient(var(--green-dark) 0deg, var(--gold) 116deg, var(--soft) 116deg 360deg);
  box-shadow: var(--shadow);
  text-align: center;
}

.emi-ring::before {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(220, 230, 238, 0.82);
  content: "";
}

.emi-ring span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 106px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.emi-ring strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 112px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.12;
  text-align: center;
}

.emi-result {
  margin: 0;
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  padding: 14px;
}

.documents-panel {
  padding: 24px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  padding: 10px 13px;
  font-weight: 850;
}

.tab-button.active {
  border-color: var(--green-dark);
  background: rgba(23, 213, 154, 0.14);
  color: var(--green-dark);
}

.document-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.trust-section {
  background: var(--paper);
}

.trust-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 248, 0.96)),
    var(--soft);
  padding: 18px;
  box-shadow: var(--shadow);
}

.presence-map {
  position: relative;
  min-height: 430px;
  cursor: zoom-in;
  outline: none;
}

.presence-map:focus-visible {
  box-shadow: 0 0 0 4px rgba(23, 213, 154, 0.22);
}

.presence-map-loading {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--muted);
  font-weight: 850;
}

.region-map-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rajasthan-map-frame {
  position: relative;
  width: min(94%, 460px);
  aspect-ratio: 308.59783 / 258.52682;
}

.region-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(7, 23, 36, 0.1));
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(23, 213, 154, 0.14);
  color: var(--green);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-badge::before,
.presence-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 0 rgba(23, 213, 154, 0.62);
  animation: livePulse 1.8s ease-out infinite;
}

.presence-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.presence-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.presence-dot {
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 255, 255, 0.94);
}

.presence-label {
  position: absolute;
  top: 50%;
  max-width: 120px;
  border: 1px solid rgba(220, 230, 238, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(-50%);
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(7, 23, 36, 0.1);
}

.presence-marker.label-right .presence-label {
  left: 18px;
}

.presence-marker.label-left .presence-label {
  right: 18px;
}

.presence-map-caption {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  align-items: center;
  border-top: 1px solid rgba(220, 230, 238, 0.86);
  padding-top: 12px;
}

.presence-map-caption strong,
.presence-map-caption p {
  margin: 0;
}

.presence-map-caption strong {
  color: var(--ink);
  font-size: 1rem;
}

.map-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(4, 13, 21, 0.78);
}

.map-lightbox[hidden] {
  display: none;
}

.map-lightbox-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(220, 230, 238, 0.86);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 32px 70px rgba(4, 13, 21, 0.34);
}

.map-lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
}

.map-lightbox-topbar .kicker,
.map-lightbox-topbar h2 {
  margin: 0;
}

.map-lightbox-topbar h2 {
  margin-top: 4px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.map-lightbox-close {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 16px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.map-lightbox-map {
  position: relative;
  min-height: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(23, 213, 154, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 248, 0.96));
}

.map-lightbox-map .rajasthan-map-frame {
  width: min(94vw, calc((100vh - 150px) * 1.1937), 1100px);
}

  .map-lightbox-map .presence-dot {
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .map-lightbox-map .presence-label {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

body.map-lightbox-open {
  overflow: hidden;
}

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

.faq-grid details {
  padding: 20px;
}

.faq-grid details[open] {
  border-color: rgba(23, 213, 154, 0.34);
  box-shadow: var(--shadow);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 880;
}

.faq-grid p {
  margin: 12px 0 0;
}

.consent-line a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-section {
  background:
    linear-gradient(180deg, rgba(234, 242, 246, 0.76), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.terms-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.terms-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.terms-highlights article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 14px;
}

.terms-highlights strong,
.terms-highlights span {
  display: block;
}

.terms-highlights strong {
  font-size: 0.92rem;
}

.terms-highlights span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
}

.terms-list {
  display: grid;
  gap: 10px;
}

.terms-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px 16px;
}

.terms-list details[open] {
  border-color: rgba(23, 213, 154, 0.34);
  box-shadow: 0 12px 26px rgba(7, 23, 36, 0.06);
}

.terms-list summary {
  cursor: pointer;
  font-weight: 880;
}

.terms-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-nav a[aria-current="page"] {
  background: rgba(23, 213, 154, 0.12);
  color: var(--green-dark);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 20%, rgba(23, 213, 154, 0.18), transparent 28%),
    linear-gradient(135deg, #071724 0%, #0d2434 66%, #13283a 100%);
  color: var(--paper);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 34px;
  align-items: end;
  padding: 64px 0;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.legal-hero p:not(.kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.legal-summary-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.legal-summary-card span,
.legal-summary-card strong {
  display: block;
}

.legal-summary-card span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-summary-card strong {
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.legal-summary-card p {
  font-size: 0.9rem;
}

.legal-body {
  background:
    linear-gradient(180deg, rgba(243, 247, 250, 0.92), rgba(255, 255, 255, 1) 42%),
    var(--paper);
  padding: 38px 0 86px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(7, 23, 36, 0.08);
}

.legal-sidebar strong {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.86rem;
}

.legal-sidebar a {
  border-radius: 8px;
  color: var(--text);
  padding: 8px 9px;
  font-size: 0.82rem;
  font-weight: 820;
}

.legal-sidebar a:hover,
.legal-sidebar a:focus-visible {
  background: rgba(23, 213, 154, 0.12);
  color: var(--green-dark);
  outline: none;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(7, 23, 36, 0.04);
}

.legal-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
  content: "";
}

.legal-section-index {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.42rem, 2.6vw, 2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-section p {
  margin: 12px 0 0;
  color: var(--text);
}

.legal-callout {
  border: 1px solid rgba(23, 213, 154, 0.34);
  border-radius: 8px;
  background: rgba(23, 213, 154, 0.11);
  color: var(--ink);
  padding: 15px 16px;
  font-weight: 850;
}

.legal-callout.muted {
  border-color: rgba(241, 184, 75, 0.5);
  background: rgba(241, 184, 75, 0.12);
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.legal-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.legal-contact-grid a,
.legal-contact-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 14px;
}

.legal-contact-grid span,
.legal-contact-grid strong {
  display: block;
}

.legal-contact-grid span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-contact-grid strong {
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-section {
  padding: 88px 0;
  background: var(--paper);
}

.contact-card {
  padding: 24px;
}

.contact-card strong {
  display: block;
  font-size: 1.22rem;
}

.contact-points {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  padding: 9px 11px;
  font-size: 0.84rem;
  font-weight: 820;
}

.contact-actions {
  margin: 18px 0;
}

.contact-actions a {
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-weight: 850;
}

.contact-card small {
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: none;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--paper);
  padding: 12px 18px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

.footer-layout p {
  margin: 0;
  color: var(--muted);
}

.footer-layout a {
  color: var(--text);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible,
.hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes patternMove {
  to {
    transform: translate3d(-54px, -54px, 0);
  }
}

@keyframes shine {
  0%,
  58% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes accentRun {
  to {
    background-position: 260% 0;
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes roadDraw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 213, 154, 0.58);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(23, 213, 154, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 213, 154, 0);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .calculator-layout,
  .documents-layout,
  .contact-layout,
  .trust-layout,
  .terms-layout,
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-panel {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .product-grid,
  .process-road {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-road::before {
    display: none;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-sidebar strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    display: block;
  }

  .site-nav .nav-login {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100vw - 28px);
  }

  .header-inner {
    min-height: 66px;
  }

  .hero-layout {
    gap: 26px;
    padding: 46px 0 46px;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: 2.12rem;
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 1rem;
  }

  .hero-actions,
  .footer-layout,
  .footer-layout div {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }

  .form-grid,
  .application-steps,
  .product-grid,
  .process-road,
  .faq-grid,
  .calculator-panel,
  .otp-actions,
  .legal-list.two-column,
  .legal-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-metrics {
    display: none;
  }

  .hero-metrics strong {
    font-size: 1rem;
  }

  .hero-metrics span {
    font-size: 0.72rem;
  }

  .advisor-scene,
  .advisor-scene img {
    display: none;
  }

  .scene-note {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .lead-panel-head,
  .enquiry-form,
  .application-steps {
    padding-inline: 16px;
  }

  .section,
  .process-section,
  .contact-section {
    padding-block: 58px;
  }

  .legal-hero-grid {
    padding: 42px 0;
  }

  .legal-hero h1 {
    max-width: 12ch;
    font-size: 2.18rem;
  }

  .legal-body {
    padding: 24px 0 58px;
  }

  .legal-sidebar {
    display: none;
  }

  .legal-section {
    padding: 22px 18px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .product-card {
    min-height: 238px;
  }

  .terms-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .emi-ring {
    width: 134px;
    height: 134px;
    justify-self: center;
  }

  .emi-ring::before {
    inset: 14px;
  }

  .emi-ring span {
    max-width: 82px;
    font-size: 0.64rem;
  }

  .emi-ring strong {
    max-width: 86px;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .emi-result-panel {
    justify-items: center;
  }

  .emi-result {
    width: 100%;
  }

  .trust-map {
    min-height: auto;
    padding: 14px;
  }

  .presence-map {
    min-height: 282px;
  }

  .rajasthan-map-frame {
    width: min(94%, 320px);
  }

  .presence-label {
    max-width: 96px;
    font-size: 0.58rem;
    padding: 3px 6px;
  }

  .presence-map-caption {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-lightbox {
    padding: 10px;
  }

  .map-lightbox-topbar {
    align-items: flex-start;
    padding: 12px;
  }

  .map-lightbox-close {
    padding: 9px 12px;
  }

  .map-lightbox-map .rajasthan-map-frame {
    width: min(94vw, calc((100vh - 132px) * 1.1937));
  }

  .floating-cta {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
