:root {
  --bg: #07111f;
  --bg-2: #07111f;
  --blue: #1677ff;
  --blue-deep: #1677ff;
  --white: #ffffff;
  --gray: #f3f6fb;
  --card: #ffffff;
  --ink: #07111f;
  --muted: #5b6b80;
  --line: rgba(7, 17, 31, 0.1);
  --cyan: #22d3ee;
  --lime: #a3e635;
  --danger: #e11d48;
  --ok: #16a34a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
  --header: 72px;
  --max: 1160px;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--gray);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

::selection {
  background: var(--blue);
  color: #fff;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wrap {
    width: min(var(--max), calc(100% - 48px));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(16px);
  color: #fff;
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex: 1;
}

.brand img,
.brand svg {
  width: 36px;
  height: 36px;
}

.brand span b {
  color: var(--cyan);
  font-weight: 800;
}

.nav-desktop {
  display: none;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: #fff;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
}

.lang a {
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.lang a.is-active {
  background: var(--blue);
  color: #fff;
}

.help-link {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}

.btn-sm {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header) 0 0;
  background: var(--bg);
  padding: 20px;
  z-index: 39;
  flex-direction: column;
  gap: 8px;
}

body.nav-open .nav-mobile {
  display: flex;
}

.nav-mobile a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  background: var(--bg);
  color: #fff;
  overflow: hidden;
  padding: 36px 0 48px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
.display {
  margin: 0;
  font-size: clamp(32px, 8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  max-width: 34em;
}

.page-hero .lead,
.section-head .lead {
  color: var(--muted);
}

.hero-invite {
  margin: 16px 0 0;
  color: var(--lime);
  font-size: 18px;
  font-weight: 700;
  max-width: 22em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  background: var(--bg);
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.28);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}


.dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34, 211, 238, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.section {
  padding: 48px 0;
}

.section-dark {
  background: var(--bg);
  color: #fff;
}

.section-dark .lead,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.7);
}

.section-white {
  background: #fff;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.search-row {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.search {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: #fff;
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.chip.is-active,
.chip:hover {
  background: var(--bg);
  color: #fff;
  border-color: var(--bg);
}

.cards {
  display: grid;
  gap: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.04);
}

.country-card,
.method-card {
  display: grid;
  gap: 10px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.featured-geo {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 22px 20px 22px 28px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(22, 119, 255, 0.38), transparent 36%),
    radial-gradient(circle at 12% 100%, rgba(34, 211, 238, 0.16), transparent 40%),
    var(--bg);
  border: 1px solid rgba(22, 119, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(22, 119, 255, 0.12),
    0 22px 50px rgba(7, 17, 31, 0.28);
  transition: transform 0.2s var(--ease);
}

.featured-geo__glow {
  position: absolute;
  inset: auto -48px -70px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(163, 230, 53, 0.16);
  filter: blur(22px);
  pointer-events: none;
}

.featured-geo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue) 50%, var(--lime));
}

.featured-geo__flag {
  width: 96px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-geo__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-geo__body h3 {
  margin: 8px 0 4px;
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
}

.featured-geo__body .muted {
  color: rgba(255, 255, 255, 0.72);
}

.featured-geo .mini {
  background: rgba(22, 119, 255, 0.22);
  color: var(--white);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.featured-geo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.featured-geo:hover {
  transform: translateY(-2px);
}

.featured-geo:hover .featured-geo__cta {
  background: var(--lime);
  color: var(--bg);
}

.geo-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-fit {
  margin: 4px 0 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.geo-block {
  display: grid;
  gap: 16px;
}

#geoListBtn {
  justify-self: start;
}

.geo-list {
  display: none;
  gap: 16px;
}

.geo-block.is-all-open .geo-list {
  display: grid;
}

#geoList[hidden] {
  display: none !important;
}

.geo-list #countryCards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.geo-marquees {
  display: grid;
  gap: 10px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.geo-track {
  overflow: hidden;
}

.geo-track-inner {
  display: flex;
  width: max-content;
  gap: 10px;
  will-change: transform;
}

.geo-track-right .geo-track-inner {
  animation: geo-marquee-right 42s linear infinite;
}

.geo-track-left .geo-track-inner {
  animation: geo-marquee-left 46s linear infinite;
}

.geo-track:hover .geo-track-inner {
  animation-play-state: paused;
}

.geo-mini {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.geo-mini .flag {
  width: 28px;
  height: 20px;
}

@keyframes geo-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes geo-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .geo-track-right .geo-track-inner,
  .geo-track-left .geo-track-inner {
    animation: none;
    transform: none;
  }

  .geo-track {
    overflow-x: auto;
  }
}

.country-card:hover,
.method-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.flag {
  width: 44px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--line);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mini {
  background: var(--gray);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.arrow {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
}

.section-white .step {
  background: var(--gray);
  border-color: var(--line);
}

.num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.why-grid,
.faq-cats {
  display: grid;
  gap: 12px;
}

.why-card h3 {
  margin: 0 0 6px;
}

.why-card {
  border-top: 3px solid var(--blue);
}

.why-card:nth-child(2) {
  border-top-color: var(--cyan);
}

.why-card:nth-child(3) {
  border-top-color: var(--lime);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open p {
  display: block;
}

.cta-band {
  background: var(--bg);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: -0.04em;
}

.page-hero {
  padding: 36px 0 10px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
}

.stat b {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card {
  display: grid;
  gap: 14px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-msg {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.form-msg.ok {
  display: block;
  background: #ecfdf3;
  color: var(--ok);
}

.form-msg.err {
  display: block;
  background: #fff1f2;
  color: var(--danger);
}

.legal p {
  color: var(--muted);
}

.site-footer {
  background: var(--bg);
  color: #fff;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
}

.footer-grid h4 {
  margin: 0;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 80px;
  z-index: 50;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: none;
}

.cookie.is-on {
  display: grid;
  gap: 10px;
}

.float-help {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 45;
}

.float-help .panel {
  display: none;
  width: min(280px, calc(100vw - 28px));
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}

.float-help.is-open .panel {
  display: grid;
  gap: 10px;
}

.help-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.4);
  margin-left: auto;
  display: grid;
  place-items: center;
}

.empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop,
  .help-link {
    display: flex;
  }

  .brand {
    flex: 0 0 auto;
  }

  .header-inner {
    gap: 22px;
  }

  .hero,
  .page-hero,
  .section,
  .cta-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .featured-geo {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 28px 28px 28px 36px;
    min-height: 188px;
  }

  .featured-geo__cta {
    min-width: 148px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-card.is-featured {
    grid-column: auto;
  }

  #geoFeatured .country-card.is-featured {
    grid-column: auto;
  }

  .steps,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .btn-block-md {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .cookie {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: 380px;
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .cards.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 14px;
  }

  .header-end .btn-sm {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .lang a {
    padding: 6px 8px;
  }
}
