/* =========================================================
   MobiFin — Home
   style.css : tokens, base, layout, components, sections
   ========================================================= */

/* ---------- Typeface ----------------------------------------------------
   Poppins, per the Adobe XD design. Self-hosted — no third-party request.
   ------------------------------------------------------------------------ */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap
}

/* =========================================================
   1. TOKENS
   ========================================================= */
:root {
  /* palette sampled from the reference */
  --navy-900: #0B1E3D;
  --navy-800: #132646;
  --navy-700: #182E57;
  /* dark section background */
  --navy-600: #1E376A;
  --ink: #0D2B52;
  /* headings */
  --ink-soft: #0F2E56;
  --slate: #5D6E85;
  /* body copy */
  --slate-2: #758394;
  /* muted copy */
  --slate-3: #8A97A8;

  --blue: #2680EB;
  /* primary */
  --blue-600: #1F6FD4;
  --blue-500: #3B7FFF;
  --blue-400: #4E9BFF;
  --blue-300: #7FB4FF;
  --blue-bright: #0066FC;
  /* news section */
  --blue-tint: #EAF2FE;
  --blue-line: #D8E6FB;

  --orange: #DD3E00;
  --orange-500: #E8551F;
  --orange-300: #F39F7F;
  --orange-200: #FAE2D9;
  --peach: #FF9D64;
  --violet: #646EFF;
  --teal: #12C2C9;

  --white: #fff;
  --paper: #FCFCFC;
  --paper-2: #F7FAFD;
  --hairline: #E7ECF3;
  --hairline-light: rgba(255, 255, 255, .14);

  /* type */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-h1: clamp(2.55rem, 5.9375vw, 7.125rem);
  /* 7.125rem = 114px at the 1920px reference width */
  --fs-h2: clamp(1.7rem, 2.9vw, 2.6rem);
  --fs-h2-xl: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2.3rem);
  --fs-lead: clamp(1rem, 1.25vw, 1.2rem);
  --fs-body: 0.9375rem;
  --fs-sm: 0.8125rem;
  --fs-xs: 0.6875rem;

  /* layout */
  --container: 1220px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 8vw, 118px);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-card: 0 14px 34px -22px rgba(13, 43, 82, .34);
  --shadow-card-hi: 0 26px 54px -26px rgba(13, 43, 82, .42);
  --shadow-btn: 0 12px 26px -12px rgba(38, 128, 235, .65);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%
}

img {
  height: auto
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0
}

hr {
  border: 0
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0
}

.skip-link:focus {
  left: 0
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter)
}

.ico {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: none;
  flex: none
}

.ico use {
  stroke: currentColor
}

/* =========================================================
   3. TYPE PRIMITIVES
   ========================================================= */
.h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1923077;
  letter-spacing: 0;
  color: #07274D;
}

.h2--xl {
  font-size: var(--fs-h2-xl)
}

.h2--light {
  color: #fff
}

.h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  color: var(--ink)
}

.h3--light {
  color: #fff
}

.h3--sm {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem)
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.533333;
  letter-spacing: 0;
  color: #424F5E;
  font-weight: 500;
  max-width: 46ch;
}

.lead--light {
  color: rgba(255, 255, 255, .82)
}

.eyebrow {
  text-align: left;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0px;
  color: #55667B;
  opacity: 1;
  margin-bottom: 0;
}

.eyebrow--light {
  color: var(--blue-400)
}

.eyebrow--blue {
  color: var(--blue-400)
}

.eyebrow--onblue {
  color: rgba(255, 255, 255, .86)
}

.cta .eyebrow {
  text-align: center
}

.kicker {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .85em;
}

.kicker--orange {
  color: var(--orange-500)
}

.kicker--blue {
  color: var(--blue-400)
}

.kicker span {
  opacity: .55;
  margin: 0 .15em
}

.dot {
  line-height: 0;
  font-weight: 800
}

.dot--orange {
  color: var(--orange)
}

.dot--blue {
  color: var(--blue)
}

.dot--navy {
  color: var(--ink)
}

.dot--white {
  color: #fff
}

.eyebrow .dot--orange {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 2px;
  background: url("../images/xd-original/eyebrow_image_1.svg") no-repeat center/contain;
  color: transparent;
  overflow: hidden;
  vertical-align: middle;
}

.rule {
  height: 1px;
  background: var(--hairline);
  margin: clamp(30px, 4vw, 48px) 0
}

.rule--light {
  background: var(--hairline-light)
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.split .lead {
  padding-top: .45rem
}

/* =========================================================
   4. BUTTONS & LINKS
   ========================================================= */
.btn {
  --btn-py: 14px;
  --btn-px: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background-color .3s var(--ease);
  will-change: transform;
}

.btn .ico {
  width: 1.6em;
  height: .8em;
  transition: transform .45s var(--ease-out)
}

.btn:hover .ico {
  transform: translateX(4px)
}

.btn--sm {
  --btn-py: 11px;
  --btn-px: 20px;
  font-size: .6875rem
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: inset 0 -4px 0 #1167CC, 0 12px 26px -12px rgba(38, 128, 235, .65)
}

.btn--primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgba(38, 128, 235, .75)
}

.btn--ghost {
  background: #fff;
  color: #07274D;
  box-shadow: 0 6px 18px #00000014
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -18px rgba(13, 43, 82, .5)
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-400);
  transition: color .3s var(--ease);
}

.link-arrow .ico {
  width: 1.7em;
  height: .8em;
  transition: transform .45s var(--ease-out)
}

.link-arrow:hover {
  color: #fff
}

.link-arrow:hover .ico {
  transform: translateX(5px)
}

.link-arrow--muted {
  color: var(--slate-2)
}

.link-arrow--muted:hover {
  color: var(--blue)
}

/* =========================================================
   5. HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding: 10px 0;
  transition: background-color .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}

.site-header.is-stuck {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 rgba(13, 43, 82, .07), 0 14px 30px -26px rgba(13, 43, 82, .5);
  padding: 8px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  max-width: 1440px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none
}

.brand img {
  width: clamp(140px, 9.15vw, 174px);
  height: auto
}

.brand__mark {
  width: 30px;
  height: 30px
}

.brand__mark--lg {
  width: 34px;
  height: 34px
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand__word {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -.02em
}

.brand__mobi {
  color: var(--blue)
}

.brand__fin {
  color: var(--orange)
}

.brand__word sup {
  font-size: .42em;
  font-weight: 600;
  color: var(--orange);
  top: -.9em
}

.brand__tag {
  font-size: .42rem;
  font-weight: 600;
  letter-spacing: .055em;
  color: var(--slate-3);
  margin-top: 3px;
  text-transform: none
}

.brand__tag--light {
  color: rgba(255, 255, 255, .55)
}

.nav {
  margin-inline: auto
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px)
}

.nav__list a {
  position: relative;
  font-size: clamp(.9375rem, .94vw, 1.125rem);
  font-weight: 500;
  color: #4C5D74;
  padding: 6px 2px;
  transition: color .3s var(--ease);
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: right .45s var(--ease-out);
}

.nav__list a:hover {
  color: var(--ink)
}

.nav__list a:hover::after {
  right: 0
}

.nav__cta-mobile {
  display: none
}

.header__cta {
  flex: none
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 12px
}

.nav-toggle .ico {
  width: 24px;
  height: 24px
}

.nav-toggle .ico--close {
  display: none
}

.nav-toggle[aria-expanded="true"] .ico--open {
  display: none
}

.nav-toggle[aria-expanded="true"] .ico--close {
  display: block
}

/* =========================================================
   6. HERO
   ========================================================= */
.hero {
  --hero-liquid-size: clamp(560px, 72vw, 1040px);
  --hero-liquid-large: clamp(924px, 118.8vw, 1716px);
  position: relative;
  min-height: clamp(720px, 53.5vw, 1028px);
  padding: clamp(120px, 7vw, 134px) 0 clamp(68px, 6.3vw, 92px);
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero__aurora {
  /* Supplied Hero artwork from assets/images/bg. Keep the raster artwork
     intact and let it scale as one layer so the color fields are not
     replaced by a recreated gradient. */
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: url("../images/bg/hero-bg.png") center center / cover no-repeat;
  opacity: 1;
}

.hero__goo-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden
}

.hero__liquid {
  position: absolute;
  inset: 0;
  filter: url(#heroLiquidGoo) blur(clamp(30px, 3vw, 44px));
  transform: translateZ(0);
  will-change: filter;
  display: none;
}

.blob {
  position: absolute;
  width: var(--hero-liquid-size);
  height: var(--hero-liquid-size);
  top: calc(50% - var(--hero-liquid-size) / 2);
  left: calc(50% - var(--hero-liquid-size) / 2);
  border-radius: 50%;
  mix-blend-mode: hard-light;
  transform-origin: center center;
  opacity: .72;
  will-change: transform;
}

.blob--cursor {
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  margin: 0;
  translate: 50% 50%;
  opacity: .42;
  background: radial-gradient(circle at center, rgba(59, 190, 255, .72) 0%, rgba(59, 190, 255, 0) 52%) no-repeat;
  will-change: transform;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: none;
}

.hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  /* .hero__inner is also .container (max-width:var(--container), 1220px) —
     widen it here, scoped to the hero only, so the title's 1399px XD max-width
     isn't clipped by the sitewide container cap used by every other section. */
  max-width: calc(1399px + 2 * var(--gutter));
}

.hero__title {
  /* Exact Adobe XD spec: bold 134px/140px Poppins, 0 tracking, #07274D,
     capitalize, 1399px box — color/weight are scoped to the hero title
     only, not the shared --ink token used by headings elsewhere. */
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: calc(142 / 134);
  letter-spacing: 0;
  color: #07274D;
  text-transform: capitalize;
  max-width: 1399px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 3.6vw, 50px);
}

.hero__lead {
  max-width: clamp(35rem, 38vw, 46rem);
  margin-inline: auto;
  font-size: clamp(1.125rem, 1.15vw, 1.375rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  color: #758394;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, .84vw, 16px);
  margin-top: clamp(28px, 2.2vw, 34px)
}

.hero .btn {
  --btn-py: clamp(10px, .78vw, 15px);
  --btn-px: clamp(20px, 1.5vw, 28px);
  font-size: clamp(.6875rem, .68vw, .8125rem);
  font-weight: 600
}

.header__cta {
  --btn-py: clamp(10px, .68vw, 13px);
  --btn-px: clamp(18px, 1.42vw, 27px);
  font-size: clamp(.65625rem, .58vw, .6875rem)
}

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

/* Desktop headline metrics: 114px type on a 142px baseline. */
@media (min-width:1440px) {
  .hero__title {
    font-size: 114px;
    line-height: 142px;
    letter-spacing: 0
  }
}

/* =========================================================
   7. TRUSTED BY
   ========================================================= */
.trusted {
  background: #F1F7FE;
  padding: clamp(20px, 2.6vw, 30px) 0
}

.trusted__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px)
}

.trusted__label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-2);
  flex: none
}

.trusted__marquee {
  --logo-gap: clamp(10px, 1.6vw, 20px);
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 7px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.trusted__marquee::before,
.trusted__marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 7%;
  pointer-events: none;
  background: linear-gradient(90deg, #F1F7FE, rgba(241, 247, 254, 0));
}

.trusted__marquee::after {
  left: auto;
  right: 0;
  transform: scaleX(-1)
}

.trusted__logos {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  animation: logoMarquee 34s linear infinite;
  will-change: transform;
}

.trusted__marquee:hover .trusted__logos {
  animation-play-state: paused
}

.logo-chip {
  flex: 0 0 clamp(150px, 14vw, 190px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 clamp(10px, 1.6vw, 22px);
  background: #fff;
  border: 1px solid #DBE2EF;
  border-radius: 12px;
  box-shadow: 0 3px 6px #00000014;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}

.logo-chip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain
}

.logo-chip:nth-child(5n+1) img,
.logo-chip:nth-child(5n+3) img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(13%) saturate(1120%) hue-rotate(182deg) brightness(94%) contrast(86%);
}

.logo-chip:nth-child(5n+2) img,
.logo-chip:nth-child(5n+4) img,
.logo-chip:nth-child(5n+5) img {
  filter: brightness(0) saturate(100%) invert(76%) sepia(11%) saturate(581%) hue-rotate(202deg) brightness(91%) contrast(88%);
}

.logo-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #00000014
}

/* =========================================================
   8. WHO WE ARE / GLOBE
   ========================================================= */
.about {
  position: relative;
  padding: var(--section-y) 0 0;
  overflow: hidden;
  background: #FCFCFC
}

.about__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/xd-original/global.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.about .container {
  position: relative;
  z-index: 1
}

.xd-break {
  display: none
}

.about .split>.lead {
  text-align: left;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: var(--fs-lead);
  line-height: 1.533333;
  letter-spacing: 0px;
  color: #424F5E;
  opacity: 1;
  max-width: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(34px, 5vw, 62px);
}

.stat {
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: var(--radius);
  padding: clamp(16px, 1.7vw, 22px) clamp(14px, 1.6vw, 20px);
  box-shadow: 0 3px 6px #00000014;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .45s var(--ease);
}

.stat--active {
  border: 3px solid #2680EB;
  box-shadow: 0 3px 6px #00000014
}

.stat:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 30px -20px rgba(38, 128, 235, .55)
}

.stat:hover {
  transform: translateY(-4px)
}

.stat__num {
  display: block;
  font-size: clamp(1.35rem, 2.05vw, 1.8rem);
  font-weight: 700;
  color: #07274D;
  line-height: 1.1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums
}

.stat__label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: #758394;
  margin-top: .35em;
  letter-spacing: 0
}

.globe {
  position: relative;
  height: clamp(230px, 32vw, 430px);
  margin-top: clamp(24px, 4vw, 54px);
  overflow: hidden
}

.globe__image {
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: min(1000px, 100%);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
}

.globe>[hidden] {
  display: none !important
}

.globe::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -36px;
  width: min(760px, 65vw);
  height: 190px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(38, 128, 235, .28) 0%, rgba(85, 174, 255, .16) 36%, rgba(85, 174, 255, 0) 74%);
  filter: blur(18px);
  pointer-events: none;
}

.globe::after {
  display: none;
}

.globe__canvas {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1100px, 142%);
  height: 100%
}

.globe__institution-links {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none
}

.institution-link {
  fill: none;
  stroke: rgba(38, 128, 235, .28);
  stroke-width: 1.5;
  stroke-linecap: round
}

.institution-flow {
  fill: none;
  stroke: #5CA7FF;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: .16 .84;
  stroke-dashoffset: 1;
  filter: url(#institutionLinkGlow);
  animation: institutionFlow 4.8s linear infinite;
}

.institution-flow--2 {
  animation-delay: -1.6s
}

.institution-flow--3 {
  animation-delay: -3.2s
}

.globe__pin {
  position: absolute;
  left: 50%;
  top: clamp(58px, 10vw, 120px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.globe__pin--bank {
  left: 50%;
  top: clamp(52px, 8.4vw, 104px)
}

.globe__pin--fintech {
  left: 27%;
  top: clamp(116px, 14vw, 172px)
}

.globe__pin--switch {
  left: 72%;
  top: clamp(104px, 13vw, 160px)
}

.globe__pin--wallet {
  left: 17%;
  top: clamp(188px, 21vw, 250px)
}

.globe__pin:not(.globe__pin--bank) .globe__pin-icon {
  width: clamp(30px, 3.4vw, 42px);
  height: clamp(30px, 3.4vw, 42px)
}

.globe__pin:not(.globe__pin--bank) .globe__pin-label {
  font-size: .52rem;
  color: var(--blue-600);
  padding-inline: 8px
}

.globe__pin-icon {
  width: clamp(38px, 4.4vw, 54px);
  height: clamp(38px, 4.4vw, 54px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue-line);
  box-shadow: 0 10px 24px -14px rgba(38, 128, 235, .7);
}

.globe__pin-icon .ico {
  width: 46%;
  height: 46%
}

.globe__pin-label {
  font-size: .6rem;
  font-weight: 600;
  color: var(--orange-500);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 2px 11px;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.globe__pin:hover .globe__pin-label {
  border-color: #F6C7B4;
  box-shadow: 0 5px 14px -10px rgba(221, 62, 0, .6)
}

/* =========================================================
   9. SECTION — NAVY BASE
   ========================================================= */
.section--navy {
  background: var(--navy-700);
  color: rgba(255, 255, 255, .82);
  position: relative;
  overflow: hidden
}

.section--navy .lead {
  color: rgba(255, 255, 255, .8)
}

/* Brand anchor */
.anchor {
  padding: var(--section-y) 0;
  background: #1E3A6A;
  background-image: url("../images/bg/brand-anchor.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.anchor .container {
  position: relative;
  z-index: 1
}

.moves {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px)
}

.move__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 13px;
  border: 2px solid #E1693F;
  color: #FFFFFF;
  margin-bottom: clamp(16px, 2.4vw, 28px);
  transition: transform .55s var(--ease-out), background-color .45s var(--ease), color .45s var(--ease);
}

.move__icon .ico {
  width: 28px;
  height: 28px
}

.move:hover .move__icon {
  transform: translateY(-4px);
  background: rgba(243, 159, 127, .14);
  color: #FFC3A9
}

.move__title {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: .55em
}

.move__text {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  max-width: 26ch
}

/* =========================================================
   10. PROBLEM
   ========================================================= */
.problem {
  position: relative;
  padding: var(--section-y) 0;
  background: #fff;
  overflow: hidden
}

.problem__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/bg/the-problem.png") center center / cover no-repeat;
}

.problem .container {
  position: relative;
  z-index: 1
}

.problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px)
}

.pcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(20px, 2.3vw, 30px);
  box-shadow: var(--shadow-card);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .45s var(--ease);
  overflow: hidden;
}

.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(38, 128, 235, .07), transparent 46%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hi);
  border-color: var(--blue-line)
}

.pcard:hover::before {
  opacity: 1
}

.pcard__jump {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  color: var(--slate-2);
  transition: transform .5s var(--ease-out), background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.pcard__jump .ico {
  width: 14px;
  height: 14px
}

.pcard:hover .pcard__jump {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: rotate(45deg)
}

.pcard__kicker {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: .85em;
  padding-right: 38px;
}

.pcard__kicker span {
  opacity: .5
}

.pcard__title {
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-bottom: .9em
}

.pcard__text {
  font-size: .875rem;
  line-height: 1.62;
  color: var(--slate-2)
}

/* =========================================================
   11. DEPLOY / ARCHITECTURE
   ========================================================= */
.deploy {
  padding: var(--section-y) 0 clamp(40px, 5vw, 64px)
}

.deploy__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg/two-ways-background.svg") center top / 1920px auto no-repeat;
}

.deploy__streaks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .8
}

.deploy__streaks i {
  position: absolute;
  top: -18%;
  width: 1px;
  height: clamp(70px, 9vw, 130px);
  background: linear-gradient(to bottom, transparent, rgba(124, 190, 255, .72), transparent);
  filter: drop-shadow(0 0 5px rgba(80, 155, 255, .6));
  opacity: 0;
  animation: deployStreak 9s linear infinite;
}

.deploy__streaks i:nth-child(1) {
  left: 9%;
  animation-delay: -2s
}

.deploy__streaks i:nth-child(2) {
  left: 24%;
  animation-delay: -7.4s;
  animation-duration: 12s
}

.deploy__streaks i:nth-child(3) {
  left: 46%;
  animation-delay: -4.1s;
  animation-duration: 10.5s
}

.deploy__streaks i:nth-child(4) {
  left: 63%;
  animation-delay: -9.3s;
  animation-duration: 13s
}

.deploy__streaks i:nth-child(5) {
  left: 79%;
  animation-delay: -5.8s;
  animation-duration: 11.5s
}

.deploy__streaks i:nth-child(6) {
  left: 92%;
  animation-delay: -1.1s;
  animation-duration: 14s
}

.deploy .container {
  position: relative;
  z-index: 1
}

.tabs {
  margin-top: clamp(28px, 4vw, 54px)
}

.tabs__panel[hidden] {
  display: none
}

.deploy__row {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.deploy__copy .h3 {
  margin-bottom: clamp(16px, 2vw, 24px)
}

.deploy__text {
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 34ch
}

.deploy__meta {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin: clamp(18px, 2.4vw, 30px) 0 clamp(14px, 1.8vw, 20px);
}

.deploy__figure {
  position: relative
}

.arch {
  width: 100%;
  height: auto;
  overflow: visible
}

#panel-classic .deploy__figure .arch,
#panel-tapestry .deploy__figure .arch {
  display: none
}

#panel-classic .deploy__figure::before,
#panel-tapestry .deploy__figure::before {
  content: "";
  display: block;
  margin-inline: auto;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#panel-classic .deploy__figure::before {
  max-width: 692px;
  aspect-ratio: 692/718;
  background-image: url("../images/xd-original/mobifin_classic_diagram_image.svg")
}

#panel-tapestry .deploy__figure::before {
  max-width: 616.5px;
  aspect-ratio: 616.5/375.5;
  background-image: url("../images/xd-original/mt_describe_diagram_image.svg")
}

.arch-box {
  fill: rgba(46, 123, 255, .10);
  stroke: rgba(120, 175, 255, .55);
  stroke-width: 1;
  stroke-dasharray: 4 4
}

.arch-chip {
  fill: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
  letter-spacing: .01em
}

.arch-cardlabel {
  fill: #fff;
  font-size: 10px;
  font-weight: 600;
  text-anchor: middle
}

.arch-label {
  fill: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 500;
  text-anchor: middle
}

.arch-core {
  fill: #fff;
  font-size: 19px;
  font-weight: 600;
  text-anchor: middle
}

.arch-mini {
  fill: rgba(255, 255, 255, .62);
  font-size: 8px;
  font-weight: 500;
  text-anchor: middle
}

.arch-mod {
  fill: #fff;
  font-size: 9.5px;
  font-weight: 600;
  text-anchor: middle
}

.arch-pill {
  fill: #fff;
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle
}

.arch-div {
  stroke: rgba(120, 175, 255, .35);
  stroke-width: 1
}

.arch-ic {
  color: #fff;
  width: 24px;
  height: 24px
}

.arch-ic--blue {
  color: #8CBAFF
}

.arch-links .flow-path {
  fill: none;
  stroke: rgba(126, 177, 255, .5);
  stroke-width: 1;
  stroke-dasharray: 3 4
}

.arch-heads path {
  fill: none;
  stroke: rgba(126, 177, 255, .75);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.arch-node {
  transform-box: fill-box;
  transform-origin: center
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: clamp(30px, 4vw, 52px);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  padding: 5px;
  width: max-content;
  margin-inline: auto;
}

.tab {
  padding: 11px 26px;
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  transition: color .35s var(--ease), background-color .45s var(--ease), box-shadow .45s var(--ease);
}

.tab.is-active {
  background: var(--orange-300);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(243, 159, 127, .9)
}

.tab:not(.is-active):hover {
  color: rgba(255, 255, 255, .85)
}

/* =========================================================
   12. SOLUTIONS
   ========================================================= */
.solutions {
  position: relative;
  padding: var(--section-y) 0;
  background: #fff;
  overflow: hidden;
  min-height: min(100vh, 980px)
}

.solutions__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/bg/mobiFin-Classic.png") center center / cover no-repeat;
}

.solutions .container {
  position: relative;
  z-index: 1
}

.solutions.is-scroll-active .sol-panel {
  box-shadow: 0 34px 75px -42px rgba(13, 43, 82, .5)
}

.solutions__body {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4.5vw, 64px);
  margin-top: clamp(34px, 5vw, 62px);
  align-items: start;
}

.sol-list {
  position: relative
}

.sol-list::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--hairline)
}

.sol-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: clamp(9px, 1.1vw, 13px) 0;
  color: var(--ink);
  transition: color .35s var(--ease);
}

.sol-item__num {
  position: relative;
  z-index: 1;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--hairline);
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate-2);
  transition: background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .5s var(--ease-out);
}

.sol-item__name {
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -.012em;
  transition: transform .5s var(--ease-out)
}

.sol-item:hover .sol-item__name {
  transform: translateX(3px)
}

.sol-item.is-active {
  color: var(--blue)
}

.sol-item.is-active .sol-item__num {
  background: var(--orange-300);
  border-color: var(--orange-300);
  color: #fff;
  transform: scale(1.06)
}

.sol-panel {
  background: linear-gradient(180deg, #fff, #FCFDFF);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px -40px rgba(13, 43, 82, .45);
  overflow: hidden;
}

.sol-panel__body {
  padding: clamp(22px, 2.8vw, 36px)
}

.sol-panel__title {
  font-size: clamp(1.3rem, 2.05vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0
}

.sol-panel__sub {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--orange-500);
  margin-top: .5em
}

.sol-panel__text {
  font-size: .875rem;
  line-height: 1.68;
  color: var(--slate-2);
  margin-top: 1.2em;
  max-width: 56ch
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5em
}

.chips li {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--blue);
  border: 1px solid var(--blue-line);
  border-radius: 6px;
  padding: 5px 11px;
  background: #F7FBFF;
  transition: background-color .35s var(--ease), transform .45s var(--ease-out);
}

.chips li:hover {
  background: var(--blue-tint);
  transform: translateY(-2px)
}

.sol-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: clamp(24px, 3.4vw, 44px)
}

.sol-flow__tile {
  width: clamp(44px, 4.4vw, 56px);
  height: clamp(44px, 4.4vw, 56px);
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--blue-line);
  background: #fff;
  color: var(--orange-500);
  box-shadow: 0 10px 22px -18px rgba(13, 43, 82, .5);
}

.sol-flow__tile .ico {
  width: 48%;
  height: 48%
}

.sol-flow__line {
  flex: 0 1 clamp(40px, 7vw, 96px);
  height: 1px;
  background-image: linear-gradient(90deg, var(--blue-line) 0 3px, transparent 3px 7px);
  background-size: 7px 1px;
}

.sol-panel__foot {
  padding: clamp(14px, 1.6vw, 20px) clamp(22px, 2.8vw, 36px);
  background: #F4F6F9;
  border-top: 1px solid var(--hairline);
}

/* =========================================================
   13. TAPESTRY
   ========================================================= */
.tapestry {
  padding: var(--section-y) 0;
  background: #1E3A6A;
  background-image: url("../images/bg/MobiFin-Tapestry.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.tapestry__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.tapestry__stage {
  position: relative;
  padding-left: clamp(0px, 3vw, 44px)
}

.tapestry__stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  bottom: 64px;
  width: 1px;
  background: var(--hairline-light);
}

.tslide {
  display: none
}

.tslide.is-active {
  display: block;
  animation: slideIn .7s var(--ease-out) both
}

.tslide__text {
  font-size: .9375rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, .76);
  margin-top: 1em;
  max-width: 48ch
}

.composer {
  margin-top: clamp(22px, 3vw, 38px);
  background: linear-gradient(180deg, #1B54C8, #1846A8);
  border: 1px solid rgba(122, 170, 255, .35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 70px -44px rgba(0, 0, 0, .75);
}

.composer__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.composer__dots {
  display: flex;
  gap: 5px
}

.composer__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6B5E
}

.composer__dots i:nth-child(2) {
  background: #FFC24B
}

.composer__dots i:nth-child(3) {
  background: #3ED07A
}

.composer__name {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff
}

.composer__badge {
  margin-left: auto;
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #BFE0FF;
  border: 1px solid rgba(191, 224, 255, .4);
  border-radius: 999px;
  padding: 3px 10px;
}

.composer__body {
  padding: clamp(14px, 1.8vw, 20px)
}

.composer__prompt {
  display: flex;
  gap: 8px;
  align-items: baseline;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .9);
  min-height: 38px;
}

.composer__caret {
  color: #8FC2FF;
  font-weight: 700
}

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

.composer__cards li {
  background: #2D6BF0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 10px 11px;
  transition: transform .5s var(--ease-out), background-color .4s var(--ease);
}

.composer__cards li:hover {
  transform: translateY(-3px);
  background: #3A78FA
}

.composer__cards b {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em
}

.composer__cards span {
  display: block;
  font-size: .5625rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-top: 2px
}

.composer__path {
  width: 100%;
  height: auto;
  margin-top: 14px
}

.tap-track {
  fill: none;
  stroke: rgba(255, 255, 255, .26);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.tap-progress {
  fill: none;
  stroke: #7DD9FF;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.tap-node {
  fill: #5C9BFF;
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 1.4;
  transition: fill .4s var(--ease)
}

.tap-node.is-hit {
  fill: #7DF0FF
}

.tap-label {
  fill: rgba(255, 255, 255, .62);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-anchor: middle
}

.tap-comet {
  fill: #B6F3FF
}

.composer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap
}

.composer__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .625rem;
  color: rgba(255, 255, 255, .72)
}

.composer__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4EE3D0
}

.composer__status b {
  color: #fff;
  font-weight: 700
}

.composer__live {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: #12C2C9;
  color: #06303A;
  border-radius: 999px;
  padding: 6px 13px;
}

.tslider__dots {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: clamp(20px, 3vw, 34px)
}

.tdot,
.qdot,
.ndot {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .28);
  transition: background-color .4s var(--ease), width .5s var(--ease-out)
}

.tdot.is-active {
  background: var(--blue-400);
  width: 44px
}

/* =========================================================
   14. WHO WE SERVE
   ========================================================= */
.serve {
  position: relative;
  padding: var(--section-y) 0 clamp(30px, 4vw, 56px);
  background: #fff;
  overflow: hidden
}

.serve__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/bg/Who-we-serve.png") center center / cover no-repeat;
  transform: scale(1.08);
  will-change: transform, opacity;
}

.serve .container,
.serve__track-wrap {
  position: relative;
  z-index: 1
}

.serve__track-wrap {
  margin-top: clamp(30px, 4vw, 52px)
}

.serve__rail {
  position: relative;
  height: 38px;
  margin-bottom: clamp(8px, 1.4vw, 16px)
}

.serve__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 1px;
  background: var(--hairline)
}

.serve__progress {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: width .25s linear
}

.serve__node {
  position: absolute;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%)
}

.serve__caption {
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  font-size: .625rem;
  color: var(--slate-3);
  white-space: nowrap;
  letter-spacing: .02em;
}

.serve__list {
  display: flex;
  gap: clamp(20px, 3.4vw, 52px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: clamp(10px, 1.6vw, 18px) var(--gutter) clamp(18px, 2.4vw, 28px);
  margin-inline: auto;
  max-width: calc(var(--container));
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.serve__list::-webkit-scrollbar {
  display: none
}

.serve__list.is-dragging {
  cursor: grabbing
}

.serve__list.is-pinned {
  overflow: hidden;
  scroll-snap-type: none;
  cursor: default
}

.serve-card {
  flex: 0 0 clamp(200px, 20vw, 236px);
  scroll-snap-align: start
}

.serve-card__num {
  display: block;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 700;
  color: var(--orange-200);
  line-height: 1;
  letter-spacing: 0;
  transition: color .5s var(--ease), transform .6s var(--ease-out);
}

.serve-card:hover .serve-card__num {
  color: #F8C6B0;
  transform: translateY(-3px)
}

.serve-card__title {
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  margin-top: .15em;
  line-height: 1.2
}

.serve-card__text {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--slate-2);
  margin-top: .85em;
  max-width: 24ch
}

/* =========================================================
   15. RECOGNITION
   ========================================================= */
.recognition {
  position: relative;
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, #FAFBFC, #F7F9FB);
  overflow: hidden
}

.recognition__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .88
}

.recognition__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/xd-original/recognition_background_image.svg") center top / 1920px auto no-repeat;
}

.recognition__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.recognition__intro .lead {
  margin-top: clamp(18px, 2.4vw, 30px)
}

.awards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px)
}

.award {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 18px 40px -32px rgba(13, 43, 82, .45);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .45s var(--ease);
}

.award--offset {
  margin-top: clamp(14px, 2.6vw, 34px)
}

.award:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hi);
  border-color: var(--blue-line)
}

.award__year {
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange-500);
  margin-bottom: .9em
}

.award__title {
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.2
}

.award__text {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--slate-2);
  margin-top: 1.1em
}

/* =========================================================
   16. TESTIMONIALS
   ========================================================= */
.testimonials {
  position: relative;
  padding: var(--section-y) 0;
  background: #fff;
  overflow: hidden
}

.testimonials__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/bg/Testimonials.png") center center / cover no-repeat;
}

.testimonials .container {
  position: relative;
  z-index: 1
}

.quotes {
  margin-top: clamp(26px, 4vw, 46px)
}

.quotes__viewport {
  overflow: hidden;
  border-radius: var(--radius)
}

.quotes__track {
  display: flex;
  transition: transform .85s var(--ease-out);
  will-change: transform
}

.quote {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  background: url("../images/xd-original/testimoanial_section_bg@2x.png") center center / cover no-repeat;
  border-radius: var(--radius);
  padding: clamp(30px, 4.4vw, 58px) clamp(24px, 4vw, 54px);
  min-height: clamp(220px, 26vw, 330px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote__mark {
  position: absolute;
  left: clamp(6px, 1.6vw, 22px);
  top: clamp(-14px, -1vw, 0px);
  width: 186.836px;
  height: 148.588px;
  font-size: 0;
  background: url("../images/xd-original/icon_comma.svg") center/contain no-repeat;
  opacity: .28;
  pointer-events: none;
}

.quote__people {
  display: none
}

.quote__logo img {
  width: 100%;
  height: auto
}

.quote__text {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 1.9vw, 1.6rem);
  font-weight: 700;
  line-height: 1.36;
  color: var(--ink);
  letter-spacing: 0;
  max-width: 22ch;
}

.quote__by {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 2.6vw, 34px)
}

.quote__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.quote__meta {
  font-size: .75rem;
  line-height: 1.45;
  color: rgba(13, 43, 82, .82)
}

.quote__logo {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 19vw, 250px);
  opacity: .96;
  z-index: 1;
}

.quotes__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(18px, 2.4vw, 28px)
}

.qdot {
  background: #D5DEE9
}

.qdot.is-active {
  background: var(--blue);
  width: 44px
}

/* =========================================================
   17. NEWS
   ========================================================= */
.news {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--blue-bright);
  color: #fff;
  overflow: hidden
}

.news__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/bg/Recent-from-MobiFin.png") center center / cover no-repeat;
}

.news .container {
  position: relative;
  z-index: 1
}

.news .lead {
  color: rgba(255, 255, 255, .9)
}

.news__viewport {
  overflow: hidden
}

.news__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px)
}

.post {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(16px, 1.9vw, 24px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -42px rgba(0, 26, 74, .9);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -40px rgba(0, 26, 74, .95)
}

.post__top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--ink);
  font-weight: 600
}

.post__sep {
  color: var(--slate-3);
  font-weight: 400
}

.post__date {
  color: var(--slate-2);
  font-weight: 500
}

.post__jump {
  margin-left: auto;
  color: var(--orange-500);
  display: grid;
  place-items: center;
  transition: transform .5s var(--ease-out)
}

.post__jump .ico {
  width: 15px;
  height: 15px
}

.post:hover .post__jump {
  transform: translate(3px, -3px)
}

.post__media {
  margin-top: clamp(12px, 1.5vw, 18px);
  border-radius: 10px;
  overflow: hidden;
  background: #0E2C5C;
  aspect-ratio: 16/11
}

.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out)
}

.post:hover .post__media img {
  transform: scale(1.05)
}

.post__title {
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.26;
  color: var(--ink);
  letter-spacing: 0;
  margin-top: clamp(14px, 1.8vw, 20px);
}

.post__text {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--slate-2);
  margin-top: .95em
}

.news__dots {
  display: flex;
  gap: 10px;
  margin-top: clamp(18px, 2.4vw, 28px)
}

.ndot {
  background: rgba(255, 255, 255, .4)
}

.ndot.is-active {
  background: #fff;
  width: 44px
}

/* =========================================================
   18. CTA + FOOTER
   ========================================================= */
.closing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #1E3A6A;
}

.closing>.cta,
.closing>.footer {
  background: transparent
}

.cta {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px)
}

.cta__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/bg/footer-bg.png") center top / cover no-repeat;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center
}

.cta__inner .lead {
  margin-inline: auto;
  max-width: 34rem;
  margin-top: clamp(14px, 1.8vw, 22px)
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px)
}

.footer {
  padding: 0 0 clamp(20px, 2.6vw, 30px)
}

.footer .container {
  position: relative;
  z-index: 1
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(10px, 2vw, 20px);
}

.footer__brand .brand__word {
  font-size: 1.5rem
}

.footer__brand .brand__mobi {
  color: #4E9BFF
}

.footer__brand .brand__text {
  gap: 0
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer__brand img {
  width: clamp(132px, 10.3vw, 198px);
  height: auto
}

.footer__brand::before {
  content: "";
  display: block;
  width: clamp(132px, 10.3vw, 198px);
  aspect-ratio: 197.694/40;
  background: url("../images/xd-original/footer_logo.svg") center/contain no-repeat
}

.footer__brand>.brand__mark,
.footer__brand>.brand__text {
  display: none
}

.footer__head {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--blue-400);
  margin-bottom: 1.2em
}

.footer__col li+li {
  margin-top: .85em
}

.footer__col a {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  transition: color .3s var(--ease), transform .4s var(--ease-out);
  display: inline-block
}

.footer__col a:hover {
  color: #fff;
  transform: translateX(3px)
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .62);
}

.footer__legal a {
  transition: color .3s var(--ease)
}

.footer__legal a:hover {
  color: #fff
}

/* === MOBIFIN TAPESTRY ELEMENTOR START === */
/* ==================================================
   GLOBAL DESIGN TOKENS
================================================== */
.mobifin-tapestry-elementor-home,
.mt-el-page {
  --mt-ink: #14213b;
  --mt-ink-soft: #40506a;
  --mt-muted: #8792a6;
  --mt-coral: #f04c2f;
  --mt-coral-soft: #fff0eb;
  --mt-blue: #2787ea;
  --mt-blue-soft: #eef6ff;
  --mt-line: #dce4f0;
  --mt-panel: #f8f9fb;
  --mt-white: #ffffff;
  --mt-shadow: 0 22px 60px rgba(24, 48, 88, 0.1);
  --mt-radius: 28px;
  color: var(--mt-ink);
  font-family: Manrope, Inter, Arial, sans-serif;
}

.mt-el-page,
.mt-el-page * {
  box-sizing: border-box;
}

.mt-el-page {
  overflow: clip;
 /* background: var(--mt-white);*/
}

.mt-el-page a {
  text-decoration: none;
}

.mt-el-page .elementor-widget-heading .elementor-heading-title {
  color: var(--mt-ink);
  font-family: inherit;
}

.mt-el-page .elementor-widget-text-editor {
  color: var(--mt-muted);
  font-size: 16px;
  line-height: 1.75;
}

.mt-el-page .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}

.mt-el-inner {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.mt-el-page .mt-el-eyebrow .elementor-heading-title {
  color: var(--mt-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mt-el-page .mt-el-title .elementor-heading-title {
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.mt-el-page .mt-el-section-title .elementor-heading-title {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.mt-el-page .mt-el-subtitle .elementor-heading-title {
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.3;
}

.mt-el-page .elementor-widget-button .elementor-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--mt-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(39, 135, 234, 0.22);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.mt-el-page .elementor-widget-button .elementor-button:hover {
  transform: translateY(-2px);
  background: #1478da;
  box-shadow: 0 16px 34px rgba(39, 135, 234, 0.3);
}

.mt-el-page .mt-el-button--coral .elementor-button {
  background: var(--mt-coral);
  box-shadow: 0 12px 28px rgba(240, 76, 47, .2);
}

.mt-el-page .mt-el-button--outline .elementor-button {
  border: 1px solid var(--mt-line);
  background: #fff;
  color: var(--mt-ink);
  box-shadow: none;
}

.mt-el-section {
  padding-block: clamp(88px, 10vw, 150px);
}

.mt-el-section--soft {
  background: var(--mt-panel);
}

.mt-el-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}

.mt-el-split--reverse {
  flex-direction: row-reverse;
}

.mt-el-split>.e-con {
  flex: 1 1 0;
  min-width: 0;
}

.mt-el-copy {
  gap: 18px;
}

.mt-el-actions {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.mt-el-media .elementor-widget-image {
  width: 100%;
}

.mt-el-media img {
  width: 100%;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  background: #fff;
  box-shadow: var(--mt-shadow);
}

/* ==================================================
   DYNAMIC HEADER
================================================== */
.mt-el-header {
  position: relative;
  z-index: 50;
  padding-block: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.mt-el-header.is-scrolled {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 240, .8);
  box-shadow: 0 10px 32px rgba(20, 33, 59, .06);
}

.admin-bar .mt-el-header.is-scrolled {
  top: 32px;
}

.mt-el-header-inner {
  min-height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.mt-el-header-inner>.elementor-element:first-child {
  margin-right: auto;
}

.mt-el-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mt-ink);
}

.mt-el-logo__image {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 48px;
}

.mt-el-logo__mark {
  position: relative;
  width: 39px;
  height: 39px;
  border: 2px solid var(--mt-coral);
  border-radius: 12px;
  transform: rotate(45deg);
}

.mt-el-logo__mark::before,
.mt-el-logo__mark::after,
.mt-el-logo__mark i,
.mt-el-logo__mark b {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1.5px solid var(--mt-coral);
  border-radius: 50%;
  background: #fff;
}

.mt-el-logo__mark::before {
  top: 7px;
  left: 7px;
}

.mt-el-logo__mark::after {
  right: 7px;
  bottom: 7px;
}

.mt-el-logo__mark i {
  right: 7px;
  top: 7px;
}

.mt-el-logo__mark b {
  left: 7px;
  bottom: 7px;
}

.mt-el-logo__words {
  display: grid;
  line-height: 1;
}

.mt-el-logo__words small {
  font-size: 10px;
  font-weight: 800;
}

.mt-el-logo__words strong {
  font-size: 22px;
}

.mt-el-nav-shell {
  display: flex;
  align-items: center;
}

.mt-el-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px;
  list-style: none;
  border: 1px solid #eef1f6;
  border-radius: 999px;
  background: #fafbfd;
}

.mt-el-menu li {
  position: relative;
  margin: 0;
}

.mt-el-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  color: #536076;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.mt-el-menu a:hover {
  color: var(--mt-ink);
  background: #fff;
}

.mt-el-header .mt-el-menu>li.is-active>a {
  color: #fff;
  background: var(--mt-coral);
}

.mt-el-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--mt-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--mt-shadow);
}

.mt-el-menu li:hover>.sub-menu,
.mt-el-menu li:focus-within>.sub-menu {
  display: grid;
}

.mt-el-menu .sub-menu a {
  white-space: normal;
}

.mt-el-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--mt-line);
  border-radius: 50%;
  background: #fff;
}

.mt-el-menu-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.mt-el-menu-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 4px;
  background: var(--mt-ink);
  transition: .2s ease;
}

/* ==================================================
   HOME PAGE
================================================== */
.mt-el-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-block: 72px 108px;
  background: radial-gradient(circle at 78% 30%, rgba(39, 135, 234, .09), transparent 30%), #fafafa;
}

.mt-el-hero .mt-el-copy {
  flex-basis: 38%;
}

.mt-el-hero .mt-el-media {
  flex-basis: 62%;
}

.mt-el-hero .mt-el-media img {
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(40, 67, 110, .12);
}

.mt-el-hero .mt-el-title {
  max-width: 560px;
}

.mt-el-hero .elementor-widget-text-editor {
  max-width: 540px;
}

.mt-el-highlight {
  position: relative;
}

.mt-el-highlight::before {
  content: "";
  position: absolute;
  inset: 10% -4% -6%;
  z-index: -1;
  border-radius: 32px;
  background: var(--mt-coral-soft);
  transform: rotate(-6deg);
}

.mt-el-center {
  align-items: center;
  text-align: center;
  gap: 18px;
}

.mt-el-center>.elementor-widget {
  max-width: 820px;
}

.mt-el-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 52px;
}

.mt-el-card {
  padding: 28px;
  border: 1px solid transparent;
  border-radius: 26px;
  background: #f9f9fa;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.mt-el-card:hover {
  transform: translateY(-5px);
  border-color: var(--mt-line);
  box-shadow: var(--mt-shadow);
}

.mt-el-card img {
  width: 100%;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.mt-el-page .mt-el-card .elementor-heading-title {
  font-size: 22px;
}

.mt-el-alternatives {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(65px, 7vw, 95px);
  border-radius: 36px;
  background: #f7f7f8;
}

.mt-el-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.mt-el-icon-grid .elementor-widget-icon-box {
  height: 100%;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
}

.mt-el-icon-grid .elementor-widget-icon-box:first-child {
  color: #fff;
  background: #3d4b59;
}

.mt-el-page .mt-el-icon-grid .elementor-widget-icon-box:first-child .elementor-icon-box-title,
.mt-el-page .mt-el-icon-grid .elementor-widget-icon-box:first-child .elementor-icon-box-description {
  color: #fff;
}

.mt-el-icon-grid .elementor-icon {
  color: var(--mt-blue);
}

.mt-el-page .mt-el-icon-grid .elementor-icon-box-title {
  font-size: 20px;
}

.mt-el-segment-pills {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.mt-el-page .mt-el-segment-pills .elementor-button {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--mt-line);
  background: #fff;
  color: var(--mt-ink);
  box-shadow: none;
}

.mt-el-page .mt-el-segment-pills .elementor-element:first-child .elementor-button {
  color: #fff;
  background: var(--mt-ink);
}

.mt-el-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.mt-el-feature-list .elementor-widget-icon-box {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--mt-line);
  border-radius: 22px;
  background: #fff;
}

.mt-el-feature-list .elementor-icon {
  color: var(--mt-coral);
}

.mt-el-page .mt-el-feature-list .elementor-icon-box-title {
  font-size: 19px;
}

.mt-el-cta {
  padding-block: 110px;
  background: linear-gradient(135deg, #12213c, #203b62);
}

.mt-el-cta-inner {
  min-height: 330px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 70px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 34px;
  background: radial-gradient(circle at 85% 10%, rgba(39, 135, 234, .28), transparent 35%), rgba(255, 255, 255, .03);
}

.mt-el-page .mt-el-cta .elementor-heading-title {
  color: #fff;
}

.mt-el-cta .elementor-widget-text-editor {
  max-width: 720px;
  color: #b8c5d8;
}

/* ==================================================
   FOOTER
================================================== */
.mt-el-footer {
  padding-block: 82px 28px;
  color: #fff;
  background: #0c172b;
}

.mt-el-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1.1fr;
  gap: 50px;
}

.mt-el-footer .mt-el-logo {
  color: #fff;
}

.mt-el-footer .mt-el-logo__words strong,
.mt-el-footer .mt-el-logo__words small {
  color: #fff;
}

.mt-el-page .mt-el-footer .elementor-heading-title {
  color: #fff;
  font-size: 15px;
}

.mt-el-footer .elementor-widget-text-editor {
  color: #8493aa;
  font-size: 13px;
}

.mt-el-nav--footer .mt-el-menu {
  display: grid;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mt-el-nav--footer .mt-el-menu a {
  padding: 4px 0;
  color: #8e9bb0;
  border-radius: 0;
}

.mt-el-nav--footer .mt-el-menu a:hover,
.mt-el-nav--footer .mt-el-menu .current-menu-item>a {
  color: #fff;
  background: transparent;
}

.mt-el-footer .elementor-social-icons-wrapper {
  display: flex;
  gap: 8px;
}

.mt-el-footer .elementor-social-icon {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.mt-el-footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mt-el-footer-bottom .elementor-widget-text-editor {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ==================================================
   MOTION
================================================== */
.mt-el-page .mt-el-reveal {
  opacity: 1;
  transform: none;
}

.mt-el-page.mt-motion-ready .mt-el-reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 1100px) {
  .mt-el-header-inner {
    gap: 16px;
  }

  .mt-el-menu a {
    padding-inline: 10px;
    font-size: 11px;
  }

  .mt-el-hero {
    min-height: 680px;
  }

  .mt-el-footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .mt-el-footer-grid>.e-con:last-child {
    grid-column: 1/-1;
  }
}

@media (max-width: 900px) {
  .admin-bar .mt-el-header.is-scrolled {
    top: 46px;
  }

  .mt-el-header-inner>.elementor-widget-button {
    display: none;
  }

  .mt-el-menu-toggle {
    display: block;
  }

  .mt-el-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    left: 24px;
    display: none;
    padding: 12px;
    border: 1px solid var(--mt-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--mt-shadow);
  }

  .mt-el-nav.is-open {
    display: block;
  }

  .mt-el-nav .mt-el-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .mt-el-nav .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 4px 0 4px 14px;
    box-shadow: none;
  }

  .mt-el-menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mt-el-menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
    opacity: 0;
  }

  .mt-el-menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mt-el-split,
  .mt-el-split--reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .mt-el-hero {
    min-height: 0;
    padding-block: 70px 90px;
  }

  .mt-el-hero .mt-el-copy,
  .mt-el-hero .mt-el-media {
    flex-basis: auto;
  }

  .mt-el-comparison-grid,
  .mt-el-feature-list {
    grid-template-columns: 1fr;
  }

  .mt-el-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 54px;
  }
}

@media (max-width: 640px) {

  .mt-el-inner,
  .mt-el-alternatives {
    width: min(100% - 28px, 1160px);
  }

  .mt-el-section {
    padding-block: 78px;
  }

  .mt-el-header {
    padding-block: 10px;
  }

  .mt-el-header-inner {
    min-height: 58px;
  }

  .mt-el-logo__words strong {
    font-size: 19px;
  }

  .mt-el-page .mt-el-title .elementor-heading-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .mt-el-page .mt-el-section-title .elementor-heading-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .mt-el-hero {
    padding-top: 50px;
  }

  .mt-el-hero .mt-el-copy {
    align-items: flex-start;
    text-align: left;
  }

  .mt-el-actions {
    width: 100%;
  }

  .mt-el-actions>.elementor-widget-button {
    flex: 1 1 auto;
  }

  .mt-el-actions .elementor-button {
    width: 100%;
  }

  .mt-el-icon-grid {
    grid-template-columns: 1fr;
  }

  .mt-el-alternatives {
    padding: 54px 22px;
    border-radius: 26px;
  }

  .mt-el-card {
    padding: 18px;
  }

  .mt-el-cta-inner {
    padding: 40px 26px;
    border-radius: 26px;
  }

  .mt-el-footer-grid {
    grid-template-columns: 1fr;
  }

  .mt-el-footer-grid>.e-con:last-child {
    grid-column: auto;
  }

  .mt-el-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mt-el-nav {
    right: 14px;
    left: 14px;
  }

  .mt-el-nav .mt-el-menu {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mt-el-page *,
  .mt-el-page *::before,
  .mt-el-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .mt-el-page.mt-motion-ready .mt-el-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================================
   ELEMENTOR CASCADE + MOCKUP-ACCURATE LAYOUT
   Elementor's generated frontend CSS loads after the
   theme stylesheet, so these selectors deliberately
   carry enough specificity to preserve the design.
================================================== */
body.mobifin-tapestry-elementor-home {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-page.e-con {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
  --gap: 0;
  color: var(--mt-ink);
  font-family: "Poppins", Arial, sans-serif;
}

body.mobifin-tapestry-elementor-home .mt-el-page .e-con {
  padding: 0;
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
}

body.mobifin-tapestry-elementor-home .mt-el-page>.e-con {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-inner.e-con {
  width: min(1140px, calc(100% - 64px));
  max-width: none;
  margin-inline: auto;
}

body.mobifin-tapestry-elementor-home .mt-el-page .elementor-widget-heading .elementor-heading-title,
body.mobifin-tapestry-elementor-home .mt-el-page .elementor-widget-text-editor,
body.mobifin-tapestry-elementor-home .mt-el-page .elementor-button {
  font-family: "Poppins", Arial, sans-serif;
}

body.mobifin-tapestry-elementor-home .mt-el-page .elementor-widget-text-editor {
 /* color: var(--mt-muted);*/
  font-size: 14px;
  line-height: 1.65;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-copy.e-con {
  gap: 14px;
  --gap: 14px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-center.e-con {
  gap: 14px;
  --gap: 14px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section.e-con {
  padding: 76px 0;
  gap: 0;
  --gap: 0;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-split.e-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
  --gap: 70px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-split--reverse.e-con {
  flex-direction: row-reverse;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-split>.e-con {
  min-width: 0;
  flex: 1 1 0;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-actions.e-con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  --gap: 12px;
  margin-top: 5px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-eyebrow .elementor-heading-title {
  color: var(--mt-coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section-title .elementor-heading-title {
  color: var(--mt-ink);
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.04em;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section-title .elementor-heading-title span,
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section-title .elementor-heading-title strong {
  display: inline;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section-title .elementor-heading-title span {
  font-weight: 400;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section-title .elementor-heading-title strong {
  font-weight: 700;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-subtitle .elementor-heading-title {
  color: var(--mt-ink);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -.015em;
}

body.mobifin-tapestry-elementor-home .mt-el-page .elementor-widget-button .elementor-button {
  min-height: 40px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--mt-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  box-shadow: none;
}

body.mobifin-tapestry-elementor-home .mt-el-page .elementor-widget-button .elementor-button:hover {
  transform: translateY(-2px);
  background: #1478da;
  box-shadow: 0 10px 24px rgba(39, 135, 234, .2);
}
.br-25 {border-radius:25px; overflow:hidden;}
/* Header */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.e-con {
  padding: 20px 0;
  gap: 0;
  --gap: 0;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header-inner.e-con {
  min-height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  --gap: 24px;
}

body.mobifin-tapestry-elementor-home .mt-el-header .mt-el-menu {
  gap: 1px;
  padding: 4px;
  border: 0;
  background: #f7f8fa;
  box-shadow: 0 6px 18px rgba(20, 33, 59, .03);
}

body.mobifin-tapestry-elementor-home .mt-el-header .mt-el-menu a {
  padding: 10px 15px;
  font-size: 10px;
  font-weight: 500;
}

body.mobifin-tapestry-elementor-home .mt-el-header .mt-el-menu>li.is-active>a {
  color: #fff;
  background: var(--mt-coral);
}

body.mobifin-tapestry-elementor-home .mt-el-header .elementor-widget-button .elementor-button {
  min-height: 38px;
  padding-inline: 18px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.is-scrolled {
  position: relative;
  top: auto;
  border-bottom: 0;
  box-shadow: none;
}

/* Hero */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-hero.e-con {
  min-height: 438px;
  padding: 54px 0 68px;
  background: radial-gradient(circle at 79% 28%, rgba(39, 135, 234, .075), transparent 31%), #f8f8f8;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-split.e-con {
  gap: 38px;
  --gap: 38px;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-copy.e-con {
  flex: 0 0 37%;
  gap: 12px;
  --gap: 12px;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-media.e-con {
  flex: 1 1 63%;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-eyebrow {
  display: none;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-title .elementor-heading-title {
  max-width: 440px;
  color: var(--mt-ink);
  font-size: clamp(48px, 4.55vw, 64px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.048em;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-subtitle .elementor-heading-title {
  font-size: 18px;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .elementor-widget-text-editor {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.6;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-button--outline {
  display: none;
}

body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-media img {
  width: 100%;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(31, 56, 94, .09);
}

/* Why Tapestry */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-why.e-con {
  padding: 66px 0 78px;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-inner.e-con {
  width: min(1040px, calc(100% - 64px));
  gap: 72px;
  --gap: 72px;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-eyebrow,
body.mobifin-tapestry-elementor-home .mt-el-why .elementor-widget-button {
  display: none;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-copy.e-con {
  flex: 0 0 430px;
  gap: 14px;
  --gap: 14px;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-media.e-con {
  flex: 0 1 430px;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-section-title .elementor-heading-title {
  font-size: 50px;
  line-height: .98;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-section-title .elementor-heading-title span,
body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-section-title .elementor-heading-title strong {
  display: block;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-subtitle .elementor-heading-title {
  font-size: 17px;
}

body.mobifin-tapestry-elementor-home .mt-el-why .elementor-widget-text-editor {
  font-size: 13px;
  line-height: 1.55;
}

body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-media img {
  border-radius: 24px;
  box-shadow: none;
}

/* Product composition */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-composition.e-con {
  padding: 70px 0 92px;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-eyebrow {
  display: none;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-center.e-con {
  align-items: center;
  text-align: center;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-center>.elementor-widget {
  width: 100%;
  max-width: 790px;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-section-title .elementor-heading-title {
  font-size: 50px;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-section-title .elementor-heading-title span,
body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-section-title .elementor-heading-title strong {
  display: block;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-subtitle .elementor-heading-title {
  font-size: 17px;
}

body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-comparison-grid.e-con {
  width: min(900px, 100%);
  margin: 48px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  --gap: 30px;
}

body.mobifin-tapestry-elementor-home .mt-el-comparison-grid>.mt-el-card.e-con {
  min-width: 0;
  padding: 18px;
  gap: 0;
  --gap: 0;
  border: 0;
  border-radius: 24px;
  background: #f8f8f9;
  box-shadow: none;
}

body.mobifin-tapestry-elementor-home .mt-el-comparison-grid>.mt-el-card>.elementor-widget-heading,
body.mobifin-tapestry-elementor-home .mt-el-comparison-grid>.mt-el-card>.elementor-widget-text-editor {
  display: none;
}

body.mobifin-tapestry-elementor-home .mt-el-comparison-grid .elementor-widget-image,
body.mobifin-tapestry-elementor-home .mt-el-comparison-grid .elementor-widget-image img {
  width: 100%;
}

body.mobifin-tapestry-elementor-home .mt-el-comparison-grid .elementor-widget-image img {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

/* Alternatives */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-alternatives-section.e-con {
  padding: 0 0 84px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-alternatives.e-con {
  width: min(1140px, calc(100% - 64px));
  margin-inline: auto;
  padding: 64px 56px;
  gap: 0;
  --gap: 0;
  border-radius: 32px;
  background: #f7f7f8;
}

body.mobifin-tapestry-elementor-home .mt-el-alternatives .mt-el-center.e-con {
  width: min(760px, 100%);
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

body.mobifin-tapestry-elementor-home .mt-el-alternatives .mt-el-section-title .elementor-heading-title {
  font-size: 48px;
}

body.mobifin-tapestry-elementor-home .mt-el-alternatives .mt-el-section-title .elementor-heading-title span::after,
body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-section-title .elementor-heading-title span::after {
  content: " ";
  white-space: pre;
}

body.mobifin-tapestry-elementor-home .mt-el-alternatives .mt-el-icon-grid.e-con {
  margin-top: 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  --gap: 16px;
}

body.mobifin-tapestry-elementor-home .mt-el-icon-grid .elementor-widget-icon-box {
  min-height: 142px;
  margin: 0;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-icon-grid .elementor-widget-icon-box:first-child {
  background: #3d4b59;
}

body.mobifin-tapestry-elementor-home .mt-el-icon-grid .elementor-icon-box-title {
  font-size: 16px;
}

body.mobifin-tapestry-elementor-home .mt-el-icon-grid .elementor-icon-box-description {
  font-size: 12px;
  line-height: 1.5;
}

/* Build with Tapestry */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-build.e-con {
  padding: 84px 0 96px;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-split.e-con {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto auto auto auto;
  column-gap: 76px;
  row-gap: 16px;
  align-items: center;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-copy.e-con {
  display: contents;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-eyebrow {
  display: none;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-section-title {
  grid-column: 1/-1;
  grid-row: 1;
  text-align: center;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-section-title .elementor-heading-title {
  font-size: 50px;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-subtitle {
  grid-column: 1/-1;
  grid-row: 2;
  width: min(520px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-segment-pills.e-con {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  --gap: 8px;
  margin: 0 0 6px;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-segment-pills .elementor-button {
  min-height: 30px;
  padding: 6px 12px;
  font-size: 10px;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-copy>.elementor-widget-text-editor {
  grid-column: 1;
  grid-row: 4;
  max-width: 420px;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-copy>.elementor-widget-button {
  grid-column: 1;
  grid-row: 5;
  justify-self: start;
}

body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-media.e-con {
  grid-column: 2;
  grid-row: 3/6;
  align-self: center;
}

/* Remaining editable sections */
body.mobifin-tapestry-elementor-home .mt-el-platform-section .mt-el-split.e-con {
  gap: 64px;
  --gap: 64px;
}

body.mobifin-tapestry-elementor-home .mt-el-features .mt-el-feature-list.e-con {
  margin-top: 38px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  --gap: 18px;
}

body.mobifin-tapestry-elementor-home .mt-el-feature-list .elementor-widget-icon-box {
  min-height: 180px;
  margin: 0;
  padding: 28px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-closing-cta.e-con {
  padding: 76px 0;
}

body.mobifin-tapestry-elementor-home .mt-el-closing-cta .mt-el-cta-inner.e-con {
  min-height: 260px;
  padding: 54px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  --gap: 42px;
}

/* Footer */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-footer.e-con {
  padding: 70px 0 24px;
  gap: 0;
  --gap: 0;
}

body.mobifin-tapestry-elementor-home .mt-el-footer .mt-el-footer-grid.e-con {
  padding: 0;
  display: grid;
  grid-template-columns: 1.45fr .75fr .8fr 1fr;
  gap: 46px;
  --gap: 46px;
}

body.mobifin-tapestry-elementor-home .mt-el-footer .mt-el-copy.e-con {
  gap: 12px;
  --gap: 12px;
}

body.mobifin-tapestry-elementor-home .mt-el-footer .mt-el-footer-bottom.e-con {
  padding: 20px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  --gap: 20px;
}

@media (max-width:900px) {

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-inner.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-alternatives.e-con {
    width: calc(100% - 40px);
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-split.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-split--reverse.e-con {
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
    --gap: 44px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-media.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-media.e-con {
    flex: auto;
  }

  body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-title .elementor-heading-title {
    max-width: 620px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-inner.e-con {
    width: calc(100% - 40px);
  }

  body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-comparison-grid.e-con {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
  }

  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-split.e-con {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    --gap: 24px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-copy.e-con {
    display: flex;
    flex-direction: column;
    gap: 14px;
    --gap: 14px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-section-title,
  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-subtitle,
  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-segment-pills.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-copy>.elementor-widget-text-editor,
  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-copy>.elementor-widget-button,
  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-media.e-con {
    grid-column: auto;
    grid-row: auto;
  }

  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-subtitle {
    margin-bottom: 8px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-features .mt-el-feature-list.e-con {
    grid-template-columns: 1fr;
  }

  body.mobifin-tapestry-elementor-home .mt-el-footer .mt-el-footer-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px) {

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-inner.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-alternatives.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-why .mt-el-inner.e-con {
    width: calc(100% - 28px);
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section.e-con {
    padding: 62px 0;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.e-con {
    padding: 12px 0;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-hero.e-con {
    min-height: 0;
    padding: 48px 0 62px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-hero .mt-el-title .elementor-heading-title {
    font-size: 44px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-section-title .elementor-heading-title,
  body.mobifin-tapestry-elementor-home .mt-el-composition .mt-el-section-title .elementor-heading-title,
  body.mobifin-tapestry-elementor-home .mt-el-alternatives .mt-el-section-title .elementor-heading-title,
  body.mobifin-tapestry-elementor-home .mt-el-build .mt-el-section-title .elementor-heading-title {
    font-size: 36px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-alternatives.e-con {
    padding: 46px 20px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-alternatives .mt-el-icon-grid.e-con {
    grid-template-columns: 1fr;
  }

  body.mobifin-tapestry-elementor-home .mt-el-icon-grid .elementor-widget-icon-box {
    min-height: 130px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-closing-cta .mt-el-cta-inner.e-con {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  body.mobifin-tapestry-elementor-home .mt-el-footer .mt-el-footer-grid.e-con {
    grid-template-columns: 1fr;
    gap: 34px;
    --gap: 34px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-footer .mt-el-footer-bottom.e-con {
    flex-direction: column;
    gap: 6px;
    --gap: 6px;
  }
}

/* ==================================================
   BUILD WITH TAPESTRY — INNER PAGE
================================================== */
body.mobifin-tapestry-elementor-build {
  overflow-x: hidden;
  background: #fff;
}

body.mobifin-tapestry-elementor-build .mt-el-page.mt-el-build-page.e-con {
  width: 100%;
  max-width: none;
  padding: 0;
  gap: 0;
  --gap: 0;
  overflow: hidden;
}

body.mobifin-tapestry-elementor-build .mt-build-fold.e-con {
  width: 100%;
  max-width: none;
  padding: clamp(84px, 9vw, 132px) 0;
  background: #fff;
}

body.mobifin-tapestry-elementor-build .mt-build-fold.mt-build-soft.e-con {
  background: linear-gradient(180deg, #f7f9fc 0%, #fbfcfe 100%);
}

body.mobifin-tapestry-elementor-build .mt-build-fold>.mt-el-inner.e-con,
body.mobifin-tapestry-elementor-build .mt-build-closing>.mt-el-inner.e-con {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-inline: auto;
  padding: 0;
}

body.mobifin-tapestry-elementor-build .mt-build-split.e-con {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
  --gap: clamp(50px, 7vw, 92px);
}

body.mobifin-tapestry-elementor-build .mt-build-split--reverse.e-con>.mt-el-copy {
  order: 2;
}

body.mobifin-tapestry-elementor-build .mt-build-split--reverse.e-con>.mt-build-visual {
  order: 1;
}

body.mobifin-tapestry-elementor-build .mt-build-split .mt-el-copy.e-con {
  gap: 16px;
  --gap: 16px;
}

body.mobifin-tapestry-elementor-build .mt-build-fold .mt-el-eyebrow .elementor-heading-title {
  color: var(--mt-coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

body.mobifin-tapestry-elementor-build .mt-build-fold .mt-el-section-title .elementor-heading-title {
  color: var(--mt-ink);
  font-size: clamp(40px, 4.25vw, 60px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

body.mobifin-tapestry-elementor-build .mt-build-fold .mt-el-subtitle .elementor-heading-title {
  color: var(--mt-ink);
  font-size: 19px;
  line-height: 1.48;
  font-weight: 600;
  letter-spacing: -.018em;
}

body.mobifin-tapestry-elementor-build .mt-build-fold .elementor-widget-text-editor {
  color: var(--mt-ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

body.mobifin-tapestry-elementor-build .mt-build-fold .mt-el-emphasis-copy {
  margin-top: 8px;
  padding: 17px 0 17px 20px;
  border-left: 3px solid var(--mt-coral);
  color: var(--mt-ink);
  font-weight: 600;
}

body.mobifin-tapestry-elementor-build .mt-build-visual.e-con {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(144, 164, 196, .26);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(242, 247, 255, .72));
  box-shadow: 0 28px 70px rgba(20, 33, 59, .12);
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform .32s cubic-bezier(.2, .7, .2, 1), box-shadow .32s ease;
  will-change: transform;
}

body.mobifin-tapestry-elementor-build .mt-build-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% -3% -5% 7%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(39, 135, 234, .12), rgba(240, 76, 47, .12));
  transform: rotate(-3deg) translateZ(-1px);
}

body.mobifin-tapestry-elementor-build .mt-build-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: none;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

body.mobifin-tapestry-elementor-build .mt-build-visual:hover img {
  transform: translateY(-5px) scale(1.012);
}

/* Hero */
body.mobifin-tapestry-elementor-build .mt-build-hero.e-con {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 82px 0 112px;
  background: radial-gradient(circle at 82% 20%, rgba(39, 135, 234, .11), transparent 34%), linear-gradient(180deg, #fafbfc, #f8f8f9);
}

body.mobifin-tapestry-elementor-build .mt-build-hero .mt-el-title .elementor-heading-title {
  max-width: 580px;
  color: var(--mt-ink);
  font-size: clamp(52px, 5.15vw, 72px);
  line-height: 1;
  letter-spacing: -.057em;
}

body.mobifin-tapestry-elementor-build .mt-build-hero .mt-el-subtitle .elementor-heading-title {
  max-width: 590px;
  font-size: 18px;
}

body.mobifin-tapestry-elementor-build .mt-build-hero .mt-el-actions.e-con {
  display: flex;
  flex-direction: row;
  gap: 12px;
  --gap: 12px;
  margin-top: 12px;
}

body.mobifin-tapestry-elementor-build .mt-build-hero .mt-el-button--outline .elementor-button {
  color: var(--mt-ink);
  border: 1px solid var(--mt-line);
  background: #fff;
  box-shadow: none;
}

/* Intros and cards */
body.mobifin-tapestry-elementor-build .mt-build-intro.e-con {
  align-items: center;
  text-align: center;
  gap: 16px;
  --gap: 16px;
}

body.mobifin-tapestry-elementor-build .mt-build-intro>.elementor-widget {
  width: 100%;
  max-width: 900px;
}

body.mobifin-tapestry-elementor-build .mt-build-intro .elementor-widget-text-editor {
  max-width: 820px;
}

body.mobifin-tapestry-elementor-build .mt-build-card-grid.e-con {
  display: grid;
  padding: 0;
  gap: 18px;
  --gap: 18px;
  margin-top: 52px;
}

body.mobifin-tapestry-elementor-build .mt-build-card-grid--three.e-con {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.mobifin-tapestry-elementor-build .mt-build-card.elementor-widget-icon-box {
  height: 100%;
  min-height: 225px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--mt-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 40px rgba(20, 33, 59, .055);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

body.mobifin-tapestry-elementor-build .mt-build-card.elementor-widget-icon-box:hover {
  transform: translateY(-8px);
  border-color: #b7d3ff;
  box-shadow: 0 26px 52px rgba(20, 33, 59, .11);
}

body.mobifin-tapestry-elementor-build .mt-build-card .elementor-icon {
  color: #63c4ec;
  font-size: 30px;
}

body.mobifin-tapestry-elementor-build .mt-build-card .elementor-icon-box-title {
  margin-top: 14px;
  color: var(--mt-ink);
  font-size: 20px;
}

body.mobifin-tapestry-elementor-build .mt-build-card .elementor-icon-box-description {
  color: var(--mt-ink-soft);
  font-size: 14px;
  line-height: 1.58;
}

body.mobifin-tapestry-elementor-build .mt-build-describe .mt-build-card .elementor-icon-box-description {
  color: var(--mt-ink);
  font-weight: 600;
}

/* Chips */
body.mobifin-tapestry-elementor-build .mt-build-chip-row.e-con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  --gap: 10px;
  margin-top: 48px;
}

body.mobifin-tapestry-elementor-build .mt-build-chip.elementor-widget-heading {
  width: auto;
  margin: 0;
}

body.mobifin-tapestry-elementor-build .mt-build-chip .elementor-heading-title {
  padding: 10px 15px;
  border: 1px solid #c9d8ec;
  border-radius: 999px;
  color: var(--mt-ink);
  background: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

/* Dark folds */
body.mobifin-tapestry-elementor-build .mt-build-dark.e-con {
  background: radial-gradient(circle at 84% 10%, rgba(39, 135, 234, .25), transparent 34%), #111f37;
}

body.mobifin-tapestry-elementor-build .mt-el-page .mt-build-dark .mt-el-section-title .elementor-heading-title,
body.mobifin-tapestry-elementor-build .mt-el-page .mt-build-dark .mt-el-subtitle .elementor-heading-title {
  color: #fff !important;
}

body.mobifin-tapestry-elementor-build .mt-build-dark .elementor-widget-text-editor {
  color: #bdc9da;
}

body.mobifin-tapestry-elementor-build .mt-build-dark .mt-el-emphasis-copy {
  color: #fff;
}

body.mobifin-tapestry-elementor-build .mt-build-dark .mt-build-visual.e-con {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

body.mobifin-tapestry-elementor-build .mt-build-chip-row--dark .mt-build-chip .elementor-heading-title {
  color: #d9e5f5;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
}

/* Governance and closing */
body.mobifin-tapestry-elementor-build .mt-build-governance .mt-build-intro .elementor-widget-text-editor {
  color: #bdc9da;
}

body.mobifin-tapestry-elementor-build .mt-build-wide-visual.e-con {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .045);
}

body.mobifin-tapestry-elementor-build .mt-build-wide-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: none;
}

body.mobifin-tapestry-elementor-build .mt-build-closing.e-con {
  width: 100%;
  padding: 92px 0;
  background: linear-gradient(135deg, #14213b, #254b78);
}

body.mobifin-tapestry-elementor-build .mt-build-closing .mt-el-cta-inner.e-con {
  min-height: 340px;
}

body.mobifin-tapestry-elementor-build .mt-el-page .mt-build-closing .mt-el-section-title .elementor-heading-title {
  max-width: 820px;
  color: #fff !important;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

body.mobifin-tapestry-elementor-build .mt-el-page .mt-build-closing .mt-el-button--coral .elementor-button {
  background: var(--mt-coral) !important;
  box-shadow: 0 14px 30px rgba(240, 76, 47, .28);
}

/* Keep Elementor's flex container defaults from collapsing the shared footer
   into one tall column on the Build with Tapestry page. */
body.mobifin-tapestry-elementor-build .mt-el-page .mt-el-footer.e-con {
  padding: 70px 0 24px;
  gap: 0;
  --gap: 0;
}

body.mobifin-tapestry-elementor-build .mt-el-footer .mt-el-footer-grid.e-con {
  padding: 0;
  display: grid;
  grid-template-columns: 1.45fr .75fr .8fr 1fr;
  gap: 46px;
  --gap: 46px;
}

body.mobifin-tapestry-elementor-build .mt-el-footer .mt-el-copy.e-con {
  gap: 12px;
  --gap: 12px;
}

body.mobifin-tapestry-elementor-build .mt-el-footer .mt-el-footer-bottom.e-con {
  padding: 20px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  --gap: 20px;
}

@media (max-width:1000px) {
  body.mobifin-tapestry-elementor-build .mt-build-split.e-con {
    grid-template-columns: 1fr;
    gap: 44px;
    --gap: 44px;
  }

  body.mobifin-tapestry-elementor-build .mt-build-split--reverse.e-con>.mt-el-copy,
  body.mobifin-tapestry-elementor-build .mt-build-split--reverse.e-con>.mt-build-visual {
    order: initial;
  }

  body.mobifin-tapestry-elementor-build .mt-build-card-grid--three.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mobifin-tapestry-elementor-build .mt-build-hero.e-con {
    min-height: 0;
  }

  body.mobifin-tapestry-elementor-build .mt-el-footer .mt-el-footer-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:767px) {
  body.mobifin-tapestry-elementor-build .mt-build-fold.e-con {
    padding: 68px 0;
  }

  body.mobifin-tapestry-elementor-build .mt-build-fold>.mt-el-inner.e-con,
  body.mobifin-tapestry-elementor-build .mt-build-closing>.mt-el-inner.e-con {
    width: min(100% - 32px, 1120px);
  }

  body.mobifin-tapestry-elementor-build .mt-build-hero.e-con {
    padding: 52px 0 74px;
  }

  body.mobifin-tapestry-elementor-build .mt-build-hero .mt-el-title .elementor-heading-title {
    font-size: 45px;
  }

  body.mobifin-tapestry-elementor-build .mt-build-fold .mt-el-section-title .elementor-heading-title {
    font-size: 38px;
  }

  body.mobifin-tapestry-elementor-build .mt-build-card-grid--three.e-con {
    grid-template-columns: 1fr;
  }

  body.mobifin-tapestry-elementor-build .mt-build-card.elementor-widget-icon-box {
    min-height: 0;
  }

  body.mobifin-tapestry-elementor-build .mt-build-visual.e-con {
    padding: 10px;
    border-radius: 24px;
  }

  body.mobifin-tapestry-elementor-build .mt-build-visual::before {
    inset: 8% -2% -4% 5%;
    border-radius: 22px;
  }

  body.mobifin-tapestry-elementor-build .mt-build-chip-row.e-con {
    justify-content: flex-start;
  }

  body.mobifin-tapestry-elementor-build .mt-build-closing.e-con {
    padding: 68px 0;
  }

  body.mobifin-tapestry-elementor-build .mt-build-closing .mt-el-cta-inner.e-con {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
  }

  body.mobifin-tapestry-elementor-build .mt-el-footer .mt-el-footer-grid.e-con {
    grid-template-columns: 1fr;
    gap: 34px;
    --gap: 34px;
  }

  body.mobifin-tapestry-elementor-build .mt-el-footer .mt-el-footer-bottom.e-con {
    flex-direction: column;
    gap: 6px;
    --gap: 6px;
  }
}

/* ==================================================
   WHY TAPESTRY — INNER PAGE
================================================== */
body.mobifin-tapestry-elementor-why {
  overflow-x: hidden;
  background: #fff;
}

body.mobifin-tapestry-elementor-why .mt-el-page.mt-el-why-page.e-con {
  width: 100%;
  max-width: none;
  padding: 0;
  gap: 0;
  --gap: 0;
  overflow: hidden;
}

body.mobifin-tapestry-elementor-why .mt-why-fold.e-con {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(88px, 9vw, 132px) 0;
  background: #fff;
  overflow: hidden;
}

body.mobifin-tapestry-elementor-why .mt-why-soft.e-con {
  background: linear-gradient(180deg, #f7f9fc 0%, #fbfcfe 100%);
}

body.mobifin-tapestry-elementor-why .mt-why-fold>.mt-el-inner.e-con,
body.mobifin-tapestry-elementor-why .mt-why-closing>.mt-el-inner.e-con {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-inline: auto;
  padding: 0;
}

body.mobifin-tapestry-elementor-why .mt-why-split.e-con {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
  --gap: clamp(52px, 7vw, 92px);
}

body.mobifin-tapestry-elementor-why .mt-why-split--reverse.e-con>.mt-el-copy {
  order: 2;
}

body.mobifin-tapestry-elementor-why .mt-why-split--reverse.e-con>.mt-why-visual {
  order: 1;
}

body.mobifin-tapestry-elementor-why .mt-why-split .mt-el-copy.e-con {
  gap: 17px;
  --gap: 17px;
}

body.mobifin-tapestry-elementor-why .mt-why-fold .mt-el-eyebrow .elementor-heading-title {
  color: var(--mt-coral);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

body.mobifin-tapestry-elementor-why .mt-why-fold .mt-el-section-title .elementor-heading-title {
  color: var(--mt-ink);
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

body.mobifin-tapestry-elementor-why .mt-why-fold .mt-el-subtitle .elementor-heading-title {
  color: var(--mt-ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -.018em;
}

body.mobifin-tapestry-elementor-why .mt-why-fold .elementor-widget-text-editor {
  color: var(--mt-ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

body.mobifin-tapestry-elementor-why .mt-why-fold .mt-el-emphasis-copy {
  margin-top: 8px;
  padding: 17px 0 17px 20px;
  border-left: 3px solid var(--mt-coral);
  color: var(--mt-ink);
  font-weight: 600;
}

body.mobifin-tapestry-elementor-why .mt-why-visual.e-con {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(144, 164, 196, .26);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(242, 247, 255, .76));
  box-shadow: 0 28px 70px rgba(20, 33, 59, .12);
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform .32s cubic-bezier(.2, .7, .2, 1), box-shadow .32s ease;
  will-change: transform;
}

body.mobifin-tapestry-elementor-why .mt-why-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% -3% -5% 7%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(39, 135, 234, .12), rgba(240, 76, 47, .12));
  transform: rotate(-3deg) translateZ(-1px);
}

body.mobifin-tapestry-elementor-why .mt-why-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: none;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

body.mobifin-tapestry-elementor-why .mt-why-visual:hover img {
  transform: translateY(-5px) scale(1.012);
}

/* Hero */
body.mobifin-tapestry-elementor-why .mt-why-hero.e-con {
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 84px 0 116px;
  background: radial-gradient(circle at 80% 18%, rgba(39, 135, 234, .12), transparent 34%), linear-gradient(180deg, #fafbfc, #f8f8f9);
}

body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-title .elementor-heading-title {
  max-width: 620px;
  color: var(--mt-ink);
  font-size: clamp(50px, 5.05vw, 71px);
  line-height: 1.01;
  letter-spacing: -.057em;
}

body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-subtitle .elementor-heading-title {
  max-width: 610px;
  font-size: 17px;
  line-height: 1.6;
}

body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-actions.e-con {
  display: flex;
  flex-direction: row;
  gap: 12px;
  --gap: 12px;
  margin-top: 12px;
}

body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-button--outline .elementor-button {
  color: var(--mt-ink);
  border: 1px solid var(--mt-line);
  background: #fff;
  box-shadow: none;
}

body.mobifin-tapestry-elementor-why .mt-why-atmosphere.e-con {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  pointer-events: none;
  opacity: .55;
  background: radial-gradient(circle at 14% 20%, rgba(240, 76, 47, .08), transparent 25%);
}

body.mobifin-tapestry-elementor-why .mt-why-atmosphere canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Category comparison */
body.mobifin-tapestry-elementor-why .mt-why-intro.e-con {
  align-items: center;
  text-align: center;
  gap: 16px;
  --gap: 16px;
}

body.mobifin-tapestry-elementor-why .mt-why-intro>.elementor-widget {
  width: 100%;
  max-width: 900px;
}

body.mobifin-tapestry-elementor-why .mt-why-category-layout.e-con {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: 68px;
  --gap: 68px;
  margin-top: 56px;
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-list.e-con {
  gap: 12px;
  --gap: 12px;
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-row.e-con {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  gap: 22px;
  --gap: 22px;
  border: 1px solid var(--mt-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 33, 59, .035);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-row:hover {
  transform: translateX(6px);
  border-color: #bdd3ef;
  box-shadow: 0 18px 36px rgba(20, 33, 59, .08);
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-title .elementor-heading-title {
  color: var(--mt-ink);
  font-size: 16px;
  line-height: 1.28;
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-copy.elementor-widget-text-editor {
  color: var(--mt-muted);
  font-size: 12px;
  line-height: 1.55;
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-row.is-tapestry {
  border-color: #294d7c;
  background: linear-gradient(135deg, #14213b, #294d7c);
  box-shadow: 0 18px 42px rgba(20, 33, 59, .2);
}

body.mobifin-tapestry-elementor-why .mt-why-comparison-row.is-tapestry .elementor-heading-title,
body.mobifin-tapestry-elementor-why .mt-why-comparison-row.is-tapestry .elementor-widget-text-editor {
  color: #fff;
}

body.mobifin-tapestry-elementor-why .mt-why-visual--stack.e-con {
  padding: 14px;
}

/* Outcome statements */
body.mobifin-tapestry-elementor-why .mt-why-dark.e-con {
  background: radial-gradient(circle at 85% 12%, rgba(39, 135, 234, .26), transparent 34%), #111f37;
}

body.mobifin-tapestry-elementor-why .mt-why-dark .mt-el-section-title .elementor-heading-title {
  color: #fff !important;
}

body.mobifin-tapestry-elementor-why .mt-why-change-grid.e-con {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  --gap: 18px;
  margin-top: 52px;
}

body.mobifin-tapestry-elementor-why .mt-why-change-card.e-con {
  min-height: 285px;
  padding: 34px;
  gap: 18px;
  --gap: 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .15);
  transition: transform .34s ease, border-color .34s ease, background .34s ease;
}

body.mobifin-tapestry-elementor-why .mt-why-change-card:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 185, 255, .48);
  background: rgba(255, 255, 255, .1);
}

body.mobifin-tapestry-elementor-why .mt-why-change-number .elementor-heading-title {
  color: #7eb9ff;
  font-size: 13px;
  letter-spacing: .18em;
}

body.mobifin-tapestry-elementor-why .mt-why-change-title .elementor-heading-title {
  color: #fff;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -.025em;
}

body.mobifin-tapestry-elementor-why .mt-why-change-copy.elementor-widget-text-editor {
  color: #bdc9da;
  font-size: 14px;
  line-height: 1.68;
}

/* Closing and shared footer */
body.mobifin-tapestry-elementor-why .mt-why-closing.e-con {
  width: 100%;
  padding: 92px 0;
  background: linear-gradient(135deg, #14213b, #254b78);
}

body.mobifin-tapestry-elementor-why .mt-why-closing .mt-el-cta-inner.e-con {
  min-height: 340px;
}

body.mobifin-tapestry-elementor-why .mt-el-page .mt-why-closing .mt-el-section-title .elementor-heading-title {
  max-width: 820px;
  color: #fff !important;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

body.mobifin-tapestry-elementor-why .mt-why-closing .mt-el-subtitle .elementor-heading-title {
  color: #c9d5e6;
}

body.mobifin-tapestry-elementor-why .mt-el-page .mt-why-closing .mt-el-button--coral .elementor-button {
  background: var(--mt-coral) !important;
  box-shadow: 0 14px 30px rgba(240, 76, 47, .28);
}

body.mobifin-tapestry-elementor-why .mt-el-page .mt-el-footer.e-con {
  padding: 70px 0 24px;
  gap: 0;
  --gap: 0;
}

body.mobifin-tapestry-elementor-why .mt-el-footer .mt-el-footer-grid.e-con {
  padding: 0;
  display: grid;
  grid-template-columns: 1.45fr .75fr .8fr 1fr;
  gap: 46px;
  --gap: 46px;
}

body.mobifin-tapestry-elementor-why .mt-el-footer .mt-el-copy.e-con {
  gap: 12px;
  --gap: 12px;
}

body.mobifin-tapestry-elementor-why .mt-el-footer .mt-el-footer-bottom.e-con {
  padding: 20px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  --gap: 20px;
}

@media (max-width:1000px) {

  body.mobifin-tapestry-elementor-why .mt-why-split.e-con,
  body.mobifin-tapestry-elementor-why .mt-why-category-layout.e-con {
    grid-template-columns: 1fr;
    gap: 44px;
    --gap: 44px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-split--reverse.e-con>.mt-el-copy,
  body.mobifin-tapestry-elementor-why .mt-why-split--reverse.e-con>.mt-why-visual {
    order: initial;
  }

  body.mobifin-tapestry-elementor-why .mt-why-hero.e-con {
    min-height: 0;
  }

  body.mobifin-tapestry-elementor-why .mt-why-visual--stack.e-con {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  body.mobifin-tapestry-elementor-why .mt-el-footer .mt-el-footer-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:767px) {
  body.mobifin-tapestry-elementor-why .mt-why-fold.e-con {
    padding: 68px 0;
  }

  body.mobifin-tapestry-elementor-why .mt-why-fold>.mt-el-inner.e-con,
  body.mobifin-tapestry-elementor-why .mt-why-closing>.mt-el-inner.e-con {
    width: min(100% - 32px, 1120px);
  }

  body.mobifin-tapestry-elementor-why .mt-why-hero.e-con {
    padding: 52px 0 74px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-title .elementor-heading-title {
    font-size: 44px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-fold .mt-el-section-title .elementor-heading-title {
    font-size: 38px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-actions.e-con {
    flex-direction: column;
  }

  body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-actions .elementor-widget-button,
  body.mobifin-tapestry-elementor-why .mt-why-hero .mt-el-actions .elementor-button {
    width: 100%;
  }

  body.mobifin-tapestry-elementor-why .mt-why-visual.e-con {
    padding: 10px;
    border-radius: 24px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-visual::before {
    inset: 8% -2% -4% 5%;
    border-radius: 22px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-comparison-row.e-con {
    grid-template-columns: 1fr;
    gap: 8px;
    --gap: 8px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-change-grid.e-con {
    grid-template-columns: 1fr;
  }

  body.mobifin-tapestry-elementor-why .mt-why-change-card.e-con {
    min-height: 0;
    padding: 28px;
  }

  body.mobifin-tapestry-elementor-why .mt-why-closing.e-con {
    padding: 68px 0;
  }

  body.mobifin-tapestry-elementor-why .mt-why-closing .mt-el-cta-inner.e-con {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
  }

  body.mobifin-tapestry-elementor-why .mt-el-footer .mt-el-footer-grid.e-con {
    grid-template-columns: 1fr;
    gap: 34px;
    --gap: 34px;
  }

  body.mobifin-tapestry-elementor-why .mt-el-footer .mt-el-footer-bottom.e-con {
    flex-direction: column;
    gap: 6px;
    --gap: 6px;
  }
}

/* ==================================================
   COMPLETE HOMEPAGE — 12 DOCUMENT FOLDS
================================================== */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold.e-con {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold--soft.e-con {
  background: #f7f8fa;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold-intro.e-con {
  width: min(850px, 100%);
  margin: 0 auto 48px;
  align-items: center;
  text-align: center;
  gap: 15px;
  --gap: 15px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold-intro .elementor-widget {
  width: 100%;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold-intro .elementor-widget-text-editor {
  max-width: 740px;
  margin-inline: auto;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold .mt-el-section-title .elementor-heading-title {
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold .mt-el-subtitle .elementor-heading-title {
  color: var(--mt-ink);
  font-size: 18px;
  line-height: 1.42;
  font-weight: 600;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-emphasis-copy {
  margin-top: 7px;
  padding: 14px 0 14px 18px;
  border-left: 3px solid var(--mt-coral);
  color: var(--mt-ink-soft);
  font-weight: 500;
}

/* Fold 0 */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold--hero.e-con {
  min-height: 600px;
  padding: 72px 0 86px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-split.e-con {
  gap: 52px;
  --gap: 52px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-copy.e-con {
  flex: 0 0 43%;
  gap: 15px;
  --gap: 15px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-media.e-con {
  flex: 1 1 57%;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-eyebrow {
  display: block;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-title .elementor-heading-title {
  max-width: 560px;
  font-size: clamp(48px, 4.65vw, 68px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-subtitle .elementor-heading-title {
  max-width: 540px;
  font-size: 19px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .elementor-widget-text-editor {
  max-width: 470px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-button--outline {
  display: block;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-button--outline .elementor-button {
  border: 1px solid var(--mt-line);
  background: #fff;
  color: var(--mt-ink);
  box-shadow: none;
}

/* Fold 1 */
body.mobifin-tapestry-elementor-home .mt-el-fold--core .mt-el-split.e-con {
  width: min(1060px, calc(100% - 64px));
  gap: 72px;
  --gap: 72px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--core .mt-el-copy.e-con {
  flex: 0 0 48%;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--core .mt-el-media.e-con {
  flex: 1 1 52%;
}

/* Fold 2 */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-centered-visual.e-con,
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-workflow-visual.e-con {
  /*width:min(780px,100%);*/
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--mt-line);
  border-radius: 30px;
  background: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-centered-visual .elementor-widget-image,
body.mobifin-tapestry-elementor-home .mt-el-centered-visual img,
body.mobifin-tapestry-elementor-home .mt-el-workflow-visual .elementor-widget-image,
body.mobifin-tapestry-elementor-home .mt-el-workflow-visual img {
  width: 100%;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

/* Shared editable grids */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid.e-con {
  display: grid;
  padding: 0;
  gap: 18px;
  --gap: 18px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--two.e-con {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--three.e-con {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--four.e-con {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-editable-card.elementor-widget-icon-box {
  height: 100%;
  min-height: 205px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--mt-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 33, 59, .045);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-editable-card.elementor-widget-icon-box:hover {
  transform: translateY(-6px);
  border-color: #c7d6ea;
  box-shadow: 0 22px 44px rgba(20, 33, 59, .09);
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-editable-card .elementor-icon {
  color: var(--mt-blue);
  font-size: 26px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-editable-card .elementor-icon-box-title {
  color: var(--mt-ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 650;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-editable-card .elementor-icon-box-description {
  color: var(--mt-muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

/* Fold 3 */
body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-workflow-visual.e-con {
  /*width:min(620px,100%);*/
  margin-bottom: 40px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-capability-grid.e-con {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-editable-card:nth-child(1),
body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-editable-card:nth-child(6) {
  background: #14213b;
  border-color: #14213b;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-editable-card:nth-child(1) .elementor-icon-box-title,
body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-editable-card:nth-child(1) .elementor-icon-box-description,
body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-editable-card:nth-child(6) .elementor-icon-box-title,
body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-editable-card:nth-child(6) .elementor-icon-box-description {
  color: #fff;
}

/* Fold 4 */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-template-grid.e-con {
  width: min(980px, 100%);
  margin-inline: auto;
}

body.mobifin-tapestry-elementor-home .mt-el-template-grid .mt-el-editable-card.elementor-widget-icon-box {
  min-height: 245px;
  padding: 38px;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-inline-callout.e-con {
  width: min(780px, 100%);
  margin: 28px auto 0;
  padding: 24px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  --gap: 24px;
  border-radius: 22px;
  background: var(--mt-blue-soft);
}

body.mobifin-tapestry-elementor-home .mt-el-inline-callout .mt-el-callout-number .elementor-heading-title {
  color: var(--mt-blue);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

body.mobifin-tapestry-elementor-home .mt-el-inline-callout .elementor-widget-text-editor {
  color: var(--mt-ink-soft);
  font-weight: 600;
}

/* Fold 5 */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold--dark.e-con {
  background: radial-gradient(circle at 82% 10%, rgba(39, 135, 234, .25), transparent 32%), #111f37;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--dark .elementor-heading-title,
body.mobifin-tapestry-elementor-home .mt-el-fold--dark .mt-el-subtitle .elementor-heading-title {
  color: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold--dark .mt-el-section-title .elementor-heading-title,
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold--dark .mt-el-subtitle .elementor-heading-title {
  color: #fff !important;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--dark .elementor-widget-text-editor {
  color: #b9c6da;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-lifecycle-grid.e-con {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-editable-card.elementor-widget-icon-box {
  min-height: 230px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-editable-card .elementor-icon {
  color: #7eb9ff;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-editable-card .elementor-icon-box-title {
  color: #fff;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-editable-card .elementor-icon-box-description {
  color: #b9c6da;
}

/* Folds 6, 7, 9, 10 */
body.mobifin-tapestry-elementor-home .mt-el-fold--stack .mt-el-split.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--magic .mt-el-split.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--reusability .mt-el-split.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--change .mt-el-split.e-con {
  gap: 78px;
  --gap: 78px;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--stack .mt-el-copy.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--magic .mt-el-copy.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--reusability .mt-el-copy.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--change .mt-el-copy.e-con {
  flex: 0 0 46%;
}

body.mobifin-tapestry-elementor-home .mt-el-fold--stack .mt-el-media.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--magic .mt-el-media.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--reusability .mt-el-media.e-con,
body.mobifin-tapestry-elementor-home .mt-el-fold--change .mt-el-media.e-con {
  flex: 1 1 54%;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-badge-row.e-con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  --gap: 8px;
}

body.mobifin-tapestry-elementor-home .mt-el-badge-row .mt-el-button--pill .elementor-button {
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid #bcd5ff;
  background: #fff;
  color: var(--mt-blue);
  box-shadow: none;
  pointer-events: none;
}

body.mobifin-tapestry-elementor-home .mt-el-badge-row .mt-el-button--pill-dark .elementor-button {
  border-color: var(--mt-ink);
  background: var(--mt-ink);
  color: #fff;
}

/* Fold 8 */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-industry-grid.e-con {
  width: min(1040px, 100%);
  margin-inline: auto;
}

body.mobifin-tapestry-elementor-home .mt-el-industry-grid .mt-el-editable-card.elementor-widget-icon-box {
  min-height: 310px;
  padding: 42px;
}

body.mobifin-tapestry-elementor-home .mt-el-industries .mt-el-center.e-con:last-child {
  margin-top: 28px;
  align-items: center;
}

/* Fold 11 */
body.mobifin-tapestry-elementor-home .mt-el-closing-cta .mt-el-cta-inner.e-con {
  min-height: 320px;
}

body.mobifin-tapestry-elementor-home .mt-el-closing-cta .mt-el-section-title .elementor-heading-title {
  font-size: clamp(40px, 4.3vw, 62px);
}

body.mobifin-tapestry-elementor-home .mt-el-closing-cta .mt-el-subtitle .elementor-heading-title {
  max-width: 850px;
  color: #b9c6da;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-closing-cta .mt-el-section-title .elementor-heading-title {
  color: #fff !important;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-closing-cta .mt-el-button--coral .elementor-button {
  background: var(--mt-coral) !important;
  box-shadow: 0 12px 28px rgba(240, 76, 47, .25);
}

@media (max-width:1000px) {

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--three.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-capability-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--four.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-lifecycle-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px) {
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold.e-con {
    padding: 76px 0;
  }

  body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-media.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--core .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--core .mt-el-media.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--stack .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--magic .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--reusability .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--change .mt-el-copy.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--stack .mt-el-media.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--magic .mt-el-media.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--reusability .mt-el-media.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--change .mt-el-media.e-con {
    flex: auto;
  }

  body.mobifin-tapestry-elementor-home .mt-el-fold--core .mt-el-split.e-con {
    width: calc(100% - 40px);
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold-intro.e-con {
    margin-bottom: 36px;
  }
}

@media (max-width:640px) {
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold.e-con {
    padding: 62px 0;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-fold--hero.e-con {
    padding: 54px 0 66px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-fold--hero .mt-el-title .elementor-heading-title {
    font-size: 44px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--two.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--three.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-card-grid--four.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--meet .mt-el-capability-grid.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-fold--lifecycle .mt-el-lifecycle-grid.e-con {
    grid-template-columns: 1fr;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-editable-card.elementor-widget-icon-box {
    min-height: 0;
    padding: 26px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-inline-callout.e-con {
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    --gap: 10px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-centered-visual.e-con,
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-workflow-visual.e-con {
    padding: 10px;
    border-radius: 22px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-closing-cta .mt-el-cta-inner.e-con {
    min-height: 0;
  }
}

/* ==================================================
   SHARED HEADER CONSISTENCY
   Keep the Home header identical to the inner-page header.
================================================== */
body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.e-con {
  position: relative;
  z-index: 50;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px;
  --padding-top: 10px;
  --padding-right: 10px;
  --padding-bottom: 10px;
  --padding-left: 10px;
  gap: 20px;
  --gap: 20px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  font-family: Manrope, Inter, Arial, sans-serif;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header-inner.e-con {
  width: 100%;
  max-width: none;
  min-height: 64px;
  margin: 0;
  padding: 10px;
  --padding-top: 10px;
  --padding-right: 10px;
  --padding-bottom: 10px;
  --padding-left: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  --gap: 20px;
  font-family: Manrope, Inter, Arial, sans-serif;
}

body.mobifin-tapestry-elementor-home .mt-el-header-inner>.elementor-widget {
  min-height: 56px;
  font-family: Manrope, Inter, Arial, sans-serif;
}

body.mobifin-tapestry-elementor-home .mt-el-header-inner>.elementor-widget>.elementor-widget-container {
  width: 100%;
}

body.mobifin-tapestry-elementor-home .mt-el-header .mt-el-menu {
  gap: 4px;
  padding: 5px;
  border: 1px solid #eef1f6;
  background: #fafbfd;
  box-shadow: none;
}

body.mobifin-tapestry-elementor-home .mt-el-header .mt-el-menu a {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 650;
}

body.mobifin-tapestry-elementor-home .mt-el-header .elementor-widget-button .elementor-button {
  min-height: 48px;
  padding: 13px 22px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.is-scrolled {
  position: relative;
  top: auto;
  border-bottom: 0;
  box-shadow: none;
}

.admin-bar.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.is-scrolled {
  top: auto;
}

@media (max-width:1100px) {
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header-inner.e-con {
    gap: 16px;
    --gap: 16px;
  }

  body.mobifin-tapestry-elementor-home .mt-el-header .mt-el-menu a {
    padding-inline: 10px;
    font-size: 11px;
  }
}

@media (max-width:900px) {
  .admin-bar.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.is-scrolled {
    top: auto;
  }
}

@media (max-width:640px) {
  body.mobifin-tapestry-elementor-home .mt-el-page .mt-el-header.e-con {
    padding: 10px;
  }
}

/* === MOBIFIN TAPESTRY ELEMENTOR END === */