/* Плавные переходы между страницами (без резкого белого перезагруза) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .34s;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.site-header { view-transition-name: site-header; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

:root {
  --navy: #0f1b33;
  --coral: #ff654d;
  --coral-dark: #e84f38;
  --coral-soft: #fff0eb;
  --cream: #f8f4f0;
  --paper: #ffffff;
  --ink: #101b31;
  --muted: #657086;
  --line: #e8e4e0;
  --green: #22a06b;
  --shadow-sm: 0 10px 30px rgba(15, 27, 51, 0.08);
  --container: 1200px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

/* Frosted backdrop behind the mobile menu — page stays visible as a soft silhouette */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 250, 252, .5);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  backdrop-filter: blur(8px) saturate(1.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s ease;
}
body.menu-open .nav-scrim { opacity: 1; pointer-events: auto; }

button,
input { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

img { display: block; max-width: 100%; }

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.flag-icon {
  display: block;
  width: 30px;
  height: 20px;
  overflow: hidden;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 27, 51, .1), 0 4px 10px rgba(15, 27, 51, .1);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(255, 101, 77, .42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(232, 228, 224, .85);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 30px rgba(15, 27, 51, .06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1;
  text-decoration: none;
}
.logo-img { height: 39px; width: auto; display: block; }
@media (max-width: 760px) { .logo-img { height: 27px; } }

.logo span {
  width: 9px;
  height: 9px;
  margin: 1px 0 0 4px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 101, 77, .12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

/* Transparent on desktop so links stay flex items of .main-nav; becomes the padded block on mobile. */
.main-nav-inner { display: contents; }

.main-nav a:not(.button) {
  position: relative;
  color: #354159;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.main-nav a:not(.button):hover::after,
.main-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 101, 77, .26);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(255, 101, 77, .32);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .78);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(15, 27, 51, .05);
}

.button-secondary:hover { border-color: #d5cfc9; background: #fff; box-shadow: var(--shadow-sm); }

.button-light {
  flex: 0 0 auto;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(4, 12, 27, .2);
}

.button-light:hover { box-shadow: 0 18px 42px rgba(4, 12, 27, .28); }

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 13px;
  font-size: 14px;
}

.play-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 9px;
  text-indent: 1px;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 44px 0 82px;
  background: linear-gradient(135deg, #fff 0%, #fff 50%, #fff8f5 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -150px;
  left: 42%;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 101, 77, .1), transparent 68%);
  content: "";
  filter: blur(10px);
}

.hero-orb,
.destination-orb,
.security-orb,
.final-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: 110px;
  right: 1%;
  width: 480px;
  height: 480px;
  background: rgba(255, 218, 207, .3);
}

.hero-orb-two {
  top: 150px;
  right: 28%;
  width: 90px;
  height: 90px;
  background: rgba(255, 101, 77, .08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  padding-top: 13px;
  animation: hero-copy-in .8s .08s both var(--ease);
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 101, 77, .1);
}

.eyebrow.light { color: #ff9e8e; }

.hero h1 {
  max-width: 710px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(55px, 5.25vw, 74px);
  font-weight: 900;
  letter-spacing: -.067em;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 29px 0 0;
  padding: 0;
  color: #59657a;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.trust-list li { display: flex; align-items: center; gap: 7px; }

.trust-list li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 160, 107, .1);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
  justify-self: end;
  overflow: visible;
  animation: hero-visual-in .9s .18s both var(--ease);
}

.photo-card {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 94% at 50% 50%, #000 58%, rgba(0, 0, 0, .98) 72%, rgba(0, 0, 0, .5) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 94% at 50% 50%, #000 58%, rgba(0, 0, 0, .98) 72%, rgba(0, 0, 0, .5) 88%, transparent 100%);
}

.photo-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(232, 228, 224, .88);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(15, 27, 51, .15);
  backdrop-filter: blur(12px);
}

.balance-card {
  top: 44px;
  left: -16px;
  min-width: 194px;
  padding: 16px 18px;
  border-radius: 18px;
  animation: card-float 5.3s .2s infinite ease-in-out;
}

.balance-card > span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.balance-card strong { display: block; margin: 3px 0 8px; color: var(--navy); font-size: 22px; line-height: 1.15; }
.balance-card small { color: var(--green); font-weight: 800; }
.balance-card i { display: inline-grid; width: 17px; height: 17px; margin-right: 4px; place-items: center; border-radius: 50%; background: rgba(34, 160, 107, .12); font-size: 10px; font-style: normal; }

.account-card {
  top: 78px;
  right: -8px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 15px 10px 10px;
  border-radius: 18px;
  animation: card-float 5.8s 1s infinite ease-in-out reverse;
}

.account-card > span:last-child { display: grid; }
.account-card small { color: var(--muted); font-size: 10px; font-weight: 750; }
.account-card strong { color: var(--navy); font-size: 12px; white-space: nowrap; }

.flag-chip { display: grid; width: 46px; height: 42px; place-items: center; border-radius: 14px; background: #f3f5f8; }
.flag-chip .flag-icon { width: 28px; height: 19px; }

.route-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 130px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 9px;
  border: 1px solid rgba(232, 228, 224, .85);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 27, 51, .12);
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.route-pill:hover,
.route-pill:focus-visible { box-shadow: 0 16px 34px rgba(15, 27, 51, .17); transform: translateY(-2px); }
.route-pill .flag-icon { width: 24px; height: 16px; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(15, 27, 51, .08); }
.route-pill > span { display: grid; line-height: 1.12; }
.route-pill small { color: #8a94a6; font-size: 8px; font-weight: 750; }
.route-pill strong { margin-top: 2px; color: var(--navy); font-size: 10px; font-weight: 900; }
.route-pill-one { top: 79%; right: -2px; bottom: auto; animation: card-float 5s .6s infinite ease-in-out; }
.route-pill-two { right: auto; bottom: 12px; left: 84px; animation: card-float 5.4s 1.2s infinite ease-in-out reverse; }
.route-pill-three { bottom: 88px; left: -10px; animation: card-float 5.7s .4s infinite ease-in-out; }

.route-pill-one::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 160, 107, .35);
  content: "";
  animation: route-status 2.2s infinite ease-out;
}

.proof-bar {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.proof-grid > div {
  display: grid;
  gap: 2px;
  padding: 27px 24px;
  border-left: 1px solid var(--line);
}

.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong { color: var(--navy); font-size: 15px; }
.proof-grid span { color: var(--muted); font-size: 12px; }

.section { position: relative; padding: 108px 0; }
.section-soft { background: var(--cream); }

.section-heading { max-width: 700px; }
.section-heading.center { margin-inline: auto; text-align: center; }

.section-heading h2,
.final-cta h2 {
  margin-bottom: 21px;
  color: var(--navy);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: -.05em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.account-switcher {
  position: relative;
  max-width: 1040px;
  margin: 47px auto 0;
}

.tab-list.region-switch {
  position: relative;
  display: grid;
  width: min(680px, 100%);
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 22px;
  padding: 7px;
  border: 1px solid rgba(15, 27, 51, .09);
  border-radius: 23px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(15, 27, 51, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}

.region-switch-indicator {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  width: calc((100% - 14px) / 2);
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f1b33, #1d365e);
  box-shadow: 0 12px 28px rgba(15, 27, 51, .24), inset 0 1px 0 rgba(255, 255, 255, .12);
  transform: translateX(0);
  transition: transform .58s cubic-bezier(.2, .9, .25, 1.05);
}

.region-switch[data-active="eur"] .region-switch-indicator { transform: translateX(100%); }

.region-switch-indicator::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 101, 77, .36), transparent 34%);
  content: "";
}

.region-switch-indicator::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -35%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  content: "";
  transform: skewX(-18deg);
}

.region-switch.is-switching .region-switch-indicator::after { animation: switch-shine .62s var(--ease); }

.region-switch::after {
  position: absolute;
  bottom: -23px;
  left: 50%;
  width: 1px;
  height: 23px;
  background: linear-gradient(var(--line), transparent);
  content: "";
}

.region-tab {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  min-height: 70px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: color .36s ease;
}

.region-tab.is-active {
  color: #fff;
}

.tab-flag {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 27, 51, .08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 27, 51, .08);
  transition: transform .45s var(--ease), box-shadow .3s ease;
}

.region-tab:hover .tab-flag { transform: translateY(-2px) rotate(-2deg); box-shadow: 0 11px 24px rgba(15, 27, 51, .12); }
.region-tab.is-active .tab-flag { transform: rotate(0); box-shadow: 0 9px 24px rgba(3, 11, 24, .24); }
.tab-flag .flag-icon { width: 30px; height: 20px; }

.tab-copy { display: grid; min-width: 0; gap: 3px; line-height: 1.15; }
.tab-copy strong { overflow: hidden; font-size: 14px; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.tab-copy small { overflow: hidden; color: #8994a7; font-size: 10px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; transition: color .36s ease; }
.region-tab.is-active .tab-copy small { color: #b8c7dd; }

.account-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.account-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: radial-gradient(circle at 12% 18%, rgba(255, 101, 77, .06), transparent 28%);
  content: "";
  pointer-events: none;
}

.account-panel.is-changing[data-direction="forward"] .account-copy,
.account-panel.is-changing[data-direction="forward"] .account-preview { animation: panel-change-forward .46s both var(--ease); }

.account-panel.is-changing[data-direction="backward"] .account-copy,
.account-panel.is-changing[data-direction="backward"] .account-preview { animation: panel-change-backward .46s both var(--ease); }

.account-panel.is-changing .account-preview { animation-delay: 55ms !important; }

.account-copy { padding: 55px 55px 48px; }

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.panel-kicker .flag-icon { width: 23px; height: 15px; box-shadow: 0 0 0 1px rgba(15, 27, 51, .08); }

.account-copy h3 {
  max-width: 470px;
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -.035em;
}

.account-copy > p { max-width: 510px; color: var(--muted); }

.check-list { display: grid; gap: 11px; margin: 24px 0 25px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 9px; color: #354159; font-size: 14px; font-weight: 750; }
.check-list span { color: var(--green); font-weight: 900; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--coral-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }

.account-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 30px;
  overflow: hidden;
  padding: 31px;
  border-radius: 23px;
  background: linear-gradient(145deg, #12213c, #1a3157 70%, #243f67);
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 27, 51, .25);
}

.account-preview::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 77, .34), transparent 68%);
  content: "";
}

.preview-top,
.preview-details,
.preview-status { position: relative; z-index: 2; }
.preview-top { display: flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 800; }
.preview-top i { margin-left: auto; color: #97a9c3; font-style: normal; letter-spacing: 2px; }

.preview-logo {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 12px;
  background: var(--coral);
  font-size: 17px;
  font-weight: 900;
}

.preview-balance { position: relative; z-index: 2; display: grid; gap: 4px; margin: 36px 0; }
.preview-balance small,
.preview-details small { color: #9fb0c8; font-size: 10px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.preview-balance strong { font-size: 35px; letter-spacing: -.04em; }

.preview-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .13); }
.preview-details > div { display: grid; gap: 4px; }
.preview-details strong { font-size: 13px; }

.preview-status {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 160, 107, .16);
  color: #72dda9;
  font-size: 11px;
  font-weight: 850;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 90px;
  align-items: end;
}

.split-heading h2 { max-width: 760px; margin-bottom: 0; }

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.route-card {
  --route-accent: var(--coral);
  --route-soft: var(--coral-soft);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 302px;
  padding: 27px 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, var(--route-soft) 0, #fff 32%);
  box-shadow: 0 8px 25px rgba(15, 27, 51, .045);
  transition: transform .32s var(--ease), border-color .32s ease, box-shadow .32s ease;
}

.route-card:nth-child(1) { --route-accent: #d27b25; --route-soft: #fff8e9; }
.route-card:nth-child(2) { --route-accent: #178351; --route-soft: #ecfaf2; }
.route-card:nth-child(3) { --route-accent: #2858a6; --route-soft: #eef4ff; }
.route-card:nth-child(4) { --route-accent: #d8374b; --route-soft: #fff0f2; }

.route-card::before {
  position: absolute;
  top: 0;
  right: 25px;
  left: 25px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--route-accent), transparent);
  content: "";
  opacity: .7;
}

.route-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--route-soft);
  content: "";
  opacity: 0;
  transition: opacity .3s ease, transform .4s var(--ease);
}

.route-card:hover {
  z-index: 1;
  border-color: rgba(255, 101, 77, .35);
  box-shadow: 0 22px 50px rgba(15, 27, 51, .12);
  transform: translateY(-8px);
}

.route-card:hover::after { opacity: 1; transform: scale(1.1); }

.route-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.country-flag {
  display: grid;
  width: 54px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 27, 51, .07);
}
.country-flag .flag-icon { width: 34px; height: 23px; border-radius: 5px; }
.method-badge { padding: 6px 10px; border-radius: 999px; background: var(--route-accent); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .04em; box-shadow: 0 7px 16px color-mix(in srgb, var(--route-accent) 24%, transparent); }
.route-card h3 { position: relative; z-index: 2; min-height: 48px; margin-bottom: 12px; color: var(--navy); font-size: 20px; letter-spacing: -.02em; }
.route-card p { position: relative; z-index: 2; min-height: 70px; margin-bottom: 22px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.currency-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
}

.currency-flow span { color: var(--route-accent); font-size: 18px; }

.destination-section {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

/* второй navy-блок (European coverage) — явное разделение, чтобы не сливался с destinations */
#eu-coverage {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #0a1120;
  box-shadow: inset 0 48px 64px -48px rgba(0, 0, 0, .5);
}

.destination-section .section-heading h2,
.security-section .section-heading h2,
.final-cta h2 { color: #fff; }

.destination-section .section-heading > p:last-child { color: #aeb9cb; }

.destination-orb {
  top: -240px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 101, 77, .18), transparent 65%);
}

.destination-tool {
  position: relative;
  z-index: 2;
  margin-top: 42px;
}

.search-box {
  position: relative;
  display: flex;
  max-width: 990px;
  height: 66px;
  margin-bottom: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(3, 10, 24, .2);
}

.search-box:focus-within { box-shadow: 0 0 0 4px rgba(255, 101, 77, .25), 0 18px 50px rgba(3, 10, 24, .2); }
.search-box svg { width: 21px; height: 21px; margin-left: 21px; fill: none; stroke: var(--coral); stroke-linecap: round; stroke-width: 2; }
.search-box input { width: 100%; height: 100%; min-width: 0; padding: 0 16px; border: 0; outline: 0; background: transparent; color: var(--navy); font-size: 16px; }
.search-box input::placeholder { color: #8993a5; }
.quick-search { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 18px; color: #8f9db4; font-size: 12px; font-weight: 750; }
.quick-search button { min-height: 34px; padding: 6px 11px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: rgba(255, 255, 255, .06); color: #dce3ed; cursor: pointer; font-size: 12px; font-weight: 750; transition: background .2s ease, border-color .2s ease; }
.quick-search button:hover { border-color: rgba(255, 101, 77, .6); background: rgba(255, 101, 77, .14); }

.destination-list { display: grid; max-width: 990px; gap: 9px; }

.destination-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) 90px minmax(250px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  background: rgba(255, 255, 255, .065);
  transition: background .25s ease, transform .25s var(--ease), border-color .25s ease;
}

.destination-row:hover { border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .1); transform: translateX(4px); }
.destination-row.is-extra { display: none; }
.destination-list.is-expanded .destination-row.is-extra { display: grid; }
.destination-row[hidden] { display: none !important; }

.destination-name { display: flex; align-items: center; gap: 13px; }
.destination-name > span { display: grid; width: 34px; place-items: center; }
.destination-name .flag-icon { width: 28px; height: 19px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 5px 14px rgba(3, 10, 24, .16); }
.destination-name h3 { margin-bottom: 2px; color: #fff; font-size: 16px; }
.destination-name p { margin-bottom: 0; color: #98a7bc; font-size: 11px; }
.destination-row > strong { color: #fff; font-size: 17px; }
.payout-methods { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.payout-methods span { padding: 5px 8px; border-radius: 999px; background: rgba(255, 101, 77, .13); color: #ffad9f; font-size: 10px; font-weight: 850; }

.show-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.show-more span { transition: transform .25s ease; }
.show-more[aria-expanded="true"] span { transform: rotate(180deg); }
.show-more[hidden] { display: none; }
.availability-note { margin: 17px 0 0; color: #7f8da3; font-size: 10px; }
.empty-state { display: none; padding: 18px; border: 1px dashed rgba(255, 255, 255, .2); border-radius: 14px; color: #b8c2d0; }
.empty-state.is-visible { display: block; }

.how-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0, #fffdfc 68%, #faf7f4 100%);
}

.how-orb {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 720px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 101, 77, .075), rgba(255, 101, 77, 0) 70%);
  pointer-events: none;
  transform: translateX(-50%);
}

.how-heading {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.how-heading h2 { margin-bottom: 19px; }
.how-heading > p:last-child { max-width: 720px; margin-inline: auto; }

.how-flow {
  position: relative;
  z-index: 2;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-grid li {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 318px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #e8e4e0;
  border-radius: 24px;
  background: linear-gradient(155deg, #fff 35%, #fcfaf8 100%);
  box-shadow: 0 14px 38px rgba(15, 27, 51, .065);
  transition: transform .35s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.steps-grid li:nth-child(2) { background: linear-gradient(155deg, #fff 32%, #fff7f3 100%); }
.steps-grid li:nth-child(3) { background: linear-gradient(155deg, #fff 32%, #f6fbf8 100%); }
.steps-grid li:hover { z-index: 6; border-color: rgba(255, 101, 77, .28); box-shadow: 0 22px 52px rgba(15, 27, 51, .105); transform: translateY(-6px); }

.steps-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 4;
  top: 58px;
  left: calc(100% + 2px);
  width: 18px;
  border-top: 1px dashed rgba(255, 101, 77, .48);
  content: "";
  pointer-events: none;
}

.steps-grid li:not(:last-child)::before {
  position: absolute;
  z-index: 5;
  top: 55px;
  left: calc(100% + 2px);
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 101, 77, .11);
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: connector-hop 4.8s infinite ease-in-out;
}

.steps-grid li:nth-child(2)::before { animation-delay: 2.4s; }

.step-topline { position: relative; z-index: 4; display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 25px; }
.step-number { color: #eadedb; font-size: 32px; font-weight: 900; letter-spacing: -.04em; line-height: 1; }

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 101, 77, .08);
  border-radius: 17px;
  background: var(--coral-soft);
  color: var(--coral);
  box-shadow: 0 9px 22px rgba(15, 27, 51, .07);
}

.step-review .step-icon { background: var(--coral); color: #fff; box-shadow: 0 10px 25px rgba(255, 101, 77, .22); }
.step-deliver .step-icon { border-color: rgba(34, 160, 107, .1); background: rgba(34, 160, 107, .1); color: var(--green); }
.step-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.steps-grid h3 { margin-bottom: 10px; color: var(--navy); font-size: 20px; letter-spacing: -.02em; }
.steps-grid p { margin-bottom: 22px; color: var(--muted); font-size: 13px; line-height: 1.62; }

.step-preview {
  position: relative;
  z-index: 4;
  min-width: 0;
  margin-top: auto;
  border: 1px solid #e8e6e3;
  border-radius: 15px;
  background: rgba(255, 255, 255, .88);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(15, 27, 51, .065);
}

.receive-preview,
.deliver-preview { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 14px; }
.preview-flag { display: grid; width: 39px; height: 36px; place-items: center; border-radius: 11px; background: #f0f3f7; }
.preview-flag .flag-icon { width: 25px; height: 17px; }
.receive-preview > span:nth-child(2),
.deliver-preview > span:nth-child(2) { display: grid; gap: 2px; min-width: 0; }
.step-preview small { color: #7d889b; font-size: 8px; font-weight: 800; }
.step-preview strong { color: var(--navy); font-size: 12px; white-space: nowrap; }
.receive-preview > i,
.deliver-preview > i { padding: 5px 7px; border-radius: 999px; background: rgba(34, 160, 107, .11); color: var(--green); font-size: 8px; font-style: normal; font-weight: 900; }
.deliver-preview > i { display: inline-flex; align-items: center; gap: 4px; }

.review-preview { overflow: hidden; padding: 14px 14px 0; }
.amount-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: 9px; align-items: center; padding-bottom: 13px; }
.amount-pair > span { display: grid; gap: 3px; }
.amount-pair > span:last-child { text-align: right; }
.amount-pair b { color: var(--coral); font-size: 15px; }
.price-strip { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 -14px; padding: 9px 14px; background: #f4f7f5; }
.price-strip span { display: inline-flex; align-items: center; gap: 5px; color: #617083; font-size: 8px; font-weight: 800; }
.price-strip span i { color: var(--green); font-style: normal; }
.price-strip strong { font-size: 9px; }

.how-note { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 25px; margin: 30px 0 0; padding: 18px 26px; border: 1px solid #e8e4e0; border-radius: 16px; background: rgba(255, 255, 255, .8); color: #667287; font-size: 14px; font-weight: 800; box-shadow: 0 10px 28px rgba(15, 27, 51, .045); }
.how-note > span { display: inline-flex; align-items: center; gap: 8px; }
.how-note > span i { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: rgba(34, 160, 107, .11); color: var(--green); font-size: 12px; font-style: normal; }
.how-note small { color: #9aa3b0; font-size: 13px; }

.life-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: center; }
.life-section .section-heading .button { margin-top: 29px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-grid article { min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(15, 27, 51, .04); transition: transform .3s var(--ease), box-shadow .3s ease; }
.benefit-grid article:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.benefit-grid article > span { display: inline-grid; width: 36px; height: 36px; margin-bottom: 27px; place-items: center; border-radius: 11px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 900; }
.benefit-grid h3 { margin-bottom: 10px; color: var(--navy); font-size: 18px; }
.benefit-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.security-section {
  overflow: hidden;
  background: linear-gradient(135deg, #0c172c, #142746);
  color: #fff;
}

.security-orb { right: -140px; bottom: -250px; width: 650px; height: 650px; background: radial-gradient(circle, rgba(255, 101, 77, .18), transparent 65%); }
.security-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; align-items: center; }

.security-callout {
  display: flex;
  gap: 13px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .05);
}

.security-callout > span { display: grid; flex: 0 0 33px; height: 33px; place-items: center; border-radius: 11px; background: rgba(34, 160, 107, .2); color: #6ee0a7; font-weight: 900; }
.security-callout p { margin: 0; color: #aeb9cb; font-size: 12px; }
.security-callout strong { color: #fff; }
.security-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.security-cards article { min-height: 230px; padding: 25px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; background: rgba(255, 255, 255, .055); transition: background .3s ease, transform .3s var(--ease), border-color .3s ease; }
.security-cards article:hover { border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.security-icon { display: grid; width: 48px; height: 48px; margin-bottom: 24px; place-items: center; border-radius: 15px; background: rgba(255, 101, 77, .15); color: #ff9d8d; }
.security-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.security-cards h3 { margin-bottom: 10px; color: #fff; font-size: 17px; }
.security-cards p { margin-bottom: 0; color: #9facbf; font-size: 12px; }

.faq-section { position: relative; overflow: hidden; background: #f7f4f0; }
.faq-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.faq-orb-one { top: -190px; right: -140px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 101, 77, .14), transparent 68%); }
.faq-orb-two { bottom: -240px; left: -190px; width: 520px; height: 520px; border: 1px solid rgba(15, 27, 51, .04); box-shadow: inset 0 0 0 80px rgba(255, 255, 255, .2), inset 0 0 0 160px rgba(255, 255, 255, .18); }

.faq-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr); gap: 22px; align-items: stretch; }
.faq-intro-card { position: relative; display: flex; overflow: hidden; min-height: 510px; flex-direction: column; padding: 44px; border-radius: 32px; background: linear-gradient(145deg, #0b172b, #173052); box-shadow: 0 28px 65px rgba(15, 27, 51, .17); color: #fff; }
.faq-intro-card::after { position: absolute; right: -105px; bottom: -125px; width: 280px; height: 280px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: inset 0 0 0 55px rgba(255, 255, 255, .025), inset 0 0 0 105px rgba(255, 255, 255, .02); content: ""; }
.faq-intro-card h2 { position: relative; z-index: 2; margin-bottom: 19px; color: #fff; font-size: clamp(40px, 3.7vw, 51px); letter-spacing: -.055em; }
.faq-intro-card > p:not(.eyebrow) { position: relative; z-index: 2; max-width: 440px; margin-bottom: 26px; color: #aebad0; font-size: 14px; line-height: 1.7; }
.faq-topics { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; }
.faq-topics span { padding: 8px 11px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; background: rgba(255, 255, 255, .055); color: #dce4ee; font-size: 10px; font-weight: 800; }

.faq-help-note { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; margin-top: auto; padding: 15px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 17px; background: rgba(255, 255, 255, .065); backdrop-filter: blur(8px); }
.faq-help-note > span { display: grid; flex: 0 0 39px; height: 39px; place-items: center; border-radius: 13px; background: var(--coral); color: #fff; font-size: 16px; font-weight: 900; }
.faq-help-note > div { display: grid; gap: 3px; }
.faq-help-note strong { color: #fff; font-size: 12px; }
.faq-help-note small { color: #9facbf; font-size: 9px; line-height: 1.45; }

.faq-panel { align-self: stretch; padding: 15px; border: 1px solid rgba(15, 27, 51, .07); border-radius: 32px; background: rgba(255, 255, 255, .86); box-shadow: 0 24px 58px rgba(15, 27, 51, .095); overflow-anchor: none; backdrop-filter: blur(12px); }
.faq-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 11px 17px; }
.faq-panel-head span { color: var(--navy); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }.faq-list { counter-reset: faq-item; display: grid; gap: 8px; }
.faq-item { counter-increment: faq-item; overflow: hidden; border: 1px solid #e9e6e2; border-radius: 18px; background: #f8f7f5; transition: border-color .38s ease, background .38s ease, box-shadow .38s ease; }
.faq-item.is-open { border-color: rgba(255, 101, 77, .28); background: #fff7f3; box-shadow: 0 11px 25px rgba(15, 27, 51, .055); }
.faq-question { position: relative; display: block; width: 100%; min-height: 69px; padding: 22px 59px 20px 58px; border: 0; border-radius: 0; background: transparent; box-shadow: none; color: var(--navy); cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 850; line-height: 1.45; text-align: left; white-space: normal; }
.faq-question:hover,
.faq-question:active { background: transparent; }
.faq-question:focus-visible { outline: 0; border-radius: 16px; box-shadow: inset 0 0 0 3px rgba(255, 101, 77, .32); }
.faq-question::before { position: absolute; top: 19px; left: 17px; display: grid; width: 29px; height: 29px; place-items: center; border-radius: 10px; background: #eaeff4; color: #718097; content: counter(faq-item, decimal-leading-zero); font-size: 8px; font-weight: 900; letter-spacing: .04em; transition: background .32s ease, color .32s ease; }
.faq-item.is-open .faq-question::before { background: var(--coral); color: #fff; }
.faq-question-text { display: block; min-width: 0; }
.faq-toggle { position: absolute; top: 17px; right: 15px; width: 35px; height: 35px; border: 1px solid #e4e2df; border-radius: 12px; background: #fff; box-shadow: 0 6px 13px rgba(15, 27, 51, .05); transition: background .34s ease, border-color .34s ease, transform .42s var(--ease); }
.faq-toggle::before,
.faq-toggle::after { position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; border-radius: 2px; background: var(--coral); content: ""; transform: translate(-50%, -50%); transition: background .3s ease, transform .42s var(--ease); }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-toggle { border-color: var(--coral); background: var(--coral); transform: rotate(180deg); }
.faq-item.is-open .faq-toggle::before,
.faq-item.is-open .faq-toggle::after { background: #fff; }
.faq-item.is-open .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item > .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  will-change: grid-template-rows;
  transition: grid-template-rows .55s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}
.faq-item.is-open > .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.faq-answer-inner { min-height: 0; overflow: hidden; transform: translateY(-7px); transition: transform .55s cubic-bezier(.4, 0, .2, 1); }
.faq-item.is-open .faq-answer-inner { transform: translateY(0); }
.faq-item p { max-width: 670px; margin: 0; padding: 4px 58px 22px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.faq-panel-foot { display: flex; min-height: 48px; align-items: center; gap: 8px; padding: 12px 12px 2px; color: #798498; font-size: 9px; font-weight: 800; }
.faq-panel-foot span { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: rgba(34, 160, 107, .11); color: var(--green); font-size: 9px; }

.final-cta { position: relative; overflow: hidden; padding: 86px 0; background: var(--coral); color: #fff; }
.final-orb { top: -230px; right: -30px; width: 520px; height: 520px; border: 1px solid rgba(255, 255, 255, .13); box-shadow: inset 0 0 0 90px rgba(255, 255, 255, .035); }
.final-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-inner > div { max-width: 740px; }
.final-cta .eyebrow { color: #ffe0da; }
.final-cta h2 { margin-bottom: 15px; }
.final-cta p:last-child { max-width: 660px; margin-bottom: 0; color: rgba(255, 255, 255, .83); font-size: 17px; }

.site-footer { position: relative; overflow: hidden; padding: 72px 0 0; background: radial-gradient(1200px 420px at 82% -8%, rgba(255, 101, 77, .16), transparent 60%), #091326; color: #fff; }
.logo-light { color: #fff; }
.logo-light .logo-img { height: 46px; }
@media (max-width: 760px) { .logo-light .logo-img { height: 36px; } }

.footer-top { display: grid; grid-template-columns: 1.35fr 2fr; gap: 60px; padding-bottom: 44px; }
.footer-tagline { max-width: 360px; margin: 20px 0 26px; color: #aeb8c8; font-size: 14.5px; line-height: 1.62; }

.footer-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-tg { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 12px; background: linear-gradient(135deg, #2aabee, #229ed9); color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 26px rgba(34, 158, 217, .35); transition: transform .2s ease, box-shadow .2s ease; }
.footer-tg:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(34, 158, 217, .45); }
.footer-tg-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.footer-cta { display: inline-flex; align-items: center; padding: 12px 20px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .22); color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.footer-cta:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-cols h3 { margin: 4px 0 18px; color: #fff; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.footer-cols > div { display: flex; flex-direction: column; gap: 11px; }
.footer-cols a { width: max-content; color: #8d9ab0; font-size: 13px; text-decoration: none; transition: color .2s ease; }
.footer-cols a:hover { color: #fff; }

.footer-reg { padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-reg-line { margin: 0 0 8px; color: #c3ccda; font-size: 12px; line-height: 1.6; }
.footer-reg-line strong { color: #fff; font-weight: 850; letter-spacing: .04em; }
.footer-reg small { display: block; max-width: 620px; color: #6d7a91; font-size: 11px; line-height: 1.55; }

.footer-bottom { display: flex; justify-content: space-between; padding-block: 20px; border-top: 1px solid rgba(255, 255, 255, .08); color: #647188; font-size: 11px; }
.footer-motto { color: var(--coral); font-weight: 750; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease) var(--delay, 0ms), transform .75s var(--ease) var(--delay, 0ms);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes connector-hop {
  0%, 42%, 100% { opacity: 0; transform: translateX(0); }
  8% { opacity: 1; }
  32% { opacity: 1; transform: translateX(11px); }
  40% { opacity: 0; transform: translateX(14px); }
}

@keyframes connector-drop {
  0%, 42%, 100% { opacity: 0; transform: translateY(0); }
  8% { opacity: 1; }
  32% { opacity: 1; transform: translateY(10px); }
  40% { opacity: 0; transform: translateY(13px); }
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateX(30px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes route-status {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 160, 107, .38); }
  55% { box-shadow: 0 0 0 7px rgba(34, 160, 107, 0); }
}

@keyframes destination-pulse {
  0% { opacity: .55; transform: scale(.84); }
  80%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes switch-shine {
  from { left: -35%; }
  to { left: 118%; }
}

@keyframes panel-change-forward {
  from { opacity: .18; transform: translateX(22px) scale(.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes panel-change-backward {
  from { opacity: .18; transform: translateX(-22px) scale(.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@media (max-width: 1080px) {
  .hero { min-height: 730px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr); gap: 38px; }
  .hero h1 { font-size: clamp(52px, 5.6vw, 65px); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .route-card { min-height: 275px; }
  .route-card h3,
  .route-card p { min-height: auto; }
  .life-grid,
  .security-grid { gap: 45px; }
}

@media (max-width: 900px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .nav-wrap { min-height: 72px; }
  .main-nav { gap: 20px; }
  .main-nav a:not(.button) { font-size: 13px; }
  .hero { min-height: auto; padding: 40px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(54px, 8vw, 72px); }
  .hero-visual { width: min(680px, 100%); margin: 0 auto; justify-self: center; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .section { padding: 90px 0; }
  .account-panel { grid-template-columns: 1fr; }
  .account-preview { min-height: 330px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .split-heading > p { max-width: 650px; }
  .destination-row { grid-template-columns: minmax(230px, 1.2fr) 70px minmax(220px, 1fr); }
  .how-heading { max-width: 760px; }
  .life-grid,
  .security-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro-card { min-height: 440px; }
  .life-grid > .section-heading,
  .security-grid > .section-heading,
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  .container { width: calc(100% - 32px); }
  .site-header { background: rgba(255, 255, 255, .96); backdrop-filter: none; }
  .site-header.menu-visible {
    border-color: transparent;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }
  .nav-wrap { min-height: 60px; }
  .logo { font-size: 25px; }
  .site-header .logo { z-index: 104; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .25s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 101;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0 24px 44px rgba(15, 27, 51, 0);
    pointer-events: none;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s ease;
  }
  /* Vertical padding lives on the inner block (constant), so the collapsible .main-nav is 0px tall when closed and never overlaps the hero. */
  .main-nav-inner { display: block; padding: 64px 24px 20px; }
  .main-nav.is-open { max-height: 440px; box-shadow: 0 24px 44px rgba(15, 27, 51, .13); pointer-events: auto; }
  .main-nav a:not(.button) { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 18px; }
  .main-nav a:not(.button)::after { display: none; }
  .main-nav .nav-cta, .main-nav .nav-login { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 14px; min-height: 50px; }
  .hero { padding: 24px 0 58px; }
  .hero-grid { gap: 43px; }
  .hero-copy { padding-top: 0; }
  .hero h1 { margin-bottom: 21px; font-size: clamp(42px, 12vw, 58px); letter-spacing: -.058em; }
  .hero-lead { margin-bottom: 26px; font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-orb-one { top: 480px; right: -260px; }
  .hero-visual {
    width: 100%;
    height: clamp(520px, 130vw, 590px);
    aspect-ratio: auto;
    margin: 0;
  }
  .photo-card {
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 87%, rgba(0, 0, 0, .86) 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 87%, rgba(0, 0, 0, .86) 92%, transparent 100%);
  }
  .photo-card img {
    object-position: center 65%;
  }
  .floating-card,
  .route-pill { animation: none; }
  .balance-card {
    top: 14px;
    left: 0;
    min-width: 152px;
    padding: 11px 13px;
  }
  .balance-card strong { font-size: 18px; }
  .account-card {
    top: 14px;
    right: 0;
    padding: 8px 10px 8px 8px;
  }
  .account-card .flag-chip { width: 38px; height: 34px; }
  .route-pill { min-width: 116px; padding: 7px 9px 7px 8px; }
  .route-pill-one { top: 76%; right: -2px; bottom: auto; }
  .route-pill-two { bottom: 8px; left: 54px; }
  .route-pill-three { bottom: 63px; left: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 22px 16px; }
  .proof-grid strong { font-size: 13px; }
  .proof-grid span { font-size: 10px; }
  .section { padding: 74px 0; }
  .section-heading h2,
  .final-cta h2 { font-size: clamp(36px, 10vw, 46px); }
  .section-heading > p:last-child { font-size: 15px; }
  .account-switcher { margin-top: 35px; }
  .tab-list.region-switch { width: 100%; grid-template-columns: 1fr 1fr; padding: 5px; border-radius: 19px; }
  .region-switch-indicator { top: 5px; bottom: 5px; left: 5px; width: calc((100% - 10px) / 2); border-radius: 14px; }
  .region-tab { width: 100%; min-height: 70px; gap: 8px; padding: 8px 10px; }
  .tab-flag { width: 41px; height: 38px; border-radius: 12px; }
  .tab-flag .flag-icon { width: 27px; height: 18px; }
  .tab-copy strong { font-size: 12px; }
  .tab-copy small { font-size: 8.5px; }
  .account-panel { min-height: 0; border-radius: 22px; }
  .account-copy { padding: 34px 25px 28px; }
  .account-copy h3 { font-size: 28px; }
  .account-preview { min-height: 320px; margin: 0 16px 16px; padding: 24px; border-radius: 18px; }
  .preview-balance strong { font-size: 30px; }
  .route-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .route-card { min-height: 0; padding: 25px; }
  .destination-section .section-heading { max-width: 620px; }
  .search-box { height: 60px; }
  .destination-row,
  .destination-list.is-expanded .destination-row.is-extra { grid-template-columns: 1fr auto; gap: 11px; padding: 15px; }
  .destination-row > strong { grid-row: 1; grid-column: 2; }
  .payout-methods { grid-column: 1 / -1; justify-content: flex-start; padding-left: 41px; }
  .how-heading { margin-bottom: 34px; }
  .steps-grid { grid-template-columns: 1fr; gap: 18px; margin: 0; }
  .steps-grid li { min-height: 295px; padding: 24px; }
  .steps-grid li:not(:last-child)::after { top: auto; right: auto; bottom: -19px; left: 51px; width: auto; height: 18px; border-top: 0; border-left: 1px dashed rgba(255, 101, 77, .48); }
  .steps-grid li:not(:last-child)::before { top: auto; right: auto; bottom: -11px; left: 48px; animation-name: connector-drop; }
  .step-topline { margin-bottom: 20px; }
  .how-note { align-items: flex-start; flex-direction: column; gap: 7px; margin-top: 18px; }
  .benefit-grid,
  .security-cards { grid-template-columns: 1fr; }
  .benefit-grid article,
  .security-cards article { min-height: 0; }
  .faq-grid { gap: 16px; }
  .faq-intro-card { min-height: 450px; padding: 29px; border-radius: 25px; }
  .faq-help-note { margin-top: 26px; }
  .faq-panel { padding: 10px; border-radius: 25px; }
  .faq-question { padding: 20px 55px 18px 52px; font-size: 14px; }
  .faq-question::before { top: 18px; left: 14px; }
  .faq-toggle { top: 15px; right: 12px; }
  .faq-item p { padding: 0 20px 20px 52px; }
  .final-cta { padding: 72px 0; }
  .final-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .final-inner .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-cols { gap: 26px 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
}

@media (min-width: 521px) and (max-width: 760px) {
  .hero-visual {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .photo-card {
    -webkit-mask-image: radial-gradient(ellipse 92% 94% at 50% 50%, #000 58%, rgba(0, 0, 0, .98) 72%, rgba(0, 0, 0, .5) 88%, transparent 100%);
    mask-image: radial-gradient(ellipse 92% 94% at 50% 50%, #000 58%, rgba(0, 0, 0, .98) 72%, rgba(0, 0, 0, .5) 88%, transparent 100%);
  }
  .photo-card img { object-position: center; }
  .route-pill-one { top: 79%; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 28px); }
  .hero h1 { font-size: 41px; }
  .hero-visual { height: 520px; }
  .balance-card {
    top: 12px;
    left: 0;
    min-width: 145px;
    padding: 10px 11px;
  }
  .balance-card > span { font-size: 9px; }
  .balance-card strong { font-size: 17px; }
  .account-card {
    top: 12px;
    right: 0;
    gap: 7px;
    padding: 7px 9px 7px 7px;
  }
  .account-card small { font-size: 8px; }
  .account-card strong { font-size: 10px; }
  .route-pill { min-width: 112px; padding: 7px 8px; font-size: 10px; }
  .route-pill-one { top: 76%; }
  .route-pill-two { bottom: 6px; left: 48px; }
  .route-pill-three { bottom: 58px; left: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .tab-list.region-switch { margin-inline: 0; }
  .region-tab { min-height: 88px; grid-template-columns: 1fr; gap: 5px; align-content: center; justify-items: start; }
  .tab-flag { width: 38px; height: 32px; }
  .tab-flag .flag-icon { width: 25px; height: 17px; }
  .tab-copy { width: 100%; }
  .tab-copy strong { overflow: visible; font-size: 11px; text-overflow: clip; white-space: normal; }
  .tab-copy small { font-size: 8px; }
  .preview-details { grid-template-columns: 1fr; gap: 12px; }
  .account-preview { min-height: 380px; }
  .steps-grid li { min-height: 300px; }
  .receive-preview,
  .deliver-preview { gap: 8px; padding: 11px; }
  .preview-flag { width: 34px; height: 33px; }
  .receive-preview > i,
  .deliver-preview > i { padding: 4px 6px; font-size: 7px; }
  .faq-intro-card { min-height: 470px; padding: 25px; }
  .faq-intro-card h2 { font-size: 39px; }
  .faq-help-note { margin-top: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-actions { width: 100%; }
  .footer-tg, .footer-cta { flex: 1; justify-content: center; }
}

@media (max-width: 350px) {
  .hero-visual { height: 490px; }
  .balance-card { min-width: 140px; }
  .account-card {
    top: 12px;
    right: 0;
    display: grid;
    width: 58px;
    height: 48px;
    place-items: center;
    padding: 3px;
  }
  .account-card > span:last-child { display: none; }
  .account-card .flag-chip { width: 42px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* "Read in full" link that replaces the question count on the home FAQ panel */
.faq-readall { display: inline-flex; align-items: center; gap: 5px; color: var(--coral); font-size: 11px; font-weight: 850; letter-spacing: .01em; text-decoration: none; transition: gap .22s ease, color .22s ease; }
.faq-readall:hover { gap: 9px; color: #e2482c; }

/* ===== FAQ page (faq.html) ===== */
/* Solid, in-flow sticky header on the FAQ page — bounded burger bar, no fixed-offset padding needed */
.is-faq .site-header { position: sticky; top: 0; background: #fff; border-color: rgba(15, 27, 51, .13); box-shadow: 0 1px 0 rgba(15, 27, 51, .06); }
.is-faq .site-header.is-scrolled { box-shadow: 0 2px 12px rgba(15, 27, 51, .06); }

.faq-hero { position: relative; overflow: hidden; padding: 22px 0 38px; background: linear-gradient(135deg, #fff 0%, #fff 48%, #fff6f2 100%); }
.faq-hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.faq-hero-orb-one { top: -150px; right: -90px; width: 430px; height: 430px; background: radial-gradient(circle, rgba(255, 101, 77, .17), transparent 65%); }
.faq-hero-orb-two { bottom: -210px; left: -140px; width: 470px; height: 470px; background: radial-gradient(circle, rgba(43, 83, 164, .1), transparent 65%); }
.faq-hero .container { position: relative; z-index: 2; }
.faq-back { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px; color: #7a8598; font-size: 13px; font-weight: 750; text-decoration: none; transition: color .2s ease; }
.faq-back:hover { color: var(--coral); }
.faq-hero h1 { margin: 12px 0 20px; color: var(--navy); font-size: clamp(40px, 5vw, 64px); font-weight: 900; letter-spacing: -.045em; line-height: 1.03; }
.faq-hero-lead { max-width: 630px; color: var(--muted); font-size: 18px; line-height: 1.62; }
.faq-hero-stats { display: flex; align-items: center; gap: 15px; margin-top: 26px; color: var(--navy); font-size: 14px; font-weight: 750; }
.faq-hero-stats strong { font-size: 20px; font-weight: 900; }
.faq-hero-stats .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(15, 27, 51, .2); }
.faq-hero-note { max-width: 630px; margin-top: 22px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; background: #faf8f6; color: #7a8598; font-size: 12px; line-height: 1.6; }

/* Hero: text left + FAQ-preview card right (fills the right side) */
.faq-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: 40px; align-items: center; max-width: none; margin: 6px 0 0; }
.faq-hero-text { min-width: 0; }
.faq-hero-text h1 { margin-top: 0; }
.faq-hero-visual { position: relative; min-width: 0; }
.faq-hero-img { display: block; width: 100%; height: auto; }
.fhc-card { display: grid; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 30px 64px rgba(15, 27, 51, .11); transform: rotate(-1.3deg); }
.fhc-row { padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fbfaf8; }
.fhc-row.is-open { border-color: rgba(255, 101, 77, .28); background: #fff7f3; box-shadow: 0 10px 22px rgba(15, 27, 51, .05); }
.fhc-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--navy); font-size: 13.5px; font-weight: 800; line-height: 1.35; }
.fhc-ic { position: relative; flex: none; width: 22px; height: 22px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.fhc-ic::before, .fhc-ic::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 2px; border-radius: 2px; background: var(--muted); transform: translate(-50%, -50%); }
.fhc-ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.fhc-row.is-open .fhc-ic { border-color: var(--coral); background: var(--coral); }
.fhc-row.is-open .fhc-ic::before { background: #fff; }
.fhc-row.is-open .fhc-ic::after { opacity: 0; }
.fhc-a { margin-top: 10px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
@media (max-width: 900px) {
  .faq-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-hero-visual { display: none; }
}

.faq-page { padding: 42px 0 96px; background: linear-gradient(180deg, #faf7f4 0, #fff 100%); }

/* Two-pane help-centre: sticky topic index + one grouped content panel */
.faq-layout { display: grid; grid-template-columns: 342px minmax(0, 1fr); gap: 46px; align-items: start; max-width: none; margin: 0; }

.faq-index { position: sticky; top: 92px; align-self: start; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-index-head { padding: 18px 18px 10px; }
.faq-index-head .eyebrow { margin: 0 0 4px; }
.faq-index-sub { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.faq-index-nav { position: relative; display: flex; flex-direction: column; gap: 2px; padding: 4px 8px 12px; }
.faq-index-marker { position: absolute; top: 0; left: 0; width: 0; height: 0; border-radius: 11px; background: var(--coral-soft); opacity: 0; pointer-events: none; z-index: 0; transition: top .34s cubic-bezier(.4, 0, .2, 1), left .34s cubic-bezier(.4, 0, .2, 1), width .34s cubic-bezier(.4, 0, .2, 1), height .34s cubic-bezier(.4, 0, .2, 1), opacity .2s ease; }
.faq-index-link { position: relative; z-index: 1; display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 11px; color: var(--ink); font-size: 13.5px; font-weight: 650; line-height: 1.3; text-decoration: none; cursor: pointer; transition: color .18s ease; }
.faq-index-num { flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 8px; background: #eef1f6; color: var(--muted); font-size: 12px; font-weight: 800; transition: background .18s ease, color .18s ease; }
.faq-index-text { min-width: 0; }
.faq-index-link:hover { color: var(--navy); }
.faq-index-link:hover .faq-index-num { background: #e2e6ee; }
.faq-index-link.is-active { color: var(--coral-dark); }
.faq-index-link.is-active .faq-index-num { background: var(--coral); color: #fff; }

/* Grouped panel — hairline dividers, no floating cards */
.faq-page-cats { max-width: none; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 48px rgba(15, 27, 51, .06); overflow: hidden; }

.faq-cat { scroll-margin-top: 92px; background: transparent; transition: background .35s ease; }
.faq-cat + .faq-cat { border-top: 1px solid var(--line); }
.faq-cat.is-open { background: #fffaf8; }
.faq-cat[hidden], .faq-item[hidden] { display: none; }

/* Content column + search */
.faq-content { min-width: 0; }
.faq-search { position: relative; margin-bottom: 12px; }
.faq-search-icon { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; fill: none; stroke: #9aa2b1; stroke-width: 2; stroke-linecap: round; pointer-events: none; transition: stroke .2s ease; }
.faq-search:focus-within .faq-search-icon { stroke: var(--coral); }
.faq-search-input { width: 100%; padding: 15px 18px 15px 47px; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: var(--navy); font-family: inherit; font-size: 15px; font-weight: 600; box-shadow: 0 8px 24px rgba(15, 27, 51, .05); transition: border-color .2s ease, box-shadow .2s ease; }
.faq-search-input::placeholder { color: #9aa2b1; font-weight: 550; }
.faq-search-input:focus { outline: 0; border-color: rgba(255, 101, 77, .5); box-shadow: 0 0 0 4px rgba(255, 101, 77, .12); }
.faq-search-status { margin: 0 0 12px 4px; color: var(--muted); font-size: 13px; font-weight: 700; }

/* Jump-to-topic: set layout instantly so the smooth scroll lands on the pinned header */
.faq-page-cats.is-instant .faq-cat-body { transition: none; }

/* Search mode: matched questions listed (collapsed) under static-open topics */
.faq-page-cats.is-searching .faq-cat-body { grid-template-rows: 1fr; transition: none; }
.faq-page-cats.is-searching .faq-cat { background: transparent; }
.faq-page-cats.is-searching .faq-cat-toggle { visibility: hidden; }
.faq-page-cats.is-searching .faq-cat-head { cursor: default; }
@keyframes faqFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.faq-page-cats.is-searching .faq-item:not([hidden]) { animation: faqFade .18s ease; }

/* First steps after registration */
.faq-firststeps { padding: 8px 0 84px; background: linear-gradient(180deg, #fff 0, #faf7f4 100%); }
.faq-firststeps .fs-head { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.faq-firststeps h2 { margin: 8px 0 12px; color: var(--navy); font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; letter-spacing: -.03em; line-height: 1.08; }
.faq-firststeps .fs-head p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.fs-list { max-width: 760px; margin: 0 auto; padding: 0; list-style: none; display: grid; gap: 12px; counter-reset: none; }
.fs-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; color: var(--coral); font-size: 15px; font-weight: 800; text-decoration: none; transition: gap .22s ease; }
.fs-cta:hover { gap: 11px; }
.fs-step { display: flex; align-items: center; gap: 18px; padding: 17px 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(15, 27, 51, .04); cursor: pointer; text-decoration: none; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.fs-step:hover { border-color: rgba(255, 101, 77, .35); box-shadow: 0 16px 34px rgba(15, 27, 51, .08); transform: translateY(-2px); }
.fs-step:focus-visible { outline: 0; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 101, 77, .25); }
.fs-num { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--coral-soft); color: var(--coral); font-size: 16px; font-weight: 900; transition: background .22s ease, color .22s ease; }
.fs-step:hover .fs-num { background: var(--coral); color: #fff; }
.fs-body { flex: 1 1 auto; min-width: 0; }
.fs-body h3 { margin: 0 0 3px; color: var(--navy); font-size: 16px; font-weight: 850; letter-spacing: -.01em; }
.fs-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.fs-go { flex: 0 0 auto; color: #c2c8d2; font-size: 19px; transition: color .2s ease, transform .2s ease; }
.fs-step:hover .fs-go { color: var(--coral); transform: translateX(3px); }
.faq-cat-head { display: flex; align-items: center; justify-content: flex-start; gap: 13px; width: 100%; min-height: 62px; padding: 15px 22px; border: 0; background: transparent; color: var(--navy); cursor: pointer; font-family: inherit; text-align: left; }
.faq-cat-head:hover .faq-cat-title { color: var(--coral); }
.faq-cat-head:focus-visible { outline: 0; border-radius: 18px; box-shadow: inset 0 0 0 3px rgba(255, 101, 77, .3); }
.faq-cat-title { flex: 0 1 auto; min-width: 0; font-size: 16px; font-weight: 850; letter-spacing: -.01em; line-height: 1.3; transition: color .2s ease; }
.faq-cat-meta { display: contents; }
.faq-cat-count { flex: 0 0 auto; color: #a0a8b6; font-size: 11.5px; font-weight: 800; white-space: nowrap; }
.faq-cat-toggle { margin-left: auto; }
.faq-cat-toggle { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid #e4e2df; border-radius: 11px; background: #faf9f7; box-shadow: 0 6px 13px rgba(15, 27, 51, .05); transition: background .34s ease, border-color .34s ease, transform .42s var(--ease); }
.faq-cat-toggle::before, .faq-cat-toggle::after { position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; border-radius: 2px; background: var(--coral); content: ""; transform: translate(-50%, -50%); transition: background .3s ease, transform .42s var(--ease); }
.faq-cat-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-cat.is-open .faq-cat-toggle { border-color: var(--coral); background: var(--coral); transform: rotate(180deg); }
.faq-cat.is-open .faq-cat-toggle::before, .faq-cat.is-open .faq-cat-toggle::after { background: #fff; }
.faq-cat.is-open .faq-cat-toggle::after { transform: translate(-50%, -50%) rotate(0); }

.faq-cat-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s cubic-bezier(.4, 0, .2, 1); }
.faq-cat.is-open .faq-cat-body { grid-template-rows: 1fr; }
.faq-cat-inner { min-height: 0; overflow: hidden; }
.faq-cat .faq-list { counter-reset: faq-item; display: grid; gap: 8px; max-width: none; padding: 2px 16px 20px; }

@media (max-width: 940px) {
  .faq-layout { grid-template-columns: 1fr; gap: 0; max-width: 720px; }
  .faq-index { display: none; }
}

@media (max-width: 720px) {
  .faq-hero { padding: 0 0 24px; }
  .faq-back { margin-top: 6px; margin-bottom: 12px; }
  .faq-hero-lead { font-size: 16px; }
  .faq-page { padding: 24px 0 72px; }
  .faq-page-cats { border-radius: 18px; }
  .faq-cat-head { min-height: 58px; padding: 15px 16px; gap: 12px; }
  .faq-cat-title { font-size: 15px; }
  .faq-cat-count { font-size: 11px; }
  .faq-cat-meta { gap: 11px; }
  .faq-cat .faq-list { padding: 2px 9px 15px; }
  .faq-search-input { font-size: 16px; }
  .faq-firststeps { padding: 4px 0 60px; }
  .fs-step { padding: 15px 16px; gap: 14px; }
  .fs-num { width: 34px; height: 34px; font-size: 15px; }
}

/* ===== AUTH PAGES (login / register) ===== */
.auth-wrap { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 100vh; }

.auth-form-side { display: flex; flex-direction: column; padding: 34px clamp(24px, 5vw, 70px) 40px; }
.auth-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.auth-topbar .logo { color: var(--navy); font-size: 24px; }
.auth-top-link { color: var(--muted); font-size: 13px; font-weight: 700; }
.auth-top-link a { color: var(--coral); font-weight: 850; text-decoration: none; }
.auth-top-link a:hover { text-decoration: underline; }

.auth-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13.5px; font-weight: 700; white-space: nowrap; text-decoration: none; transition: color .2s ease; }
.auth-back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.auth-back:hover { color: var(--coral); }

.auth-card { width: 100%; max-width: 428px; margin: auto; padding: 44px 0; }
.auth-eyebrow { color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.auth-card h1 { margin: 12px 0 10px; color: var(--navy); font-size: clamp(30px, 4vw, 36px); font-weight: 900; letter-spacing: -.03em; line-height: 1.08; }
.auth-sub { margin: 0 0 30px; color: var(--muted); font-size: 15px; line-height: 1.6; }

.auth-field { margin-bottom: 17px; }
.auth-field > label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 13px; font-weight: 800; }
.auth-input-wrap { position: relative; }
.auth-input { width: 100%; height: 54px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 13px; background: #fff; color: var(--navy); font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.auth-input::placeholder { color: #9aa2b1; }
.auth-input:focus { outline: 0; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 101, 77, .13); }
.auth-input:focus-visible { outline: 0; }
.auth-pw-wrap .auth-input { padding-right: 48px; }
.auth-pw-toggle { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 9px; background: none; color: var(--muted); cursor: pointer; }
.auth-pw-toggle:hover { color: var(--navy); background: #f4f2f0; }
.auth-pw-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 4px 0 24px; }
.auth-check { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; cursor: pointer; user-select: none; }
.auth-check input { width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--coral); cursor: pointer; }
.auth-check.terms { display: block; position: relative; padding-left: 28px; margin-bottom: 22px; line-height: 1.6; }
.auth-check.terms input { position: absolute; left: 0; top: 3px; margin: 0; }
.auth-check.terms a { white-space: nowrap; }
.auth-check a { color: var(--coral); font-weight: 800; text-decoration: none; }
.auth-check a:hover { text-decoration: underline; }
.auth-forgot { color: var(--coral); font-size: 13.5px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.auth-forgot:hover { text-decoration: underline; }

.auth-submit { width: 100%; }

.auth-alt { margin-top: 22px; color: var(--muted); font-size: 14.5px; text-align: center; }
.auth-alt a { color: var(--coral); font-weight: 850; text-decoration: none; }
.auth-alt a:hover { text-decoration: underline; }
.auth-legal-note { margin-top: 26px; color: #98a1b1; font-size: 11.5px; line-height: 1.55; text-align: center; }
.auth-legal-note a { color: var(--muted); font-weight: 700; }

/* Brand side */
.auth-brand-side { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 5vw, 76px); background: radial-gradient(900px 460px at 78% -6%, rgba(255, 101, 77, .28), transparent 60%), radial-gradient(760px 520px at 12% 108%, rgba(43, 83, 164, .34), transparent 62%), var(--navy); color: #fff; }
.auth-brand-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.auth-brand-orb-1 { top: -90px; right: -70px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255, 101, 77, .3), transparent 65%); }
.auth-brand-inner { position: relative; z-index: 2; max-width: 450px; }
.auth-brand-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; padding: 7px 14px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(255, 255, 255, .06); color: #fff; font-size: 12px; font-weight: 750; }
.auth-brand-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34, 160, 107, .22); }
.auth-brand-inner h2 { font-size: clamp(30px, 3.3vw, 43px); font-weight: 900; letter-spacing: -.03em; line-height: 1.07; }
.auth-brand-inner h2 em { font-style: normal; color: var(--coral); }
.auth-brand-inner > p { margin: 18px 0 32px; max-width: 400px; color: #aeb8c8; font-size: 15.5px; line-height: 1.62; }
.auth-points { display: grid; gap: 15px; }
.auth-point { display: flex; align-items: flex-start; gap: 13px; }
.auth-point-ic { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; background: rgba(255, 101, 77, .16); color: #ff9d8d; }
.auth-point-ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.auth-point div { padding-top: 1px; }
.auth-point strong { display: block; color: #fff; font-size: 14.5px; font-weight: 800; }
.auth-point span { color: #9aa6ba; font-size: 13px; line-height: 1.5; }
.auth-brand-reg { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: #7d8aa0; font-size: 11px; line-height: 1.55; }
.auth-brand-reg strong { color: #c3ccda; font-weight: 800; letter-spacing: .03em; }

@media (max-width: 900px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-brand-side { display: none; }
  .auth-form-side { min-height: 100vh; padding-bottom: 30px; }
  .auth-card { padding: 30px 0; }
}
@media (max-width: 460px) {
  .auth-card h1 { font-size: 28px; }
  .auth-row { flex-wrap: wrap; gap: 10px; }
}

/* ===== LEGAL PAGES (terms / privacy / aml-kyc) ===== */
.legal-hero { position: relative; overflow: hidden; padding: 0 0 28px; background: linear-gradient(135deg, #fff 0%, #fff 48%, #fff6f2 100%); }
.legal-hero .container { position: relative; z-index: 2; }
.legal-hero h1 { margin: 12px 0 8px; color: var(--navy); font-size: clamp(34px, 5vw, 52px); font-weight: 900; letter-spacing: -.04em; line-height: 1.04; }
.legal-updated { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.legal-updated::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.legal-page { padding: 8px 0 78px; background: var(--paper); }
.legal-content { max-width: 760px; }
.legal-content > p:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 16px; color: #46506a; font-size: 15.5px; line-height: 1.72; }
.legal-content h2 { margin: 40px 0 14px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--navy); font-size: 23px; font-weight: 900; letter-spacing: -.02em; line-height: 1.2; }
.legal-content h2:first-of-type { margin-top: 30px; }
.legal-content h3 { margin: 26px 0 10px; color: var(--navy); font-size: 16.5px; font-weight: 850; }
.legal-content ul, .legal-content ol { margin: 0 0 16px; padding-left: 22px; color: #46506a; font-size: 15.5px; line-height: 1.7; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong, .legal-content b { color: var(--ink); font-weight: 800; }
.legal-content a { color: var(--coral); font-weight: 700; text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content hr { margin: 34px 0; border: 0; border-top: 1px solid var(--line); }

@media (max-width: 720px) {
  .legal-hero { padding: 0 0 22px; }
  .legal-page { padding: 6px 0 56px; }
  .legal-content p, .legal-content ul, .legal-content ol { font-size: 15px; }
  .legal-content h2 { margin-top: 32px; font-size: 21px; }
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: stretch; padding: 8px 0 0; }
.contact-form-card { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { margin: 0 0 7px; color: var(--navy); font-size: 22px; font-weight: 900; letter-spacing: -.02em; }
.contact-form-card > p { margin: 0 0 24px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.contact-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.auth-input { height: auto; min-height: 138px; padding: 14px 16px; line-height: 1.55; resize: vertical; }
.contact-submit { width: 100%; margin-top: 4px; }
.contact-form-note { margin: 16px 0 0; color: #98a1b1; font-size: 12px; line-height: 1.55; text-align: center; }
.contact-success { display: none; margin-top: 16px; padding: 13px 16px; border: 1px solid rgba(34, 160, 107, .3); border-radius: 12px; background: rgba(34, 160, 107, .08); color: #1c7a52; font-size: 13.5px; font-weight: 700; }
.contact-success.is-visible { display: block; }

.contact-aside { display: flex; flex-direction: column; justify-content: flex-start; gap: 16px; }
.contact-method { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.contact-method-ic { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 15px; border-radius: 12px; background: rgba(255, 101, 77, .13); color: var(--coral); }
.contact-method-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-method h3 { margin: 0 0 5px; color: var(--navy); font-size: 16px; font-weight: 850; }
.contact-method p { margin: 0 0 15px; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.contact-tg-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 12px; background: linear-gradient(135deg, #2aabee, #229ed9); color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 26px rgba(34, 158, 217, .32); transition: transform .2s ease, box-shadow .2s ease; }
.contact-tg-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(34, 158, 217, .42); }
.contact-tg-btn svg { width: 20px; height: 20px; }
.contact-hours { display: flex; gap: 10px; align-items: flex-start; padding: 18px 20px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.contact-hours strong { display: block; color: var(--navy); font-size: 13.5px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 480px) {
  .contact-row2 { grid-template-columns: 1fr; }
}

.contact-lead { max-width: 560px; margin: 12px 0 12px; color: var(--muted); font-size: 15.5px; line-height: 1.62; }
.contact-reg-details { display: grid; gap: 3px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.contact-reg-details strong { color: var(--navy); font-size: 13px; font-weight: 850; letter-spacing: .02em; }

/* Contact hero — centered, decorative, quick-contact chips */
.contact-hero { padding-bottom: 38px; }
.contact-hero-orb { position: absolute; border-radius: 50%; filter: blur(72px); pointer-events: none; z-index: 0; }
.contact-hero-orb-1 { top: -130px; right: -70px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255, 101, 77, .18), transparent 65%); }
.contact-hero-orb-2 { bottom: -170px; left: -130px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(43, 83, 164, .12), transparent 65%); }
.contact-hero .container { position: relative; z-index: 2; }
.contact-hero-inner { max-width: 660px; margin: 8px auto 0; text-align: center; }
.contact-hero-inner .contact-lead { margin: 12px auto 0; }
.contact-hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.contact-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--navy); font-size: 13.5px; font-weight: 800; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.contact-chip:hover { transform: translateY(-1px); border-color: #d9d3cd; box-shadow: var(--shadow-sm); }
.contact-chip svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-chip.tg { color: #1f8fc4; }
.contact-chip.tg svg { fill: currentColor; stroke: none; }
.contact-chip.is-static { color: var(--muted); font-weight: 700; cursor: default; }
.contact-chip.is-static:hover { transform: none; border-color: var(--line); box-shadow: none; }
.contact-chip .chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34, 160, 107, .16); }

/* ===== CUSTOM SELECT (smooth expanding dropdown) ===== */
.c-select { position: relative; }
.c-select-trigger { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; cursor: pointer; font: inherit; }
.c-select-value { overflow: hidden; color: var(--navy); font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.c-select-value.is-placeholder { color: #9aa2b1; }
.c-select-chevron { width: 18px; height: 18px; flex: 0 0 auto; color: var(--muted); transition: transform .25s ease; }
.c-select.is-open .c-select-chevron { transform: rotate(180deg); }
.c-select.is-open .c-select-trigger { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 101, 77, .13); }
.c-select-panel { position: absolute; top: calc(100% + 8px); right: 0; left: 0; z-index: 40; margin: 0; padding: 6px; list-style: none; overflow: hidden; max-height: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 20px 46px rgba(15, 27, 51, .15); opacity: 0; transform: translateY(-8px); transform-origin: top center; pointer-events: none; transition: opacity .22s ease, transform .26s cubic-bezier(.4, 0, .2, 1), max-height .3s cubic-bezier(.4, 0, .2, 1); }
.c-select.is-open .c-select-panel { max-height: 320px; opacity: 1; transform: translateY(0); pointer-events: auto; }
.c-select-option { padding: 11px 13px; border-radius: 9px; color: var(--navy); font-size: 14.5px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.c-select-option:hover, .c-select-option.is-active { background: var(--coral-soft); }
.c-select-option.is-selected { color: var(--coral); font-weight: 800; }
.c-select.is-invalid .c-select-trigger { border-color: #e5484d; box-shadow: 0 0 0 4px rgba(229, 72, 77, .12); }


/* ── партнёрская полоса ── */
.partners-strip{
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.partners-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.partners-text{ max-width: 58ch; }
.partners-eyebrow{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
  font-weight: 600;
}
.partners-strip h2{
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
  text-wrap: balance;
}
.partners-strip p{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.6;
}
.partners-btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 15px;
  background: var(--coral);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255,101,77,.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.partners-btn:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,101,77,.36); }
.partners-btn:focus-visible{ outline: 2px solid #fff; outline-offset: 3px; }
@media (max-width: 720px){
  .partners-strip{ padding: 48px 0; }
  .partners-btn{ width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce){
  .partners-btn{ transition: none; }
  .partners-btn:hover{ transform: none; }
}
