html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.page-container {
  width: min(100% - 7rem, 1760px);
  margin-inline: auto;
}

img {
  max-width: 100%;
}

.hero-bg {
  position: relative;
  overflow: hidden;
  min-height: clamp(37rem, 78vh, 52rem);
  background: transparent;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .7s ease, opacity .7s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(245, 250, 255, .95) 0%, rgba(245, 250, 255, .82) 30%, rgba(245, 250, 255, .22) 58%, rgba(245, 250, 255, .02) 100%);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.hero-slide.previous {
  opacity: 0;
  transform: translateX(-100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero-content > div {
  max-width: 48rem;
  border-radius: 1rem;
  padding: 1rem;
}

.hero-content .hero-heading {
  color: #052e68;
  font-size: clamp(2.7rem, 4.4vw, 4.45rem);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -.01em;
}

.hero-content .hero-heading--compact {
  font-size: clamp(3.2rem, 5.15vw, 5.2rem);
}

.hero-heading__line {
  display: block;
}

.hero-heading__line--nowrap {
  white-space: nowrap;
}


.hero-content p {
  margin-top: 1.4rem;
  max-width: 40rem;
  color: #1e293b;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-primary-btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border-radius: .75rem;
  padding: 1rem 2rem;
  font-weight: 900;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.hero-primary-btn {
  background: #0754c5;
  color: white;
}

.hero-secondary-btn {
  border: 1px solid #0754c5;
  background: white;
  color: #0754c5;
}

.hero-primary-btn:hover,
.hero-secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-primary-btn:hover {
  background: #052e68;
}

.hero-secondary-btn:hover {
  border-color: #24a86b;
  color: #24a86b;
}

.hero-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(7rem, 1fr));
  gap: 1rem;
  max-width: 45rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 84, 197, .25);
  background: rgba(255, 255, 255, .72);
  color: #0754c5;
  transform: translateY(-50%);
  transition: background-color .2s ease, color .2s ease;
}

.hero-arrow:hover {
  background: #0754c5;
  color: white;
}

.hero-arrow svg {
  height: 1.35rem;
  width: 1.35rem;
}

.hero-prev {
  left: 1.25rem;
}

.hero-next {
  right: 1.25rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 5;
  display: flex;
  gap: .55rem;
  transform: translateX(-50%);
}

.hero-dots button {
  height: .65rem;
  width: .65rem;
  border-radius: 999px;
  background: rgba(7, 84, 197, .28);
  transition: width .25s ease, background-color .25s ease;
}

.hero-dots button.active {
  width: 2rem;
  background: #0754c5;
}


.feature-chip {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  align-items: center;
  gap: .55rem;
  border-radius: .65rem;
  border: 1px solid rgba(191, 219, 254, .9);
  background: rgba(255, 255, 255, .95);
  min-height: 4.35rem;
  padding: .55rem .75rem;
  text-align: left;
}

.feature-chip svg,
.why-item svg,
.doc-card svg {
  color: #0754c5;
}

.feature-chip svg {
  height: 2.1rem;
  width: 2.1rem;
  border-radius: 999px;
  background: #eef6ff;
  padding: .42rem;
}

.feature-chip b,
.feature-chip span span {
  display: block;
}

.feature-chip b {
  font-size: .78rem;
  color: #052e68;
}

.feature-chip span {
  font-size: .68rem;
  color: #64748b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  display: grid;
  grid-template-columns: 3.5rem auto;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border-right: 1px solid #d9ebff;
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid svg {
  grid-row: span 2;
  height: 2.9rem;
  width: 2.9rem;
  color: #0754c5;
}

.stats-grid strong {
  font-size: 1.6rem;
  line-height: 1;
  color: #0754c5;
}

.stats-grid span {
  color: #64748b;
  font-size: .85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 1000;
  color: #052e68;
}

.section-subtitle {
  margin-top: .55rem;
  color: #64748b;
  font-weight: 600;
}

.service-card {
  min-height: 14rem;
  border: 1px solid #d9ebff;
  border-radius: .85rem;
  padding: 1.5rem 1rem;
  transition: transform .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 1.15rem;
  height: 7rem;
  width: 7rem;
}

.service-icon img {
  height: 6.5rem;
  width: 6.5rem;
  object-fit: contain;
}

.service-card h3,
.why-item h3 {
  font-weight: 900;
  color: #052e68;
}

.service-card p {
  margin: .65rem auto 1rem;
  max-width: 11rem;
  min-height: 4.3rem;
  font-size: .9rem;
  line-height: 1.55;
  color: #64748b;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: .35rem;
  min-height: 2.35rem;
  border-radius: .5rem;
  background: #0758dc;
  padding: .65rem 1rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 88, 220, .18);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card a:hover {
  background: #0744ad;
  box-shadow: 0 10px 24px rgba(7, 88, 220, .24);
  transform: translateY(-1px);
}

.service-card a svg {
  width: 1rem;
  height: 1rem;
}

.eligibility-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 17rem 1fr;
  align-items: center;
  gap: 1.5rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 102% 8%, rgba(255, 255, 255, .18), transparent 13rem),
    radial-gradient(circle at 0% 100%, rgba(36, 168, 107, .18), transparent 13rem),
    linear-gradient(115deg, #063ca8 0%, #075ee0 52%, #0647bd 100%);
  padding: 1.15rem 1.4rem;
  color: white;
}

.eligibility-strip::after {
  content: "";
  position: absolute;
  inset: auto -4.5rem -6rem auto;
  height: 14rem;
  width: 14rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.eligibility-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-left: .6rem;
}

.eligibility-title h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
  font-weight: 900;
}

.eligibility-title svg {
  height: 2.65rem;
  width: 2.65rem;
  color: rgba(255, 255, 255, .62);
  transform: translateY(.6rem);
}

.eligibility-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr auto;
  align-items: end;
  gap: .95rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .13);
  padding: .9rem;
  backdrop-filter: blur(8px);
}

.eligibility-form label {
  display: grid;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 800;
  color: #d9ebff;
}

.eligibility-form select,
.eligibility-form button {
  min-height: 3.1rem;
  width: 100%;
  border-radius: .65rem;
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 0 1rem;
  font-weight: 900;
}

.eligibility-form select {
  background: white;
  color: #334155;
}

.eligibility-form button {
  min-width: 11.5rem;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  color: #0647a8;
  transition: transform .2s ease;
}

.eligibility-form button:hover {
  transform: translateY(-1px);
}

.eligibility-message {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .86rem;
  font-weight: 800;
  color: white;
}

.eligibility-note {
  grid-column: 1 / -1;
  margin-top: -.35rem;
  color: #d9ebff;
  text-align: center;
  font-size: .86rem;
  font-weight: 700;
}

.section-band {
  margin-top: 1rem;
  padding-block: 1.35rem;
}

.section-heading {
  max-width: 46rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.why-panel {
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: center;
  gap: 2rem;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 8% 50%, rgba(18, 104, 221, .1), transparent 18rem),
    linear-gradient(90deg, #f5faff, #ffffff);
  padding: 1.25rem 2rem;
}

.why-visual {
  display: grid;
  place-items: center;
}

.why-visual img {
  width: min(100%, 24rem);
  object-fit: contain;
}

.why-content .eyebrow {
  color: #052e68;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.why-content h2 {
  margin-top: .25rem;
  color: #052e68;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 1.08;
  font-weight: 900;
}

.why-content > p {
  margin-top: .4rem;
  color: #64748b;
  font-weight: 700;
}

.why-list {
  margin-top: .9rem;
  display: grid;
  gap: .7rem;
}

.why-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: .85rem;
}

.why-item svg {
  height: 2.35rem;
  width: 2.35rem;
  border-radius: 999px;
  border: 1px solid #d9ebff;
  background: #eef6ff;
  color: #0754c5;
  padding: .55rem;
}

.why-item h3 {
  font-size: 1rem;
}

.why-item p {
  margin-top: .15rem;
  color: #64748b;
  font-size: .92rem;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 20rem;
  align-items: center;
  gap: 2rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 94% 40%, rgba(18, 104, 221, .08), transparent 15rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding-inline: 1.5rem;
}

.about-photo {
  display: grid;
  place-items: center;
}

.about-photo img {
  aspect-ratio: 4 / 5;
  width: min(100%, 14rem);
  border-radius: 1rem;
  object-fit: cover;
}

.about-copy {
  display: grid;
  align-items: center;
}

.about-copy p {
  margin-top: .65rem;
  max-width: 48rem;
  color: #475569;
  font-size: .98rem;
  line-height: 1.55;
}

.about-stats {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 12rem));
  gap: .9rem;
  text-align: center;
}

.mini-stat {
  border: 1px solid #d9ebff;
  border-radius: .75rem;
  background: white;
  padding: .6rem .5rem;
  color: #64748b;
}

.mini-stat b {
  display: block;
  color: #0754c5;
  font-size: 1.05rem;
}

.process-wrap {
  text-align: center;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 104, 221, .08), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding-inline: 2rem;
}

.process-line {
  position: relative;
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 3.05rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #75aef8 12%, #24a86b 88%, transparent);
}

.process-line div {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .55rem;
  min-height: 12.5rem;
  border: 1px solid #d9ebff;
  border-radius: .9rem;
  background: white;
  padding: 1rem .85rem;
  font-size: .86rem;
  color: #64748b;
}

.process-line div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.25rem;
  top: 2.55rem;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: white;
  color: #0754c5;
  font-weight: 900;
}

.process-line small {
  color: #24a86b;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.process-line svg {
  position: relative;
  z-index: 1;
  height: 3.6rem;
  width: 3.6rem;
  border-radius: 999px;
  border: 1px solid #d9ebff;
  background: #eef6ff;
  color: #0754c5;
  padding: .85rem;
}

.process-line b {
  display: block;
  color: #052e68;
  font-size: 1rem;
}

.process-line span {
  max-width: 10rem;
  line-height: 1.45;
}

.emi-section {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 104, 221, .09), transparent 16rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 1rem;
}

.emi-form-panel {
  padding: .25rem;
}

.emi-form-panel .eyebrow {
  display: inline-flex;
  border-radius: 999px;
  background: #eef6ff;
  padding: .25rem .7rem;
  color: #0754c5;
  font-size: .78rem;
  font-weight: 900;
}

.emi-form-panel h2 {
  margin-top: .6rem;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 1;
  font-weight: 900;
  color: #052e68;
}

.emi-form-panel p {
  margin-top: .45rem;
  max-width: 48rem;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.45;
}

.emi-controls {
  margin-top: .9rem;
  display: grid;
  gap: .75rem;
}

.slider-control {
  display: grid;
  gap: .45rem;
}

.slider-head,
.slider-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slider-head span {
  color: #475569;
  font-size: .95rem;
  font-weight: 900;
}

.slider-head b {
  min-width: 7.75rem;
  border: 1px solid #bfdbfe;
  border-radius: .55rem;
  background: #f8fbff;
  padding: .38rem .65rem;
  color: #052e68;
  text-align: center;
  font-size: .95rem;
}

.slider-scale {
  color: #64748b;
  font-size: .82rem;
  font-weight: 800;
}

.slider-control input[type="range"] {
  width: 100%;
  height: .38rem;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #24a86b var(--fill, 50%), #d9ebff var(--fill, 50%));
  cursor: pointer;
  outline: none;
  transition: background .12s linear;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  height: 1.05rem;
  width: 1.05rem;
  border: 3px solid white;
  border-radius: 999px;
  background: #0754c5;
  cursor: grab;
  transition: transform .12s ease;
}

.slider-control input[type="range"]:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.12);
}

.slider-control input[type="range"]::-moz-range-thumb {
  height: 1.05rem;
  width: 1.05rem;
  border: 3px solid white;
  border-radius: 999px;
  background: #0754c5;
  cursor: grab;
  transition: transform .12s ease;
}

.slider-control input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
  transform: scale(1.12);
}

.emi-result {
  display: grid;
  align-content: center;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, .2), transparent 10rem),
    linear-gradient(160deg, #0647bd, #052e68);
  padding: 1rem;
  text-align: center;
  color: white;
}

.emi-result span,
.emi-result small {
  display: block;
}

.emi-result span {
  color: #d9ebff;
  font-weight: 800;
}

.emi-result strong {
  display: block;
  margin: .45rem 0 .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: white;
}

.emi-summary {
  display: grid;
  gap: .5rem;
  margin-bottom: .75rem;
}

.emi-summary small {
  border-radius: .75rem;
  background: rgba(255, 255, 255, .12);
  padding: .55rem;
  color: #d9ebff;
}

.emi-summary b {
  display: block;
  margin-top: .2rem;
  color: white;
  font-size: 1.05rem;
}

.emi-result button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  border-radius: .75rem;
  background: white;
  padding: .78rem;
  color: #0647a8;
  font-weight: 900;
  transition: transform .2s ease;
}

.emi-result button:hover {
  transform: translateY(-1px);
}

.emi-result button svg {
  height: 1.2rem;
  width: 1.2rem;
}

.docs-review-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-block: 1.5rem;
}

.documents-panel,
.review-panel {
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 1.5rem;
}

.documents-panel h2,
.review-panel h2 {
  color: #052e68;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 900;
}

.documents-panel > p {
  margin-top: .35rem;
  color: #64748b;
}

.documents-panel > small {
  display: block;
  margin-top: 1rem;
  color: #64748b;
}

.documents-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.doc-card {
  border: 1px solid #d9ebff;
  border-radius: .85rem;
  background: white;
  padding: 1rem .7rem;
  text-align: center;
}

.doc-card svg {
  margin: 0 auto .65rem;
  height: 2.25rem;
  width: 2.25rem;
}

.doc-card b,
.doc-card span {
  display: block;
}

.doc-card b {
  color: #052e68;
}

.doc-card span {
  margin-top: .3rem;
  font-size: .75rem;
  color: #64748b;
}

.review-card {
  margin-top: 1.25rem;
  min-height: 12.4rem;
  display: grid;
  align-content: center;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: white;
  padding: 1.5rem;
}

.review-quote {
  height: 2.8rem;
  width: 2.8rem;
  color: #0754c5;
}

.review-card > p {
  margin-top: .8rem;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}

.review-avatar {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 999px;
  background: #eef6ff;
  color: #0754c5;
  font-weight: 900;
}

.review-author b,
.review-author small {
  display: block;
}

.review-author b {
  color: #052e68;
}

.review-author small {
  margin-top: .15rem;
  color: #64748b;
}

.faq-item {
  position: relative;
  width: 100%;
  border: 1px solid #d9ebff;
  border-radius: .65rem;
  padding: .85rem 3rem .85rem 1rem;
  overflow: hidden;
  text-align: left;
  font-weight: 800;
  color: #052e68;
  transition: border-color .25s ease, background-color .25s ease;
}

.faq-item svg {
  position: absolute;
  right: 1rem;
  top: 1rem;
  height: 1.1rem;
  width: 1.1rem;
  transition: transform .3s ease;
}
.faq-item .faq-question-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-height: none;
  margin-top: 0;
  opacity: 1;
  overflow: visible;
  color: #052e68;
  font-weight: 950;
  line-height: 1.35;
  transform: none;
}

.faq-item .faq-question-text {
  display: block;
  max-height: none;
  margin-top: 0;
  opacity: 1;
  overflow: visible;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  transform: none;
}

.faq-item .faq-question-icon {
  position: static;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #eef6ff;
  color: #0754c5;
  padding: .52rem;
  transition: background .25s ease, color .25s ease;
}

.faq-item .faq-toggle-icon {
  position: absolute;
  right: 1rem;
  top: 1.1rem;
}

.faq-item span {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: .45rem;
  font-weight: 500;
  line-height: 1.6;
  color: #64748b;
  transform: translateY(-4px);
  transition: max-height .35s ease, opacity .25s ease, transform .35s ease;
}

.faq-item.open {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.faq-item.open span {
  max-height: 10rem;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-question-icon {
  transform: none;
}

footer h3 {
  margin-bottom: 1rem;
  font-weight: 900;
}

footer a,
footer p {
  display: block;
  margin-top: .55rem;
  color: #d9ebff;
  font-size: .9rem;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.social-links a {
  display: grid;
  place-items: center;
  height: 2.1rem;
  width: 2.1rem;
  margin-top: 0;
  border: 1px solid rgba(217, 235, 255, .35);
  border-radius: 999px;
  padding: 0;
  color: white;
  font-size: .95rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-links a:hover {
  border-color: white;
  background: white;
  color: #0754c5;
  transform: translateY(-2px);
}

footer svg {
  display: inline;
  height: 1rem;
  width: 1rem;
}

.gobright-link {
  display: inline;
  margin-top: 0;
  color: #ef4444;
  font-weight: 800;
}

.gobright-link:hover {
  color: #f87171;
}

.about-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 2rem;
  min-height: 32rem;
  margin-top: 1.5rem;
  border: 1px solid #d9ebff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  background:
    radial-gradient(circle at 85% 28%, rgba(18, 104, 221, .14), transparent 22rem),
    radial-gradient(circle at 0% 100%, rgba(36, 168, 107, .08), transparent 18rem),
    linear-gradient(135deg, #ffffff, #f5faff);
}

.about-banner {
  position: relative;
  min-height: clamp(32rem, 70vh, 46rem);
  overflow: hidden;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 250, 255, .95) 0%, rgba(245, 250, 255, .82) 30%, rgba(245, 250, 255, .22) 58%, rgba(245, 250, 255, .02) 100%);
  pointer-events: none;
}

.about-banner-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.about-banner-content > div {
  max-width: 50rem;
  border-radius: 1rem;
  padding: 1rem;
}

.about-banner h1 {
  margin-top: 1rem;
  color: #052e68;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.04;
  font-weight: 1000;
}

.about-banner h2 {
  margin-top: 1rem;
  color: #052e68;
  font-size: 1.2rem;
  font-weight: 900;
}

.about-banner p {
  margin-top: 1rem;
  max-width: 40rem;
  color: #1e293b;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
}

.about-content-banner {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  display: flex;
  align-items: center;
  border: 1px solid #d9ebff;
  border-radius: 1.25rem;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 1.5rem;
  padding: 2rem;
}

.about-content-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(245, 250, 255, .88) 42%, rgba(245, 250, 255, .24) 72%, rgba(245, 250, 255, .08) 100%);
  pointer-events: none;
}

.about-content-banner:nth-of-type(even) {
  justify-content: flex-end;
  background-position: center left;
}

.about-content-banner:nth-of-type(even)::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, .96) 0%, rgba(245, 250, 255, .88) 42%, rgba(245, 250, 255, .24) 72%, rgba(245, 250, 255, .08) 100%);
}
.who-we-are-banner {
  display: grid;
  grid-template-columns: minmax(18rem, .92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: stretch;
  min-height: auto;
  background: #fff;
  padding: 1.25rem;
}

.who-we-are-banner::after {
  display: none;
}

.who-we-are-banner .about-clear-image {
  min-height: 28rem;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.who-we-are-banner .about-banner-card {
  align-self: center;
  max-width: none;
  padding: 1.25rem;
}

.about-banner-card {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  border-radius: 1rem;
  padding: 1.5rem;
}

.about-banner-card h2 {
  margin-top: .5rem;
  color: #052e68;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 1000;
}

.about-banner-card p {
  margin-top: 1rem;
  color: #334155;
  line-height: 1.7;
  font-weight: 600;
}

.values-banner .about-banner-card {
  max-width: 52rem;
}
.values-banner {
  display: grid;
  grid-template-columns: minmax(18rem, .92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: center;
  min-height: auto;
  background: #fff;
  padding: 1.25rem;
}

.values-banner::after {
  display: none;
}

.values-banner .about-clear-image {
  min-height: 26rem;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  background: #eef6ff;
  padding: .35rem .8rem;
  color: #0754c5;
  font-size: .88rem;
  font-weight: 900;
}

.about-kicker::after {
  content: none;
}

.about-hero h1 {
  margin-top: 1rem;
  color: #052e68;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.04;
  font-weight: 1000;
}

.about-hero h2 {
  margin-top: 1rem;
  color: #052e68;
  font-size: 1.2rem;
  font-weight: 900;
}

.about-hero p {
  margin-top: 1rem;
  max-width: 38rem;
  color: #475569;
  line-height: 1.75;
}

.about-hero-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 26rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 104, 221, .16), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(238, 246, 255, .9));
}

.about-image-slot {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background-color: #eef6ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-image-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(7, 84, 197, .14)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .25), transparent 12rem);
  pointer-events: none;
}

.about-hero-points {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.about-hero-points div,
.about-metrics div,
.simple-grid div,
.values-grid div {
  display: grid;
  gap: .45rem;
}

.about-hero-points div {
  grid-template-columns: 3rem 1fr;
  align-items: center;
  border: 1px solid #d9ebff;
  border-radius: .9rem;
  background: white;
  padding: .75rem;
}

.about-hero-points svg,
.about-metrics svg,
.simple-grid svg,
.values-grid svg,
.mission-icon svg {
  height: 3rem;
  width: 3rem;
  border-radius: 999px;
  border: 1px solid #d9ebff;
  background: #eef6ff;
  color: #0754c5;
  padding: .75rem;
}

.about-hero-points b,
.about-hero-points span {
  display: block;
}

.about-hero-points b {
  color: #052e68;
  font-size: .86rem;
}

.about-hero-points span {
  color: #64748b;
  font-size: .78rem;
}

.about-split,
.journey-section,
.values-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  border: 1px solid #d9ebff;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  padding: 2rem;
  margin-top: 1.5rem;
}

.about-split .about-image-slot,
.journey-section .about-image-slot,
.values-section .about-image-slot,
.trust-strip .about-image-slot {
  min-height: 24rem;
}

.about-split h2,
.about-simple h2,
.journey-section h2,
.values-section h2,
.trust-strip h2 {
  margin-top: .5rem;
  color: #052e68;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 1000;
}

.about-split p,
.journey-section p,
.values-grid span,
.simple-grid span,
.mission-vision p,
.trust-strip p {
  color: #475569;
  line-height: 1.7;
}

.about-split p,
.journey-section p {
  margin-top: 1rem;
}

.about-metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.about-metrics div {
  grid-template-columns: 3rem 1fr;
  align-items: center;
  border: 1px solid #d9ebff;
  border-radius: .9rem;
  background: white;
  padding: .75rem;
}

.about-banner-card .about-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metrics b,
.about-metrics span {
  display: block;
}

.about-metrics b {
  color: #0754c5;
  font-size: 1.4rem;
}

.about-metrics span {
  color: #64748b;
  font-size: .8rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 7rem 1fr;
  align-items: center;
  gap: 2rem;
  border: 1px solid #d9ebff;
  border-radius: 1.25rem;
  background: linear-gradient(90deg, #f5faff, #ffffff, #f5faff);
  padding: 2rem;
  margin-top: 1.5rem;
}

.mission-vision article {
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: white;
  padding: 1.25rem;
}

.mission-vision h3 {
  color: #052e68;
  font-size: 1.4rem;
  font-weight: 1000;
}

.mission-icon {
  display: grid;
  place-items: center;
  border-left: 1px solid #bfdbfe;
  border-right: 1px solid #bfdbfe;
}

.mission-icon svg {
  height: 4.8rem;
  width: 4.8rem;
  padding: 1.2rem;
  background: white;
}

.about-simple {
  border: 1px solid #d9ebff;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 104, 221, .08), transparent 20rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 2rem;
  margin-top: 1.5rem;
  text-align: center;
}

.simple-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
}

.simple-grid div {
  justify-items: center;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: white;
  padding: 1rem .8rem;
  text-align: center;
}

.simple-grid b,
.values-grid b {
  color: #052e68;
  font-weight: 900;
}

.simple-grid span,
.values-grid span {
  font-size: .9rem;
}

.values-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

.values-grid div {
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .92);
  padding: 1rem;
}

.values-grid svg {
  background: #0754c5;
  color: white;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  border: 1px solid #d9ebff;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 10% 30%, rgba(18, 104, 221, .12), transparent 16rem),
    linear-gradient(90deg, #eef6ff, #ffffff);
  padding: 2rem;
  margin-block: 2rem;
}

.trust-strip i,
.trust-strip svg {
  color: #0754c5;
}

.trust-strip > div > svg {
  height: 3rem;
  width: 3rem;
}

.stars {
  margin-top: .8rem;
  color: #0754c5;
  font-size: 1.4rem;
  letter-spacing: .15em;
}

@media (max-width: 900px) {
  .page-container {
    width: min(100% - 2rem, 1760px);
  }

  .hero-bg {
    min-height: auto;
  }

  .hero-slide::after {
    background: linear-gradient(90deg, rgba(245, 250, 255, .98), rgba(245, 250, 255, .82));
  }

  .hero-content {
    padding-block: 3rem;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    max-width: 32rem;
  }

  .hero-arrow {
    display: none;
  }

  .eligibility-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .eligibility-form {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }

  .eligibility-note {
    text-align: center;
  }

  .why-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .why-visual img {
    width: min(100%, 18rem);
  }

  .why-item {
    text-align: left;
  }

  .about-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-copy p,
  .section-heading {
    margin-inline: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .stats-grid,
  .process-line,
  .emi-section,
  .docs-review-section,
  .about-hero,
  .about-split,
  .journey-section,
  .values-section,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-points,
  .about-metrics,
  .simple-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-banner {
    min-height: auto;
    background-position: center;
  }

  .about-banner::after {
    background: linear-gradient(90deg, rgba(245, 250, 255, .98), rgba(245, 250, 255, .82));
  }

  .about-banner-content {
    padding-block: 3rem;
  }

  .about-content-banner {
    min-height: auto;
    padding: 1.25rem;
    background-position: center;
  }
  .who-we-are-banner {
    grid-template-columns: 1fr;
  }

  .who-we-are-banner .about-clear-image {
    min-height: 20rem;
  }
  .values-banner {
    grid-template-columns: 1fr;
  }

  .values-banner .about-clear-image {
    min-height: 20rem;
  }

  .about-content-banner::after,
  .about-content-banner:nth-of-type(even)::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(245, 250, 255, .82));
  }

  .contact-form-section,
  .location-faq,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .about-banner-card {
    max-width: 100%;
  }

  .about-hero,
  .about-split,
  .journey-section,
  .values-section,
  .mission-vision,
  .about-simple,
  .trust-strip {
    padding: 1.25rem;
  }

  .mission-icon {
    border: 0;
  }

  .documents-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-wrap {
    padding-inline: 1rem;
  }

  .process-line div {
    min-height: 11rem;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid #d9ebff;
    padding: 1rem 0;
  }

  .process-line div:not(:last-child)::after {
    display: none;
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .eligibility-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .eligibility-form button {
    min-width: 0;
  }

  .stats-grid,
  .process-line,
  .emi-section,
  .docs-review-section,
  .documents-grid,
  .about-hero,
  .about-split,
  .journey-section,
  .values-section,
  .trust-strip,
  .about-hero-points,
  .about-metrics,
  .simple-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-split,
  .journey-section,
  .values-section,
  .about-simple {
    padding-block: 1.5rem;
  }

  .about-hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .about-banner h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .about-banner-card .about-metrics,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .who-we-are-banner .about-clear-image {
    min-height: 15rem;
  }
  .values-banner .about-clear-image {
    min-height: 15rem;
  }

  .location-address {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero-visual {
    min-height: 16rem;
  }

  .about-split .about-image-slot,
  .journey-section .about-image-slot,
  .values-section .about-image-slot,
  .trust-strip .about-image-slot {
    min-height: 18rem;
  }

  .process-line div {
    min-height: auto;
  }

  .why-panel {
    padding: 1rem;
  }

  .why-item {
    grid-template-columns: 2.7rem 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .feature-chip {
    grid-template-columns: 2.35rem 1fr;
  }

  .active-link::after {
    display: none;
  }
}

.faq-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(26rem, 48vw, 34rem);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(245, 250, 255, .82) 44%, rgba(245, 250, 255, .2) 76%, rgba(245, 250, 255, .06) 100%);
  pointer-events: none;
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 2.5rem;
}

.faq-hero h1 {
  margin-top: 1rem;
  max-width: 36rem;
  color: #052e68;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 1000;
}

.faq-hero h1 span {
  color: #0754c5;
}

.faq-hero p {
  margin-top: 1rem;
  max-width: 37rem;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 700;
}

.faq-search {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  width: min(100%, 32rem);
  border: 1px solid #d9ebff;
  border-radius: .7rem;
  background: white;
  padding: .9rem 1rem;
}

.faq-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #052e68;
  font-weight: 700;
}

.faq-search svg {
  height: 1.2rem;
  width: 1.2rem;
  color: #0754c5;
}

.faq-main {
  width: min(100% - 7rem, 1760px);
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr) 20rem;
  align-items: start;
  gap: 1.75rem;
  padding-block: 2.4rem;
}

.faq-categories h2,
.faq-questions h2,
.faq-help-card h2,
.faq-info h2 {
  color: #052e68;
  font-size: 1.35rem;
  font-weight: 1000;
}

.faq-categories {
  display: grid;
  align-content: start;
  gap: .65rem;
}

.faq-categories h2 {
  margin-bottom: .35rem;
}

.faq-categories button {
  display: grid;
  grid-template-columns: 1fr 1.25rem;
  align-items: center;
  gap: .75rem;
  border: 1px solid #d9ebff;
  border-radius: .65rem;
  background: white;
  min-height: 3.75rem;
  padding: .8rem 1rem;
  color: #052e68;
  text-align: center;
  font-weight: 900;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.faq-categories button i,
.faq-categories button svg {
  height: 1.1rem;
  width: 1.1rem;
  color: #0754c5;
}

.faq-categories button > span {
  justify-self: end;
}

.faq-categories button:not(:has(span))::after {
  content: "";
}

.faq-categories button.active,
.faq-categories button:hover {
  border-color: #0754c5;
  background: #0754c5;
  color: white;
}

.faq-categories button.active i,
.faq-categories button.active svg,
.faq-categories button:hover i,
.faq-categories button:hover svg {
  color: white;
}

.faq-questions {
  display: grid;
  align-content: start;
  gap: .65rem;
}

.faq-questions h2 {
  margin-bottom: .35rem;
}

.faq-questions .faq-item {
  background: white;
  min-height: 3.65rem;
  padding-block: .85rem;
}

.faq-questions .faq-item.open {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.faq-help-card {
  align-self: start;
  display: grid;
  gap: 1rem;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  padding: 1.25rem;
  text-align: center;
}

.faq-help-card > svg {
  margin-inline: auto;
  height: 4.2rem;
  width: 4.2rem;
  border: 1px solid #d9ebff;
  border-radius: 999px;
  background: white;
  color: #0754c5;
  padding: .9rem;
}

.faq-help-card p {
  color: #475569;
  line-height: 1.55;
}

.faq-help-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  border-radius: .65rem;
  background: #0754c5;
  padding: .8rem .9rem;
  color: white;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease;
}

.faq-help-card > a:hover {
  background: #052e68;
  transform: translateY(-1px);
}

.faq-help-card div {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: .65rem;
  text-align: left;
  color: #052e68;
  font-weight: 800;
}

.faq-help-card div span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-help-card div svg {
  height: 1.15rem;
  width: 1.15rem;
  color: #0754c5;
}

.faq-help-card small {
  display: block;
  color: #64748b;
  font-size: .75rem;
  font-weight: 700;
}

.faq-info {
  padding-block: 1rem 2.3rem;
  text-align: center;
}

.faq-info > div {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.faq-info article {
  display: grid;
  justify-items: center;
  gap: .65rem;
  border: 1px solid #d9ebff;
  border-radius: .9rem;
  background: white;
  padding: 1.35rem .9rem;
  text-align: center;
}

.faq-info article svg {
  height: 3rem;
  width: 3rem;
  color: #0754c5;
}

.faq-info article b {
  color: #052e68;
  font-weight: 1000;
}

.faq-info article span {
  color: #64748b;
  font-size: .9rem;
  line-height: 1.5;
}

.faq-cta {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #0754c5, #052e68);
  padding: 1.6rem 2rem;
  color: white;
}

.faq-cta > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-cta > div > svg {
  height: 4rem;
  width: 4rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: .85rem;
}

.faq-cta b,
.faq-cta small {
  display: block;
}

.faq-cta b {
  font-size: 1.55rem;
  font-weight: 1000;
}

.faq-cta small {
  margin-top: .2rem;
  color: #d9ebff;
}

.faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: .65rem;
  background: white;
  padding: .9rem 1.5rem;
  color: #0754c5;
  font-weight: 1000;
}

@media (max-width: 1280px) {
  .faq-main {
    width: min(100% - 2rem, 1760px);
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  .faq-help-card {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .faq-help-card > svg,
  .faq-help-card p {
    display: none;
  }

  .faq-help-card > a {
    width: auto;
    min-width: 13rem;
  }

  .faq-help-card div {
    display: flex;
    align-items: center;
  }

  .faq-info > div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .faq-main {
    width: min(100% - 2rem, 1760px);
  }

  .faq-hero-inner {
    min-height: 24rem;
  }

  .faq-main {
    grid-template-columns: 1fr;
    padding-block: 1.5rem;
  }

  .faq-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-categories h2 {
    grid-column: 1 / -1;
  }

  .faq-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .faq-hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .faq-categories,
  .faq-info > div {
    grid-template-columns: 1fr;
  }

  .faq-cta {
    padding: 1.25rem;
  }
}

.personal-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(24rem, 40vw, 32rem);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.personal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(245, 250, 255, .9) 42%, rgba(245, 250, 255, .2) 76%, rgba(245, 250, 255, .04) 100%);
  pointer-events: none;
}

.personal-hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: start;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
}

.personal-hero-content > div {
  max-width: 48rem;
}

.personal-hero h1 {
  margin-top: 1.1rem;
  color: #052e68;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 1000;
}

.personal-hero h2 {
  margin-top: .7rem;
  color: #0754c5;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 1000;
}

.personal-hero p {
  margin-top: 1rem;
  color: #1e293b;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 700;
}

.personal-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.personal-actions a,
.personal-cta a,
.personal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border-radius: .65rem;
  font-weight: 1000;
}

.personal-actions a:first-child {
  background: #0754c5;
  padding: .95rem 1.8rem;
  color: white;
}

.personal-actions a:last-child {
  border: 1px solid #0754c5;
  background: white;
  padding: .95rem 1.5rem;
  color: #0754c5;
}

.personal-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border: 1px solid #d9ebff;
  border-radius: .9rem;
  background: white;
  padding: 1rem;
  margin-top: 1rem;
}

.personal-feature-strip div,
.personal-reasons div,
.personal-card-grid span,
.personal-mini-grid span,
.personal-doc-grid span {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  gap: .7rem;
}

.personal-feature-strip svg,
.personal-reasons svg,
.personal-card-grid svg,
.personal-mini-grid svg,
.personal-doc-grid svg {
  grid-row: span 2;
  height: 2.45rem;
  width: 2.45rem;
  border-radius: 999px;
  background: #eef6ff;
  color: #0754c5;
  padding: .62rem;
}

.personal-feature-strip b,
.personal-reasons b,
.personal-card-grid b,
.personal-mini-grid b,
.personal-doc-grid b {
  color: #052e68;
  font-weight: 1000;
}

.personal-feature-strip span,
.personal-reasons span,
.personal-card-grid span,
.personal-mini-grid span,
.personal-doc-grid span {
  color: #64748b;
  font-size: .88rem;
}

.personal-intro {
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 22rem;
  padding-block: 2.7rem;
}

.personal-intro img,
.personal-use-grid img,
.personal-eligibility img {
  width: 100%;
  border-radius: .85rem;
  object-fit: cover;
}

.personal-intro img {
  aspect-ratio: 16 / 8;
}

.personal-intro h2,
.personal-section h2,
.personal-card h2,
.personal-eligibility h2 {
  color: #052e68;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  font-weight: 1000;
}

.personal-intro p {
  margin-top: .85rem;
  color: #334155;
  line-height: 1.7;
  font-weight: 650;
}

.personal-mini-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.personal-section {
  padding-block: 1.5rem;
  text-align: center;
}

.personal-reasons {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .9rem;
}

.personal-reasons div,
.personal-card,
.personal-eligibility {
  border: 1px solid #d9ebff;
  border-radius: .9rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 1rem;
}

.personal-two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
  padding-block: .75rem;
}

.personal-two-col:nth-of-type(6),
.personal-two-col:nth-of-type(7) {
  grid-template-columns: 1fr 1fr;
}

.personal-card-grid,
.personal-doc-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}

.personal-card-grid span {
  min-height: 5.25rem;
  border: 1px solid #d9ebff;
  border-radius: .85rem;
  background: white;
  padding: .9rem;
}

.personal-card-grid svg {
  height: 2.8rem;
  width: 2.8rem;
  background: #eef6ff;
}

.personal-use-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.personal-use-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9ebff;
  border-radius: .8rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(18, 104, 221, .12), transparent 5.5rem),
    linear-gradient(180deg, #eef6ff, #ffffff);
  min-height: 10.5rem;
  text-align: center;
}

.personal-use-grid figure::before {
  content: "";
  display: block;
  height: 7rem;
}

.personal-use-grid img {
  position: absolute;
  inset: 0 0 auto;
  aspect-ratio: 16 / 7;
  height: 7rem;
  border-radius: 0;
  object-fit: cover;
}

.personal-use-grid figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 3.5rem;
  place-items: center;
  padding: .65rem;
  color: #052e68;
  font-weight: 1000;
}

.personal-eligibility {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
  gap: 1rem;
}

.personal-eligibility img {
  aspect-ratio: 3 / 4;
  object-position: top;
}

.personal-eligibility ul {
  margin-top: .9rem;
  display: grid;
  gap: .45rem;
  color: #334155;
  font-weight: 750;
}

.personal-eligibility li::before {
  content: "✓";
  margin-right: .5rem;
  color: #16a34a;
  font-weight: 1000;
}

.personal-doc-grid {
  grid-template-columns: repeat(5, 1fr);
}

.personal-doc-grid span {
  grid-template-columns: 1fr;
  justify-items: center;
  border: 1px solid #d9ebff;
  border-radius: .8rem;
  background: white;
  padding: 1rem .65rem;
  text-align: center;
}

.personal-doc-grid svg {
  grid-row: auto;
}

.personal-process {
  position: relative;
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .65rem;
  text-align: center;
}

.personal-process span {
  display: grid;
  justify-items: center;
  gap: .45rem;
  color: #64748b;
  font-size: .86rem;
  font-weight: 800;
}

.personal-process svg {
  height: 3.2rem;
  width: 3.2rem;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eef6ff;
  color: #0754c5;
  padding: .75rem;
}

.personal-process b {
  color: #0754c5;
}

.personal-emi {
  grid-template-columns: 1fr 17rem;
  background: linear-gradient(160deg, #052e68, #0754c5);
  color: white;
}

.personal-emi h2,
.personal-emi .slider-head span,
.personal-emi .slider-scale {
  color: white;
}

.personal-trust-stats,
.personal-testimonials {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.personal-trust-stats span,
.personal-testimonials p {
  border: 1px solid #d9ebff;
  border-radius: .8rem;
  background: white;
  padding: .8rem;
  color: #64748b;
  text-align: center;
}

.personal-trust-stats b,
.personal-testimonials b,
.personal-testimonials small {
  display: block;
}

.personal-trust-stats b {
  color: #0754c5;
  font-size: 1.25rem;
}

.personal-testimonials {
  grid-template-columns: repeat(3, 1fr);
}

.personal-testimonials p {
  text-align: left;
  line-height: 1.55;
}

.personal-testimonials b {
  margin-top: .65rem;
  color: #f59e0b;
}

.personal-testimonials small {
  margin-top: .25rem;
  color: #052e68;
  font-weight: 900;
}

.personal-card .faq-item {
  margin-top: .65rem;
  background: white;
}

.personal-link {
  margin-top: .9rem;
  color: #0754c5;
}

.personal-cta {
  margin-block: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #0754c5, #052e68);
  padding: 1.35rem 1.6rem;
  color: white;
}

.personal-cta > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.personal-cta > div > svg {
  height: 3.8rem;
  width: 3.8rem;
  border-radius: 999px;
  background: white;
  color: #0754c5;
  padding: .85rem;
}

.personal-cta b,
.personal-cta small {
  display: block;
}

.personal-cta b {
  font-size: 1.45rem;
  font-weight: 1000;
}

.personal-cta small {
  color: #d9ebff;
}

.personal-cta a {
  border: 1px solid rgba(255, 255, 255, .35);
  padding: .85rem 1.2rem;
  color: white;
}

.personal-cta a:last-child {
  background: white;
  color: #0754c5;
}

@media (max-width: 1100px) {
  .personal-reasons {
    grid-template-columns: repeat(3, 1fr);
  }

  .personal-mini-grid,
  .personal-feature-strip,
  .personal-doc-grid,
  .personal-trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .personal-two-col,
  .personal-two-col:nth-of-type(6),
  .personal-two-col:nth-of-type(7),
  .personal-intro,
  .personal-cta {
    grid-template-columns: 1fr;
  }

  .personal-emi {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .personal-feature-strip,
  .personal-reasons,
  .personal-card-grid,
  .personal-mini-grid,
  .personal-use-grid,
  .personal-doc-grid,
  .personal-process,
  .personal-trust-stats,
  .personal-testimonials,
  .personal-eligibility {
    grid-template-columns: 1fr;
  }

  .personal-hero {
    min-height: auto;
    background-position: center;
  }

  .personal-hero-content {
    padding-block: 2.5rem;
  }
}

/* FAQ compact flow: removes the tall empty side columns. */
body[data-page="faq"] .faq-hero {
  min-height: clamp(22rem, 32vw, 26rem);
  background-position: 68% center;
}

body[data-page="faq"] .faq-hero-inner {
  padding-block: 2rem;
}

body[data-page="faq"] .faq-main {
  display: grid;
  width: min(calc(100% - 7rem), 1760px);
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding-block: 2rem;
}

body[data-page="faq"] .faq-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  border: 1px solid #d9ebff;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f7fbff, #fff);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(5, 46, 104, .06);
}

body[data-page="faq"] .faq-categories h2 {
  grid-column: 1 / -1;
  margin: 0 0 .15rem;
  text-align: center;
}

body[data-page="faq"] .faq-categories button {
  min-height: 3.25rem;
  border-radius: .75rem;
  padding: .7rem .85rem;
  text-align: left;
  box-shadow: 0 5px 16px rgba(5, 46, 104, .045);
}

body[data-page="faq"] .faq-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: .75rem 1rem;
  border: 1px solid #e2ebf8;
  border-radius: 1rem;
  background: #f8fbff;
  padding: 1.25rem;
}

body[data-page="faq"] .faq-questions h2 {
  grid-column: 1 / -1;
  margin: 0 0 .15rem;
  text-align: center;
}

body[data-page="faq"] .faq-questions .faq-item {
  align-self: start;
  min-height: 4rem;
  margin: 0;
  border-radius: .75rem;
  background: #fff;
  padding: .9rem 1rem;
  box-shadow: 0 5px 18px rgba(5, 46, 104, .045);
}

body[data-page="faq"] .faq-questions .faq-item.open {
  box-shadow: 0 10px 24px rgba(7, 84, 197, .09);
}

body[data-page="faq"] .faq-help-card {
  display: grid;
  grid-template-columns: minmax(14rem, 1.2fr) auto repeat(3, minmax(10rem, .85fr));
  align-items: center;
  gap: .75rem 1rem;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: left;
}

body[data-page="faq"] .faq-help-card > svg {
  display: none;
}

body[data-page="faq"] .faq-help-card h2 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  text-align: left;
}

body[data-page="faq"] .faq-help-card > p {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  text-align: left !important;
}

body[data-page="faq"] .faq-help-card > a {
  grid-column: 2;
  grid-row: 1 / 3;
  width: auto;
  min-width: 11rem;
}

body[data-page="faq"] .faq-help-card div {
  align-items: center;
  min-width: 0;
  border-left: 1px solid #d9ebff;
  padding-left: 1rem;
}

body[data-page="faq"] .faq-help-card div:nth-of-type(1) {
  grid-column: 3;
  grid-row: 1 / 3;
}

body[data-page="faq"] .faq-help-card div:nth-of-type(2) {
  grid-column: 4;
  grid-row: 1 / 3;
}

body[data-page="faq"] .faq-help-card div:nth-of-type(3) {
  grid-column: 5;
  grid-row: 1 / 3;
}

body[data-page="faq"] .faq-info {
  padding-block: .5rem 2rem;
}

body[data-page="faq"] .faq-cta {
  margin-bottom: 2rem;
}

@media (max-width: 1180px) {
  body[data-page="faq"] .faq-main {
    width: min(calc(100% - 2rem), 1760px);
  }

  body[data-page="faq"] .faq-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="faq"] .faq-help-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="faq"] .faq-help-card h2,
  body[data-page="faq"] .faq-help-card > p {
    grid-column: 1 / 3;
  }

  body[data-page="faq"] .faq-help-card > a {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  body[data-page="faq"] .faq-help-card div:nth-of-type(1),
  body[data-page="faq"] .faq-help-card div:nth-of-type(2),
  body[data-page="faq"] .faq-help-card div:nth-of-type(3) {
    grid-row: 3;
  }

  body[data-page="faq"] .faq-help-card div:nth-of-type(1) { grid-column: 1; }
  body[data-page="faq"] .faq-help-card div:nth-of-type(2) { grid-column: 2; }
  body[data-page="faq"] .faq-help-card div:nth-of-type(3) { grid-column: 3; }
}

@media (max-width: 760px) {
  body[data-page="faq"] .faq-hero {
    min-height: 22rem;
    background-position: 64% center;
  }

  body[data-page="faq"] .faq-main {
    width: min(calc(100% - 1.25rem), 1760px);
    gap: 1rem;
    padding-block: 1.25rem;
  }

  body[data-page="faq"] .faq-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
    padding: .85rem;
  }

  body[data-page="faq"] .faq-questions {
    grid-template-columns: minmax(0, 1fr);
    gap: .65rem;
    padding: .85rem;
  }

  body[data-page="faq"] .faq-help-card {
    grid-template-columns: minmax(0, 1fr);
    gap: .8rem;
    padding: 1rem;
    text-align: center;
  }

  body[data-page="faq"] .faq-help-card h2,
  body[data-page="faq"] .faq-help-card > p,
  body[data-page="faq"] .faq-help-card > a,
  body[data-page="faq"] .faq-help-card div:nth-of-type(1),
  body[data-page="faq"] .faq-help-card div:nth-of-type(2),
  body[data-page="faq"] .faq-help-card div:nth-of-type(3) {
    grid-column: 1;
    grid-row: auto;
  }

  body[data-page="faq"] .faq-help-card h2,
  body[data-page="faq"] .faq-help-card > p {
    text-align: center !important;
  }

  body[data-page="faq"] .faq-help-card > a {
    width: 100%;
  }

  body[data-page="faq"] .faq-help-card div {
    width: 100%;
    border-top: 1px solid #d9ebff;
    border-left: 0;
    padding: .75rem 0 0;
    text-align: left;
  }

  body[data-page="faq"] .faq-cta,
  body[data-page="faq"] .faq-cta > div {
    align-items: center;
    text-align: center;
  }

  body[data-page="faq"] .faq-cta a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  body[data-page="faq"] .faq-categories button {
    grid-template-columns: minmax(0, 1fr) 1.25rem !important;
    min-height: 3.25rem;
  }
}

body[data-page="faq"] .faq-empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed #9fc3ff;
  border-radius: .8rem;
  background: #fff;
  padding: 2rem 1rem;
  color: #475569;
  text-align: center;
}

/* Keep the three About metrics centered as a clear vertical stack. */
body[data-page="about"] .about-banner-card .about-metrics > div {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

body[data-page="about"] .about-banner-card .about-metrics :where(b, span) {
  width: 100%;
  text-align: center;
}

/* Center the complete About Values section on mobile. */
@media (max-width: 640px) {
  body[data-page="about"] .values-banner .about-banner-card {
    text-align: center;
  }

  body[data-page="about"] .values-banner .about-kicker {
    justify-content: center;
    margin-inline: auto;
  }

  body[data-page="about"] .values-banner .about-banner-card > h2 {
    text-align: center !important;
  }

  body[data-page="about"] .values-banner .values-grid > div {
    justify-items: center;
    text-align: center;
  }

  body[data-page="about"] .values-banner .values-grid :where(b, span) {
    width: 100%;
    text-align: center;
  }
}
/* Home second banner: supplied artwork on the left, message column on the right. */
.hero-slide--banner-two {
  background-color: #eff5ff;
  background-position: left center;
  background-size: 86% auto;
}

.hero-slide--banner-two::after {
  background: linear-gradient(270deg, #f5f9ff 0%, rgba(245, 249, 255, .98) 34%, rgba(245, 249, 255, .72) 48%, rgba(245, 249, 255, .08) 72%, transparent 100%);
}

.hero-slide--banner-two .hero-content {
  justify-content: flex-end;
  text-align: left;
}

.hero-slide--banner-two .hero-content > div {
  width: min(100%, 60rem);
  margin-left: auto;
  margin-right: 0;
}

.hero-slide--banner-two .hero-heading,
.hero-slide--banner-two .hero-content p {
  margin-left: 0;
  margin-right: 0;
  text-align: left !important;
}

.hero-slide--banner-two .hero-heading {
  font-size: clamp(3rem, 4.9vw, 5rem);
}

.hero-slide--banner-two .hero-content p {
  max-width: 44rem;
}
@media (max-width: 900px) {
  body[data-page="home"] main .hero-bg {
    min-height: 52rem;
  }

  .hero-slide--banner-two {
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-slide--banner-two::after {
    background: linear-gradient(180deg, rgba(245, 249, 255, .02) 0%, rgba(245, 249, 255, .12) 23%, #f5f9ff 43%, #f5f9ff 100%);
  }

  .hero-slide--banner-two .hero-content {
    align-items: flex-start;
    padding-top: clamp(12rem, 43vw, 22rem);
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  body[data-page="home"] main .hero-bg {
    min-height: 50rem;
  }

  .hero-slide--banner-two .hero-content > div {
    padding-inline: .5rem;
  }
}
/* Third banner responsive composition and wider feature cards. */
.hero-slide--banner-three .hero-content > div {
  width: min(100%, 52rem);
  max-width: 52rem;
}

.hero-slide--banner-three .hero-features {
  width: min(100%, 52rem);
  max-width: none;
  grid-template-columns: repeat(4, minmax(9rem, 1fr));
  gap: 1.1rem;
}

.hero-slide--banner-three .feature-chip {
  min-height: 5rem;
  padding: .7rem .85rem;
}

@media (max-width: 900px) {
  .hero-slide--banner-three {
    background-color: #f5f9ff;
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-slide--banner-three::after {
    background: linear-gradient(180deg, rgba(245, 249, 255, .02) 0%, rgba(245, 249, 255, .12) 23%, #f5f9ff 43%, #f5f9ff 100%);
  }

  .hero-slide--banner-three .hero-content {
    align-items: flex-start;
    padding-top: clamp(12rem, 43vw, 22rem);
    padding-bottom: 2rem;
  }

  .hero-slide--banner-three .hero-content > div,
  .hero-slide--banner-three .hero-features {
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
  }

  .hero-slide--banner-three .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
  }
}
