:root {
  --blue: #1673fa;
  --blue-dark: #0b3478;
  --navy: #102033;
  --green: #0c755f;
  --mint: #dff6e8;
  --coral: #ffefe7;
  --ink: #172033;
  --muted: #637083;
  --line: #dde5ee;
  --surface: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.12);
  --container: 1240px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

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

svg,
video,
canvas,
iframe,
input,
select,
button,
textarea {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 52, 120, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header:not(.is-scrolled) .main-nav a,
.site-header:not(.is-scrolled) .login-link {
  color: var(--white);
}

.site-header:not(.is-scrolled) .language-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .login-link {
  color: var(--white);
}

.site-header.is-scrolled .language-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.site-header.is-scrolled .brand img {
  filter: brightness(0) invert(1);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover,
.footer-grid a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.language-toggle img,
.language-options img,
.currency-option img,
.currency-toggle img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 50%;
}

.language-options,
.currency-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  display: none;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.14);
}

.language-menu.is-open .language-options,
.currency-select.is-open .currency-options {
  display: grid;
  gap: 4px;
}

.language-options button,
.currency-option {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.language-options button:hover,
.currency-option:hover {
  background: var(--surface);
}

.money-field select,
.money-field input,
.money-field output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.login-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(18, 104, 243, 0.2);
}

.button:hover {
  background: #0d56cc;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.button-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--surface);
}

.button-full {
  width: 100%;
}

[data-disabled-link] {
  cursor: default;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  margin-top: -78px;
  padding: 150px 0 64px;
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 104, 243, 0.55), transparent 38%),
    linear-gradient(180deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero-title--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(56px, 7vw, 96px) !important;
  line-height: 0.9 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 28px !important;
}

.hero-title--stack span {
  display: block;
  line-height: 0.9;
}

.hero-title--stack .word-1 {
  color: var(--white);
}

.hero-title--stack .word-2 {
  color: #74b0ff;
  background: linear-gradient(90deg, #bcd5ff 0%, #74b0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title--stack .word-3 {
  color: var(--white);
  background: linear-gradient(90deg, #ffffff 0%, #cfe1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title--underline {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(56px, 7vw, 92px) !important;
  line-height: 0.92 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 28px !important;
  color: var(--white);
}

.hero-title--underline span {
  display: inline-block;
  width: fit-content;
  line-height: 0.92;
}

.hero .eyebrow {
  color: #bcd5ff;
}

.hero-lede {
  color: #dce8ff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 19px;
}

.page-hero {
  margin-top: -78px;
  padding: 158px 0 64px;
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 104, 243, 0.55), transparent 38%),
    linear-gradient(180deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  margin: 0 auto 16px;
  color: var(--white);
  max-width: 820px;
}

.page-hero .eyebrow {
  color: #bcd5ff;
  justify-content: center;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #dce8ff;
  font-size: 18px;
}

.main-nav a.is-active {
  color: var(--blue);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.content-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.content-card h3 {
  margin-bottom: 10px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.value-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
}

.value-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
}

.value-item span {
  color: var(--muted);
  font-size: 13px;
}

.values-grid-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(16,32,51,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  box-shadow: 0 10px 36px rgba(18,104,243,0.13);
  transform: translateY(-3px);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.value-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1040px) {
  .values-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-section {
  padding: 64px 0 96px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0 0 18px;
  color: #455469;
}

.legal-content strong {
  color: var(--navy);
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 8px;
}

.legal-content h2 {
  margin: 36px 0 14px;
  color: var(--navy);
  font-size: 24px;
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: 19px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--blue-dark);
}

.legal-meta {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info p {
  margin-bottom: 14px;
  color: var(--muted);
}

.contact-info strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  color: #0f7a4a;
}

.form-status.is-error {
  color: #b42318;
}

@media (max-width: 1040px) {
  .content-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.rate-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(22, 115, 250, 0.55);
  color: var(--white);
  box-shadow: 0 28px 60px rgba(7, 24, 60, 0.25);
  backdrop-filter: blur(8px);
}

.rate-card h2,
.rate-card .card-kicker {
  color: var(--white);
}

.rate-card .calculator label {
  color: #cfe1ff;
}

.rate-card .money-field input,
.rate-card .money-field output,
.rate-card .money-field select,
.rate-card .currency-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.rate-card .money-field output {
  background: rgba(255, 255, 255, 0.04);
}

.rate-card .currency-toggle::after {
  border-color: #cfe1ff;
}

.rate-card .rate-note {
  color: #bcd5ff;
}

.rate-card .currency-options {
  background: var(--white);
}

.rate-card .currency-option {
  color: var(--ink);
}

.rate-card .button-full {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.rate-card .button-full:hover {
  background: rgba(255, 255, 255, 0.12);
}

.rate-card-head {
  margin-bottom: 24px;
}

.rate-card h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.live-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.calculator {
  display: grid;
  gap: 16px;
}

.calculator label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.money-field {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
}

.money-field input,
.money-field output,
.money-field select {
  min-height: 58px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.native-currency-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.currency-select {
  position: relative;
}

.currency-toggle {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.currency-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.currency-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
}

.currency-options {
  left: auto;
  right: 0;
  min-width: 245px;
  max-height: 300px;
  overflow: auto;
}

.currency-option strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}

.money-field output {
  display: flex;
  align-items: center;
  background: var(--surface);
}

.rate-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rate-summary div {
  min-height: 82px;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface);
}

.rate-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.rate-summary strong {
  color: var(--navy);
  font-size: 15px;
}

.rate-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.rate-line {
  margin: 10px 0 4px;
  color: #bcd5ff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.rate-line span {
  color: var(--white);
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 650px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

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

.benefit-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.08);
}

.benefit-grid {
  gap: 16px;
}

.step-number {
  display: inline-flex;
  min-width: 40px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.benefit-grid p,
.countries-copy p,
.process-copy p,
.app-grid p,
.faq-grid p,
.footer-grid p {
  color: var(--muted);
}

.services-section {
  background: var(--surface);
}

.services-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
}

.services-head .eyebrow {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

.services-head .eyebrow span {
  color: var(--blue);
}

.services-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

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

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(16, 32, 51, 0.2);
}

.service-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(8, 33, 55, 0) 40%, rgba(8, 33, 55, 0.55) 70%, rgba(8, 33, 55, 0.85) 100%);
}

.service-text {
  flex: 1;
  min-width: 0;
}

.service-text h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.service-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
  max-width: 220px;
}

.service-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(22, 115, 250, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-icon:hover {
  background: #0e5fd6;
  transform: scale(1.06);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1040px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}

.countries {
  background: var(--white);
  color: var(--ink);
}

.countries h2 {
  color: var(--navy);
}

.countries .eyebrow {
  color: var(--blue);
}

.countries-copy p {
  color: var(--muted);
}

.countries .text-link {
  color: var(--blue);
}

.countries-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.countries-head .eyebrow {
  justify-content: center;
}

.countries-cta {
  margin-top: 34px;
  text-align: center;
}

.text-link {
  color: var(--mint);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.country-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 40px;
  width: 100%;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.country-card img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 50%;
  flex: 0 0 auto;
}

.country-card span,
.country-card strong {
  display: block;
}

.country-card span {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.country-card strong {
  display: none;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 56px;
}

.bento-cell {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.08);
}

.bento-hero {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
}

.bento-eyebrow {
  margin: 0;
  color: #cfe1ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bento-hero h2 {
  color: var(--white);
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.02;
  margin: 14px 0 16px;
}

.bento-hero h2 span {
  display: block;
  font-style: italic;
  color: #bcd5ff;
}

.bento-lede {
  color: #dce8ff;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 420px;
}

.bento-cta {
  align-self: flex-start;
  gap: 8px;
  padding: 0 22px;
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: none;
}

.bento-cta svg {
  width: 18px;
  height: 18px;
}

.bento-cta:hover {
  background: #eef4ff;
}

.bento-stat {
  grid-column: span 1;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, var(--surface) 0%, #ffffff 100%);
}

.bento-stat--years {
  grid-column: span 2;
  background: linear-gradient(160deg, #eaf2ff 0%, #ffffff 80%);
  border-color: #cfe1ff;
}

.bento-stat--countries {
  grid-column: span 1;
}

.bento-stat-value {
  display: inline-flex;
  align-items: baseline;
  color: var(--blue);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.bento-stat-value small {
  font-size: 0.55em;
  margin-left: 2px;
}

.bento-stat-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.bento-cell-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bento-badges {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.bento-badge strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.bento-rating {
  grid-column: span 2;
  background: linear-gradient(160deg, #fff7e6 0%, #ffffff 70%);
  border-color: #ffe2a8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
}

.bento-rating-value {
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bento-rating-label small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.bento-map {
  grid-column: span 4;
  background: linear-gradient(160deg, var(--surface) 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-map-visual {
  position: relative;
  height: 100%;
  background-image:
    radial-gradient(circle at 12% 30%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 22% 60%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 28% 38%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 38% 22%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 44% 55%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 50% 38%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 56% 72%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 62% 32%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 68% 48%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 74% 25%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 82% 58%, var(--blue) 1.5px, transparent 2px),
    radial-gradient(circle at 90% 40%, var(--blue) 1.5px, transparent 2px);
  opacity: 0.85;
  margin: 8px 0;
}

.bento-map-visual .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 115, 250, 0.15);
}

.bento-map-visual .d1 { left: 12%; top: 30%; }
.bento-map-visual .d2 { left: 28%; top: 60%; animation: pulse 2.4s ease-in-out infinite; animation-delay: 0.3s; }
.bento-map-visual .d3 { left: 44%; top: 22%; }
.bento-map-visual .d4 { left: 56%; top: 72%; animation: pulse 2.4s ease-in-out infinite; animation-delay: 0.8s; }
.bento-map-visual .d5 { left: 68%; top: 48%; }
.bento-map-visual .d6 { left: 82%; top: 58%; animation: pulse 2.4s ease-in-out infinite; animation-delay: 1.4s; }
.bento-map-visual .d7,
.bento-map-visual .d8,
.bento-map-visual .d9,
.bento-map-visual .d10,
.bento-map-visual .d11,
.bento-map-visual .d12 { display: none; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 115, 250, 0.15); }
  50%      { box-shadow: 0 0 0 12px rgba(22, 115, 250, 0); }
}

@media (max-width: 1040px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
  }
  .bento-hero { grid-column: span 4; grid-row: auto; }
  .bento-stat--years { grid-column: span 2; }
  .bento-stat--countries { grid-column: span 2; }
  .bento-badges { grid-column: span 4; }
  .bento-rating { grid-column: span 2; }
  .bento-map { grid-column: span 2; min-height: 220px; }
}

@media (max-width: 720px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bento-hero,
  .bento-badges,
  .bento-map {
    grid-column: span 2;
  }
  .bento-stat--years,
  .bento-stat--countries,
  .bento-rating {
    grid-column: span 1;
  }
  .bento-cell { padding: 20px; }
  .bento-hero h2 { font-size: 28px; }
  .bento-lede { font-size: 14px; }
}

.trusted-text {
  flex: 1;
  max-width: 760px;
}

.trusted-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .trusted-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.testimonials {
  background: var(--blue);
  color: var(--white);
}

.testimonial-card p {
  color: var(--ink) !important;
}

.testimonial-top span {
  color: var(--muted) !important;
}

.testimonials-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials-head .eyebrow {
  color: #cfe1ff !important;
  justify-content: center;
}

.testimonials-head h2 {
  color: var(--white);
}

.testimonials-head p {
  color: #dce8ff !important;
  font-size: 16px;
  margin-top: 8px;
}

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

.testimonial-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.06);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: var(--surface);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar--svg {
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.testimonial-initials {
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.testimonial-top strong,
.testimonial-top span {
  display: block;
}

.testimonial-top strong {
  color: var(--navy);
  font-size: 16px;
}

.testimonial-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stars {
  display: inline-block;
  margin-bottom: 14px;
  color: #00b67a;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1;
}

.testimonial-card p {
  margin-bottom: 14px;
  color: #455469;
  font-size: 16px;
}

.verified-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process-grid,
.app-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 64px;
  align-items: center;
}

.process-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.steps-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  min-height: 96px;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.steps-list strong,
.steps-list span {
  display: block;
}

.steps-list strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.steps-list span {
  color: var(--muted);
}

.app-section {
  background: var(--surface);
}

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

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.store-row img {
  height: 40px;
  width: auto;
}

.app-phone {
  justify-self: center;
  max-height: 430px;
  object-fit: contain;
}

.faq-grid {
  grid-template-columns: 0.65fr 1fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  padding: 80px 0 64px;
  background: var(--blue);
  color: var(--white);
}

.footer-social {
  margin-top: 36px;
}

.footer-social h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 15px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.5fr 0.75fr 1fr;
  gap: 64px;
}

.footer-brand {
  margin-bottom: 24px;
  color: var(--white);
}

.footer-brand img {
  width: 164px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 15px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: #c7d1df;
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid .social-icons a {
  display: inline-flex;
  margin-bottom: 0;
  font-size: 0;
}

.sub-footer {
  background: #082137;
  color: #b9c7d8;
}

.sub-footer-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
}

.sub-footer p {
  margin: 0;
}

.regulatory-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.regulatory-badges span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 104, 243, 0.18);
  color: #cfe1ff;
  font-size: 10px;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(11, 52, 120, 0.97);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.cookie-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 320px;
}

.cookie-text strong {
  font-size: 15px;
  color: var(--white);
}

.cookie-text p {
  margin: 4px 0 0;
  color: #cfe1ff;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
  box-shadow: none;
}

.cookie-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.cookie-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: rgba(7, 24, 60, 0.55);
  padding: 16px;
}

.cookie-modal[hidden],
.cookie-banner[hidden] {
  display: none;
}

.cookie-modal-card {
  width: min(480px, 100%);
  padding: 28px;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}

.cookie-modal-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.cookie-modal-card > p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.cookie-toggle:last-of-type {
  border-bottom: 1px solid var(--line);
}

.cookie-toggle span {
  flex: 1;
}

.cookie-toggle strong {
  color: var(--navy);
  font-size: 14px;
}

.cookie-toggle input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .button {
    flex: 1;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #20b15a;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(32, 177, 90, 0.34);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 1040px) {
  .menu-button {
    display: block;
    margin-left: auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-header.is-open .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    width: 100%;
    margin-left: 0;
    align-items: stretch;
    flex-direction: column;
  }

  .language-toggle,
  .login-link,
  .header-actions .button {
    width: 100%;
  }

  .language-options {
    left: 0;
    right: auto;
    width: 100%;
  }

  .hero-grid,
  .process-grid,
  .app-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  h1, h2, h3 {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto;
    min-width: 0;
  }

  p, span, a, strong, em {
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    word-break: normal !important;
    min-width: 0;
  }

  .container,
  .container > *,
  .container > * > *,
  section > *,
  article,
  article > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .benefit-grid article p,
  .content-card p,
  .value-card span,
  .testimonial-card p,
  .testimonial-top span,
  .bento-cell p,
  .bento-lede,
  .bento-stat-label,
  .service-text p,
  .service-text h3,
  .countries-head p,
  .section-head p,
  .page-hero p,
  .hero-lede,
  .steps-list span {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    max-width: 100% !important;
  }

  .page-hero h1,
  .page-hero p,
  .section-head h2,
  .section-head p,
  .countries-head h2,
  .countries-head p,
  .testimonials-head h2,
  .contact-info h2 {
    max-width: 100%;
  }

  .hero,
  .page-hero {
    margin-top: 0;
    padding: 42px 0 48px;
  }

  .site-header {
    background: rgba(11, 52, 120, 0.95);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .site-header .brand img {
    filter: brightness(0) invert(1);
    width: 140px;
  }

  .menu-button {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .menu-button span {
    background: var(--white);
  }

  .hero-title--stack {
    font-size: clamp(42px, 13vw, 54px) !important;
    margin-bottom: 18px !important;
  }

  .countries-head h2,
  .section-head h2,
  .testimonials-head h2,
  .process-copy h2,
  .contact-info h2,
  .bento-hero h2,
  .trusted-text h2,
  h2 {
    font-size: clamp(24px, 7.2vw, 30px) !important;
    line-height: 1.15 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto;
    max-width: 100% !important;
    padding: 0;
  }

  .countries-head h2 {
    font-size: clamp(22px, 6.6vw, 28px) !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
  }

  .hero-copy p,
  .page-hero p,
  .section-head p,
  .countries-head p,
  .testimonials-head p,
  .process-copy p,
  .contact-info p,
  .benefit-grid p,
  .content-card p,
  .testimonial-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  h1,
  .page-hero h1,
  .hero h1 {
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.12 !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
    text-wrap: balance;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title--stack {
    font-size: clamp(42px, 13vw, 52px) !important;
    line-height: 0.94 !important;
  }

  .hero-lede,
  .page-hero p,
  .hero p,
  .section-head p,
  p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .eyebrow,
  .card-kicker,
  .calculator label,
  .contact-form label {
    font-size: 13px !important;
  }

  .rate-line,
  .rate-note,
  .form-status,
  .footer-grid p,
  .footer-grid a,
  .sub-footer-inner {
    font-size: 13px !important;
  }

  .regulatory-badges span {
    font-size: 10px !important;
  }

  .footer-grid h2,
  .footer-social h2 {
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin-bottom: 14px;
  }

  .footer-grid {
    gap: 34px;
  }

  .page-hero .container,
  .hero .container {
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .services-head .eyebrow {
    font-size: clamp(26px, 7vw, 32px);
  }

  .cookie-banner {
    padding: 14px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .cookie-banner .container {
    width: 100%;
    max-width: 100%;
  }

  .cookie-text strong { font-size: 14px; }
  .cookie-text p {
    font-size: 12px;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
    width: 100%;
  }

  .cookie-actions .button:last-child {
    grid-column: 1 / -1;
  }

  .cookie-inner {
    gap: 10px;
  }

  .contact-form,
  .rate-card {
    padding: 20px;
  }

  .site-header,
  main,
  section,
  .site-footer,
  .sub-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-grid,
  .countries-grid,
  .process-grid,
  .app-grid,
  .faq-grid,
  .footer-grid,
  .benefit-grid,
  .testimonial-grid,
  .rate-card,
  .calculator,
  .money-field,
  .steps-list,
  .faq-list {
    max-width: 100%;
    min-width: 0;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-lede {
    font-size: 16px !important;
  }

  .rate-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    overflow: hidden;
  }

  .rate-card h2 {
    font-size: 24px !important;
  }

  .money-field input,
  .money-field output,
  .currency-toggle {
    min-height: 56px;
    font-size: 16px;
  }

  .rate-summary,
  .benefit-grid,
  .testimonial-grid,
  .country-panel {
    grid-template-columns: 1fr;
  }

  .money-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .money-field input,
  .money-field output,
  .currency-toggle {
    width: 100%;
    min-width: 0;
  }

  .rate-card,
  .benefit-grid article,
  .testimonial-card,
  details,
  .steps-list li,
  .country-card {
    min-width: 0;
  }

  .rate-card,
  .process-media img,
  .testimonial-card,
  .country-panel {
    width: 100%;
  }

  .container.footer-grid {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .currency-options {
    left: auto;
    right: 0;
    min-width: 100%;
    max-width: 100%;
  }

  .currency-option span,
  .language-options button,
  .main-nav a {
    white-space: normal;
  }

  .footer-grid p,
  .footer-grid a,
  .testimonial-card p,
  .rate-note,
  .steps-list span {
    overflow-wrap: anywhere;
  }

  .hero-actions .button,
  .button-secondary {
    width: 100%;
  }

  .benefit-grid article {
    min-height: auto;
    padding: 22px;
  }

  .step-number {
    margin-bottom: 20px;
  }

  .content-card,
  .value-card,
  .testimonial-card,
  .steps-list li,
  details {
    border-radius: 10px;
  }

  .value-card {
    gap: 12px;
    padding: 22px 18px;
  }

  .value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .value-card strong {
    font-size: 15px;
  }

  .value-card span {
    font-size: 13px;
  }

  .service-overlay {
    padding: 20px;
  }

  .service-text h3 {
    font-size: 19px;
  }

  .process-grid,
  .contact-grid {
    gap: 30px;
  }

  .steps-list li {
    min-height: auto;
    padding: 18px 16px 18px 64px;
  }

  .steps-list li::before {
    left: 16px;
    top: 18px;
  }

  .country-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 18px;
  }

  .country-card {
    min-height: 42px;
    padding: 8px 4px;
  }

  .country-card span {
    font-size: 13px;
  }

  .whatsapp-float {
    display: none;
  }

  .sub-footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    text-align: center;
  }
}
