:root {
  --purple: #533492;
  --purple-dark: #3d2570;
  --purple-light: #6a45b8;
  --teal: #00e5ba;
  --teal-dark: #00c9a2;
  --title-color: #5cc0ad;
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--purple);
  color: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ───────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(83, 52, 146, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 150px;
  height: 160px;
  /* border-radius: 10px; */
  /* background: var(--teal); */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* font-family: "Sora", sans-serif; */
  /* font-weight: 800; */
  /* font-size: 18px; */
  /* color: var(--purple); */
}
.uniteller-logo-icon {
  width: 230px;
  cursor: pointer;
}
.logo-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.logo-text span {
  color: var(--teal);
}
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: var(--purple);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 186, 0.4);
}

.hero-form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-rate-cta-label {
  color: inherit;
  font-weight: 700;
  font-size: 14px;
}
.hero-rate-cta .fa-paper-plane {
  margin-right: 8px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 50px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-content,
.hero-right {
  min-width: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 80% at 10% 50%,
      rgba(0, 229, 186, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 60% at 90% 20%,
      rgba(92, 192, 173, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
/* floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -100px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.blob-2 {
  width: 300px;
  height: 300px;
  background: #7b5ea7;
  bottom: 0;
  left: -80px;
  animation: float2 10s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.flag-chain {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  min-width: 0;
}

/* Group container */
.flag-group {
  display: flex;
  align-items: center;
}

/* Stacked effect (destination countries) */
.flag-group.stacked .flag-circle {
  margin-left: -12px;
}

.flag-group.stacked .flag-circle:first-child {
  margin-left: 0;
}

/* Flag circle */
.flag-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white-10);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.flag-circle:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Flag icon inside */
.flag-circle .fi {
  width: 26px;
  height: 18px;
  border-radius: 2px;
}

/* Platform logo */
.flag-chain-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Arrow */
.flow-arrow {
  color: var(--teal);
  font-size: 18px;
  opacity: 0.8;
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title span {
  color: var(--teal);
}
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white-80);
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
  overflow-wrap: anywhere;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--teal);
  color: var(--purple);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 229, 186, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--white-20);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--teal);
  background: var(--white-05);
}

/* phone mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp 0.8s 0.15s ease both;
}
.phone-frame {
  width: 240px;
  height: 490px;
  border-radius: 36px;
  background: linear-gradient(145deg, #3d2570, #533492);
  border: 6px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}
.phone-screen {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-balance-card {
  background: var(--teal);
  border-radius: 16px;
  padding: 16px;
  color: var(--purple);
  font-family: "Sora", sans-serif;
}
.phone-balance-label {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.7;
}
.phone-balance-amt {
  font-size: 26px;
  font-weight: 800;
}
.phone-actions {
  display: flex;
  gap: 8px;
}
.phone-action-btn {
  flex: 1;
  background: var(--white-10);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 9px;
  color: var(--white);
}
.phone-action-btn div:first-child {
  font-size: 16px;
  margin-bottom: 3px;
}
.phone-tx-card {
  background: var(--white-10);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-tx-icon {
  font-size: 22px;
}
.phone-tx-info {
  flex: 1;
}
.phone-tx-name {
  font-size: 11px;
  font-weight: 600;
}
.phone-tx-date {
  font-size: 9px;
  opacity: 0.6;
}
.phone-tx-amt {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}

/* rate calc badge */
.phone-badge {
  position: absolute;
  right: -30px;
  top: 80px;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  min-width: 150px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}
.badge-label {
  font-size: 10px;
  color: #888;
  font-weight: 500;
}
.badge-rate {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  font-family: "Sora", sans-serif;
}
.badge-sub {
  font-size: 10px;
  color: #333;
}

/* ── RATE CALCULATOR FORM ─────────────────────────────────── */
.hero-form-wrap {
  animation: fadeUp 0.8s 0.25s ease both;
}
.rate-calc {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.rate-calc h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.rate-calc h3 .fa-chart-simple {
  margin-right: 8px;
}
.rate-calc p {
  font-size: 13px;
  color: var(--white-80);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.input-flag-wrap {
  display: flex;
  align-items: center;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
  min-width: 0;
}
.input-flag-wrap:focus-within {
  border-color: var(--teal);
}
.input-flag {
  padding: 0 14px;
  font-size: 22px;
  background: var(--white-10);
  border-right: 1px solid var(--white-10);
  height: 52px;
  display: flex;
  align-items: center;
}
.input-flag-wrap input {
  flex: 1;
  height: 52px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 0 16px;
  outline: none;
}
.input-flag-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
}
.currency-code {
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-80);
}

.rate-display {
  background: var(--white-05);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border: 1px dashed rgba(0, 229, 186, 0.3);
}
.rate-display span {
  font-size: 13px;
  color: var(--white-80);
}
.rate-display strong {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
}

.select-country {
  display: flex;
  align-items: center;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.select-country-custom {
  overflow: visible;
  position: relative;
  z-index: 5;
  cursor: default;
}
.select-country-custom.is-open {
  z-index: 50;
}
.select-country-custom:focus-within {
  border-color: var(--teal);
}
.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 0 0 16px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
}
.custom-select-trigger:focus {
  outline: none;
}
.custom-select-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(0, 229, 186, 0.45);
  border-radius: 10px;
}
.custom-select-flag {
  width: 28px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.custom-select-flag .fi {
  font-size: 1.35em;
  line-height: 1;
}
.custom-select-code {
  flex: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.custom-select-trigger .select-arrow {
  padding: 0 14px;
  font-size: 11px;
  color: var(--white-80);
  transition: transform 0.2s ease;
}
.select-country-custom.is-open .custom-select-trigger .select-arrow {
  transform: rotate(180deg);
}
.custom-select-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: var(--purple-dark);
  border: 1px solid var(--white-20);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
  max-height: 260px;
  overflow-y: auto;
}
.custom-select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  cursor: pointer;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.custom-select-option:hover,
.custom-select-option:focus {
  background: var(--white-10);
  outline: none;
}
.custom-select-option.selected {
  background: rgba(0, 229, 186, 0.14);
  color: var(--teal);
}
.custom-select-option .fi {
  font-size: 1.3em;
  line-height: 1;
}
.visually-hidden-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.recipient-result {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    rgba(0, 229, 186, 0.06) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}
.recipient-result-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-top: 1px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 186, 0.11);
  border: 1px solid rgba(0, 229, 186, 0.22);
  color: var(--teal);
  font-size: 15px;
}
.recipient-result-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.recipient-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.recipient-result .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.recipient-meta {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  font-family: sans-serif;
}
.recipient-result-bottom {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.recipient-result .amount {
  font-family: "Sora", sans-serif;
  font-size: clamp(19px, 4.2vw, 22px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 1.2;
}
.currency-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--purple-dark);
  background: linear-gradient(180deg, #5fffe4 0%, var(--teal) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 229, 186, 0.25);
}

.btn-form-download {
  width: 100%;
  background: var(--purple);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-form-download:hover {
  background: var(--purple-dark);
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── FEATURES SLIDER ──────────────────────────────────────── */
.section {
  padding: 80px 5%;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--white-80);
  max-width: 560px;
  line-height: 1.7;
}

.features-section {
  background: linear-gradient(180deg, var(--purple) 0%, #3d2570 100%);
  padding: 20px 5%;
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-header .section-desc {
  margin: 0 auto;
}

/* ── HOW IT WORKS VIDEO MODAL (admin-managed embed URL) ─── */
.hiw-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.hiw-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.hiw-modal-open {
  overflow: hidden;
}

.hiw-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(15, 8, 40, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hiw-modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    155deg,
    rgba(72, 45, 120, 0.98) 0%,
    var(--purple-dark) 58%,
    #2a1748 100%
  );
  border: 1px solid rgba(0, 229, 186, 0.28);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 28px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: translateY(12px) scale(0.985);
  transition: transform 0.28s ease;
}

.hiw-modal.is-open .hiw-modal-panel {
  transform: translateY(0) scale(1);
}

.hiw-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hiw-modal-head-text {
  min-width: 0;
}

.hiw-modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

#hiw-modal-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}

.hiw-modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}

.hiw-modal-close:hover {
  background: rgba(0, 229, 186, 0.2);
  color: var(--teal);
  transform: rotate(90deg);
}

.hiw-modal-close:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.hiw-modal-body {
  padding: 0 20px 20px;
}

#hiwModalVideoShell {
  margin: 0 auto;
}

#hiwModalVideoShell.hiw-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0a0612;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 36px rgba(0, 0, 0, 0.4);
}

#howItWorksVideoFrame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hiw-modal-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (max-width: 600px) {
  .hiw-modal-head {
    padding: 16px 14px 12px;
  }
  .hiw-modal-body {
    padding: 0 14px 16px;
  }
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 2%;
}
.slide-content {
}
.slide-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--purple);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.slide-title {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.slide-title em {
  color: var(--teal);
  font-style: normal;
}
.slide-desc {
  font-size: 16px;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 24px;
}
.slide-bullets {
  list-style: none;
}
.slide-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white-80);
  font-size: 15px;
  margin-bottom: 10px;
}
.slide-bullets li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Inline flag chain inside slider description (hero-style icons) */
.slide-desc-flag-chain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
  margin: 0 2px;
  flex-wrap: wrap;
}
.slide-desc-flag-chain .flag-circle {
  width: 34px;
  height: 34px;
}
.slide-desc-flag-chain .flag-circle .fi {
  width: 22px;
  height: 15px;
}
.slide-desc-flag-chain .flag-group.stacked .flag-circle {
  margin-left: -9px;
}
.slide-desc-flag-chain .flag-group.stacked .flag-circle:first-child {
  margin-left: 0;
}
.slide-desc-flag-chain .flow-arrow {
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.slide-promo-code.slide-promo-code--inline {
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
  white-space: nowrap;
}

.slide-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.slide-visual img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(520px, 70vh);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.slide-phone {
  width: 200px;
  height: 400px;
  background: linear-gradient(160deg, #3d2570, #533492);
  border-radius: 32px;
  border: 5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.slide-phone-inner {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-header {
  background: var(--teal);
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-header span {
  font-size: 11px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--purple);
}
.sp-card {
  background: var(--white-10);
  border-radius: 10px;
  padding: 10px;
}
.sp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.sp-label {
  font-size: 9px;
  opacity: 0.6;
}
.sp-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  font-family: "Sora", sans-serif;
}
.sp-pill {
  background: var(--teal);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  color: var(--purple);
  width: fit-content;
}
.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-step {
  background: var(--white-05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-step-icon {
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.sp-step-text {
  font-size: 9px;
  color: var(--white-80);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-20);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.dot.active {
  background: var(--teal);
  transform: scale(1.3);
}
.slider-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  background: var(--white-05);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.slider-btn:hover {
  border-color: var(--teal);
  background: var(--white-10);
}

/* ── BANNER ───────────────────────────────────────────────── */
.now-banner {
  background: linear-gradient(
    135deg,
    #3d2570 0%,
    var(--purple) 50%,
    #3d2570 100%
  );
  padding: 72px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.now-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 50% at 50% -10%,
    rgba(0, 229, 186, 0.14) 0%,
    transparent 58%
  );
}
.now-banner-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.now-banner-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.now-banner-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin: 0 auto 14px;
  max-width: min(22rem, 100%);
}
.now-banner-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  margin: 0 auto 36px;
}
.banner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}
.banner-card {
  padding: 26px 24px 28px;
  border-radius: 20px;
  min-height: 0;
}
.banner-card-introducing {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.banner-card-simpler {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    160deg,
    #5fffe4 0%,
    var(--teal) 55%,
    #00c9a2 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  color: var(--purple-dark);
}
.banner-card .card-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}
.banner-card-introducing .card-tag {
  color: var(--teal);
}
.banner-card-simpler .card-tag {
  color: var(--purple-dark);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(83, 52, 146, 0.12);
  letter-spacing: 0.12em;
}
.banner-card-heading {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--white);
}
.banner-card-simpler .banner-card-heading {
  color: var(--purple-dark);
  margin-bottom: 10px;
}
.banner-value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.banner-value-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.banner-value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 186, 0.12);
  border: 1px solid rgba(0, 229, 186, 0.22);
  color: var(--teal);
  font-size: 16px;
}
.banner-value-row strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.banner-value-row p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}
.banner-card-simpler .banner-lead {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(61, 37, 112, 0.82);
  margin: 0 0 8px;
}
.banner-card-simpler .banner-note {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(61, 37, 112, 0.65);
  margin: 0 0 18px;
}
.banner-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: var(--purple);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(83, 52, 146, 0.35);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.banner-card-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* ── COUNTRIES SECTION ────────────────────────────────────── */
.countries-section {
  padding: 80px 5%;
  background: #3d2570;
}
.countries-intro {
  text-align: center;
  margin-bottom: 16px;
}
.countries-flags-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.country-flag-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 50px;
  padding: 8px 20px 8px 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  cursor: default;
}
.country-flag-chip:hover {
  background: var(--white-20);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.country-flag-chip .flag-em {
  font-size: 26px;
}

.countries-qr-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.country-card.country-card-qr {
  max-width: 292px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.country-card.country-card-qr:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
}
.country-card-qr-inner {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.country-card-qr .country-card-qr-title {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.25;
}
.country-card-qr .country-card-qr-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 16px;
  max-width: 232px;
}
.country-card-qr-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 186, 0.12);
  border: 1px solid rgba(0, 229, 186, 0.22);
  color: var(--teal);
  font-size: 16px;
}
.qr-download-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.qr-download-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.qr-frame {
  padding: 10px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 10px 32px rgba(0, 0, 0, 0.22);
  line-height: 0;
}
.qr-frame img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 6px;
}

.country-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.country-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.country-card-inner {
  padding: 28px;
}
.country-card-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.country-flag-big {
  font-size: 36px;
}
.flags-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    var(--teal),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 2px;
  position: relative;
}
.flags-connector::after {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--teal);
  font-size: 14px;
  background: #3d2570;
  padding: 0 4px;
}
.country-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.country-card p {
  font-size: 13px;
  color: var(--white-80);
  line-height: 1.6;
}
.country-card-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}
.country-card-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  padding: 80px 5%;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stars {
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--white-10);
  border: 2px solid var(--teal);
}
.author-name {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.author-location {
  font-size: 12px;
  color: var(--white-80);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  padding: 80px 5%;
  background: #3d2570;
}
.faq-list {
  max-width: 760px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}
.faq-question.active {
  background: rgba(0, 229, 186, 0.1);
  color: var(--teal);
}
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--white-80);
  font-size: 15px;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #2a1a55;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo-text {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--purple);
}
.footer-col h5 {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: var(--white-80);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--white-80);
}
.footer-contact-item .icon {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-form-wrap {
    width: 100%;
    max-width: 100%;
  }
  .hero-right {
    width: 100%;
    max-width: 100%;
  }
  .hero-phone {
    order: -1;
  }
  .phone-badge {
    right: -10px;
  }
  .slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4% 12px;
    align-items: start;
  }
  .slide-content {
    width: 100%;
    min-width: 0;
    order: 1;
  }
  .slide-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 0;
    margin: 0 auto;
    padding: 0;
    background: transparent;
  }
  .slide-visual img {
    width: 100%;
    max-width: min(100%, 460px);
    max-height: min(42vh, 340px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: none;
    background: transparent;
  }
  .slide-number {
    margin-left: auto;
    margin-right: auto;
  }
  .slide-title {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    line-height: 1.28;
    text-align: center;
  }
  .slide-desc {
    font-size: 15px;
    margin-bottom: 18px;
    text-align: center;
  }
  .slide-bullets {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .slide-bullets li {
    font-size: 14px;
    text-align: left;
  }
  .slide-promo-code.slide-promo-code--inline {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-top: 0;
    max-width: 100%;
    white-space: normal;
    word-break: break-all;
  }
  .slider-dots {
    margin-top: 28px;
  }
  .banner-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  header .btn-download-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  header .btn-download {
    padding: 11px 14px;
  }
  .flag-chain {
    margin-top: 30px !important;
  }
}

@media (max-width: 600px) {
  .hero {
    gap: 30px;
    padding-left: 4%;
    padding-right: 4%;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .flag-chain {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 6px;
    margin-left: -2px;
    margin-right: -2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
  .rate-calc {
    padding: 22px 16px 24px;
    border-radius: 18px;
  }
  .rate-calc h3 {
    font-size: 17px;
    line-height: 1.3;
  }
  .rate-calc p {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .rate-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
  }
  .rate-display span {
    font-size: 12px;
  }
  .rate-display strong {
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
    max-width: 100%;
  }
  .input-flag {
    padding: 0 10px;
    height: 48px;
  }
  .input-flag-wrap input {
    height: 48px;
    font-size: 18px;
    min-width: 0;
    padding: 0 12px;
  }
  .input-flag-wrap input::placeholder {
    font-size: 16px;
  }
  .currency-code {
    padding: 0 10px;
    font-size: 12px;
  }
  .custom-select-trigger {
    min-height: 48px;
    padding-left: 12px;
    font-size: 14px;
  }
  .recipient-result {
    padding: 12px 12px;
    gap: 10px;
  }
  .recipient-result-top {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .recipient-result .amount {
    font-size: 18px;
  }
  .recipient-meta {
    white-space: normal;
  }
  .hero-form-actions .btn-download {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
