:root {
  --bg-top: #eef6ff;
  --bg-bottom: #dbeafc;
  --panel-dark: rgba(236, 244, 255, 0.84);
  --panel-solid: #eff5ff;
  --panel-soft: rgba(224, 237, 255, 0.94);
  --card-bg: rgba(255, 255, 255, 0.98);
  --card-line: rgba(210, 225, 245, 0.9);
  --text-main: #102147;
  --text-soft: #5e7298;
  --text-faint: #8b99b6;
  --ink-light: #edf4ff;
  --primary: #0d6df2;
  --primary-strong: #0958c7;
  --teal: #0f9c7f;
  --shadow-xl: 0 30px 80px rgba(47, 88, 154, 0.16);
  --shadow-lg: 0 18px 40px rgba(47, 88, 154, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(101, 158, 255, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(107, 218, 233, 0.18), transparent 24%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(160deg, var(--bg-top), var(--bg-bottom) 62%);
  color: var(--text-main);
}

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

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

button,
input,
output {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.glow-left {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 80px;
  background: rgba(106, 164, 255, 0.24);
}

.glow-right {
  width: 280px;
  height: 280px;
  right: 40px;
  top: 180px;
  background: rgba(96, 214, 225, 0.18);
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75, 116, 187, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 116, 187, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 68%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(244, 248, 255, 0.9), rgba(244, 248, 255, 0.58));
  border-bottom: 1px solid rgba(206, 223, 246, 0.72);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(71, 111, 184, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  margin-top: 4px;
  color: rgba(90, 112, 156, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(27, 48, 92, 0.78);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 14px 26px rgba(13, 109, 242, 0.3);
}

.button-secondary,
.button-ghost {
  border: 1px solid rgba(199, 217, 243, 0.84);
  background: rgba(255, 255, 255, 0.72);
  color: #173161;
}

.hero {
  padding: 48px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 42px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(64, 94, 148, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 11.4ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.hero-text,
.section-intro p,
.feature-card p,
.coverage-card p,
.stat-card span,
.faq-list p,
.footer-copy,
.footer p {
  color: #607192;
  line-height: 1.75;
}

.hero-text {
  max-width: 32ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.quote-head h2,
.feature-card h3,
.coverage-card h3,
.stat-card strong,
.faq-list summary,
.footer h3 {
  color: #fff;
}

.quote-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(7, 20, 53, 0.86);
  box-shadow: var(--shadow-xl);
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.quote-head,
.trust-item,
.section-intro,
.feature-card,
.coverage-card,
.stats-panel,
.stat-card,
.faq-list details,
.footer-grid {
  position: relative;
}

.quote-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.quote-label,
.meta-label {
  margin: 0 0 10px;
  color: #86a3da;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-head h2 {
  max-width: 14ch;
  font-size: 1.3rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.quote-body {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: var(--card-bg);
  color: var(--text-main);
}

.country-bar {
  margin-bottom: 10px;
}

.country-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #dff0ff, #cce9ff 52%, #c6f5f3);
  color: #103063;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 28px rgba(13, 62, 139, 0.12);
  cursor: pointer;
}

.country-select-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-select-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.country-select-copy small {
  color: rgba(16, 48, 99, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-select-copy strong {
  margin-top: 3px;
  font-size: 1rem;
}

.country-change {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 164, 228, 0.34);
  color: #0d5fd3;
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-hint {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.quote-stack {
  display: grid;
  gap: 12px;
}

.field {
  display: block;
}

.field-menu {
  position: relative;
  z-index: 4;
}

.field-menu.is-active {
  z-index: 14;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.amount-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 88px;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--card-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.amount-box-send {
  background: #f8fbff;
}

.amount-box-receive {
  background: #ffffff;
}

.amount-box input,
.amount-box output {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.amount-box input:focus {
  outline: none;
}

.currency-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 98px;
  border: 0;
  border-radius: 16px;
  padding: 11px 12px;
  background: #eef4ff;
  color: #0c4dbf;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
}

.quote-info-list {
  margin-top: 14px;
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
}

.quote-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 2px;
  border-top: 1px solid var(--card-line);
}

.quote-info-row:first-child {
  border-top: 0;
}

.quote-info-row span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.quote-info-row strong {
  color: var(--text-main);
  font-size: 0.98rem;
  text-align: right;
}

.quote-cta {
  width: 100%;
  margin-top: 16px;
  min-height: 54px;
}

.flag-circle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(16, 33, 71, 0.08);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
  transform-origin: center;
}

.flag-circle-small {
  width: 26px;
  height: 26px;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(16, 33, 71, 0.08);
  font-size: 0.95rem;
}

.select-caret {
  color: #6882bb;
  font-size: 0.8rem;
}

.menu-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  display: none;
  flex-direction: column;
  max-height: min(360px, 48vh);
  overflow: hidden;
  border: 1px solid var(--card-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(4, 19, 53, 0.14);
}

.menu-panel.is-open {
  display: flex;
}

.menu-search {
  display: block;
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--card-line);
  background: #fff;
}

.menu-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--card-line);
  border-radius: 14px;
  padding: 0 14px;
  font: inherit;
}

.menu-list {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: 8px;
}

.menu-list::-webkit-scrollbar {
  width: 10px;
}

.menu-list::-webkit-scrollbar-thumb {
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(104, 130, 187, 0.42);
}

.menu-list::-webkit-scrollbar-track {
  background: transparent;
}

.menu-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.menu-option:hover {
  background: #f4f8ff;
}

.menu-option-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-option-copy {
  display: flex;
  flex-direction: column;
}

.menu-option-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.menu-empty {
  padding: 18px 14px 20px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.country-modal[hidden] {
  display: none;
}

.country-modal {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.country-modal-backdrop {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-xl) - 2px);
  background: rgba(4, 15, 39, 0.6);
  backdrop-filter: blur(8px);
}

.country-modal-panel {
  position: absolute;
  inset: 18px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 30px 80px rgba(4, 19, 53, 0.28);
}

.country-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 12px;
}

.country-modal-head h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.country-modal-close {
  border: 0;
  background: #eef4ff;
  color: #0c4dbf;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
}

.country-search {
  padding: 0 18px 12px;
}

.country-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--card-line);
  border-radius: 16px;
  padding: 0 16px;
  font: inherit;
}

.country-list {
  overflow: auto;
  padding: 0 10px 14px 18px;
}

.country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  border-radius: 16px;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.country-item:hover {
  background: #f5f8ff;
}

.country-item-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-item-copy {
  display: flex;
  flex-direction: column;
}

.country-item-copy small,
.country-item-meta {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trust-strip,
.section,
.footer {
  padding: 40px 0 96px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-item,
.feature-card,
.coverage-card,
.stat-card,
.faq-list details {
  padding: 22px;
  border: 1px solid rgba(218, 230, 248, 0.88);
  border-radius: var(--radius-lg);
  background: rgba(246, 250, 255, 0.96);
  box-shadow:
    0 22px 48px rgba(8, 28, 71, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.trust-item {
  overflow: hidden;
  min-height: 186px;
  background:
    radial-gradient(circle at top right, rgba(121, 183, 255, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.94));
}

.trust-item-soft {
  background:
    linear-gradient(135deg, rgba(242, 249, 255, 0.98), rgba(218, 236, 255, 0.94)),
    rgba(240, 247, 255, 0.96);
}

.trust-item-deep {
  background:
    radial-gradient(circle at top right, rgba(119, 177, 255, 0.3), transparent 36%),
    linear-gradient(180deg, rgba(231, 240, 252, 0.98), rgba(214, 227, 245, 0.96));
}

.trust-item-tint {
  background:
    linear-gradient(135deg, rgba(240, 251, 255, 0.98), rgba(212, 246, 243, 0.95)),
    rgba(236, 247, 250, 0.96);
}

.trust-item-slate {
  background:
    linear-gradient(180deg, rgba(242, 246, 252, 0.98), rgba(224, 232, 244, 0.96)),
    rgba(239, 243, 249, 0.97);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.dual-flags img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  transform: scale(1.14);
  box-shadow:
    0 12px 20px rgba(61, 94, 155, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.trust-item strong,
.feature-card h3,
.coverage-card h3,
.stat-card strong,
.footer h3 {
  display: block;
  margin-bottom: 8px;
  color: #102147;
}

.trust-item span,
.stat-card span {
  color: #607192;
  line-height: 1.65;
}

.section-intro {
  margin-bottom: 34px;
}

.section-intro h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.section-intro p {
  max-width: 62ch;
  margin: 16px 0 0;
}

.feature-grid,
.coverage-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.94)),
    rgba(244, 248, 255, 0.96);
}

.feature-card-deep {
  background:
    radial-gradient(circle at top right, rgba(120, 175, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(234, 242, 253, 0.98), rgba(216, 228, 246, 0.96));
}

.feature-card-slate {
  background:
    linear-gradient(180deg, rgba(245, 248, 253, 0.98), rgba(225, 233, 244, 0.96)),
    rgba(239, 245, 251, 0.97);
}

.feature-card-tint {
  background:
    linear-gradient(135deg, rgba(243, 251, 255, 0.98), rgba(214, 244, 243, 0.95)),
    rgba(237, 248, 250, 0.96);
}

.feature-card-soft {
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.98), rgba(219, 237, 255, 0.95)),
    rgba(241, 247, 255, 0.97);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(207, 223, 245, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 239, 255, 0.95)),
    rgba(240, 247, 255, 0.96);
  box-shadow:
    0 14px 28px rgba(56, 92, 153, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect {
  stroke: #3477df;
}

.feature-card p,
.coverage-card p {
  color: #607192;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.coverage-intro {
  margin: 0 auto;
  text-align: center;
}

.coverage-intro h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.coverage-intro p {
  max-width: 46ch;
  margin-inline: auto;
}

.coverage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.coverage-card {
  min-height: 176px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.94)),
    rgba(243, 248, 255, 0.97);
}

.coverage-bridge {
  margin: 12px auto 8px;
  text-align: center;
  padding: 24px 0 6px;
}

.coverage-bridge h3 {
  margin: 10px 0 0;
  color: #102147;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.coverage-bridge p:last-child {
  max-width: 48ch;
  margin: 14px auto 0;
  color: #607192;
  line-height: 1.7;
}

.coverage-card-soft {
  background:
    linear-gradient(135deg, rgba(246, 251, 255, 0.98), rgba(219, 237, 255, 0.95)),
    rgba(241, 247, 255, 0.97);
}

.coverage-card-deep {
  background:
    radial-gradient(circle at top right, rgba(117, 177, 255, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(232, 241, 253, 0.98), rgba(216, 228, 246, 0.96));
}

.coverage-card-tint {
  background:
    linear-gradient(135deg, rgba(243, 251, 255, 0.98), rgba(213, 246, 243, 0.95)),
    rgba(237, 248, 250, 0.96);
}

.coverage-card-slate {
  background:
    linear-gradient(180deg, rgba(244, 247, 252, 0.98), rgba(225, 233, 244, 0.96)),
    rgba(239, 244, 250, 0.97);
}

.coverage-flags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.coverage-flags img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  transform: scale(1.14);
  box-shadow:
    0 12px 24px rgba(58, 93, 150, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.coverage-rates-card {
  width: min(100%, 1040px);
  margin: 0 auto 10px;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(217, 225, 239, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(6, 22, 62, 0.28);
}

.coverage-rates-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 18px;
}

.coverage-rates-head h3 {
  margin: 0 0 8px;
  color: #102147;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.coverage-rates-head p {
  margin: 0;
  max-width: 42ch;
  color: #5f6f92;
  font-size: 0.98rem;
  line-height: 1.6;
}

.coverage-rates-toggle {
  border: 0;
  border-radius: 14px;
  background: #edf4ff;
  color: #0e4bc2;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.coverage-rates-toggle:hover {
  background: #e3eeff;
  transform: translateY(-1px);
}

.coverage-table-head,
.rate-row {
  display: grid;
  grid-template-columns: minmax(240px, 2.5fr) minmax(110px, 1fr) minmax(110px, 0.9fr) minmax(150px, 1fr);
  gap: 18px;
  align-items: center;
}

.coverage-table-head {
  padding: 0 30px 14px;
  color: #8995b1;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coverage-table-body {
  padding: 0 18px 12px;
}

.loading-state {
  padding: 20px 12px 26px;
  color: #5f6f92;
}

.rate-row {
  padding: 16px 12px;
  border-top: 1px solid rgba(214, 220, 234, 0.78);
}

.rate-row:first-child {
  border-top: 0;
}

.pair-col {
  min-width: 0;
}

.pair-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.pair-badge {
  position: relative;
  width: 68px;
  height: 48px;
  flex-shrink: 0;
}

.flag-orb {
  position: absolute;
  top: 1px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: block;
  box-shadow:
    0 14px 24px rgba(19, 44, 96, 0.12),
    inset 0 0 0 1px rgba(219, 228, 243, 0.92);
  overflow: hidden;
}

.flag-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.flag-orb.from {
  left: 0;
  z-index: 2;
}

.flag-orb.to {
  right: 0;
  z-index: 1;
}

.pair-arrow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #5f78b9;
  font-size: 0.95rem;
  font-weight: 800;
}

.pair-text {
  min-width: 0;
}

.pair-label {
  color: #102147;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pair-subtitle {
  margin-top: 4px;
  color: #5f6f92;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.amount-cell,
.change-cell {
  font-variant-numeric: tabular-nums;
}

.amount-value {
  color: #102147;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.amount-meta {
  margin-top: 4px;
  color: #5f6f92;
  font-size: 0.82rem;
}

.change-cell {
  font-size: 0.95rem;
  font-weight: 700;
}

.change-up {
  color: #37d39b;
}

.change-down {
  color: #ff6d8d;
}

.change-flat {
  color: #8995b1;
}

.sparkline {
  width: 100%;
  height: 40px;
}

.sparkline path.line {
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline path.fill {
  opacity: 0.14;
}

.coverage-rates-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 18px 30px 30px;
}

.process-panel {
  padding: 38px;
  border: 1px solid rgba(207, 223, 246, 0.92);
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(113, 175, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 240, 253, 0.95));
  box-shadow:
    0 26px 58px rgba(47, 88, 154, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.compact-intro {
  margin-bottom: 18px;
}

.compact-intro h2 {
  max-width: none;
}

.compact-intro p {
  max-width: 42ch;
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.process-step {
  padding: 22px;
  border: 1px solid rgba(216, 229, 247, 0.92);
  border-radius: 24px;
  background: rgba(245, 249, 255, 0.97);
  box-shadow:
    0 20px 42px rgba(10, 28, 71, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.process-step-soft {
  background:
    linear-gradient(135deg, rgba(246, 251, 255, 0.98), rgba(222, 238, 255, 0.95)),
    rgba(241, 247, 255, 0.97);
}

.process-step-deep {
  background:
    radial-gradient(circle at top right, rgba(120, 178, 255, 0.26), transparent 36%),
    linear-gradient(180deg, rgba(233, 241, 253, 0.98), rgba(216, 227, 245, 0.96));
}

.process-step-tint {
  background:
    linear-gradient(135deg, rgba(243, 251, 255, 0.98), rgba(213, 246, 243, 0.95)),
    rgba(237, 248, 250, 0.96);
}

.process-step strong {
  display: block;
  margin: 10px 0 6px;
  color: #102147;
}

.process-step p {
  margin: 0;
  color: #607192;
  line-height: 1.6;
}

.process-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8fc5ff, #2ee0bc);
  box-shadow: 0 0 0 6px rgba(111, 184, 255, 0.08);
}

.process-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 197, 255, 0.26), rgba(46, 224, 188, 0.5));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

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

.faq-list details {
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.95));
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.faq-visual-card {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  gap: 0;
  align-items: center;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(207, 223, 246, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(112, 176, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 241, 253, 0.95));
  box-shadow:
    0 22px 48px rgba(47, 88, 154, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.visual-node {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(209, 224, 246, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(229, 239, 255, 0.95));
  color: #173161;
  font-weight: 800;
}

.visual-link {
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 197, 255, 0.2), rgba(46, 224, 188, 0.56));
}

.footer {
  padding-top: 10px;
  border-top: 1px solid rgba(205, 220, 242, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: #607192;
}

@media (max-width: 1100px) {
  .hero-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .trust-grid,
  .stats-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-rates-card {
    grid-column: 1 / -1;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-line {
    width: 2px;
    height: 28px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(143, 197, 255, 0.26), rgba(46, 224, 188, 0.5));
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell,
  .nav-actions,
  .hero-actions,
  .trust-grid,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell,
  .nav-actions {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    padding: 18px 0 0;
  }

  .hero h1 {
    max-width: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .quote-card {
    padding: 18px;
  }

  .quote-body {
    padding: 16px;
  }

  .country-modal-panel {
    inset: 10px;
  }

  .feature-grid,
  .trust-grid,
  .stats-grid,
  .coverage-grid {
    display: grid;
  }

  .faq-visual-card {
    grid-template-columns: 1fr;
  }

  .coverage-rates-head {
    flex-direction: column;
  }

  .coverage-table-head {
    display: none;
  }

  .rate-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pair-subtitle {
    white-space: normal;
  }

  .coverage-rates-foot {
    justify-content: flex-start;
  }

  .visual-link {
    width: 2px;
    height: 22px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(143, 197, 255, 0.2), rgba(46, 224, 188, 0.56));
  }
}
