/* ═══════════════════════════════════════════════════════════
   MOBILE HOMEPAGE
═══════════════════════════════════════════════════════════ */

/* ─── NAVBAR OVERRIDES (mobile page only) ──────────────── */
.navbar__container {
  box-shadow: 0 1px 4px 0 rgba(25, 33, 61, 0.06);
  border-color: #E7E7E7;
}

.navbar__get-app {
  background-color: #071738;
  color: #ffffff;
  border-radius: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.navbar__get-app:hover {
  background-color: #0e2147;
}

.navbar__app-icon {
  filter: brightness(0) invert(1);
}


/* ─── HERO ─────────────────────────────────────────────── */
.m-hero {
  padding: 2rem 3.75rem;
  overflow: visible;
}

.m-hero__container {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(261.18deg, #326DC9 17.87%, #6374ED 58.34%, #314972 94.52%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  position: relative;
  height: 526px;
  padding: 3.75rem 0 3.75rem 3.75rem;
  overflow: hidden;
}

.m-hero__content {
  flex: 0 0 52%;
  max-width: 52%;
  position: relative;
  z-index: 2;
}

.m-hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 64px;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.m-hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 460px;
}

.m-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.m-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 1rem 1.5rem;
  border-radius: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: Urbanist, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s;
  white-space: nowrap;
}

.m-hero__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.m-hero__visual {
  flex: 1;
  position: relative;
  align-self: stretch;
  overflow: visible;
}

.m-hero__spiral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.m-hero__spiral--1 {
  position: absolute;
  top: 131px;
  left: -2px;
  width: 210px;
  opacity: 1.00;
  transform: rotate(0deg);
  pointer-events: none;
  z-index: 1;
}

.m-hero__spiral--2 {
  position: absolute;
  top: 54px;
  left: -12px;
  width: 390px;
  opacity: 1.00;
  transform: rotate(37deg);
  pointer-events: none;
  z-index: 1;
}

.m-hero__design {
  position: absolute;
  top: -52px;
  left: 889px;
  width: auto;
  height: 636px;
  object-fit: cover;
  object-position: left top;
  z-index: 2;
}

.m-hero__img {
  position: absolute;
  top: -143px;
  left: 633px;
  width: 614px;
  height: 850px;
  object-fit: cover;
  object-position: top center;
  z-index: 3;
}

/* ─── CONNECTIVITY SERVICES ─────────────────────────────── */
.conn-services {
  padding: 5rem 3.75rem;
}

.conn-services__container {
  max-width: 1320px;
  margin: 0 auto;
}

.conn-services__heading {
  font-family: Urbanist, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #071738;
  text-align: center;
  margin-bottom: 0.75rem;
}

.conn-services__sub {
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #6E6E6E;
  text-align: center;
  margin-bottom: 3rem;
}

.conn-services__grid {
  display: grid;
  grid-template-columns: 584px 584px;
  gap: 1.5rem;
  justify-content: center;
}

.conn-card {
  width: 584px;
  height: 619px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 23px 0px #D1D1D11A,
              0px 41px 41px 0px #D1D1D117,
              0px 93px 56px 0px #D1D1D10D;
}

.conn-card__body {
  flex: 1;
  padding: 2rem;
  position: relative;
}

.conn-card--individual .conn-card__body {
  background: transparent;
}

.conn-card--business .conn-card__body {
  background: transparent;
}

.conn-card--individual {
  background: linear-gradient(to bottom, #ffffff 70%, #B3CCFF 100%);
}

.conn-card--business {
  background: linear-gradient(to bottom, #ffffff 70%, #FFEED6 100%);
}

.conn-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  height: 44px;
  padding: 10px;
  border-radius: 13px;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

.conn-card__tag--individual {
  background-color: #E8F0FF;
  color: #1A3AA3;
}

.conn-card__tag--business {
  background-color: #fff3e0;
  color: #B25C0A;
}

.conn-card__info {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.conn-card__text {
  flex: 1;
  min-width: 0;
}

.conn-card__title {
  font-family: Urbanist, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #071738;
  margin-bottom: 0.75rem;
}

.conn-card__desc {
  font-family: Urbanist, sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  margin-bottom: 2.5rem;
}

.conn-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.conn-card__feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #071738;
}

.conn-card--individual .conn-card__img {
  position: absolute;
  bottom: -90px;
  right: -111px;
  width: 425px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
}

.conn-card--business .conn-card__img {
  position: absolute;
  bottom: -480px;
  right: -400px;
  width: 1000px;
  min-width: 980px;
  height: auto;
  z-index: 0;
}


.conn-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  gap: 11.69px;
  width: 498px;
  height: 50px;
  background-color: #071738;
  color: #ffffff;
  text-decoration: none;
  padding: 14.03px 23.38px;
  border-radius: 116.92px;
  font-family: Urbanist, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
  margin: 0 auto 2.5rem;
  flex-shrink: 0;
}

.conn-card__btn:hover {
  background-color: #0e2147;
}

.conn-card__arrow {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .m-hero {
    padding: 1.5rem 2rem;
  }

  .m-hero__container {
    padding: 2.5rem;
    height: auto;
    min-height: 400px;
  }

  .m-hero__title {
    font-size: 42px;
    line-height: 50px;
  }

  .m-hero__subtitle {
    font-size: 17px;
  }

  .m-hero__content {
    flex: 0 0 58%;
    max-width: 58%;
  }

  .conn-services {
    padding: 3rem 2rem;
  }

  .conn-card__img {
    width: 140px;
  }
}

@media (max-width: 1280px) {

  /* ─── CONN CARDS: push images behind text ───────────────── */
  .conn-card--individual .conn-card__img,
  .conn-card--business .conn-card__img {
    z-index: 0;
    opacity: 0.25;
  }

  .conn-card__body {
    position: relative;
    z-index: 1;
  }

  .conn-card__btn {
    position: relative;
    z-index: 1;
  }

  /* ─── HERO ──────────────────────────────────────────────── */
  .m-hero__img,
  .m-hero__design,
  .m-hero__spiral--1,
  .m-hero__spiral--2 {
    display: none;
  }

  .m-hero__container {
    justify-content: center;
  }

  .m-hero__content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .m-hero__subtitle {
    text-align: center !important;
    max-width: 100% !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .m-hero__btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .m-hero {
    padding: 1rem 1.25rem;
  }

  .m-hero__container {
    flex-direction: column;
    padding: 2rem 1.5rem 0;
    border-radius: 30px;
    height: auto;
  }

  .m-hero__content {
    flex: unset;
    max-width: 100%;
    text-align: center;
    padding-bottom: 2rem;
  }

  .m-hero__title {
    font-size: 36px;
    line-height: 44px;
  }

  .m-hero__subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .m-hero__btns {
    justify-content: center;
  }

  .m-hero__visual {
    justify-content: center;
    height: 280px;
    width: 100%;
  }

  .m-hero__img {
    max-height: 280px;
  }

  .conn-services {
    padding: 2.5rem 1.25rem;
  }

  .conn-services__grid {
    grid-template-columns: 1fr;
  }

  .conn-card__img {
    width: 130px;
  }
}

/* ─── WHY ESDIAC ─────────────────────────────────────────── */
.why-esdiac {
  padding: 5rem 3.75rem;
  background: linear-gradient(90deg, #071738 1%, rgba(7, 23, 56, 0) 100%), url('img/manbg.jpg') center center / cover no-repeat;
  position: relative;
}


.why-esdiac__container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-esdiac__title {
  font-family: Urbanist, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 3rem;
}

.why-esdiac__grid {
  display: grid;
  grid-template-columns: 423px 423px 423px;
  gap: 25px;
  align-items: end;
}

.why-esdiac__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-esdiac__col--mid {
  margin-top: 0;
}

.why-card {
  width: 423px;
  height: 258px;
  border-radius: 16px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(7, 23, 56, 0.6) 0%, rgba(7, 23, 56, 0.42) 68.53%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card--tall {
  height: 333px;
}

.why-card__title {
  font-family: Urbanist, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.why-card__desc {
  font-family: Urbanist, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── MORE WAYS ──────────────────────────────────────────── */
.more-ways {
  position: relative;
  background: url('img/man8.jpg') center center / cover no-repeat;
  min-height: 780px;
  padding: 3.75rem;
  overflow: hidden;
}

.more-ways__container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.more-ways__title {
  font-family: Urbanist, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.more-ways__cards {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 520px;
}

.more-ways__card {
  width: 463px;
  height: 469px;
  border-radius: 24px;
  padding: 16px 16px 18px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.more-ways__card--left {
  background: rgba(255, 243, 196, 0.55);
  backdrop-filter: blur(10px);
  margin-top: 80px;
}

.more-ways__card--right {
  background: rgba(214, 239, 233, 0.55);
  backdrop-filter: blur(10px);
  margin-top: -80px;
}

.more-ways__card-img {
  width: 431px;
  height: 259px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.more-ways__card-text {
  font-family: Urbanist, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0;
  color: #071738;
  margin: 0.75rem 0 auto;
  flex: 1;
}

.more-ways__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 397px;
  height: 52px;
  border-radius: 40px;
  padding: 12px 24px;
  box-sizing: border-box;
  font-family: Urbanist, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-top: 0.75rem;
  align-self: center;
}

.more-ways__btn:hover {
  opacity: 0.9;
}

.more-ways__btn--yellow {
  background: #E1B20B;
}

.more-ways__btn--green {
  background: #2B8471;
}

/* 50k users widget */
.more-ways__users {
  position: absolute;
  width: 296px;
  height: 160px;
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  left: 62%;
  transform: translateX(-20%);
  bottom: -60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.more-ways__users-count {
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0;
  color: #000000;
}

.more-ways__avatars {
  display: flex;
  align-items: center;
}

.more-ways__avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4A5568;
  border: 2px solid #ffffff;
  flex-shrink: 0;
  margin-left: -10px;
}

.more-ways__avatar-placeholder:first-child {
  margin-left: 0;
}

.more-ways__avatar-badge {
  background: #081737;
  color: #ffffff;
  font-family: Urbanist, sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #ffffff;
  margin-left: -10px;
}

.more-ways__users-sub {
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

@media (max-width: 1024px) {
  .more-ways__card {
    width: 340px;
    height: auto;
  }

  .more-ways__card-img {
    width: 100%;
    height: 200px;
  }

  .more-ways__btn {
    width: 100%;
  }

  .more-ways__title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .more-ways {
    padding: 2rem 1.25rem;
    min-height: auto;
  }

  .more-ways__cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .more-ways__card {
    width: 100%;
    height: auto;
  }

  .more-ways__card-img {
    width: 100%;
    height: 220px;
  }

  .more-ways__btn {
    width: 100%;
  }

  .more-ways__users {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin: 1rem auto 0;
    width: 100%;
    height: auto;
  }

  .more-ways__title {
    font-size: 28px;
  }
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: 5rem 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonials__header {
  padding: 0 3.75rem;
  margin-bottom: 3rem;
}

.testimonials__label {
  font-family: Urbanist, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6E6E6E;
  margin-bottom: 0.75rem;
}

.testimonials__title {
  font-family: Urbanist, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #071738;
  margin-bottom: 1rem;
}

.testimonials__sub {
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #6E6E6E;
}

.testimonials__row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonials__row--1 {
  transform: translateX(-260px);
}

.testimonials__row--2 {
  transform: translateX(-460px);
}


.tcard {
  flex: 0 0 600px;
  width: 600px;
  height: 345px;
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #E8EDF5;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tcard__stars {
  font-size: 20px;
  color: #F5A623;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.tcard__heading {
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #071738;
  margin-bottom: 0.5rem;
}

.tcard__quote {
  font-size: 28px;
  font-weight: 700;
  color: #D0D8E8;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tcard__text {
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0;
  color: #4A4A4A;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.tcard__divider {
  border: none;
  border-top: 1px solid #E8EDF5;
  margin: 0.75rem 0;
}

.tcard__name {
  font-family: Urbanist, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #071738;
}

.tcard__country {
  font-family: Urbanist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6E6E6E;
}

@media (max-width: 768px) {
  .testimonials__header {
    padding: 0 1.25rem;
  }

  .testimonials__title {
    font-size: 32px;
  }

  .testimonials__row {
    padding: 0 1.25rem;
  }

  .tcard {
    flex: 0 0 calc(100vw - 2.5rem);
    width: calc(100vw - 2.5rem);
    height: auto;
    min-height: unset;
  }
}

/* ─── CTA HOME OVERRIDES ─────────────────────────────────── */
.mt-app-cta--home .mt-cta-circle--man3,
.mt-app-cta--home .mt-cta-circle--woman2,
.mt-app-cta--home .mt-cta-circle--man4 {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-app-cta--home .mt-cta-circle--man3 {
  right: 360px;
  background: #2B8471;
}

.mt-app-cta--home .mt-cta-circle--woman2 {
  background: #081737;
  right: 20px;
  top: 105px;
}

.mt-app-cta--home .mt-cta-circle--man4 {
  background: #E1B20B;
  right: 380px;
  bottom: 20px;
  transform: rotate(0deg);
}

/* ─── PARTNERS ───────────────────────────────────────────── */
.partners {
  padding: 5rem 0;
  background: #ffffff;
  overflow: hidden;
}

.partners__header {
  padding: 0 3.75rem;
  margin-bottom: 3rem;
}

.partners__title {
  font-family: Urbanist, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #071738;
  text-align: center;
}

.partners__row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.partners__row--1 {
  transform: translateX(-120px);
}

.partners__row--2 {
  transform: translateX(-240px);
}

.partners__tile {
  flex: 0 0 240px;
  width: 240px;
  height: 130px;
  border-radius: 16px;
  flex-shrink: 0;
}

.partners__trust {
  padding: 0 3.75rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.partners__trust-label {
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6E6E6E;
}

.partners__trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.partners__badge {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.partners__trust-divider {
  display: block;
  width: 1px;
  height: 48px;
  background: #D0D0D0;
}

@media (max-width: 1280px) {

  /* Conn services: fluid columns */
  .conn-services {
    padding: 3rem 1.5rem;
  }

  .conn-services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .conn-card {
    width: 100%;
    height: auto;
    min-height: 500px;
  }

  .conn-card__btn {
    width: calc(100% - 2rem);
    max-width: none;
    margin: 0 1rem 1.5rem;
  }

  .why-esdiac {
    padding: 3rem 2rem;
  }

  .why-esdiac__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .why-card {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .why-card--tall {
    height: auto;
  }
}

@media (max-width: 768px) {
  .why-esdiac__grid {
    grid-template-columns: 1fr;
  }

  .why-esdiac__col--mid {
    margin-top: 0;
  }

  .why-card,
  .why-card--tall {
    height: auto;
    min-height: 180px;
  }

  .why-esdiac__title {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .m-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .m-hero__subtitle {
    font-size: 15px;
  }

  .m-hero__btn {
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
    height: auto;
    width: 100%;
    max-width: 300px;
  }

  .conn-card__title {
    font-size: 1.375rem;
  }

  .conn-card__img {
    width: 100px;
  }
}

/* ─── NEW MOBILE FOOTER (mf) ─────────────────────────────── */
.mf {
  font-family: 'Urbanist', sans-serif;
}

.mf__main {
  background: #F7F7F7;
  padding: 60px 80px;
}

/* Top row */
.mf__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.mf__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 324px;
}

.mf__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.mf__logo-img {
  width: 40px;
  height: 40px;
}

.mf__logo-text {
  color: #071738;
  font-size: 24px;
  font-weight: 600;
}

.mf__desc {
  color: #6E6E6E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  margin: 0;
}

.mf__download {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.mf__download-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mf__qr {
  width: 105px;
  height: 105px;
  border-radius: 8px;
  border: 1px solid #D1E0FF;
  object-fit: contain;
}

.mf__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf__badge img {
  width: 138px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.mf__scan-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.mf__scan-text strong {
  font-weight: 600;
}

/* Divider */
.mf__divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 0 0 40px;
}

/* Bottom row */
.mf__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.mf__nav-group {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.mf__main-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 140px;
}

.mf__main-link {
  color: #071738;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.mf__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 120px;
}

.mf__col-heading {
  color: #6E6E6E;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.mf__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf__col-link {
  color: #3E4554;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  text-decoration: none;
}

.mf__col-link:hover {
  color: #071738;
}

/* Newsletter */
.mf__newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 343px;
  flex-shrink: 0;
}

.mf__newsletter-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.mf__newsletter-sub {
  color: #6E6E6E;
  font-size: 14px;
  font-weight: 600;
  line-height: 19.6px;
  margin: 0;
}

.mf__form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 26px;
  outline: 1px solid #E7E7E7;
  padding: 8px 8px 8px 14px;
}

.mf__input {
  border: none;
  outline: none;
  color: #6E6E6E;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Urbanist', sans-serif;
  background: transparent;
  flex: 1;
  min-width: 0;
}

.mf__subscribe-btn {
  padding: 9px 24px;
  background: #19113A;
  border-radius: 22px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.mf__subscribe-btn:hover {
  background: #2d1f5e;
}

/* Bottom bar */
.mf__bar {
  background: #fff;
  padding: 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 83px;
  box-sizing: border-box;
}

.mf__copyright {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  margin: 0;
}

.mf__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mf__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mf__legal {
  display: flex;
  gap: 32px;
}

.mf__legal-link {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  text-decoration: none;
}

.mf__legal-link:hover {
  text-decoration: underline;
}

/* ─── FOOTER RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .mf__main {
    padding: 40px 1.5rem;
  }

  /* Top: stack brand above download */
  .mf__top {
    flex-direction: column;
    gap: 32px;
  }

  .mf__brand {
    max-width: 100%;
  }

  /* Download: QR + badges side by side, scan text below */
  .mf__download {
    width: 100%;
  }

  .mf__download-row {
    align-items: center;
  }

  .mf__scan-text {
    font-size: 13px;
  }

  /* Bottom: stack nav + newsletter */
  .mf__bottom {
    flex-direction: column;
    gap: 2rem;
  }

  /* Nav group: wrap columns */
  .mf__nav-group {
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
  }

  .mf__main-links {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .mf__main-link {
    font-size: 16px;
  }

  .mf__col {
    gap: 12px;
    width: auto;
    min-width: 100px;
  }

  .mf__col-link {
    font-size: 15px;
  }

  /* Newsletter: full width */
  .mf__newsletter {
    max-width: 100%;
    width: 100%;
  }

  /* Bottom bar: stack vertically */
  .mf__bar {
    padding: 24px 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: unset;
  }

  .mf__copyright {
    font-size: 14px;
  }

  .mf__legal {
    gap: 16px;
  }

  .mf__legal-link {
    font-size: 14px;
  }
}

/* ─── PARTNERS LIST IMAGE ────────────────────────────────── */
.partners__list-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── AVATARS IMAGE ──────────────────────────────────────── */
.more-ways__avatars-img {
  width: 70%;
  height: auto;
  display: block;
}

/* ─── RCARD QUOTE ICON ───────────────────────────────────── */
.rcard__quote-icon {
  width: 28px;
  height: 28px;
  display: block;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Fix overflowing fixed-pixel grid */
  .conn-services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .conn-card {
    width: 100%;
    height: auto;
    min-height: 460px;
  }

  .conn-card__btn {
    width: calc(100% - 4rem);
    max-width: none;
  }

  /* Testimonials: reduce header padding */
  .testimonials__header {
    padding: 0 2rem;
  }
}

/* ── MOBILE (≤ 768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero: hide all decorative images */
  .m-hero__img,
  .m-hero__design,
  .m-hero__spiral--1,
  .m-hero__spiral--2 {
    display: none;
  }

  /* Hero content: center everything */
  .m-hero__container {
    justify-content: center;
    align-items: center;
  }

  .m-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .m-hero__title,
  .m-hero__subtitle {
    text-align: center;
  }

  /* Hero buttons: centered row */
  .m-hero__btns {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .m-hero__btn {
    text-align: center;
  }

  /* Conn services: single column */
  .conn-services__grid {
    grid-template-columns: 1fr;
  }

  /* Conn cards: full width, auto height */
  .conn-card {
    width: 100%;
    height: auto;
    min-height: unset;
  }

  /* Hide absolutely-positioned person photos */
  .conn-card__img {
    display: none;
  }

  /* Button: full bleed minus padding */
  .conn-card__btn {
    width: calc(100% - 2rem);
    max-width: none;
    margin: 0 1rem 1.5rem;
  }

  /* Conn card body padding */
  .conn-card__body {
    padding: 1.5rem;
  }

  /* Conn heading */
  .conn-services__heading {
    font-size: 32px;
  }

  /* Testimonials: each row is one horizontal scroll line, rows stack */
  .testimonials__row--1,
  .testimonials__row--2 {
    transform: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1rem;
    gap: 1rem;
  }

  .testimonials__row--1::-webkit-scrollbar,
  .testimonials__row--2::-webkit-scrollbar {
    display: none;
  }

  /* Cards: one card fills (almost) full screen width */
  .tcard {
    flex: 0 0 calc(100vw - 2.5rem);
    width: calc(100vw - 2.5rem);
    height: auto;
    min-height: unset;
  }

  /* Reviews: horizontal scroll, one card per view */
  .reviews {
    min-height: unset !important;
    overflow: visible;
  }

  .reviews__header {
    padding: 0 1.5rem !important;
  }

  .reviews__row {
    transform: none !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .reviews__row::-webkit-scrollbar {
    display: none;
  }

  .rcard {
    flex: 0 0 calc(75vw) !important;
    width: calc(75vw) !important;
    height: auto !important;
    min-height: unset !important;
    padding: 16px;
  }

  .rcard__stars {
    font-size: 14px;
    margin-bottom: 0.25rem;
  }

  .rcard__heading {
    font-size: 13px;
    margin-bottom: 0.25rem;
  }

  .rcard__quote-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 0.25rem;
  }

  .rcard__text {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  .rcard__divider {
    margin: 0.5rem 0;
  }

  .rcard__name,
  .rcard__country {
    font-size: 12px;
  }

  /* More ways: reset stagger margins */
  .more-ways__card--left,
  .more-ways__card--right {
    margin-top: 0;
  }

  /* Partners: tighten up */
  .partners__header {
    padding: 0 1.25rem;
  }

  .partners__title {
    font-size: 28px;
  }

  .partners__trust {
    padding: 0 1.25rem;
  }

  .partners__trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .partners__trust-divider {
    display: none;
  }

  /* App CTA (home version): hide decorative closeup + icon circles */
  .mt-app-cta--home .mt-app-cta__closeup,
  .mt-app-cta--home .mt-app-cta__images {
    display: none;
  }

  /* Why Esdiac */
  .why-esdiac {
    padding: 3rem 1.25rem;
  }

  .why-card {
    padding: 1.5rem;
  }
}

/* ── SMALL MOBILE (≤ 480px) ────────────────────────────────── */
@media (max-width: 480px) {
  /* Conn services */
  .conn-services__heading {
    font-size: 26px;
  }

  .conn-services__sub {
    font-size: 15px;
  }

  /* Why Esdiac */
  .why-esdiac__title {
    font-size: 38px;
  }

  /* More ways */
  .more-ways__title {
    font-size: 26px;
  }

  /* Partners */
  .partners__title {
    font-size: 22px;
  }

  /* Testimonials */
  .testimonials__title {
    font-size: 26px;
  }

}
