:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:#ECF2FF;
  --muted:rgba(236,242,255,.72);
  --muted2:rgba(236,242,255,.52);
  --accent:#47B0FF;
  --accent2:#7C5CFF;
  --ok:#3EE37A;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --r:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(71,176,255,.20), transparent 55%),
    radial-gradient(800px 520px at 75% 0%, rgba(124,92,255,.20), transparent 55%),
    radial-gradient(900px 520px at 50% 110%, rgba(62,227,122,.08), transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:22px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(7,10,18,.82), rgba(7,10,18,.55));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 10px 30px rgba(71,176,255,.20);
}
.nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.city-link{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,color .15s ease;
}
.city-link:hover{
  transform:translateY(-1px);
  border-color:rgba(71,176,255,.55);
  background:rgba(71,176,255,.10);
  color:var(--text);
}
.city-link.is-active{
  border-color:rgba(71,176,255,.75);
  background:rgba(71,176,255,.14);
  color:var(--text);
}
.badge{
  font-size:12px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted2);
}

/* Hero */
.hero{padding:34px 0 10px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}
.dot{width:8px;height:8px;border-radius:50%;background:var(--ok); box-shadow:0 0 18px rgba(62,227,122,.35)}
.h1{font-size:42px; line-height:1.06; margin:14px 0 10px; letter-spacing:-.5px}
.p{color:var(--muted); margin:0 0 16px; max-width:880px; font-size:16px; line-height:1.55}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.22); background:rgba(255,255,255,.05)}
.btn.primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 14px 40px rgba(71,176,255,.22);
}
.btn.primary:hover{background:linear-gradient(135deg,rgba(71,176,255,.95),rgba(124,92,255,.95))}
.btn.ghost{background:transparent}
.icon{width:18px;height:18px;display:inline-block}

/* Sections */
.section{margin:22px 0}
.section-title{font-size:20px;margin:0 0 10px}
.grid{display:grid; grid-template-columns:repeat(12,1fr); gap:14px}
.card{
  grid-column:span 6;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r);
  padding:16px 16px 15px;
  box-shadow:var(--shadow);
}
.card.full{grid-column:span 12}
.card h3{margin:0 0 6px; font-size:17px}
.card p{margin:0; color:var(--muted); line-height:1.5}
.small{color:var(--muted2); font-size:13px; line-height:1.55}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.6}
.hr{height:1px;background:rgba(255,255,255,.10);margin:18px 0}

/* Footer */
.footer{
  margin:26px 0 10px;
  padding:18px 0 0;
  border-top:1px solid rgba(255,255,255,.10);
  color:var(--muted2);
  font-size:14px;
}

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


.footer a{color:var(--muted); border-bottom:1px dashed rgba(255,255,255,.25)}
.footer a:hover{color:var(--text); border-bottom-color:rgba(255,255,255,.5)}

.policy-table-wrapper{
  width:100%;
  overflow-x:auto;
}

.policy-table{
  min-width:900px;
  border-collapse:collapse;
}

/* Responsive */
@media (max-width:920px){
  .h1{font-size:34px}
  .card{grid-column:span 12}
}
@media (max-width:520px){
  .container{padding:16px}
  .h1{font-size:30px}
  .header-inner{padding:12px 0}
  .city-link{font-size:13px; padding:8px 10px}
}

.card__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.policy-text h2{
  margin:0 0 16px;
  font-size:22px;
}

.policy-text h3{
  margin:22px 0 10px;
  font-size:18px;
}

.policy-text p{
  margin:8px 0;
  line-height:1.65;
  color:var(--muted);
}

.policy-text ul{
  margin:8px 0 12px 18px;
  color:var(--muted);
  line-height:1.6;
}

.policy-box{
  margin:12px 0;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(255,255,255,.03);
}

.policy-goal{
  margin:12px 0;
  padding:12px 14px;
  border-left:3px solid var(--accent);
  background:rgba(255,255,255,.03);
  border-radius:10px;
}

/* Всплывающая панель cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--muted);
}

.cookie-btn {
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cookie-btn:hover {
  background: rgba(255,255,255,.35);
}
