:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #fff3ee;
  --text: #111318;
  --muted: #737984;
  --faint: #a0a6b1;
  --line: rgba(17, 19, 24, 0.09);
  --orange: #ff6933;
  --orange-soft: #ff9a6c;
  --green: #17b26a;
  --shadow: 0 24px 80px rgba(25, 31, 45, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 5vw, 76px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(1.4);
}

.brand img { width: 220px; height: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 560;
}

.nav-links a[aria-current="page"] { color: var(--text); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 720;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 105, 51, 0.25);
}

.btn-quiet {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.page-hero {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 76px) clamp(44px, 6vw, 76px);
  background:
    radial-gradient(circle at 78% 24%, rgba(255,105,51,0.16), transparent 32%),
    radial-gradient(circle at 10% 88%, rgba(18,103,255,0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f7f9);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 820;
}

.page-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 640;
}

.map-panel {
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f8f9fc);
  box-shadow: var(--shadow);
}

.map-window {
  position: relative;
  min-height: 316px;
  border: 1px solid rgba(17,19,24,0.08);
  border-radius: 26px;
  background:
    linear-gradient(rgba(17,19,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,0.03) 1px, transparent 1px),
    #f8fafc;
  background-size: 40px 40px, 40px 40px, auto;
  overflow: hidden;
}

.map-window img {
  position: absolute;
  inset: -10px -24px;
  width: calc(100% + 48px);
  height: calc(100% + 20px);
  object-fit: contain;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

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

.app-row, .faq-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.app-title strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.app-title span, .app-title p, .faq-item p {
  color: var(--muted);
  font-size: 15.5px;
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.downloads a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 720;
}

.downloads img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.fact strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.country {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 15px;
  font-weight: 720;
}

.country span {
  color: var(--muted);
  font-size: 13.5px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  border: 1px solid rgba(205, 139, 75, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff8f1 0%, #f7eadc 100%);
}

.price-card.highlight {
  color: #fff;
  background: #111318;
  box-shadow: var(--shadow);
}

.plan-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.price-card.highlight .plan-label { color: rgba(255,255,255,0.58); }

.price-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.price {
  margin-bottom: 18px;
  font-size: 44px;
  font-weight: 820;
  letter-spacing: -0.05em;
}

.plan-note {
  min-height: 54px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.price-card.highlight .plan-note { color: rgba(255,255,255,0.68); }

.price-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li {
  font-size: 14.5px;
  line-height: 1.55;
}

.price-card.highlight ul { color: rgba(255,255,255,0.72); }

.price-card.highlight li {
  font-size: 13.6px;
  line-height: 1.38;
}

.price-card.highlight h3 { margin-bottom: 8px; }

.price-card.highlight .price { margin-bottom: 14px; }

.price-card.highlight .plan-note { margin-bottom: 12px; }

.price-card .btn {
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.price-card.highlight .btn {
  margin-top: 22px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 780;
}

.payments {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 18px;
  flex-shrink: 0;
}

.pay-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(149, 102, 54, 0.1);
}

.pay-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.price-card:not(.highlight) .pay-icon img {
  max-width: 92%;
  max-height: 34px;
  width: auto;
  height: auto;
  filter: none;
  opacity: 1;
}

.price-card:not(.highlight) .pay-icon img[alt="VISA"],
.price-card:not(.highlight) .pay-icon img[alt="Mastercard"] {
  max-width: 126%;
  max-height: 37px;
}

.price-card.highlight .pay-icon {
  border: 1px solid rgba(255,255,255,0.18);
  background: #fff;
}

.price-card.highlight .pay-icon img {
  max-width: 98%;
  max-height: 34px;
  width: auto;
  height: auto;
  display: block;
}

.price-card.highlight .pay-icon img[alt="VISA"],
.price-card.highlight .pay-icon img[alt="Mastercard"] {
  max-width: 130%;
  max-height: 37px;
}

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

.faq-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.footer {
  padding: 32px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer img {
  width: 126px;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .page-hero-inner, .coverage-layout { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .card-grid, .pricing { grid-template-columns: 1fr; }
  .app-row { grid-template-columns: 1fr; }
  .downloads { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .brand img { width: 176px; }
  .nav-actions .btn-quiet { display: none; }
  .page-hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .facts, .country-grid { grid-template-columns: 1fr; }
}
