* {
  box-sizing: border-box;
}

:root {
  --bg: #03050a;
  --panel: rgba(6, 9, 16, 0.82);
  --line: rgba(230, 240, 255, 0.14);
  --line-soft: rgba(230, 240, 255, 0.08);
  --text: #f3f6ff;
  --muted: #9ba5b8;
  --blue: #8aa6ff;
  --gold: #f4c878;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(116, 149, 255, 0.12), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(145, 231, 255, 0.08), transparent 24%),
    #03050a;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: 100%;
  overflow: hidden;
}

.hero {
  padding: 24px;
}

.hero-stage {
  width: min(1672px, 100%);
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1672 / 941;
  border: 1px solid var(--line);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.72);
  background: #05070c;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hotspot:hover {
  background: rgba(138, 166, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(138, 166, 255, 0.22);
}

/* Coordinates are percentages of the reference image */
.hs-logo { left: 5.5%; top: 4.7%; width: 14.5%; height: 5.6%; }

.hs-benefits { left: 29.2%; top: 6.0%; width: 9.6%; height: 4.0%; }
.hs-locations { left: 40.1%; top: 6.0%; width: 7.6%; height: 4.0%; }
.hs-tariffs-top { left: 48.7%; top: 6.0%; width: 6.4%; height: 4.0%; }
.hs-faq { left: 55.5%; top: 6.0%; width: 4.0%; height: 4.0%; }
.hs-support { left: 60.6%; top: 6.0%; width: 8.7%; height: 4.0%; }

.hs-get-key { left: 8.1%; top: 68.1%; width: 14.4%; height: 7.2%; }
.hs-tariffs { left: 24.1%; top: 68.1%; width: 10.5%; height: 7.2%; }
.hs-locations-btn { left: 35.7%; top: 68.1%; width: 10.7%; height: 7.2%; }
.hs-telegram { left: 47.6%; top: 68.1%; width: 11.5%; height: 7.2%; }
.hs-scroll { left: 47.7%; top: 91.3%; width: 5.8%; height: 6.8%; }

.seo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  overflow: hidden;
}

.content-section {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto 28px;
  padding: 44px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(7, 10, 17, 0.9), rgba(4, 7, 13, 0.82));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.section-head {
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 800;
}

h2 {
  margin: 0 0 14px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

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

.tariff-card,
.feature-list div,
.location-panel div,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  padding: 22px;
}

.tariff-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tariff-card.hit {
  border-color: rgba(244, 200, 120, 0.55);
  box-shadow: 0 0 44px rgba(244, 200, 120, 0.06);
}

.label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hit .label {
  color: var(--gold);
}

.tariff-card h3 {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 44px;
  color: var(--text);
}

.tariff-card a,
.footer a {
  margin-top: auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tariff-card a:hover,
.footer a:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 166, 255, 0.45);
}

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

.feature-list,
.location-panel,
.faq-list {
  display: grid;
  gap: 14px;
}

.location-panel strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.location-panel span {
  color: var(--muted);
}

details summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.05em;
}

details p {
  margin-bottom: 0;
}

.footer {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer a {
  margin: 0;
  padding: 0 18px;
}

@media (max-width: 1100px) {
  .hero {
    padding: 10px;
  }

  .content-section {
    width: min(100% - 20px, 1360px);
    padding: 26px;
  }

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

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-stage {
    width: 1000px;
    max-width: none;
    transform: translateX(calc((100vw - 1000px) / 2));
    transform-origin: top center;
  }

  .hero {
    overflow-x: hidden;
    padding: 0;
  }

  .tariff-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 22px;
  }

  .footer {
    width: min(100% - 20px, 1360px);
    flex-direction: column;
    align-items: flex-start;
  }
}
