:root {
  --bg: #000000;
  --panel: rgba(20, 12, 9, 0.78);
  --panel-2: rgba(26, 17, 13, 0.72);
  --panel-3: rgba(18, 10, 8, 0.64);
  --line: rgba(255, 138, 0, 0.12);
  --line-2: rgba(255, 138, 0, 0.2);
  --text: #ffffff;
  --muted: rgba(255, 244, 230, 0.72);
  --muted-2: rgba(255, 244, 230, 0.48);
  --orange: #ff8a00;
  --orange-2: #ff9f36;
  --orange-3: #ffb14b;
  --orange-4: #ffd07d;
  --light: #fff1d1;
  --green: #34d399;
  --shadow: 0 0 0 1px rgba(255, 138, 0, 0.04), 0 10px 60px rgba(255, 138, 0, 0.08);
  --shadow-hover: 0 0 0 1px rgba(255, 190, 120, 0.08), 0 22px 70px rgba(255, 138, 0, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
  --container-narrow: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -30;
  background: #000;
}

.map-layer {
  position: fixed;
  inset: 0;
  z-index: -20;
}

.world-map-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-radials {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,151,35,0.16), transparent 22%),
    radial-gradient(circle at top, rgba(255,140,0,0.08), transparent 36%),
    radial-gradient(circle at bottom, rgba(255,120,0,0.05), transparent 44%);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,145,0,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,145,0,0.18) 1px, transparent 1px);
  background-size: 54px 54px;
}

.world-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.08);
}

.map-vignette-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.5));
}

.map-vignette-center {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 38%, rgba(0,0,0,0.22) 100%);
}

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

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

.section-border {
  border-bottom: 1px solid rgba(255, 138, 0, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 138, 0, 0.1);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,132,0,0.42));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: rgba(255, 244, 230, 0.85);
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  transition: 0.3s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: #ffbf70;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

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

.lang-switch {
  display: flex;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  background: rgba(21, 13, 9, 0.72);
  backdrop-filter: blur(20px);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 244, 230, 0.65);
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.lang-btn.active {
  color: white;
  background: linear-gradient(180deg, #ff9b26, #ff8a00);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.28);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: 0.5s ease;
  font-weight: 700;
}

.primary-btn {
  color: white;
  background: linear-gradient(to bottom, #ffb14b, #ff8a00);
  box-shadow: 0 0 24px rgba(255, 140, 0, 0.32);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 0 0 36px rgba(255, 140, 0, 0.52);
}

.secondary-btn {
  border: 1px solid rgba(255, 174, 79, 0.2);
  background: rgba(22, 13, 9, 0.7);
  color: rgba(255, 244, 230, 0.9);
  backdrop-filter: blur(20px);
}

.secondary-btn:hover {
  border-color: rgba(255, 200, 135, 0.35);
  background: rgba(36, 20, 13, 0.86);
  color: white;
  box-shadow: 0 0 24px rgba(255, 138, 0, 0.14);
}

.small-btn {
  padding: 12px 20px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff2de;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 138, 0, 0.1);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px);
  padding: 16px;
}

.mobile-menu.open {
  display: block;
}

.mobile-lang {
  margin-bottom: 12px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(255, 244, 230, 0.85);
  margin-bottom: 16px;
}

.mobile-bot-link {
  width: 100%;
  padding: 14px 20px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,145,0,0.16), transparent 62%);
  filter: blur(56px);
}

.hero-title {
  margin: 0;
  font-size: clamp(54px, 10vw, 104px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(to right, #ff9b26, #ffb14b, #fff1d1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255,148,0,0.3));
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: clamp(22px, 3vw, 32px);
  color: rgba(255,255,255,0.92);
}

.hero-description {
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 244, 230, 0.7);
}

.hero-pills {
  margin: 32px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-pill {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  background: rgba(18, 10, 8, 0.64);
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 24px rgba(255, 128, 0, 0.06);
  transition: 0.5s ease;
}

.hero-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 135, 0.35);
  background: rgba(36, 20, 13, 0.88);
  box-shadow: 0 0 38px rgba(255, 138, 0, 0.16);
  filter: brightness(1.08);
}

.hero-pill-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-pill span {
  font-size: 14px;
  color: rgba(255,244,230,0.88);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 32px;
  font-size: 16px;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  background: linear-gradient(to right, #ffb14b, #ffd07d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  margin: 12px 0 0;
  color: rgba(255,244,230,0.7);
}

.premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  background: linear-gradient(180deg, rgba(21,13,9,0.9), rgba(12,8,6,0.72));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  transition: 0.5s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 135, 0.3);
  box-shadow: var(--shadow-hover);
}

.hover-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-card:hover .hover-glow {
  opacity: 1;
}

.premium-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,228,186,0.55), transparent);
  opacity: 0.5;
}

.premium-inner {
  position: relative;
  z-index: 1;
  padding: 16px;
}

.pricing-top-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  background: linear-gradient(180deg, rgba(255,145,0,0.07), rgba(255,145,0,0.025));
  padding: 20px;
}

.pricing-card-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.pricing-card-text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,244,230,0.64);
}

.pricing-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,244,230,0.8);
  font-size: 14px;
}

.feature-item i {
  color: var(--green);
  width: 16px;
  height: 16px;
}

.plans-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plan-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  background: rgba(26, 17, 13, 0.72);
  color: rgba(255,244,230,0.92);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease;
}

.plan-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 135, 0.35);
  background: rgba(36, 21, 15, 0.84);
  box-shadow: 0 0 28px rgba(255, 138, 0, 0.12);
  filter: brightness(1.08);
}

.plan-btn.active {
  border-color: rgba(255, 238, 218, 0.9);
  background: #ff8a00;
  color: white;
  box-shadow: 0 0 0 2px rgba(255,220,180,0.35), 0 0 32px rgba(255,138,0,0.28);
}

.plan-badge {
  position: absolute;
  right: 12px;
  top: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 135, 0.2);
  background: rgba(255, 138, 0, 0.15);
  padding: 3px 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe2bc;
}

.plan-title {
  font-size: 14px;
  font-weight: 700;
}

.plan-price {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 900;
}

.plan-note {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,244,230,0.46);
}

.plan-btn.active .plan-note {
  color: rgba(255,244,230,0.86);
}

.pricing-buy-btn {
  margin-top: 20px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
}

.about-grid,
.metrics-grid,
.support-grid {
  display: grid;
  gap: 16px;
}

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

.metrics-grid {
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-grid {
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-card.wide {
  grid-column: span 2;
}

.about-card,
.metric-card,
.support-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 138, 0, 0.18);
  background: rgba(20, 12, 9, 0.78);
  backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(255,138,0,0.04), 0 0 28px rgba(255,138,0,0.08);
  transition: 0.5s ease;
}

.about-card:hover,
.metric-card:hover,
.support-card:hover,
.faq-item:hover {
  border-color: rgba(255, 200, 135, 0.28);
  box-shadow: 0 0 0 1px rgba(255,188,112,0.06), 0 0 38px rgba(255,138,0,0.14);
}

.about-card {
  padding: 20px;
}

.about-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-box {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ffb14b, #ff8a00);
  box-shadow: 0 0 18px rgba(255,138,0,0.28);
  transition: 0.5s ease;
}

.about-card:hover .icon-box,
.support-card:hover .support-main-icon {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(255,138,0,0.44);
}

.icon-box i,
.support-main-icon i {
  width: 20px;
  height: 20px;
}

.about-card h3,
.support-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.about-card p,
.support-card p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,244,230,0.66);
}

.metric-card {
  padding: 24px 20px;
  text-align: center;
}

.metric-value {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(to right, #ffb14b, #ffd07d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-label {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,244,230,0.62);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
}

.faq-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 120, 0.2);
  background: rgba(255, 138, 0, 0.15);
  color: #ffbf70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-mini-icon i {
  width: 14px;
  height: 14px;
}

.faq-question {
  font-weight: 600;
}

.faq-chevron {
  color: #ffe0b6;
  transition: transform 0.4s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-item.open .faq-content {
  max-height: 220px;
  opacity: 1;
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,244,230,0.72);
}

.support-card {
  padding: 32px;
  text-align: center;
}

.support-main-icon {
  position: relative;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ffb14b, #ff8a00);
  box-shadow: 0 0 24px rgba(255,138,0,0.3);
  transition: 0.5s ease;
}

.support-main-icon i {
  width: 30px;
  height: 30px;
}

.online-dot {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #110b09;
  background: #34d399;
}

.support-card h3 {
  margin-top: 24px;
  font-size: 30px;
}

.support-link {
  margin-top: 24px;
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 174, 79, 0.2);
  background: rgba(26, 17, 13, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: 0.5s ease;
}

.support-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 135, 0.35);
  background: rgba(38, 22, 15, 0.86);
  box-shadow: 0 0 22px rgba(255,138,0,0.2);
}

.site-footer {
  border-top: 1px solid rgba(255, 138, 0, 0.1);
  background: rgba(0,0,0,0.24);
  backdrop-filter: blur(20px);
  color: rgba(255,244,230,0.45);
  font-size: 14px;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a:hover {
  color: #fff2de;
}

.world-link-soft,
.world-link-bright {
  fill: none;
}

.world-link-soft {
  stroke: url(#arcSoft);
  stroke-width: 2.9;
  opacity: 0.95;
}

.world-link-bright {
  stroke: url(#arcBright);
  stroke-width: 1.45;
  opacity: 1;
}

.travel-dot {
  offset-rotate: 0deg;
  transform-box: fill-box;
  transform-origin: center;
}

.world-label {
  font-size: 12px;
  fill: rgba(255,233,202,0.92);
}

@keyframes travelA {
  0% { offset-distance: 0%; opacity: 0; transform: scale(0.9); }
  15% { opacity: 1; }
  50% { opacity: 1; transform: scale(1.3); }
  85% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; transform: scale(0.85); }
}

@keyframes travelB {
  0% { offset-distance: 0%; opacity: 0; }
  15% { opacity: 0.95; }
  85% { opacity: 0.95; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes pulseOuter {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(2.1); opacity: 0.04; }
  100% { transform: scale(1); opacity: 0.2; }
}

@keyframes pulseMid {
  0% { opacity: 0.22; }
  50% { opacity: 0.65; }
  100% { opacity: 0.22; }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .support-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .pricing-features,
  .plans-grid,
  .hero-pills,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .support-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .world-label {
    display: none;
  }
}