/* ==========================================================
   AJEER COMING SOON - RESPONSIVE STYLESHEET
   Base: 1440px desktop (from Figma export)
   Breakpoints: 1280px, 1024px, 768px, 480px

   HERO SIZING STRATEGY:
   Desktop/large screens use min-height (not aspect-ratio) so the banner
   always covers its content regardless of viewport width or DPR.
   Tablet/mobile (≤1024px) use auto height — the wrapper grows with content.
   ========================================================== */

/* ---- Main Container ---- */
.frame {
  background-color: #ffffff;
  width: 100%;
  position: relative;
}

/* ---- Hero Wrapper: banner extends from nav down through Trusted Partners ---- */
/* min-height instead of aspect-ratio: banner always covers content at any viewport width/DPR */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background-color: #0b1b35;
  overflow: visible;
  padding-bottom: 0;
}

.hero-wrapper .hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-wrapper .hero-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================
   SECTION 1: HERO
   ========================================================== */
.frame .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 100px 24px 0;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
  width: 100%;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 24px 48px 16px max(48px, calc((100% - 1200px) / 2 + 48px));
  background-color: transparent;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.top-nav .ajeer {
  width: 120.88px;
  height: 40px;
}


.frame .ajeer {
  width: 120.88px;
  height: 40px;
}

.register-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00B493;
  color: #fff;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.register-btn:hover {
  background-color: #009a7d;
}

.pulse-btn {
  animation: pulse-glow 2s ease-in-out infinite;
  position: relative;
}

.register-btn-wrapper {
  position: absolute;
  right: max(48px, calc((100% - 1200px) / 2 + 48px));
  display: inline-block;
}

.hero-register-btn {
  display: none;
}

.hero-register-btn-wrapper {
  display: none;
  position: relative;
  width: fit-content;
  align-self: center;
}

.hero-click-here {
  display: none;
}

.click-here-cta {
  position: absolute;
  bottom: -32px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: bounce-hand 1.2s ease-in-out infinite;
  pointer-events: none;
}

.click-here-hand {
  font-size: 22px;
  display: inline-block;
}

.click-here-text {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff6b35;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes bounce-hand {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 147, 0.6);
  }
  50% {
    box-shadow: 0 0 16px 8px rgba(0, 180, 147, 0.25);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 147, 0);
  }
}

.frame .div-2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  align-items: flex-end;
  gap: 40px;
}

.frame .div-3 {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 50%;
  max-width: 560px;
  align-items: flex-start;
  gap: 20px;
  align-self: center;
}

.frame .div-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.frame .send-money-with {
  width: 100%;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: var(--collection-1-primary-text);
  font-size: clamp(22px, 3vw, 42px); /* fluid: 22px at 480px → 42px at 1400px+ */
  text-align: left;
  letter-spacing: 0;
  line-height: 1.2;
}

.frame .text-wrapper {
  color: #082b28;
}

.frame .span {
  color: #00b493;
}

.frame .p {
  width: 100%;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #46605e;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .text-wrapper-2 {
  background: linear-gradient(180deg, rgba(3, 181, 148, 1) 0%, rgba(3, 181, 148, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
}

/* Hero Mockup */
.frame .div-5 {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.frame .hero-mockup-img {
  width: 100%;
  max-width: min(680px, 42vw);
  /* calc(100vh - 360px): 100px hero-padding + 40px partners-margin + 180px partners-height + 40px safety.
     Guarantees trusted partners stay visible on any screen height without breakpoints. */
  max-height: min(640px, calc(100vh - 360px));
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right bottom;
  margin-right: -40px;
}

/* ==========================================================
   SECTION 2: REWARDS
   ========================================================== */
.frame .div-6 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.frame .send-money-get {
  width: 100%;
  max-width: 592px;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: var(--collection-1-primary-text);
  font-size: clamp(20px, 2.6vw, 34px); /* fluid scaling */
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .div-7 {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 40px;
}

.frame .rewards-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.frame .div-8 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
}

.frame .senders-rewards {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: var(--collection-1-primary-text);
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .heading-heading {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: var(--collection-1-primary-text);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.frame .text-wrapper-3 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #46605e;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

/* Rewards gift image */
.frame .div-9 {
  flex: 1;
  min-height: 380px;
  border-radius: 16px;
  background-image: url(./img/frame-35296.webp);
  background-size: cover;
  background-position: 50% 50%;
}

/* Rewards prize list */
.frame .div-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.frame .div-11 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  width: 100%;
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #e8edec;
  border-radius: 16px;
}

.frame .text-wrapper-4 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #082b28;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.frame .complete-pilgrimage {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #46605e;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .text-wrapper-5 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #46605e;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

/* ==========================================================
   SECTION 3: PARTNERS
   ========================================================== */
.frame .div-37 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.frame .our-trusted-partners {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: var(--collection-1-primary-text);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: capitalize;
}

.frame .FAQ-lg-col-variant {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.carousel-track-wrapper {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 150px;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.carousel-track img {
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}


.frame .image {
  width: 115.67px;
  height: 42.92px;
  object-fit: contain;
}

.frame .image-2 {
  width: 85.18px;
  height: 43px;
  object-fit: contain;
}

.frame .image-3 {
  width: 68.76px;
  height: 42.97px;
  object-fit: contain;
}

.frame .image-4 {
  width: 100.43px;
  height: 43.02px;
  object-fit: contain;
}

.frame .image-5 {
  width: 45.18px;
  height: 42.92px;
  object-fit: contain;
}

.frame .image-6 {
  width: 138.24px;
  height: 42.92px;
  object-fit: contain;
}

.frame .image-7 {
  width: 51.07px;
  height: 42.9px;
  object-fit: contain;
}

/* ==========================================================
   SECTION 4: TRANSFERS
   ========================================================== */
.frame .div-12 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0 24px;
  align-items: center;
  gap: 62px;
  position: relative;
  z-index: 1;
}

.frame .text-wrapper-6 {
  width: 100%;
  max-width: 452px;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: var(--collection-1-primary-text);
  font-size: clamp(20px, 3vw, 40px); /* fluid scaling */
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .div-13 {
  display: flex;
  align-items: stretch;
  gap: 42px;
  width: 100%;
}

.frame .div-14 {
  position: relative;
  flex: 1;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.frame .div-13 .div-14:first-child {
  background-image: url("img/personal-card-bg.webp");
}

.frame .div-13 .div-14:last-child {
  background-image: url("img/business-card-bg.webp");
}


.frame .card-header-row {
  display: grid;
  grid-template-columns: 10fr 2fr;
  align-items: start;
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.frame .div-15 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.frame .text-wrapper-7 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #082b28;
  font-size: 32px;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
  align-self: stretch;
}

.frame .moving-overseas {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #082b28;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
  align-self: stretch;
}

.frame .signup-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  position: absolute;
  top: 179px;
  left: 28px;
  background-color: var(--collection-1-main-container);
  border-radius: 26px;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s;
}

.frame .signup-container:hover {
  transform: scale(1.05);
}

/* CTA Arrow (replaced broken Figma negative-margin icons) */
.frame .cta-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.frame .cta-arrow svg {
  display: block;
}

/* Personal card background pattern */
.frame .card-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url(./img/pattern.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Personal card visual area */
.frame .card-visual-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.frame .hand-and-iphone {
  position: absolute;
  width: 75%;
  max-width: 450px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.frame .artboard {
  width: 100%;
  height: auto;
  display: block;
}

/* User photo bubbles - small rounded circles */
.frame .user-bubble {
  position: absolute;
  width: 58px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.frame .user-bubble-1 {
  bottom: 32%;
  left: 24%;
  animation: float-1 4s ease-in-out infinite;
}

.frame .user-bubble-2 {
  top: 38%;
  right: 24%;
  animation: float-2 5s ease-in-out infinite;
}

.frame .user-bubble-3 {
  bottom: 8%;
  right: 20%;
  animation: float-3 4.5s ease-in-out infinite;
}

/* Floating animations for user bubbles */
@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(5px); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px) translateX(-5px); }
}

/* Business card - spinning world globe */
.frame .world-globe-visual {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  max-width: 560px;
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  perspective: 800px;
}

.frame .world-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.frame .moving-overseas-sub {
  color: #082b28;
}

.frame .card-corner-btn {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  cursor: pointer;
  flex-shrink: 0;
}

.frame .text-wrapper-8 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #082b28;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
  align-self: stretch;
}

/* ==========================================================
   SECTION 5: INCENTIVES
   ========================================================== */
.frame .div-18 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px;
  align-items: center;
  gap: 62px;
  position: relative;
  z-index: 1;
}

.frame .div-19 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.frame .the-world-s-first {
  width: 100%;
  max-width: 532px;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: var(--collection-1-primary-text);
  font-size: clamp(20px, 3vw, 40px); /* fluid scaling */
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .text-wrapper-9 {
  width: 100%;
  max-width: 356px;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #46605e;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .div-20 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.frame .div-21 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 210px;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 8px;
  padding: 24px;
  background-image: url("img/product-card-1.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid #e8eaea;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.frame .text-wrapper-10 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #082b28;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.frame .text-wrapper-11 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #46605e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

/* Incentive card icon container */
.frame .vector-wrapper {
  position: relative;
  z-index: 0;
  align-self: center;
}

.frame .card-text-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Incentive card icon images */
.frame .incentive-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.frame .ajeer-exchange-rates {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #46605e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.frame .our-security-is {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #46605e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   SECTION 5.5: FREELANCERS
   ========================================================== */
.frame .freelancers-section {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px;
}

.frame .freelancers-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.frame .freelancers-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame .freelancers-image img {
  width: 100%;
  max-width: 480px;
  max-height: 400px;
  height: auto;
  object-fit: contain;
}

.frame .freelancers-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frame .freelancers-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #082b28;
  line-height: 1.2;
  margin: 0;
}

.frame .freelancers-subtitle {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #46605e;
  line-height: 1.5;
  margin: 0;
}

.frame .freelancers-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame .freelancers-list li {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 15px;
  color: #082b28;
  display: flex;
  align-items: center;
  gap: 10px;
}

.frame .freelancers-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9.5L7 13.5L15 5' stroke='%2300B493' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.frame .freelancers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(180deg, #015757 40%, #027a7a 100%);
  color: #ffffff;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.2s;
}

.frame .freelancers-btn:hover {
  background-color: #014a4a;
}

@media (max-width: 768px) {
  .frame .freelancers-inner {
    flex-direction: column;
    gap: 40px;
  }

  .frame .freelancers-image img {
    max-width: 320px;
  }

  /* Reorder: heading → image → subtitle/list/button */
  .frame .freelancers-content {
    display: contents;
  }

  .frame .freelancers-title {
    order: 1;
  }

  .frame .freelancers-image {
    order: 2;
  }

  .frame .freelancers-subtitle {
    order: 3;
  }

  .frame .freelancers-list {
    order: 4;
  }

  .frame .freelancers-btn {
    order: 5;
  }
}

/* ==========================================================
   SECTION 6: ULTIMATE EXPERIENCE
   ========================================================== */
.frame .section-6-bg {
  width: 100%;
  margin-top: 120px;
  border-radius: 24px;
  overflow: hidden;
}

.frame .div-25 {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: stretch;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.frame .div-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 47px;
  flex: 1;
  padding-top: 0;
}

.frame .div-26 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.frame .section6-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.frame .section6-left img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.frame .text-wrapper-12 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: #082b28;
  font-size: clamp(20px, 2.8vw, 36px); /* fluid scaling */
  letter-spacing: 0;
  line-height: 1.3;
  white-space: pre-line;
}

.frame .div-27 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.frame .text-wrapper-13 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #46605e;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .div-28 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 0;
  margin-top: 0;
  width: 100%;
}

.frame .div-29 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background-color: rgba(240, 242, 238, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 100%;
  box-sizing: border-box;
}

/* Check icon containers (replaced broken Figma negative-margin elements) */
.frame .check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.frame .check-icon svg {
  display: block;
}

.frame .text-wrapper-14 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: #082b28;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.frame .signup-text-wrapper {
  display: flex;
  width: 148px;
  height: 45px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  background-color: #ffffff;
  border-radius: 26px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.frame .signup-text-wrapper:hover {
  opacity: 0.85;
}

.frame .signup-text {
  color: #082b28;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
}

/* Isometric cards image */
.frame .group-4 {
  width: 100%;
  max-width: 480px;
  height: auto;
  flex-shrink: 0;
}

/* ==========================================================
   SECTION 7: eSIM
   ========================================================== */
.frame .div-38 {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 40px;
  padding: 88px 0 0 calc((100% - 1200px) / 2);
  margin-top: 100px;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
}

.frame .img-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.frame .frame-wrapper-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 409px;
  align-items: flex-start;
  gap: 47px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding-bottom: 88px;
}

.frame .product-features {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: var(--collection-1-primary-text);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.3;
  white-space: nowrap;
}

.frame .text-wrapper-19 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  color: var(--collection-1-primary-text);
  font-size: clamp(20px, 3vw, 40px); /* fluid scaling */
  letter-spacing: 0;
  line-height: 1.3;
}

/* eSIM phones image */
.frame .group-8 {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  margin-right: -1px;
}

/* ==========================================================
   SECTION: OUR PRODUCTS
   ========================================================== */
.frame .our-products-section {
  width: 100%;
  padding: 0 48px;
  background-color: #ffffff;
  margin-top: 60px;
}

.frame .our-products-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.frame .our-products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.frame .our-products-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #082b28;
  line-height: 1.2;
  letter-spacing: 0;
}

.frame .our-products-subtitle {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #46605e;
  line-height: 1.5;
  letter-spacing: 0;
}

.frame .products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.frame .product-card {
  position: relative;
  border-radius: 20px;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background-size: cover;
  background-position: center;
}

.frame .product-card:nth-child(1) { background-image: url("img/product-card-1.webp"); }
.frame .product-card:nth-child(2) { background-image: url("img/product-card-2.webp"); }
.frame .product-card:nth-child(3) { background-image: url("img/product-card-3.webp"); }
.frame .product-card:nth-child(4) { background-image: url("img/product-card-foreign-exchange.webp"); }
.frame .product-card:nth-child(5) { background-image: url("img/product-card-4.webp"); }
.frame .product-card:nth-child(6) { background-image: url("img/product-card-4.webp"); }


.frame .product-coming-soon {
  display: inline-block;
  background-color: #A6E7C5;
  color: #082b28;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  width: fit-content;
  margin-bottom: 4px;
}

.frame .product-card-img {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame .product-card-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.frame .product-3d-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.frame .product-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 55%;
}

.frame .product-card-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #082b28;
  line-height: 1.3;
  letter-spacing: 0;
}

.frame .product-card-desc {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #46605e;
  line-height: 1.5;
  letter-spacing: 0;
}

/* ==========================================================
   SECTION 8: SEND MONEY GLOBALLY
   ========================================================== */
.frame .send-money-section {
  width: 100%;
  background-color: #ffffff;
  margin-top: 120px;
}

.frame .send-money-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.frame .send-money-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: #082b28;
  font-size: clamp(28px, 5vw, 40px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: 532px;
}

.frame .send-money-map-wrap {
  position: relative;
  width: 100%;
  max-width: 1208px;
}

.frame .send-money-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.frame .map-label {
  position: absolute;
  width: 18%;
  height: auto;
  pointer-events: none;
  animation: mapFloatUp 3s ease-in-out infinite;
}

.frame .map-label-uk {
  top: 17%;
  left: 44%;
}

@keyframes mapFloatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Country pin (teardrop style) */
.frame .country-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  animation: mapFloatUp 3s ease-in-out infinite;
}

.frame .pin-teardrop {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame .pin-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: rotate(45deg);
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


/* ==========================================================
   SECTION: OUR PARTNERS
   ========================================================== */
.frame .partners-section {
  background-color: #e8e8e8;
  padding: 80px 48px;
  margin-top: 120px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
}

.frame .partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.frame .partners-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #082b28;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
}

.frame .partners-columns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.frame .partners-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.frame .partners-col-label {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #46605e;
  letter-spacing: 0;
}

.frame .partners-divider {
  width: 2px;
  background-color: #bbbbbb;
  align-self: stretch;
  margin: 0 60px;
}

.frame .partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.frame .partner-logo-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: none;
  width: 180px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.frame .partner-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================
   SECTION 8b: SEND MONEY TO - COUNTRY LIST
   ========================================================== */
.frame .send-money-to {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 24px;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.frame .country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

.frame .country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #f7fafa;
  border: 1px solid #e8edec;
  border-radius: 10px;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #082B28;
}

@media (max-width: 768px) {
  .frame .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .frame .country-item {
    padding: 12px 14px;
    font-size: 14px;
  }
  .frame .send-money-to {
    margin-top: 50px;
    gap: 24px;
  }
}

/* ==========================================================
   SECTION: FAQs
   ========================================================== */
.frame .faq-section {
  width: 100%;
  background-color: #ffffff;
  padding: 0 24px;
  margin-top: 120px;
}

.frame .faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frame .faq-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: #082b28;
  font-size: clamp(28px, 5vw, 40px);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
}

.frame .faq-subtitle {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #46605e;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  max-width: 480px;
  margin-top: 16px;
}

.frame .faq-list {
  width: 100%;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame .faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 0 16px;
}

.frame .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.frame .faq-question span:first-child {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #082b28;
  line-height: 1.4;
}

.frame .faq-icon {
  font-size: 24px;
  color: #082b28;
  flex-shrink: 0;
  line-height: 1;
}

.frame .faq-answer {
  padding-bottom: 20px;
}

.frame .faq-answer p {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #46605e;
  line-height: 1.6;
  max-width: 760px;
}

.frame .faq-assist-text {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #082b28;
  margin-top: 48px;
}

.frame .faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #015757 40%, #027a7a 100%);
  border-radius: 50px;
  color: #ffffff;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.frame .faq-contact-btn:hover {
  background-color: #014a4a;
}

/* ==========================================================
   SECTION 9: FOOTER
   ========================================================== */
.frame .div-32 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 60px 196px 24px;
  margin-top: 100px;
  background-color: #003434;
}

.frame .img-3 {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.frame .footer-menu-md-col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.frame .div-33 {
  display: flex;
  width: 436px;
  align-items: flex-start;
  justify-content: space-between;
}

.frame .div-34 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.frame .text-wrapper-17 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.frame .list-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.frame .link-variant-for,
.frame .link-variant-for-2,
.frame .link-variant-about,
.frame .link-variant {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.frame .link-variant-for:hover,
.frame .link-variant-for-2:hover,
.frame .link-variant-about:hover,
.frame .link-variant:hover {
  opacity: 0.7;
}


.frame .div-35 {
  display: flex;
  width: 329px;
  align-items: flex-start;
  gap: 24px;
}

.frame .link-app-store,
.frame .link-play-store {
  height: 48px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.frame .div-36 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
}

.frame .footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.frame .text-wrapper-18 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
  width: 100%;
}

/* ==========================================================
   RESPONSIVE: LARGE LAPTOP (max-width: 1440px)
   Covers the 1281px–1440px "gap" — common CSS viewport width on 13"–15"
   laptops with Windows Display Scaling at 125% or 150%.
   Without this, the 1440px-targeted desktop styles apply unchanged and
   the page appears "zoomed in" compared to a wider external monitor.
   This breakpoint fires on laptops but NOT on monitors (≥1441px).
   ========================================================== */
@media (max-width: 1440px) {

  /* Hero: top padding scales with viewport height so it feels consistent across
     different laptop screen sizes (14" vs 15", short vs tall viewports) */
  .frame .div {
    padding-top: clamp(40px, 5vh, 80px);
  }

  /* padding here is ~clamp(40,5vh,80) so overhead is reduced to ~300px */
  .frame .hero-mockup-img {
    max-height: min(520px, calc(100vh - 300px));
    max-width: min(520px, 40vw);
  }

  /* Footer: the 196px side padding is designed for wide monitors;
     at 1366px it leaves only ~974px of content — tighten it */
  .frame .div-32 {
    padding: 60px 100px 24px;
  }

  /* Section vertical spacing: scale 120px → 100px for the laptop range */
  .frame .div-6,
  .frame .div-12,
  .frame .div-18,
  .frame .freelancers-section,
  .frame .section-6-bg,
  .frame .faq-section,
  .frame .send-money-section,
  .frame .partners-section {
    margin-top: 100px;
  }

  /* eSIM + footer top margin */
  .frame .div-38 {
    margin-top: 80px;
  }

  .frame .div-32 {
    margin-top: 80px;
  }
}

/* ==========================================================
   RESPONSIVE: TABLET (max-width: 1280px)
   ========================================================== */
@media (max-width: 1280px) {
  /* Padding scales with viewport height — shorter screens get less padding */
  .frame .div {
    padding-top: clamp(30px, 4vh, 60px);
  }

  /* padding here is ~clamp(30,4vh,60) so overhead is reduced to ~260px */
  .frame .hero-mockup-img {
    max-height: min(360px, calc(100vh - 260px));
    max-width: min(380px, 36vw);
  }

  .frame .div-38 {
    padding: 88px 0 0 80px;
  }

  .frame .div-32 {
    padding: 60px 80px 24px;
  }

  .frame .div-25 {
    gap: 40px;
  }

  /* Hero title */
  .frame .send-money-with {
    font-size: 36px;
  }

  /* Section headings */
  .frame .send-money-get,
  .frame .text-wrapper-6,
  .frame .the-world-s-first,
  .frame .text-wrapper-12,
  .frame .text-wrapper-19,
  .frame .text-wrapper-15 {
    font-size: 34px;
  }

  .frame .partners-title {
    font-size: 30px;
  }

  .frame .faq-title {
    font-size: 32px;
  }

  /* Section spacing */
  .frame .send-money-section,
  .frame .faq-section,
  .frame .our-products-section,
  .frame .partners-section,
  .frame .freelancers-section,
  .frame .section-6-bg {
    margin-top: 96px;
  }

  .frame .our-products-section {
    margin-top: 48px;
  }
}

/* ==========================================================
   RESPONSIVE: SMALL TABLET — font & spacing only (max-width: 1024px)
   Covers 1280px screens at 125% Windows scaling (= 1024px CSS).
   Layout stacking is deferred to 960px so these users still see
   a near-desktop layout rather than the stacked tablet view.
   ========================================================== */
@media (max-width: 1024px) {
  .frame .send-money-with {
    font-size: 40px;
  }

  .frame .send-money-get,
  .frame .text-wrapper-6,
  .frame .the-world-s-first,
  .frame .text-wrapper-12,
  .frame .text-wrapper-19,
  .frame .text-wrapper-15 {
    font-size: 32px;
  }

  .frame .heading-heading {
    font-size: 14px;
  }

  .frame .text-wrapper-7 {
    font-size: 26px;
  }

  /* Footer */
  .frame .div-32 {
    padding: 60px 40px 24px;
  }

  .frame .footer-menu-md-col {
    flex-wrap: wrap;
    gap: 40px;
  }

  .frame .div-33 {
    width: 100%;
  }

  .frame .FAQ-lg-col-variant {
    gap: 32px;
  }
}

/* ==========================================================
   RESPONSIVE: SMALL TABLET — layout stacking (max-width: 960px)
   Stacking starts here so that 1280px screens at 125% OS scaling
   (= 1024px CSS) still see horizontal multi-column layouts.
   ========================================================== */
@media (max-width: 960px) {
  /* Rewards: stack 3 columns into vertical */
  .frame .div-7 {
    flex-direction: column;
  }

  .frame .div-9 {
    min-height: 250px;
  }

  /* Transfers: stack cards vertically */
  .frame .div-13 {
    flex-direction: column;
    gap: 24px;
  }

  .frame .div-14 {
    width: 100%;
    min-height: 440px;
  }

  /* Incentives: 2x2 grid */
  .frame .div-20 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .frame .div-21 {
    width: calc(50% - 8px);
    flex: none;
    min-height: 210px;
  }

  /* Ultimate Experience: stack */
  .frame .div-25 {
    flex-direction: column;
    gap: 40px;
  }

  .frame .div-wrapper {
    padding-top: 0;
  }

  .frame .group-4 {
    max-width: 480px;
    margin: 0 auto;
  }

  /* eSIM: stack */
  .frame .div-38 {
    flex-direction: column;
    padding: 60px 40px 0;
    gap: 40px;
  }

  .frame .frame-wrapper-2 {
    width: 100%;
    max-width: none;
    padding-bottom: 60px;
  }

  .frame .group-8 {
    max-width: 100%;
  }
}

/* ==========================================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ========================================================== */
@media (max-width: 768px) {

  .register-btn-wrapper {
    display: none;
  }

  .top-nav {
    justify-content: center;
    padding: 24px 16px 16px;
  }

  .hero-register-btn-wrapper {
    display: block;
    margin-top: 16px;
    align-self: center;
  }

  .hero-register-btn {
    display: inline-block;
    margin-top: 0;
    align-self: center;
  }

  .hero-click-here {
    display: flex;
    bottom: -28px;
    right: -10px;
  }

  .frame .div {
    gap: 40px;
    padding: 20px 16px 0;
    min-height: unset;
  }

  .frame .div-2 {
    flex-direction: column;
    align-items: center;
  }

  .frame .div-3 {
    width: 100%;
    max-width: none;
    align-items: center;
  }

  .frame .div-4 {
    align-items: center;
  }

  .frame .send-money-with {
    font-size: 28px;
    text-align: center;
  }

  .frame .p {
    font-size: 14px;
    text-align: center;
  }

  .frame .text-wrapper-2 {
    font-size: 20px;
    text-align: center;
  }

  .frame .div-5 {
    width: 100%;
    justify-content: center;
  }

  .frame .hero-mockup-img {
    max-width: 100%;
    max-height: 360px;
    object-position: center;
  }

  .frame .div-6,
  .frame .div-12,
  .frame .div-18,
  .frame .div-25,
  .frame .div-30 {
    margin-top: 60px;
    gap: 40px;
    padding: 0 16px;
  }

  .frame .sports-partners-section {
    margin-top: -40px;
    margin-bottom: -40px;
    padding: 40px 16px;
  }

  .frame .sports-partners-inner {
    gap: 30px;
  }

  .frame .sports-partners-title {
    font-size: 26px;
  }

  .frame .sports-partners-logos {
    gap: 40px;
  }

  .frame .sports-partner-logo {
    height: 100px;
  }

  .frame .send-money-get,
  .frame .text-wrapper-6,
  .frame .the-world-s-first,
  .frame .text-wrapper-12,
  .frame .text-wrapper-19,
  .frame .text-wrapper-15 {
    font-size: 26px;
  }

  .frame .heading-heading {
    font-size: 16px;
  }

  .frame .text-wrapper-7 {
    font-size: 22px;
  }

  /* Transfers */
  .frame .div-13 {
    gap: 20px;
  }

  .frame .div-14 {
    min-height: 460px;
  }

  /* Incentives: stack to 1 column */
  .frame .div-20 {
    flex-direction: column;
  }

  .frame .div-21 {
    width: 100%;
    min-height: 190px;
  }

  .frame .vector-wrapper {
    width: auto;
    height: auto;
  }

  .frame .incentive-icon {
    width: 52px;
    height: 52px;
  }

  /* eSIM */
  .frame .div-38 {
    flex-direction: column;
    padding: 40px 16px 0;
    gap: 32px;
    align-items: center;
  }

  .frame .frame-wrapper-2 {
    padding-bottom: 40px;
  }

  /* Globe / Send Money section */
  .frame .country-label {
    width: 22%;
  }

  .frame .money-transfer {
    display: none;
  }

  /* Footer */
  .frame .div-32 {
    padding: 40px 16px 24px;
  }

  .frame .footer-menu-md-col {
    flex-direction: column;
    gap: 32px;
  }

  .frame .div-33 {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .frame .div-35 {
    width: 100%;
  }

  /* Partners */
  .frame .FAQ-lg-col-variant {
    gap: 24px;
  }

  .frame .image,
  .frame .image-2,
  .frame .image-3,
  .frame .image-4,
  .frame .image-5,
  .frame .image-6,
  .frame .image-7 {
    height: 32px;
    width: auto;
  }
}

/* ==========================================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ========================================================== */
@media (max-width: 480px) {
  .frame .send-money-with {
    font-size: 24px;
  }

  .frame .send-money-get,
  .frame .text-wrapper-6,
  .frame .the-world-s-first,
  .frame .text-wrapper-12,
  .frame .text-wrapper-19,
  .frame .text-wrapper-15 {
    font-size: 22px;
  }

  .frame .sports-partners-title {
    font-size: 22px;
  }

  .frame .sports-partner-logo {
    height: 80px;
  }

  .frame .sports-partners-logos {
    gap: 30px;
  }

  .frame .heading-heading {
    font-size: 14px;
  }

  .frame .text-wrapper-7 {
    font-size: 20px;
  }

  .frame .div-14 {
    min-height: 400px;
  }

  .frame .signup-container {
    top: 160px;
  }

  .frame .text-wrapper-14 {
    white-space: normal;
    font-size: 14px;
  }

  /* Incentives: smaller icons on small screens */
  .frame .vector-wrapper {
    width: auto;
    height: auto;
  }

  .frame .incentive-icon {
    width: 48px;
    height: 48px;
  }

  /* Globe: smaller labels */
  .frame .country-label {
    width: 28%;
  }

  /* Footer store buttons */
  .frame .div-35 {
    flex-direction: column;
    gap: 12px;
  }

  .frame .link-app-store,
  .frame .link-play-store {
    height: 44px;
    flex: none;
    width: 160px;
  }
}

/* ==========================================================
   MOBILE RESPONSIVE
   Added to make all sections responsive without changing desktop CSS.
   Breakpoints: 1024px (tablet), 768px (mobile landscape), 480px (portrait)
   ========================================================== */

/* ----------------------------------------------------------
   TABLET (max-width: 1024px) — sections not already covered
   ---------------------------------------------------------- */
@media (max-width: 1024px) {

  /* Hero wrapper tablet — content-driven height, no fixed ratio */
  .hero-wrapper {
    min-height: auto;
    padding-bottom: 40px;
  }

  /* Reduce 100px top padding to 60px on tablet — hero is stacked so less whitespace needed */
  .frame .div {
    padding: 60px 20px 0;
  }

  .frame .div-37 {
    margin-top: 60px;
  }

  .hero-wrapper .hero-banner-img {
    height: 100%;
    min-height: 100%;
  }

  .frame .div-2 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .frame .div-5 {
    width: 100%;
    justify-content: center;
  }

  .frame .hero-mockup-img {
    max-width: 90%;
    max-height: none;
    margin-right: 0;
    object-position: center;
  }

  /* Trusted Partners */
  .frame .div-37 {
    padding: 32px 16px;
    margin-top: 80px;
    gap: 12px;
  }

  .frame .our-trusted-partners {
    font-size: 15px;
  }

  .carousel-track img {
    height: 40px;
  }

  /* Rewards */
  .frame .div-6 {
    margin-top: 80px;
    gap: 48px;
    padding: 0 20px;
  }

  .frame .send-money-get {
    font-size: 28px;
  }

  .frame .div-9 {
    min-height: 220px;
  }

  .frame .senders-rewards {
    font-size: 22px;
  }

  /* Transfers */
  .frame .div-12 {
    margin-top: 80px;
    gap: 40px;
    padding: 0 20px;
  }

  .frame .text-wrapper-6 {
    font-size: 28px;
  }

  /* Incentives */
  .frame .div-18 {
    margin-top: 80px;
    gap: 40px;
    padding: 0 20px;
  }

  .frame .the-world-s-first {
    font-size: 28px;
  }

  /* Freelancers */
  .frame .freelancers-section {
    margin-top: 80px;
    padding: 0 20px;
  }

  .frame .freelancers-inner {
    gap: 48px;
  }

  /* Section 6: Ultimate Experience */
  .frame .section-6-bg {
    margin-top: 80px;
  }

  .frame .div-25 {
    padding: 0 32px;
  }

  .frame .div-28 {
    margin-top: 0;
  }

  /* Our Products */
  .frame .our-products-section {
    padding: 0 32px;
    margin-top: 80px;
  }

  /* Our Partners */
  .frame .partners-section {
    margin-top: 80px;
    padding: 60px 32px;
    width: 90%;
  }

  .frame .partners-title {
    font-size: 36px;
  }

  .frame .partners-col-label {
    font-size: 18px;
  }

  .frame .partner-logo-card {
    width: 150px;
    height: 120px;
  }

  /* Send Money */
  .frame .send-money-section {
    margin-top: 80px;
  }

  .frame .pin-teardrop {
    width: 24px;
    height: 24px;
  }

  .frame .pin-flag {
    width: 16px;
    height: 16px;
  }

  /* FAQs */
  .frame .faq-section {
    margin-top: 80px;
    padding: 0 20px;
  }

  /* Footer */
  .frame .div-32 {
    padding: 48px 40px 24px;
  }
}

/* ----------------------------------------------------------
   MOBILE LANDSCAPE (max-width: 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {

  /* ---- HERO ---- */
  /* Hero fills full viewport — prevents rewards section bleeding in on tall phones.
     100svh = small viewport height (stable, excludes mobile browser toolbar).
     100vh fallback for older browsers. */
  .hero-wrapper {
    min-height: 100vh;
    min-height: 100svh;
  }

  .frame .div-37 {
    margin-top: 48px;
  }

  /* calc(100vh - 500px): nav(~70) + padding(20) + text(~174) + gap(24) +
     partners-margin(60) + partners(~111) + safety(41) = 500px overhead.
     Phone scales with viewport height so everything fits on any mobile screen. */
  .frame .hero-mockup-img {
    margin-right: 0;
    max-width: 90%;
    max-height: clamp(240px, calc(100vh - 440px), 320px);
    object-position: center;
  }

  .frame .div-3 {
    text-align: center;
  }

  .frame .send-money-with,
  .frame .p,
  .frame .text-wrapper-2 {
    text-align: center;
  }

  /* ---- TRUSTED PARTNERS ---- */
  .frame .div-37 {
    padding: 24px 16px;
    margin-top: 60px;
    gap: 10px;
  }

  .frame .our-trusted-partners {
    font-size: 13px;
    letter-spacing: 0.3px;
  }

  .carousel-track-wrapper {
    width: 100%;
  }

  .carousel-track {
    gap: 48px;
  }

  .carousel-track img {
    height: 34px;
  }

  /* ---- REWARDS ---- */
  .frame .div-6 {
    margin-top: 48px;
    gap: 32px;
    padding: 0 16px;
  }

  .frame .send-money-get {
    font-size: 24px;
    text-align: center;
  }

  .frame .div-7 {
    flex-direction: column;
    gap: 24px;
  }

  .frame .rewards-left {
    width: 100%;
  }

  .frame .div-9 {
    min-height: 200px;
    width: 100%;
    border-radius: 12px;
  }

  .frame .senders-rewards {
    font-size: 22px;
  }

  .frame .div-10 {
    gap: 10px;
  }

  .frame .div-11 {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .frame .text-wrapper-4 {
    font-size: 14px;
  }

  .frame .complete-pilgrimage,
  .frame .text-wrapper-5 {
    font-size: 13px;
  }

  /* ---- TRANSFERS ---- */
  .frame .div-12 {
    margin-top: 48px;
    gap: 28px;
    padding: 0 16px;
  }

  .frame .text-wrapper-6 {
    font-size: 22px;
    max-width: 100%;
  }

  .frame .div-13 {
    flex-direction: column;
    gap: 16px;
  }

  .frame .div-14 {
    width: 100%;
    min-height: 380px;
    border-radius: 16px;
  }

  .frame .card-header-row {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .frame .text-wrapper-7 {
    font-size: 20px;
  }

  .frame .moving-overseas,
  .frame .text-wrapper-8 {
    font-size: 14px;
  }

  .frame .card-corner-btn {
    width: 44px;
    height: 44px;
  }

  /* Card visual area: scale down the phone image */
  .frame .hand-and-iphone {
    width: 65%;
  }

  .frame .user-bubble {
    width: 46px;
  }

  /* ---- INCENTIVES ---- */
  .frame .div-18 {
    margin-top: 48px;
    gap: 28px;
    padding: 0 16px;
  }

  .frame .the-world-s-first {
    font-size: 24px;
  }

  .frame .text-wrapper-9 {
    font-size: 14px;
    max-width: 100%;
  }

  .frame .div-20 {
    flex-direction: column;
    gap: 12px;
  }

  .frame .div-21 {
    width: 100%;
    flex: none;
    min-height: unset;
    padding: 16px;
    border-radius: 12px;
  }

  /* ---- FREELANCERS ---- */
  .frame .freelancers-section {
    margin-top: 48px;
    padding: 0 16px;
  }

  .frame .freelancers-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .frame .freelancers-image {
    width: 100%;
  }

  .frame .freelancers-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .frame .freelancers-content {
    width: 100%;
  }

  .frame .freelancers-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .frame .freelancers-subtitle {
    font-size: 14px;
  }

  .frame .freelancers-list li {
    font-size: 14px;
  }

  .frame .freelancers-btn {
    align-self: stretch;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
  }

  /* ---- SECTION 6: ULTIMATE CARD EXPERIENCE ---- */
  .frame .section-6-bg {
    margin-top: 48px;
    border-radius: 16px;
  }

  .frame .div-25 {
    flex-direction: column;
    padding: 0 20px;
    gap: 28px;
  }

  .frame .section6-left {
    width: 100%;
    align-items: center;
  }

  .frame .text-wrapper-12 {
    font-size: 20px;
    text-align: center;
  }

  .frame .group-4 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .frame .div-wrapper {
    width: 100%;
    padding-top: 0;
  }

  .frame .div-27 {
    gap: 20px;
  }

  .frame .text-wrapper-13 {
    font-size: 14px;
  }

  .frame .div-28 {
    margin-top: 0;
    gap: 10px;
  }

  .frame .div-29 {
    padding: 12px 14px;
    border-radius: 50px;
  }

  .frame .text-wrapper-14 {
    font-size: 14px;
    white-space: normal;
  }

  .frame .signup-text-wrapper {
    width: 100%;
    max-width: 200px;
    height: auto;
    padding: 10px 16px;
  }

  .frame .signup-text {
    font-size: 14px;
  }

  /* ---- OUR PRODUCTS ---- */
  .frame .our-products-section {
    padding: 0 16px;
    margin-top: 48px;
  }

  .frame .our-products-inner {
    gap: 36px;
  }

  .frame .our-products-title {
    font-size: 26px;
  }

  .frame .our-products-subtitle {
    font-size: 14px;
  }

  /* 1-column grid on mobile */
  .frame .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .frame .product-card {
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .frame .product-card-img {
    width: 130px;
    height: 130px;
    top: 16px;
    right: 16px;
  }

  .frame .product-card-content {
    max-width: 60%;
  }

  .frame .product-card-title {
    font-size: 16px;
  }

  .frame .product-card-desc {
    font-size: 13px;
  }

  /* ---- OUR PARTNERS ---- */
  .frame .partners-section {
    margin-top: 48px;
    padding: 40px 20px;
    width: 92%;
    border-radius: 16px;
  }

  .frame .partners-title {
    font-size: 28px;
  }

  /* Stack partner columns vertically */
  .frame .partners-columns {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .frame .partners-col {
    width: 100%;
    align-items: center;
    gap: 24px;
  }

  .frame .partners-col-label {
    font-size: 20px;
    text-align: center;
  }

  /* Turn vertical divider into horizontal */
  .frame .partners-divider {
    width: 80%;
    height: 1px;
    align-self: auto;
    margin: 0;
  }

  .frame .partners-logos {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
    justify-content: center;
  }

  .frame .partner-logo-card {
    width: calc(50% - 8px);
    height: auto;
    min-height: 120px;
    aspect-ratio: 3 / 2;
    padding: 16px;
    border-radius: 14px;
  }

  /* ---- SEND MONEY GLOBALLY ---- */
  .frame .send-money-section {
  }

  .frame .send-money-inner {
    gap: 24px;
  }

  .frame .send-money-title {
    font-size: clamp(28px, 5vw, 40px);
    max-width: 100%;
  }

  .frame .send-money-map-wrap {
    width: 100%;
  }

  /* UK label: match AjeerWebsite (keep at base 18%) */
  .frame .map-label {
    width: 18%;
  }

  .frame .country-pin[data-code="US"] { top: 22% !important; }
  .frame .country-pin[data-code="KW"] { top: 29% !important; }
  .frame .country-pin[data-code="SA"] { top: 35% !important; }
  .frame .country-pin[data-code="BH"] { top: 29% !important; }
  .frame .country-pin[data-code="QA"] { top: 35% !important; }
  .frame .country-pin[data-code="AE"] { top: 29% !important; }
  .frame .country-pin[data-code="OM"] { top: 35% !important; }
  .frame .country-pin[data-code="PK"] { top: 30% !important; }
  .frame .country-pin[data-code="KH"] { top: 42% !important; }
  .frame .country-pin[data-code="AU"] { top: 66% !important; }

  /* Smaller pins on mobile */
  .frame .pin-teardrop {
    width: 18px;
    height: 18px;
  }

  .frame .pin-flag {
    width: 12px;
    height: 12px;
  }

  /* ---- FAQs ---- */
  .frame .faq-section {
    padding: 0 20px;
  }

  .frame .faq-inner {
    gap: 0;
  }

  .frame .faq-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .frame .faq-subtitle {
    font-size: 14px;
    margin-top: 12px;
  }

  .frame .faq-list {
    margin-top: 32px;
    width: 100%;
  }

  .frame .faq-question {
    padding: 16px 0;
    gap: 16px;
  }

  .frame .faq-question span:first-child {
    font-size: 14px;
  }

  .frame .faq-icon {
    font-size: 20px;
  }

  .frame .faq-answer p {
    font-size: 13px;
  }

  .frame .faq-assist-text {
    margin-top: 32px;
    font-size: 13px;
  }

  .frame .faq-contact-btn {
    padding: 12px 24px;
    font-size: 14px;
    margin-top: 10px;
  }

  /* ---- FOOTER ---- */
  .frame .div-32 {
    padding: 36px 16px 20px;
    margin-top: 48px;
    gap: 28px;
  }

  .frame .img-3 {
    max-width: 160px;
  }

  .frame .footer-menu-md-col {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }

  .frame .div-33 {
    flex-direction: row;
    gap: 28px;
    width: 100%;
  }

  .frame .div-34 {
    gap: 20px;
  }

  .frame .text-wrapper-17 {
    font-size: 15px;
  }

  .frame .link-variant-for,
  .frame .link-variant-for-2,
  .frame .link-variant-about,
  .frame .link-variant {
    font-size: 14px;
  }

  .frame .div-35 {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .frame .link-app-store,
  .frame .link-play-store {
    height: 42px;
    width: auto;
  }

  .frame .text-wrapper-18 {
    font-size: 11px;
    text-align: center;
  }

  /* Consistent horizontal padding and section gap on mobile */
  .frame .div-37,
  .frame .div-6,
  .frame .div-12,
  .frame .div-18,
  .frame .freelancers-section,
  .frame .section-6-bg,
  .frame .our-products-section,
  .frame .partners-section,
  .frame .send-money-section,
  .frame .faq-section,
  .frame .div-32 {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 60px;
  }

}

/* ----------------------------------------------------------
   MOBILE PORTRAIT (max-width: 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {

  /* ---- HERO ---- */
  .hero-wrapper {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 24px;
  }

  .frame .div {
    padding: 16px 12px 0;
    gap: 24px;
  }

  .frame .send-money-with {
    font-size: 22px;
  }

  .frame .p {
    font-size: 13px;
  }

  .frame .text-wrapper-2 {
    font-size: 17px;
  }

  /* calc(100vh - 420px): nav(~70) + padding(16) + text(~151) + gap(24) +
     partners-margin(40) + partners(~80) + safety(39) = 420px overhead */
  .frame .hero-mockup-img {
    max-height: clamp(180px, calc(100vh - 380px), 220px);
  }

  /* ---- TRUSTED PARTNERS ---- */
  .frame .div-37 {
    padding: 16px 12px;
    margin-top: 40px;
  }

  .carousel-track {
    gap: 36px;
  }

  .carousel-track img {
    height: 28px;
  }

  /* ---- REWARDS ---- */
  .frame .div-6 {
    margin-top: 32px;
    gap: 24px;
    padding: 0 12px;
  }

  .frame .send-money-get {
    font-size: 20px;
  }

  .frame .senders-rewards {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }

  .frame .heading-heading {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }

  .frame .text-wrapper-3 {
    text-align: center;
    width: 100%;
  }

  .frame .div-8 {
    align-items: center;
  }

  .frame .rewards-left {
    display: contents;
  }

  .frame .div-8 {
    order: 1;
  }

  .frame .div-9 {
    min-height: 160px;
    order: 2;
  }

  .frame .div-10 {
    order: 3;
    width: 100%;
  }

  .frame .text-wrapper-4 {
    font-size: 13px;
    white-space: normal;
  }

  .frame .complete-pilgrimage,
  .frame .text-wrapper-5 {
    font-size: 12px;
  }

  /* ---- TRANSFERS ---- */
  .frame .div-12 {
    margin-top: 32px;
    gap: 20px;
    padding: 0 12px;
  }

  .frame .text-wrapper-6 {
    font-size: 20px;
  }

  .frame .div-14 {
    min-height: 340px;
  }

  .frame .div-13 .div-14:first-child {
    background-image: url("img/personal-card-mobile.webp");
  }

  .frame .div-13 .div-14:last-child {
    background-image: url("img/business-card-mobile.webp");
  }

  .frame .text-wrapper-7 {
    font-size: 24px;
  }

  .frame .moving-overseas,
  .frame .text-wrapper-8 {
    font-size: 13px;
  }

  .frame .card-corner-btn {
    width: 52px;
    height: 52px;
  }

  .frame .hand-and-iphone {
    width: 75%;
  }

  .frame .user-bubble {
    width: 52px;
  }

  /* Personal card only: larger mockup + bubbles pushed outward */
  .frame .div-13 .div-14:first-child .hand-and-iphone {
    width: 88%;
  }

  .frame .div-13 .div-14:first-child .user-bubble-1 {
    left: 6%;
  }

  .frame .div-13 .div-14:first-child .user-bubble-2 {
    right: 6%;
  }

  .frame .div-13 .div-14:first-child .user-bubble-3 {
    right: 4%;
  }

  /* ---- INCENTIVES ---- */
  .frame .div-18 {
    margin-top: 32px;
    padding: 0 12px;
  }

  .frame .the-world-s-first {
    font-size: 20px;
  }

  .frame .text-wrapper-9 {
    font-size: 13px;
  }

  .frame .div-21 {
    padding: 14px;
    border-radius: 10px;
  }

  .frame .text-wrapper-10 {
    font-size: 14px;
  }

  .frame .text-wrapper-11,
  .frame .ajeer-exchange-rates,
  .frame .our-security-is {
    font-size: 12px;
  }

  .frame .incentive-icon {
    width: 40px;
    height: 40px;
  }

  /* ---- FREELANCERS ---- */
  .frame .freelancers-section {
    margin-top: 32px;
    padding: 0 12px;
  }

  .frame .freelancers-title {
    font-size: 20px;
  }

  .frame .freelancers-subtitle {
    font-size: 13px;
  }

  .frame .freelancers-list li {
    font-size: 13px;
  }

  /* ---- SECTION 6 ---- */
  .frame .section-6-bg {
    width: calc(100% - 32px);
    margin: 32px auto 0;
    border-radius: 12px;
  }

  .frame .div-25 {
    padding: 0 14px;
    gap: 16px;
    align-items: center;
  }

  /* Flatten containers so we can reorder individual elements */
  .frame .section6-left {
    display: contents;
  }

  .frame .div-wrapper,
  .frame .div-27 {
    display: contents;
  }

  /* Order: heading → card image → subtitle → list → button */
  .frame .text-wrapper-12  { order: 1; text-align: center; font-size: 20px; width: 100%; }
  .frame .cards-picture    { order: 2; width: 100%; }
  .frame .text-wrapper-13  { order: 3; text-align: center; font-size: 13px; width: 100%; color: #082b28; }
  .frame .div-28           { order: 4; width: 100%; }
  .frame .signup-text-wrapper { order: 5; width: 100%; max-width: 100%; justify-content: center; }

  .frame .div-29 {
    padding: 10px 12px;
  }

  .frame .text-wrapper-14 {
    font-size: 13px;
  }

  .frame .check-icon {
    width: 20px;
    height: 20px;
  }

  /* ---- OUR PRODUCTS ---- */
  .frame .our-products-section {
    padding: 0 12px;
    margin-top: 32px;
  }

  .frame .our-products-title {
    font-size: 22px;
  }

  .frame .our-products-subtitle {
    font-size: 13px;
  }

  .frame .product-card {
    min-height: unset;
    padding: 0 0 24px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  /* Image: pull out of absolute, place at top full-width */
  .frame .product-card-img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 120px;
    margin-bottom: 16px;
  }

  .frame .product-card-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .frame .product-card-title {
    font-size: 16px;
  }

  .frame .product-card-desc {
    font-size: 13px;
  }

  .frame .product-card:nth-child(1) { background-image: url("img/product-card-mobile-1.webp"); }
  .frame .product-card:nth-child(2) { background-image: url("img/product-card-mobile-2.webp"); }
  .frame .product-card:nth-child(3) { background-image: url("img/product-card-mobile-3.webp"); }
  .frame .product-card:nth-child(4) { background-image: url("img/product-card-foreign-exchange.webp"); }
  .frame .product-card:nth-child(5) { background-image: url("img/product-card-4.webp"); }
  .frame .product-card:nth-child(6) { background-image: url("img/product-card-4.webp"); }

  /* ---- OUR PARTNERS ---- */
  .frame .partners-section {
    width: calc(100% - 32px);
    margin: 32px auto 0;
    padding: 28px 14px;
  }

  .frame .partners-title {
    font-size: 24px;
  }

  .frame .partners-col-label {
    font-size: 18px;
  }

  .frame .partner-logo-card {
    width: calc(50% - 8px);
    min-height: 100px;
    height: auto;
    padding: 14px;
    border-radius: 12px;
  }

  /* ---- SEND MONEY ---- */
  .frame .send-money-section {
  }

  .frame .send-money-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .frame .country-pin[data-code="US"] { top: 23% !important; }
  .frame .country-pin[data-code="KW"] { top: 30% !important; }
  .frame .country-pin[data-code="SA"] { top: 35% !important; }
  .frame .country-pin[data-code="BH"] { top: 30% !important; }
  .frame .country-pin[data-code="QA"] { top: 35% !important; }
  .frame .country-pin[data-code="AE"] { top: 30% !important; }
  .frame .country-pin[data-code="OM"] { top: 35% !important; }
  .frame .country-pin[data-code="PK"] { top: 31% !important; }
  .frame .country-pin[data-code="KH"] { top: 43% !important; }
  .frame .country-pin[data-code="AU"] { top: 66% !important; }

  /* Even smaller pins at 480px */
  .frame .pin-teardrop {
    width: 14px;
    height: 14px;
  }

  .frame .pin-flag {
    width: 9px;
    height: 9px;
  }

  /* ---- FAQs ---- */
  .frame .faq-section {
    padding: 0 14px;
  }

  .frame .faq-title {
    font-size: 22px;
  }

  .frame .faq-subtitle {
    font-size: 13px;
  }

  .frame .faq-question span:first-child {
    font-size: 13px;
  }

  .frame .faq-answer p {
    font-size: 12px;
  }

  .frame .faq-contact-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* ---- FOOTER ---- */
  .frame .div-32 {
    padding: 28px 12px 16px;
    margin-top: 32px;
    gap: 20px;
  }

  .frame .img-3 {
    max-width: 130px;
  }

  .frame .div-35 {
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .frame .link-app-store,
  .frame .link-play-store {
    height: 40px;
    width: auto;
    flex: none;
  }

  .frame .text-wrapper-17 {
    font-size: 14px;
  }

  .frame .link-variant-for,
  .frame .link-variant-for-2,
  .frame .link-variant-about,
  .frame .link-variant {
    font-size: 13px;
  }

  /* Consistent horizontal padding and section gap on mobile (small) */
  .frame .div-37,
  .frame .div-6,
  .frame .div-12,
  .frame .div-18,
  .frame .freelancers-section,
  .frame .section-6-bg,
  .frame .our-products-section,
  .frame .partners-section,
  .frame .send-money-section,
  .frame .faq-section,
  .frame .div-32 {
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 40px;
  }

}
