/* Dark background + Blue cards */
:root{
  --bg:#0b1220;
  --card:#0b2a5a;
  --card2:#0a234b;
  --text:#eaf1ff;
  --muted:#b8c7e6;
  --accent:#5aa7ff;
  --border:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 15% 10%, rgba(90,167,255,.22), transparent 55%),
              radial-gradient(1000px 700px at 80% 20%, rgba(90,167,255,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}

.container{max-width:1040px; margin:0 auto; padding:20px}
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.30);
}

.hero{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.hero h1{margin:0 0 6px 0; font-size:34px; letter-spacing:.2px}
.subtitle{margin:0 0 10px 0; font-size:15px; color:var(--muted)}
.muted{color:var(--muted)}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--border);
  padding:7px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.15);
}
.chip:hover{border-color: rgba(90,167,255,.45)}

.hero__actions{display:flex; flex-direction:column; gap:10px; min-width:220px}
.btn{
  text-align:center;
  text-decoration:none;
  color:var(--bg);
  background: var(--accent);
  padding:10px 12px;
  border-radius:12px;
  font-weight:650;
}
.btn:hover{filter:brightness(1.06)}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(90,167,255,.45);
}

h2{margin:0 0 12px 0; font-size:18px}
.item{padding:14px 0; border-top:1px solid var(--border)}
.item:first-of-type{border-top:0; padding-top:0}
.item__top{display:flex; justify-content:space-between; align-items:baseline; gap:12px}
h3{margin:0; font-size:15.5px}
.badge{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  white-space:nowrap;
}
ul{margin:10px 0 0 18px}
li{margin:5px 0}

.lang{list-style:none; padding:0; margin:0}
.lang li{padding:10px 0; border-top:1px solid var(--border)}
.lang li:first-child{border-top:0; padding-top:0}

.contacts{display:flex; flex-direction:column; gap:10px}
.contact-row{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:10px;
  padding:10px;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(0,0,0,.12);
}
.contact-row a{color:var(--text); text-decoration:none}
.contact-row a:hover{text-decoration:underline}

.note{margin-top:14px; font-size:12.5px}
.footer{padding-top:4px; padding-bottom:26px; opacity:.9}
