
:root {
  --bg: #050d1a;
  --bg-2: #081423;
  --surface: #0b172d;
  --surface-2: #0f203c;
  --card: rgba(11, 23, 45, 0.88);
  --text: #f3f7ff;
  --muted: #a8b7cc;
  --orange: #ff7f00;
  --orange-strong: #e96e00;
  --orange-soft: rgba(255, 127, 0, 0.12);
  --blue: #3682ce;
  --blue-soft: rgba(54, 130, 206, 0.16);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.12);
  --success: #3fd18a;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(54,130,206,0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255,127,0,0.12), transparent 20%),
    linear-gradient(180deg, #071120 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus {
  border-color: rgba(255,127,0,0.45);
  box-shadow: 0 0 0 4px rgba(255,127,0,0.10);
  background: rgba(255,255,255,0.04);
}
textarea { resize: vertical; min-height: 140px; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 94px 0; }
.top-gap { margin-top: 22px; }
.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
}
.title {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.accent { color: var(--orange); }
.lead, .subtle {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.lead { font-size: clamp(17px, 2vw, 22px); max-width: 680px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5, 13, 26, 0.74);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.brand img { height: 36px; width: auto; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  content: '';
  position: relative;
  transition: .25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 11px 16px;
  border-radius: 999px;
  color: #dbe7f7;
  font-weight: 600;
}
.nav-links a:hover, .footer-nav a:hover { background: rgba(255,255,255,.05); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff8d14 0%, var(--orange) 100%);
  box-shadow: 0 18px 40px rgba(255,127,0,.16);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ff9a2f 0%, var(--orange-strong) 100%);
  transform: translateY(-1px);
}
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.12);
}
.btn-secondary:hover { background: rgba(255,255,255,.06); }
.btn-ghost { color: #dbe7f7; }
.btn-ghost:hover { background: rgba(255,255,255,.05); }

.hero { padding: 58px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: start;
  gap: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.point {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.point span { color: #dbe7f7; font-weight: 600; }
.hero-art { position: relative; }
.hero-art::before {
  content: '';
  position: absolute;
  inset: 8% 8% auto 10%;
  height: 66%;
  background: radial-gradient(circle, rgba(54,130,206,.22), transparent 60%);
  filter: blur(28px);
  z-index: 0;
}
.hero-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(8,20,39,.72), rgba(5,13,26,.96));
  box-shadow: var(--shadow);
}
.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.hero-art {
  align-self: start;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.stat {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.stat strong { display: block; font-size: 32px; margin-bottom: 8px; }
.stat span { color: var(--muted); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.section-header h2, .cta-copy h2, .network-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}
.section-header p { max-width: 650px; }
.grid-2, .card-grid, .pricing-grid, .contact-grid {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.contact-grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); margin-top: 28px; }
.card, .plan, .network, .cta, .contact-link, .contact-note {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(11,23,45,.88), rgba(6,14,28,.95));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.card, .plan, .contact-note, .contact-link { padding: 26px; }
.card h3, .plan h3 { margin: 18px 0 10px; }
.card-title-fix { margin-top: 0 !important; }
.icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  border: 1px solid rgba(255,127,0,.18);
  color: var(--orange);
}

.plan { position: relative; }
.plan.popular {
  border-color: rgba(255,127,0,.34);
  box-shadow: 0 20px 70px rgba(255,127,0,.1);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,127,0,.12);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}
.plan .price { font-size: 42px; margin: 18px 0 6px; }
.plan .price small { font-size: 17px; color: var(--muted); font-weight: 500; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}
.plan li {
  display: flex;
  gap: 10px;
  color: #dbe7f7;
}
.plan li::before { content: '•'; color: var(--success); font-weight: 700; }

.network {
  padding: 28px;
  background: linear-gradient(180deg, rgba(9,18,36,.95), rgba(4,10,20,.98));
  border-color: rgba(54,130,206,.18);
  overflow: hidden;
  position: relative;
}
.network::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(54,130,206,.18), transparent 24%),
    radial-gradient(circle at 80% 25%, rgba(255,127,0,.10), transparent 18%),
    radial-gradient(circle at 70% 75%, rgba(54,130,206,.14), transparent 22%);
  pointer-events: none;
}
.network-copy { max-width: 780px; margin-top: 14px; }
.network-map {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  position: relative;
  background: linear-gradient(180deg, rgba(7,17,34,.68), rgba(7,17,34,.32));
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.network-map img { position: relative; z-index: 1; width: 100%; height: auto; }

.cta {
  padding: 30px;
  border-color: rgba(255,127,0,.18);
  background: linear-gradient(135deg, rgba(255,127,0,.11), rgba(54,130,206,.08) 58%, rgba(5,13,26,.95));
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(5,13,26,.38);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: #dbe7f7;
  font-weight: 600;
}
label span { font-size: 14px; }
.contact-side {
  display: grid;
  gap: 16px;
}
.contact-link {
  display: grid;
  gap: 6px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.contact-link:hover {
  border-color: rgba(255,127,0,.24);
  background: linear-gradient(180deg, rgba(14,29,55,.94), rgba(6,14,28,.98));
  transform: translateY(-1px);
}
.contact-link strong, .contact-note strong { font-size: 18px; }
.contact-link span, .contact-note p { color: var(--muted); line-height: 1.7; margin: 0; }
.cta-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 36px 0 56px;
  color: var(--muted);
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo img { height: 34px; width: auto; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.footer-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.footer-branding { display: grid; gap: 10px; }
.footer-meta { text-align: right; }
.small { font-size: 14px; margin: 0; line-height: 1.6; }
.hide-mobile { display: inline-flex; }

@media (max-width: 1080px) {
  .hero-grid, .grid-2, .card-grid, .pricing-grid, .contact-grid, .footer-top {
    grid-template-columns: 1fr;
  }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-header, .footer-meta { text-align: left; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer-top { text-align: left; }
  .footer-nav { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
    background: rgba(6,14,28,.98);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav-links, .header-actions { flex-direction: column; align-items: stretch; }
  .nav-links a, .header-actions a { width: 100%; justify-content: center; }
  .hide-mobile { display: none; }
  .hero-points, .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .header-inner { min-height: 76px; }
  .brand img { height: 28px; }
  .hero { padding-top: 34px; }
  .section { padding: 74px 0; }
  .stats { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .card, .plan, .network, .cta, .contact-link, .contact-note { padding: 22px; }
}


.brand-side {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 40px;
  padding: 0 38px 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23dbe7f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: #dbe7f7;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  outline: none;
}
.lang-switch select:hover { border-color: rgba(255,255,255,.16); }
.lang-switch select:focus {
  border-color: rgba(255,127,0,.45);
  box-shadow: 0 0 0 4px rgba(255,127,0,.10);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 820px) {
  .brand-side { gap: 8px; }
  .lang-switch select {
    min-height: 36px;
    padding: 0 34px 0 12px;
    font-size: 12px;
  }
}
@media (max-width: 620px) {
  .brand-side { max-width: calc(100% - 58px); }
  .brand img { height: 26px; }
}


/* Language switch visibility fix */
.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #0f2138;
  color: #f4f7fb;
  border: 1px solid rgba(98, 164, 234, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.lang-switch select:hover,
.lang-switch select:focus {
  background: #132844;
  color: #ffffff;
  border-color: rgba(255, 127, 0, 0.55);
  outline: none;
}

.lang-switch select option {
  background: #0f2138;
  color: #f4f7fb;
}
