:root {
  --manank-blue: #073b78;
  --manank-blue-dark: #052b59;
  --manank-blue-soft: #eaf2fb;
  --manank-orange: #f58220;
  --manank-orange-dark: #dc6b0d;
  --manank-green: #2f9d50;
  --manank-ink: #12243a;
  --manank-muted: #65758a;
  --manank-line: #dfe7ef;
  --manank-bg: #f7f9fc;
  --manank-white: #ffffff;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 22px rgba(15, 47, 80, 0.08);
  --shadow: 0 20px 55px rgba(15, 47, 80, 0.13);
  --container: 1180px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--manank-ink);
  background: var(--manank-white);
  font-family: Inter, "Noto Sans Devanagari", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), 860px);
}

.section {
  padding: 92px 0;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  clip: auto;
  left: 12px;
  top: 12px;
  background: var(--manank-white);
  color: var(--manank-blue);
  z-index: 9999;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(10, 50, 96, 0.16);
}

.button--orange {
  color: var(--manank-white);
  background: linear-gradient(135deg, var(--manank-orange), #ff9c3f);
}

.button--orange:hover,
.button--orange:focus-visible {
  background: linear-gradient(135deg, var(--manank-orange-dark), var(--manank-orange));
}

.button--blue {
  color: var(--manank-white);
  background: linear-gradient(135deg, var(--manank-blue), #1258a5);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--manank-blue);
  font-weight: 800;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--manank-orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--manank-orange);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--manank-muted);
  font-size: 1.05rem;
}

.section-heading--center,
.archive-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--center .section-kicker,
.archive-header--center .section-kicker {
  justify-content: center;
}

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--manank-white);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 10px 30px rgba(7, 59, 120, 0.12);
  animation: navbarSlide 0.25s ease;
}

@keyframes navbarSlide {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.topbar {
  color: rgba(255, 255, 255, 0.92);
  background: var(--manank-blue-dark);
  font-size: 0.8rem;
}

.topbar__inner,
.topbar__contacts,
.topbar__links {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 20px;
}

.topbar__contacts {
  gap: 24px;
}

.topbar__contacts a,
.topbar__contacts span,
.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__contacts .icon {
  color: var(--manank-orange);
}

.topbar__links {
  gap: 18px;
  font-weight: 700;
}

.topbar__links a:hover {
  color: var(--manank-orange);
}

.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 26px;
}

.site-branding {
  margin-right: auto;
}

.site-logo,
.site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
  width: auto;
  max-width: 260px;
  max-height: 74px;
  object-fit: contain;
}

.primary-navigation .menu,
.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: block;
  padding: 12px 13px;
  border-radius: 9px;
  color: var(--manank-blue-dark);
  font-size: 0.91rem;
  font-weight: 800;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--manank-orange-dark);
  background: #fff2e6;
}

.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--manank-line);
  border-radius: 12px;
  background: var(--manank-white);
  box-shadow: var(--shadow);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
  display: block;
}

.primary-navigation .sub-menu a {
  padding: 10px 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--manank-line);
  border-radius: 10px;
  background: var(--manank-white);
  color: var(--manank-blue);
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: inline-flex;
}

.navbar__cta {
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 110px;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 130, 32, 0.1), transparent 28%),
    linear-gradient(120deg, #f7fbff 0%, #edf5fc 52%, #e8f1fb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -110px -5%;
  height: 170px;
  border-radius: 50% 50% 0 0;
  background: var(--manank-white);
  transform: rotate(-2deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
}

.hero__glow--one {
  width: 340px;
  height: 340px;
  right: 2%;
  top: 4%;
  background: rgba(245, 130, 32, 0.16);
}

.hero__glow--two {
  width: 420px;
  height: 420px;
  left: -14%;
  bottom: -28%;
  background: rgba(7, 59, 120, 0.13);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 56px;
}

.hero__content h1 {
  margin-bottom: 22px;
  color: var(--manank-blue-dark);
  max-width: 690px;
}

.hero__content h1::first-line {
  color: var(--manank-blue);
}

.hero__nepali {
  max-width: 630px;
  color: #334a64;
  font-size: 1.18rem;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}

.hero__trust > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(7, 59, 120, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 18px rgba(11, 52, 95, 0.07);
}

.hero__trust .icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 9px;
  color: var(--manank-orange);
  background: #fff2e5;
}

.hero__trust span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--manank-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.hero__trust strong {
  color: var(--manank-blue-dark);
  font-size: 0.78rem;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 9px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px 34px 90px 34px;
  background: var(--manank-blue-soft);
  box-shadow: 0 28px 70px rgba(7, 59, 120, 0.22);
}

.hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 43, 89, 0.18), transparent 45%);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(1.05) contrast(1.04);
}

.hero__image-badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 15px;
  color: var(--manank-white);
  background: rgba(5, 43, 89, 0.83);
  backdrop-filter: blur(10px);
}

.hero__image-badge .icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 10px;
  color: var(--manank-orange);
  background: var(--manank-white);
}

.hero__image-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero__image-badge small {
  opacity: 0.82;
}

/* Quick services */
.quick-services {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}

.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--manank-line);
  border-radius: 24px;
  background: var(--manank-white);
  box-shadow: var(--shadow);
}

.quick-service {
  position: relative;
  padding: 28px 18px 25px;
  text-align: center;
}

.quick-service:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: var(--manank-line);
}

.quick-service__icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 13px;
  border-radius: 16px;
  color: var(--manank-blue);
  background: var(--manank-blue-soft);
}

.quick-service:nth-child(even) .quick-service__icon {
  color: var(--manank-orange-dark);
  background: #fff1e4;
}

.quick-service__icon .icon {
  width: 25px;
  height: 25px;
}

.quick-service h2 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.quick-service p {
  margin: 0;
  color: var(--manank-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* About */
.about-section {
  padding-top: 110px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 72px;
}

.about-visual {
  position: relative;
  min-height: 470px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 20%, rgba(245, 130, 32, 0.22), transparent 24%),
    linear-gradient(145deg, #eef7ec, #e8f3fb 70%);
  box-shadow: var(--shadow);
}

.growth-illustration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.growth-stem {
  position: absolute;
  left: 51%;
  bottom: 12%;
  width: 16px;
  height: 60%;
  border-radius: 20px;
  background: linear-gradient(#4dae62, #1d743a);
  transform: rotate(7deg);
  transform-origin: bottom;
}

.growth-leaf {
  position: absolute;
  width: 120px;
  height: 62px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #7bd08e, #278847);
  box-shadow: inset -10px -10px 20px rgba(0,0,0,0.08);
}

.growth-leaf--1 { left: 35%; bottom: 35%; transform: rotate(18deg); }
.growth-leaf--2 { right: 20%; bottom: 48%; transform: rotate(106deg); }
.growth-leaf--3 { left: 43%; top: 18%; width: 92px; height: 48px; transform: rotate(42deg); }

.growth-coin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 6px solid #ffc36a;
  border-radius: 50%;
  color: #9b5b08;
  background: linear-gradient(145deg, #ffe0a1, #f7ad35);
  box-shadow: 0 16px 30px rgba(151, 93, 10, 0.18);
  font-size: 1.25rem;
  font-weight: 900;
}

.growth-coin--1 { left: 14%; bottom: 17%; }
.growth-coin--2 { right: 14%; bottom: 20%; width: 98px; height: 98px; }
.growth-coin--3 { left: 34%; top: 12%; width: 60px; height: 60px; font-size: 1rem; }

.established-card {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: -26px;
  max-width: 230px;
  padding: 18px 22px;
  border-radius: 16px;
  color: var(--manank-blue-dark);
  background: var(--manank-white);
  box-shadow: var(--shadow);
  font-size: 1.15rem;
  font-weight: 900;
}

.established-card small {
  display: block;
  margin-top: 3px;
  color: var(--manank-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.about-content h2 {
  margin-bottom: 14px;
  color: var(--manank-blue-dark);
}

.about-quote {
  margin-bottom: 22px;
  color: var(--manank-blue);
  font-size: 1.14rem;
  font-weight: 800;
}

.about-copy {
  color: var(--manank-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 26px;
}

.values-grid > div {
  display: flex;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--manank-line);
  border-radius: 13px;
  background: var(--manank-bg);
}

.values-grid .icon {
  width: 27px;
  height: 27px;
  color: var(--manank-orange);
}

.values-grid span {
  display: flex;
  flex-direction: column;
  color: var(--manank-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.values-grid strong {
  margin-bottom: 3px;
  color: var(--manank-blue-dark);
  font-size: 0.8rem;
}

/* App section */
.app-section {
  background: linear-gradient(180deg, #f9fbfe, #eef5fc);
}

.app-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.5fr 0.72fr 1.2fr;
  align-items: stretch;
  gap: 20px;
  padding: 34px;
  border: 1px solid #dbe7f2;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}

.app-heading h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  color: var(--manank-blue-dark);
}

.app-heading p {
  color: var(--manank-muted);
  font-size: 0.94rem;
}

.store-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.store-cards a {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.store-cards a:hover {
  transform: translateY(-4px);
}

.store-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--manank-line);
  border-radius: 17px;
  background: var(--manank-white);
  text-align: center;
}

.qr-card span,
.qr-card small {
  color: var(--manank-muted);
  font-size: 0.7rem;
}

.qr-card strong {
  margin-bottom: 6px;
  color: #e41f25;
  font-size: 1.25rem;
}

.qr-card img {
  width: 105px;
  height: 105px;
  object-fit: cover;
  object-position: center;
}

.digital-links {
  display: grid;
  gap: 9px;
}

.digital-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--manank-line);
  border-radius: 12px;
  background: var(--manank-white);
}

.digital-links a:hover {
  border-color: rgba(245, 130, 32, 0.55);
  box-shadow: var(--shadow-sm);
}

.digital-links .icon {
  color: var(--manank-blue);
}

.digital-links span {
  display: flex;
  flex-direction: column;
  color: var(--manank-muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.digital-links strong {
  color: var(--manank-blue-dark);
  font-size: 0.8rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--manank-line);
  border-radius: 17px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.045);
}

.service-card__body {
  padding: 18px;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--manank-blue-dark);
}

.service-card p {
  min-height: 66px;
  color: var(--manank-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.service-card .text-link {
  font-size: 0.82rem;
}

/* Stats */
.stats-section {
  padding: 0 0 92px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 20px;
  color: var(--manank-white);
  background: linear-gradient(120deg, var(--manank-blue-dark), #0c4e95);
  box-shadow: 0 22px 50px rgba(7, 59, 120, 0.21);
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 48%;
  background: rgba(255,255,255,0.22);
}

.stat-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--manank-orange);
  background: rgba(255,255,255,0.11);
}

.stat-item__icon .icon {
  width: 24px;
  height: 24px;
}

.stat-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.stat-item small {
  margin-top: 5px;
  color: rgba(255,255,255,0.75);
}

/* Resources */
.resources-section {
  padding-top: 0;
}

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

.resource-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 25px;
  border: 1px solid var(--manank-line);
  border-radius: 18px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
}

.resource-card--calculator {
  grid-column: span 2;
}

.resource-card--support {
  background: linear-gradient(145deg, #fff8f1, #ffffff);
}

.resource-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--manank-orange-dark);
  background: #fff0e1;
}

.resource-card__icon .icon {
  width: 24px;
  height: 24px;
}

.resource-card h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--manank-blue-dark);
}

.resource-card p {
  color: var(--manank-muted);
  font-size: 0.88rem;
}

.emi-calculator {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 12px;
  padding-top: 6px;
}

.emi-calculator label,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--manank-blue-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.emi-calculator input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cad7e4;
  border-radius: 10px;
  background: var(--manank-white);
  color: var(--manank-ink);
  outline: none;
}

.emi-calculator input,
.contact-form input {
  height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  padding: 12px;
  resize: vertical;
}

.emi-calculator input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--manank-orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.14);
}

.emi-calculator output {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--manank-blue-dark);
  background: var(--manank-blue-soft);
  font-weight: 800;
}

.resource-list {
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

.resource-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--manank-line);
  font-size: 0.82rem;
}

.resource-list small {
  flex: 0 0 auto;
  color: var(--manank-muted);
}

/* Offices */
.offices-section {
  background: var(--manank-bg);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 20px;
}

.office-card,
.map-card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--manank-line);
  border-radius: 20px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
}

.office-card__badge {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--manank-orange-dark);
  background: #fff0e1;
}

.office-card__badge .icon {
  width: 25px;
  height: 25px;
}

.office-card h3 {
  color: var(--manank-blue-dark);
  font-size: 1.25rem;
}

.office-card p,
.office-card a {
  display: block;
  margin-bottom: 6px;
  color: var(--manank-muted);
}

.office-card a:hover {
  color: var(--manank-orange-dark);
}

.map-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--manank-blue-dark);
  text-align: center;
  background:
    linear-gradient(rgba(235,244,252,0.78), rgba(235,244,252,0.9)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(7,59,120,0.08) 24px 26px),
    repeating-linear-gradient(-45deg, transparent 0 28px, rgba(245,130,32,0.08) 28px 30px);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(7,59,120,0.13);
}

.map-card::before { width: 180px; height: 180px; }
.map-card::after { width: 100px; height: 100px; }

.map-card__pin {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--manank-white);
  background: var(--manank-orange);
  box-shadow: 0 13px 25px rgba(245,130,32,0.28);
}

.map-card__pin .icon {
  width: 30px;
  height: 30px;
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 2;
}

.map-card small {
  margin-top: 4px;
  color: var(--manank-muted);
}

/* Archives and content */
.content-area {
  min-height: 58vh;
  background: var(--manank-bg);
}

.archive-header,
.single-header {
  max-width: 780px;
  margin-bottom: 42px;
}

.archive-header h1,
.single-header h1 {
  color: var(--manank-blue-dark);
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.archive-description,
.single-meta {
  color: var(--manank-muted);
}

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

.content-card {
  overflow: hidden;
  border: 1px solid var(--manank-line);
  border-radius: 18px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
}

.content-card__image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card__body {
  padding: 22px;
}

.content-card__body > small {
  color: var(--manank-orange-dark);
  font-weight: 800;
}

.content-card h2 {
  margin: 8px 0 12px;
  color: var(--manank-blue-dark);
  font-size: 1.28rem;
}

.content-card p {
  color: var(--manank-muted);
}

.navigation.pagination {
  margin-top: 36px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid var(--manank-line);
  border-radius: 9px;
  background: var(--manank-white);
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--manank-white);
  border-color: var(--manank-blue);
  background: var(--manank-blue);
}

.single-content {
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--manank-line);
  border-radius: 24px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
}

.single-featured {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 18px;
}

.entry-content {
  color: #34495f;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
  color: var(--manank-blue-dark);
}

.entry-content a {
  color: var(--manank-orange-dark);
  text-decoration: underline;
}

.entry-content img {
  border-radius: 14px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
}

.contact-panel,
.contact-info-panel {
  padding: 34px;
  border: 1px solid var(--manank-line);
  border-radius: 22px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
}

.contact-panel h2,
.contact-info-panel h2 {
  margin-bottom: 24px;
  color: var(--manank-blue-dark);
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-notice {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 10px;
  color: #155b2d;
  background: #e8f7ed;
}

.form-notice--invalid,
.form-notice--error,
.form-notice--security,
.form-notice--rate {
  color: #842029;
  background: #fdebed;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--manank-line);
}

.contact-info-item > .icon {
  width: 22px;
  height: 22px;
  color: var(--manank-orange-dark);
}

.contact-info-item span {
  display: flex;
  flex-direction: column;
  color: var(--manank-muted);
}

.contact-info-item strong {
  margin-bottom: 4px;
  color: var(--manank-blue-dark);
}

.map-card--compact {
  min-height: 130px;
  margin-top: 22px;
  padding: 20px;
  flex-direction: row;
  gap: 14px;
  text-align: left;
}

.map-card--compact > .icon {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  color: var(--manank-orange-dark);
}

.map-card--compact span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.error-card {
  padding: 70px 30px;
  border-radius: 24px;
  background: var(--manank-white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* Footer */
.site-footer {
  color: rgba(255,255,255,0.82);
  background: var(--manank-blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 0.7fr;
  gap: 42px;
  padding-top: 62px;
  padding-bottom: 50px;
}

.footer-brand img {
  max-width: 250px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 10px;
  background: var(--manank-white);
}

.footer-brand p {
  max-width: 350px;
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--manank-white);
  font-size: 1rem;
}

.footer-menu,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li,
.footer-contact li {
  margin-bottom: 9px;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: var(--manank-orange);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact .icon {
  margin-top: 4px;
  color: var(--manank-orange);
}

.social-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--manank-white);
  background: #1659a2;
}

.footer-hours {
  margin-top: 15px;
  color: rgba(255,255,255,0.64);
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #03254e;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 0.78rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--manank-white);
  background: var(--manank-blue);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* WordPress helpers */
.alignwide {
  width: min(1120px, 100vw - 40px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
}

.bypostauthor {
  display: block;
}

/* Responsive */
@media (max-width: 1120px) {
  .navbar__cta {
    display: none;
  }

  .primary-navigation a {
    padding-inline: 9px;
    font-size: 0.85rem;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .quick-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-service:nth-child(3)::after {
    display: none;
  }

  .quick-service:nth-child(-n+3) {
    border-bottom: 1px solid var(--manank-line);
  }

  .app-panel {
    grid-template-columns: 1fr 1.5fr 0.75fr;
  }

  .digital-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

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

  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resource-card--calculator {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 76px;
  }

  .topbar__contacts {
    gap: 14px;
  }

  .topbar__hours,
  .topbar__links {
    display: none;
  }

  .site-logo img,
  .site-logo .custom-logo {
    max-width: 225px;
    max-height: 62px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    padding: 24px;
    background: var(--manank-white);
    box-shadow: -18px 0 45px rgba(5,43,89,0.16);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.25s ease;
  }

  .site-header.is-scrolled .primary-navigation {
    top: var(--header-height);
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-navigation .menu,
  .primary-navigation ul {
    display: block;
  }

  .primary-navigation li {
    border-bottom: 1px solid var(--manank-line);
  }

  .primary-navigation a {
    padding: 14px 10px;
    font-size: 1rem;
  }

  .primary-navigation .sub-menu {
    position: static;
    display: block;
    min-width: auto;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content h1,
  .hero__nepali,
  .hero__trust {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    text-align: left;
  }

  .hero__image-wrap {
    min-height: 430px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual {
    min-height: 420px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .app-panel {
    grid-template-columns: 1fr 1fr;
  }

  .app-heading {
    grid-column: 1 / -1;
  }

  .qr-card {
    min-height: 235px;
  }

  .digital-links {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-card {
    grid-column: 1 / -1;
  }

  .post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .topbar__inner {
    min-height: 34px;
    justify-content: center;
  }

  .topbar__contacts span:not(:first-child) {
    display: none;
  }

  .navbar__inner {
    min-height: 72px;
  }

  .site-logo img,
  .site-logo .custom-logo {
    max-width: 195px;
    max-height: 56px;
  }

  .primary-navigation {
    top: 72px;
  }

  .hero {
    padding: 44px 0 92px;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__content h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .hero__nepali {
    font-size: 1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 330px;
  }

  .hero__image-wrap {
    border-width: 6px;
    border-radius: 24px 24px 54px 24px;
  }

  .hero__image-badge {
    left: 14px;
    bottom: 14px;
    padding: 11px 13px;
  }

  .quick-services {
    margin-top: -34px;
  }

  .quick-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-service:nth-child(3)::after {
    display: block;
  }

  .quick-service:nth-child(even)::after {
    display: none;
  }

  .quick-service:nth-child(-n+4) {
    border-bottom: 1px solid var(--manank-line);
  }

  .about-section {
    padding-top: 88px;
  }

  .about-visual {
    min-height: 340px;
  }

  .values-grid,
  .service-grid,
  .resources-grid,
  .office-grid,
  .post-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .app-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .app-heading,
  .digital-links {
    grid-column: auto;
  }

  .store-cards {
    grid-template-columns: 1fr;
  }

  .qr-card {
    min-height: auto;
  }

  .qr-card img {
    width: 145px;
    height: 145px;
  }

  .service-card p {
    min-height: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    justify-content: flex-start;
    padding-inline: 28px;
  }

  .stat-item::after {
    display: none !important;
  }

  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .resource-card,
  .resource-card--calculator {
    grid-column: auto;
  }

  .emi-calculator {
    grid-template-columns: 1fr;
  }

  .office-card,
  .map-card {
    min-height: 220px;
  }

  .map-card {
    grid-column: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-info-panel,
  .single-content {
    padding: 24px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .site-logo img,
  .site-logo .custom-logo {
    max-width: 170px;
  }

  .quick-service {
    padding: 22px 10px;
  }

  .quick-service h2 {
    font-size: 0.85rem;
  }

  .quick-service p {
    display: none;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 285px;
  }

  .hero__image-badge {
    font-size: 0.75rem;
  }

  .growth-coin--2 {
    right: 7%;
  }
}

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

/* Hero refresh — v1.2 */
.hero {
  padding: 64px 0 118px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 43%, rgba(238,246,255,.88) 100%),
    radial-gradient(circle at 8% 10%, rgba(245,130,32,.18), transparent 28%),
    linear-gradient(135deg, #fffaf5 0%, #eef6ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image: radial-gradient(rgba(7,59,120,.13) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 38%, transparent 68%, #000 100%);
}
.hero__grid { grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr); gap: 42px; }
.hero__content { padding: 18px 0 58px; }
.hero .eyebrow { color: var(--manank-orange-dark); letter-spacing: .11em; font-weight: 900; }
.hero__content h1 { font-size: clamp(2.55rem, 4.4vw, 4.65rem); line-height: 1.02; letter-spacing: -.045em; margin: 14px 0 22px; }
.hero__content h1::first-line { color: var(--manank-blue-dark); }
.hero__nepali { font-size: clamp(1.05rem, 1.35vw, 1.28rem); line-height: 1.65; border-left: 4px solid var(--manank-orange); padding-left: 16px; }
.button--ghost { color: var(--manank-blue-dark); background: rgba(255,255,255,.72); border: 1px solid rgba(7,59,120,.22); box-shadow: 0 8px 20px rgba(7,59,120,.07); }
.button--ghost:hover { background: #fff; transform: translateY(-2px); }
.hero__trust { gap: 10px; }
.hero__trust > div { padding: 11px 12px; backdrop-filter: blur(12px); }
.hero__visual { padding-bottom: 44px; }
.hero__image-wrap { min-height: 520px; border: 10px solid rgba(255,255,255,.94); border-radius: 38px 38px 100px 38px; box-shadow: 0 34px 85px rgba(7,59,120,.25); }
.hero__image-wrap::after { content:""; position:absolute; inset:auto 0 0 0; height:40%; z-index:1; background:linear-gradient(0deg, rgba(4,35,72,.38), transparent); pointer-events:none; }
.hero__image-wrap img { min-height: 520px; object-position: 53% center; }
.hero__image-badge { left: 20px; bottom: 22px; z-index:3; }
.hero__mini-stat { position:absolute; z-index:4; display:flex; flex-direction:column; min-width:112px; padding:13px 16px; border:1px solid rgba(255,255,255,.85); border-radius:16px; background:rgba(255,255,255,.9); box-shadow:0 14px 34px rgba(7,59,120,.18); backdrop-filter:blur(12px); }
.hero__mini-stat strong { color:var(--manank-orange-dark); font-size:1.35rem; line-height:1; }
.hero__mini-stat span { margin-top:5px; color:var(--manank-blue-dark); font-size:.72rem; font-weight:800; }
.hero__mini-stat--one { top:26px; right:-18px; }
.hero__mini-stat--two { top:118px; right:-30px; }
.hero__statbar { position:absolute; z-index:5; left:28px; right:-18px; bottom:0; display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden; border:1px solid rgba(255,255,255,.24); border-radius:18px; color:#fff; background:linear-gradient(110deg,#052f65,#0c4d98); box-shadow:0 18px 42px rgba(5,43,89,.28); }
.hero__statbar > div { display:flex; align-items:center; gap:9px; min-width:0; padding:15px 13px; border-right:1px solid rgba(255,255,255,.16); }
.hero__statbar > div:last-child { border-right:0; }
.hero__statbar .icon { width:30px; height:30px; flex:0 0 30px; color:var(--manank-orange); }
.hero__statbar span { display:flex; min-width:0; flex-direction:column; font-size:.64rem; line-height:1.15; opacity:.88; }
.hero__statbar strong { color:#fff; font-size:1.02rem; opacity:1; }

@media (max-width: 1180px) {
  .hero__grid { grid-template-columns:minmax(0,.92fr) minmax(430px,1.08fr); gap:28px; }
  .hero__mini-stat { display:none; }
  .hero__statbar { right:0; left:10px; }
}
@media (max-width: 900px) {
  .hero { padding-top:44px; }
  .hero__grid { grid-template-columns:1fr; }
  .hero__content { padding-bottom:0; text-align:center; }
  .hero__nepali { margin-inline:auto; border-left:0; border-top:3px solid var(--manank-orange); padding:14px 0 0; }
  .hero__actions, .hero__trust { justify-content:center; margin-inline:auto; }
  .hero__visual { max-width:720px; margin-inline:auto; width:100%; }
  .hero__statbar { position:relative; left:auto; right:auto; bottom:auto; margin:-24px 18px 0; }
}
@media (max-width: 640px) {
  .hero { padding:34px 0 86px; }
  .hero__content h1 { font-size:clamp(2.15rem,12vw,3.1rem); }
  .hero__actions { display:grid; grid-template-columns:1fr 1fr; }
  .hero__actions .button:last-child { grid-column:1/-1; }
  .hero__trust { grid-template-columns:1fr; }
  .hero__image-wrap, .hero__image-wrap img { min-height:360px; }
  .hero__image-wrap { border-radius:24px 24px 60px 24px; }
  .hero__image-badge { left:12px; bottom:12px; padding:10px 12px; }
  .hero__statbar { grid-template-columns:1fr 1fr; margin:-16px 10px 0; }
  .hero__statbar > div:nth-child(2) { border-right:0; }
  .hero__statbar > div:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.16); }
}

/* Hero layout stability fix — v1.3.0 */
.hero {
  overflow: hidden;
  padding: 54px 0 96px;
}
.hero__grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
}
.hero__content {
  min-width: 0;
  padding: 8px 0 26px;
}
.hero__content h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4.1vw, 4.15rem);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
}
.hero__visual {
  min-width: 0;
  padding: 0 0 40px;
}
.hero__image-wrap,
.hero__image-wrap img {
  min-height: 430px;
}
.hero__image-wrap {
  overflow: hidden;
  width: 100%;
  border-radius: 34px 34px 82px 34px;
}
.hero__image-wrap img {
  display: block;
  aspect-ratio: 16 / 11;
  object-position: 50% 46%;
}
.hero__mini-stat {
  display: none !important;
}
.hero__statbar {
  position: relative !important;
  z-index: 6;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: calc(100% - 36px);
  margin: -30px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(110deg, #052f65, #0c4d98) !important;
}
.hero__statbar > div {
  min-width: 0;
  padding: 14px 10px;
}
.hero__statbar span {
  overflow: hidden;
  color: rgba(255,255,255,.88);
  white-space: normal;
}
.hero__statbar strong {
  display: block;
  color: #fff;
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 28px;
  }
  .hero__content h1 {
    font-size: clamp(2.35rem, 4.4vw, 3.55rem);
  }
  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 390px;
  }
  .hero__statbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__statbar > div:nth-child(2) {
    border-right: 0;
  }
  .hero__statbar > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 42px 0 82px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__content h1 {
    max-width: 760px;
    margin-inline: auto;
  }
  .hero__visual {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero__content h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 300px;
  }
  .hero__statbar {
    width: calc(100% - 20px);
    margin-top: -18px;
  }
}

/* Exact reference hero — v1.4.0 */
.hero {
  overflow: hidden;
  padding: 32px 0 44px;
  background:
    radial-gradient(circle at 4% 80%, rgba(246,130,31,.13), transparent 24%),
    radial-gradient(circle at 95% 22%, rgba(7,59,120,.08), transparent 24%),
    linear-gradient(108deg,#fffaf4 0%,#ffffff 46%,#eef5fc 100%);
}
.hero::before { opacity:.28; }
.hero::after {
  content:"";
  position:absolute;
  right:-90px;
  bottom:-145px;
  width:380px;
  height:260px;
  border-radius:50%;
  background:rgba(246,130,31,.12);
  transform:rotate(-8deg);
  pointer-events:none;
}
.hero__grid {
  grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr);
  align-items:center;
  gap:38px;
}
.hero__content { padding:0; position:relative; z-index:3; }
.hero .eyebrow { font-size:.75rem; letter-spacing:.055em; }
.hero__title {
  max-width:590px;
  margin:10px 0 14px;
  color:#073b78;
  font-size:clamp(2.55rem,4.2vw,4.3rem);
  line-height:1.04;
  letter-spacing:-.045em;
}
.hero__title span { color:#f57d1f; }
.hero__nepali {
  max-width:620px;
  margin:0 0 16px;
  padding:0;
  border:0;
  color:#183d68;
  font-size:clamp(1rem,1.25vw,1.18rem);
  font-weight:700;
  line-height:1.55;
}
.hero__trust {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  max-width:620px;
  margin:0 0 20px;
  overflow:hidden;
  border:1px solid rgba(7,59,120,.10);
  border-radius:14px;
  background:rgba(255,255,255,.90);
  box-shadow:0 10px 26px rgba(8,54,105,.08);
}
.hero__trust > div {
  min-height:62px;
  padding:10px 12px;
  border:0;
  border-right:1px solid rgba(7,59,120,.09);
  border-radius:0;
  box-shadow:none;
  background:transparent;
}
.hero__trust > div:last-child { border-right:0; }
.hero__trust .icon { width:26px; height:26px; color:#f57d1f; }
.hero__trust strong { font-size:.74rem; }
.hero__trust span { font-size:.61rem; }
.hero__actions { margin:0; gap:12px; }
.hero__actions .button { min-height:48px; padding:0 20px; border-radius:7px; font-size:.86rem; }
.hero__visual { min-width:0; padding:0 0 54px; position:relative; z-index:2; }
.hero__image-wrap {
  min-height:410px;
  overflow:hidden;
  border:0;
  border-radius:70px 28px 28px 70px;
  background:#dfeaf7;
  box-shadow:none;
}
.hero__image-wrap::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  border:1px solid rgba(255,255,255,.7);
  border-radius:inherit;
  pointer-events:none;
}
.hero__image-wrap::after {
  height:28%;
  background:linear-gradient(0deg,rgba(4,35,72,.18),transparent);
}
.hero__image-wrap img {
  width:100%;
  height:410px;
  min-height:0;
  object-fit:cover;
  object-position:50% 47%;
  filter:saturate(1.03) contrast(1.02);
}
.hero__statbar {
  position:absolute;
  left:24px;
  right:0;
  bottom:0;
  z-index:5;
  grid-template-columns:repeat(4,1fr);
  border-radius:16px;
  background:linear-gradient(112deg,#062f64,#084c97);
  box-shadow:0 14px 30px rgba(5,43,89,.23);
}
.hero__statbar > div { padding:15px 12px; gap:8px; }
.hero__statbar .icon { width:28px; height:28px; flex-basis:28px; color:#fff; }
.hero__statbar strong { font-size:1rem; }
.hero__statbar span { font-size:.58rem; }
.hero__glow { display:none; }

@media (max-width:1180px) {
  .hero__grid { grid-template-columns:minmax(0,.9fr) minmax(450px,1.1fr); gap:24px; }
  .hero__title { font-size:clamp(2.3rem,4vw,3.65rem); }
  .hero__image-wrap,.hero__image-wrap img { height:390px; min-height:390px; }
}
@media (max-width:900px) {
  .hero { padding:38px 0 56px; }
  .hero__grid { grid-template-columns:1fr; }
  .hero__content { text-align:center; }
  .hero__title,.hero__nepali,.hero__trust { margin-left:auto; margin-right:auto; }
  .hero__actions { justify-content:center; }
  .hero__visual { width:100%; max-width:760px; margin:8px auto 0; }
  .hero__image-wrap { border-radius:30px; }
  .hero__statbar { left:18px; right:18px; }
}
@media (max-width:640px) {
  .hero { padding:28px 0 42px; }
  .hero__title { font-size:clamp(2.1rem,11vw,3rem); }
  .hero__trust { grid-template-columns:1fr; }
  .hero__trust > div { border-right:0; border-bottom:1px solid rgba(7,59,120,.09); justify-content:center; }
  .hero__trust > div:last-child { border-bottom:0; }
  .hero__actions { grid-template-columns:1fr; }
  .hero__actions .button:last-child { grid-column:auto; }
  .hero__image-wrap,.hero__image-wrap img { height:310px; min-height:310px; }
  .hero__statbar { position:relative; left:auto; right:auto; margin:-12px 8px 0; grid-template-columns:1fr 1fr; }
}
