:root {
  --blue-900: #00486d;
  --blue-800: #006599;
  --blue-700: #0070af;
  --blue-600: #0089cf;
  --yellow: #ffcc00;
  --yellow-dark: #e0a800;
  --text: #212529;
  --muted: #6c757d;
  --border: #d7dee7;
  --bg-soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(0, 101, 153, 0.18);
  --radius: 12px;
  --font: "Montserrat", "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #e8eef5;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: auto;
  height: 52px;
  max-width: min(180px, 42vw);
}

.toll-free {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--blue-800);
  color: var(--white);
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.phone-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, #00486d 0%, #006599 55%, #0070af 100%);
  min-height: calc(100vh - 70px);
  display: block;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

@media (min-width: 769px) {
  .hero-bg {
    width: auto;
    min-width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: calc(100vh - 70px);
  padding: 2rem 4% 2rem 1.5rem;
  pointer-events: none;
}

.hero-content .lead-form {
  pointer-events: auto;
}

.lead-form {
  width: min(100%, 380px);
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.1rem;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0 0 1rem;
  color: var(--blue-800);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
}

.field {
  display: block;
  margin-bottom: 0.75rem;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(18, 90, 158, 0.15);
}

.phone-field {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.phone-field:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(18, 90, 158, 0.15);
}

.country-code {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: #f7f9fc;
  border-right: 1px solid var(--border);
  font-size: 0.9rem;
  white-space: nowrap;
}

.phone-field input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.phone-field input:focus {
  box-shadow: none;
}

.consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.85rem 0 1rem;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.45;
}

.consent input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.btn-submit {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-submit:hover {
  background: var(--blue-700);
}

.btn-submit:active {
  transform: translateY(1px);
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.form-note,
.form-success {
  margin: 0.75rem 0 0;
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
}

.form-error {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: #b00020;
  text-align: center;
  font-weight: 600;
}

.form-success {
  color: #0f7a45;
  font-weight: 600;
}

/* Contact popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 20, 45, 0.65);
  backdrop-filter: blur(4px);
}

.popup-overlay[hidden] {
  display: none;
}

.popup-dialog {
  position: relative;
  width: min(100%, 400px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-form {
  width: 100%;
  max-width: none;
}

.popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: var(--blue-700);
}

/* Sticky CTAs */
.sticky-cta {
  position: fixed;
  z-index: 90;
  display: flex;
  gap: 0;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: var(--white);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.sticky-btn:hover {
  filter: brightness(1.08);
}

.sticky-eligibility {
  background: var(--blue-800);
}

.sticky-whatsapp {
  background: #25d366;
}

@media (min-width: 769px) {
  .sticky-cta {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-direction: column;
    width: 2.75rem;
  }

  .sticky-btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 1.15rem 0.55rem;
    letter-spacing: 0.04em;
    border-radius: 0;
    line-height: 1.2;
    min-height: 9rem;
  }

  .sticky-eligibility {
    border-radius: 8px 0 0 0;
  }

  .sticky-whatsapp {
    border-radius: 0 0 0 8px;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 72, 109, 0.18);
  }

  .sticky-btn {
    flex: 1;
    padding: 0.9rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 0;
    min-height: 3rem;
  }

  body {
    padding-bottom: 3.25rem;
  }
}

/* Shared section styles */
section {
  padding: 4rem 1.25rem;
}

section > h2,
.stats-section h2,
.process-copy h2,
.products-section h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--blue-800);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.3;
  font-weight: 700;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.75rem auto 0;
  background: var(--blue-800);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 650;
  transition: background 0.2s ease, transform 0.15s ease;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

/* Stats */
.stats-section {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.eyebrow {
  color: var(--blue-600);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.stats-grid {
  max-width: 980px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid #e4ebf3;
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 101, 153, 0.06);
}

.stat-card strong {
  display: block;
  color: var(--blue-800);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Process */
.process-section {
  background: var(--white);
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.process-copy {
  text-align: left;
}

.process-copy h2 {
  text-align: left;
  margin: 0 0 0.85rem;
}

.process-copy p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.process-copy img {
  border-radius: var(--radius);
  max-width: 420px;
}

.process-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Features */
.features-section {
  background: var(--bg-soft);
  text-align: center;
}

.features-grid {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.features-grid article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  border: 1px solid #e5ecf4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 101, 153, 0.1);
}

.features-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 0.9rem;
}

.features-grid h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--blue-800);
}

/* EMI Calculator */
.emi-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 55%, #eef3f9 100%);
  text-align: center;
}

.emi-intro {
  max-width: 640px;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.emi-calculator {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
  text-align: left;
}

.emi-inputs,
.emi-results {
  background: var(--white);
  border: 1px solid #e1e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 101, 153, 0.07);
  min-width: 0;
}

.emi-field + .emi-field {
  margin-top: 1.35rem;
}

.emi-field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.emi-field label {
  color: var(--blue-800);
  font-weight: 650;
  font-size: 0.95rem;
}

.emi-value-display {
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.emi-field input[type="range"] {
  width: 100%;
  accent-color: var(--blue-800);
  margin: 0.15rem 0 0.55rem;
  cursor: pointer;
}

.emi-number {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  color: var(--text);
  background: #fafbfd;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emi-number:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(18, 90, 158, 0.15);
  background: var(--white);
}

.tenure-toggle {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  padding: 0.2rem;
  background: var(--bg-soft);
  border-radius: 999px;
  border: 1px solid #e1e8f0;
}

.tenure-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tenure-btn.active {
  background: var(--blue-800);
  color: var(--white);
}

.emi-results {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #00486d 0%, #006599 60%, #0070af 100%);
  color: var(--white);
  border-color: transparent;
}

.emi-result-primary {
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.emi-result-label {
  display: block;
  font-size: 0.82rem;
  opacity: 0.82;
  margin-bottom: 0.3rem;
}

.emi-result-primary strong {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.emi-result-grid {
  display: grid;
  gap: 1rem;
}

.emi-result-grid strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

.emi-cta {
  width: 100%;
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  background: var(--yellow);
  color: var(--blue-900);
}

.emi-cta:hover {
  background: var(--yellow-dark);
}

.emi-disclaimer {
  margin: 0.9rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  opacity: 0.75;
}

/* Products */
.products-section {
  text-align: center;
  background: linear-gradient(180deg, #006599, #00486d);
  color: var(--white);
}

.products-section h2 {
  color: var(--white);
}

.products-grid {
  max-width: 980px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 10px;
  padding: 1.15rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.product-card:hover {
  background: rgba(255, 204, 0, 0.15);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.products-section .btn-primary {
  background: var(--yellow);
  color: var(--blue-900);
}

.products-section .btn-primary:hover {
  background: var(--yellow-dark);
}

/* Documents */
.docs-section {
  background: var(--white);
  text-align: center;
}

.docs-grid {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

.doc-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid #e5ecf4;
  min-height: 100%;
}

.doc-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}

.doc-card h3 {
  margin: 0 0 0.65rem;
  color: var(--blue-800);
  font-size: 1.05rem;
}

.doc-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.doc-card li + li {
  margin-top: 0.4rem;
}

/* FAQ */
.faq-section {
  background: var(--bg-soft);
}

.faq-list {
  max-width: 900px;
  margin: 1.75rem auto 0;
}

.faq-list details {
  background: var(--white);
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 650;
  color: var(--blue-800);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue-600);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list a {
  color: var(--blue-600);
  text-decoration: underline;
}

/* Contact CTA */
.cta-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #e8eef6 100%);
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.cta-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e1e8f0;
  border-radius: 16px;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 101, 153, 0.08);
}

.cta-card h2 {
  margin: 0 0 0.65rem;
  color: var(--blue-800);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.cta-card p {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  color: var(--muted);
}

.cta-card .btn-primary {
  margin-top: 0;
}

/* Thank you page */
.thank-you-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #e8eef6 100%);
}

.thank-you-card {
  width: min(100%, 520px);
  background: var(--white);
  border: 1px solid #e1e8f0;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 101, 153, 0.1);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #e8f7ef;
  color: #0f7a45;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card h1 {
  margin: 0 0 0.75rem;
  color: var(--blue-800);
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.thank-you-card p {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  max-width: 28rem;
}

.thank-you-card .btn-primary {
  margin-top: 0;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem 1.25rem 2.5rem;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.social-icon:hover {
  background: var(--yellow);
  color: var(--blue-900);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover {
  color: var(--yellow);
}

.address {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid,
  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emi-calculator {
    grid-template-columns: 1fr;
  }

  .docs-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 1.5rem 3% 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.45rem 0.75rem;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .brand-logo img {
    height: 40px;
    max-width: min(140px, 38vw);
  }

  .toll-free {
    font-size: 0.72rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .hero-banner {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    background: linear-gradient(135deg, #00486d 0%, #006599 55%, #0070af 100%);
  }

  .hero-banner picture,
  .hero-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center top;
  }

  .hero-content {
    position: relative;
    margin-top: 0;
    min-height: 0;
    padding: 0.75rem 0.75rem 1.1rem;
    background: #f5f5f5;
    align-items: stretch;
    justify-content: flex-start;
    pointer-events: auto;
  }

  .lead-form {
    width: 100%;
    max-width: none;
    border-radius: 8px;
    border: 1px solid #d0d7e0;
    box-shadow: 0 2px 12px rgba(0, 101, 153, 0.08);
    padding: 1rem 0.85rem 0.9rem;
  }

  .lead-form h2 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--blue-800);
  }

  .field {
    margin-bottom: 0.65rem;
  }

  .field input,
  .field select {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
  }

  .consent {
    font-size: 0.62rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  section > h2,
  .stats-section h2,
  .process-copy h2,
  .products-section h2 {
    font-size: 1.25rem;
  }

  .stats-grid,
  .features-grid,
  .products-grid,
  .docs-grid,
  .process-grid,
  .emi-calculator {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .emi-inputs,
  .emi-results {
    padding: 1.15rem 1rem;
    border-radius: 12px;
  }

  .emi-field-head {
    flex-wrap: wrap;
  }

  .emi-result-primary strong {
    font-size: 1.65rem;
  }

  .emi-result-grid {
    grid-template-columns: 1fr;
  }

  .stat-card strong {
    font-size: 1.3rem;
  }

  .process-copy {
    text-align: center;
  }

  .process-copy h2 {
    text-align: center;
  }

  .process-copy img {
    margin: 0 auto;
    max-width: 100%;
  }

  .features-grid article {
    padding: 1.15rem 0.85rem;
  }

  .features-grid img {
    width: 64px;
    height: 64px;
  }

  .doc-card {
    padding: 1rem;
  }

  .faq-list summary {
    padding: 0.85rem 0.95rem;
    font-size: 0.92rem;
  }

  .faq-list p {
    font-size: 0.88rem;
    padding: 0 0.95rem 0.95rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .address {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .toll-free {
    font-size: 0.65rem;
    padding: 0.45rem 0.55rem;
  }
}
