* { box-sizing: border-box; }
:root{
  --bg:#070a0f;
  --card:rgba(255,255,255,0.05);
  --line:rgba(255,255,255,0.10);
  --text:#ffffff;
  --muted:rgba(255,255,255,0.70);
  --brand:#20e3b2;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: var(--brand); text-decoration:none; }
a:hover{ text-decoration: underline; }

.container{ width:min(1100px, 92%); margin:auto; }

.muted{ color: var(--muted); }
.mono{ font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo{
  font-weight: 800;
  letter-spacing: .08em;
  color:#fff;
  text-decoration:none;
}

.nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:center;
}

.nav a{
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 10px;
}

.nav a.is-current{
  color: var(--brand);
  background: rgba(32,227,178,0.10);
  border: 1px solid rgba(32,227,178,0.22);
}

.lang{
  display:flex;
  gap: 6px;
}

.lang__btn{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 700;
}

.lang__btn.is-active{
  background: linear-gradient(135deg, rgba(32,227,178,0.22), rgba(124,58,237,0.22));
  border-color: rgba(255,255,255,0.22);
}

.hero{
  padding: 84px 0;
  text-align:center;
  background: radial-gradient(circle at top, rgba(32,227,178,0.15), rgba(124,58,237,0.10), transparent 55%),
              radial-gradient(circle at bottom, rgba(124,58,237,0.10), transparent 50%);
}

.hero--small{ padding: 48px 0; }

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
}

.hero__actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

.section{ padding: 64px 0; }
.section__head{ margin-bottom: 18px; }
.section__head h2{ margin: 0 0 8px; }

.btn{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
}

.btn:hover{ border-color: rgba(255,255,255,0.25); }
.btn--primary{
  border: none;
  color:#000;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
}
.btn--ghost{ background: rgba(255,255,255,0.04); }
.btn--block{ width:100%; }

.chips{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
}

.chip{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 700;
}
.chip:hover{ border-color: rgba(255,255,255,0.25); }

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
}

.card--soft{ border-color: var(--line); }

.grid{
  display:grid;
  gap: 16px;
}
.grid--cards{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--pricing{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--table{ grid-template-columns: 1fr; }

.packs{
  display:flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.packbtn{
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color:#fff;
  cursor:pointer;
  font-weight: 800;
}

.packbtn.is-active{
  background: rgba(32,227,178,0.12);
  border-color: rgba(32,227,178,0.28);
  color: var(--brand);
}

.packlist{
  list-style:none;
  padding: 0;
  margin: 0;
}

.packlist li{
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
}
.packlist li:last-child{ border-bottom:none; }

.ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.ul li{ margin: 6px 0; color: rgba(255,255,255,0.86); }

.price__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.price__tag{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(32,227,178,0.12);
  border: 1px solid rgba(32,227,178,0.25);
  font-size: 13px;
}

.table .row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.table .row:last-of-type{ border-bottom:none; }
.row__price{ white-space: nowrap; }

.note{ margin-top: 14px; font-size: 13px; }

.contacts{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.label{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cta-row{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

.footer{
  padding: 22px 0;
  text-align:center;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Google Maps widget */
.map{
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.map iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* small screens */
@media (max-width: 760px){
  .nav{ display:none; }
  .header__inner{ justify-content: space-between; }
}
