:root{
  --bg:#0f0f12;
  --card:#16161b;
  --muted:#a9a9b3;
  --text:#f2f2f6;
  --accent:#f0a9b6;
  --accent2:#9fe0d5;
  --border:rgba(255,255,255,.10);
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --radius:22px;
  --max:1120px;
}

*{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 600px at 20% -10%, rgba(240,169,182,.35), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(159,224,213,.20), transparent 55%),
    linear-gradient(180deg, #0b0b0e 0%, #0f0f12 100%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(15,15,18,.65);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{width:36px; height:36px; object-fit:contain}
.brand .name{font-weight:800; letter-spacing:.2px}
.nav-links{display:flex; gap:14px; align-items:center}
.nav-links a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}
.nav-links a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.lang{
  display:flex; gap:8px; align-items:center;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  padding:6px; border-radius:14px;
}
.lang button{
  border:0; background:transparent; color:var(--muted);
  padding:6px 10px; border-radius:10px; cursor:pointer;
  font-weight:800; letter-spacing:.3px; font-size:12px;
}
.lang button.active{background:rgba(240,169,182,.18); color:var(--text)}
.lang button:hover{color:var(--text)}

.hero{padding:56px 0 22px}
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:26px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}

.card{
  background:rgba(22,22,27,.72);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:26px}
.logo-row{display:flex; gap:16px; align-items:center}
.logo-row img{width:88px; height:88px; object-fit:contain}
.h-title{font-size:38px; line-height:1.08; margin:10px 0 8px; letter-spacing:-.6px}
.h-sub{color:var(--muted); margin:0 0 18px; font-size:16px}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 0}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  padding:8px 10px; border-radius:999px;
  font-size:13px; color:var(--muted); font-weight:650;
}
.badge b{color:var(--text)}

.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.btn{
  appearance:none; border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--text);
  padding:10px 14px; border-radius:14px;
  font-weight:800; text-decoration:none;
  display:inline-flex; align-items:center; justify-content:center;
}
.btn.primary{
  background:linear-gradient(135deg, rgba(240,169,182,.25), rgba(159,224,213,.18));
  border-color:rgba(240,169,182,.35);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}

.side-card{padding:18px}
.side-card img{width:100%; height:auto; border-radius:18px; border:1px solid var(--border)}
.side-note{color:var(--muted); font-size:13px; margin:10px 0 0}

.section{padding:34px 0}
.section h2{
  font-size:24px; margin:0 0 10px; letter-spacing:-.3px;
}
.section p{margin:0 0 14px; color:var(--muted)}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:18px}
@media (max-width: 900px){
  .grid-2{grid-template-columns:1fr}
}

.steps{padding:18px}
.steps ol{margin:0; padding-left:18px}
.steps li{margin:8px 0; color:var(--muted)}
.steps li b{color:var(--text)}

.note{
  padding:16px 18px;
  border:1px dashed rgba(240,169,182,.35);
  background:rgba(240,169,182,.08);
  border-radius:18px;
  color:var(--text);
}
.note p{margin:0; color:var(--text)}
.note small{display:block; margin-top:8px; color:var(--muted)}

.resellers{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:12px;
}
@media (max-width: 900px){
  .resellers{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .resellers{grid-template-columns:1fr}
}
.shop{
  padding:16px;
  text-decoration:none;
  display:flex; flex-direction:column; gap:8px;
  min-height:108px;
}
.shop .top{display:flex; justify-content:space-between; align-items:center; gap:10px}
.flag{
  width:34px; height:24px; border-radius:6px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; color:var(--text); font-size:12px;
}
.shop .domain{font-weight:900; font-size:16px; letter-spacing:-.2px}
.shop .meta{color:var(--muted); font-size:13px}
.shop:hover{border-color:rgba(255,255,255,.18); transform:translateY(-1px)}

.gallery-wrap{padding:18px}
.gallery{
  columns:4 220px;
  column-gap:12px;
}
.gallery a{display:block; break-inside:avoid; margin:0 0 12px; border-radius:18px; overflow:hidden; border:1px solid var(--border)}
.gallery img{width:100%; height:auto; display:block; transition:transform .2s ease}
.gallery a:hover img{transform:scale(1.02)}
@media (max-width: 900px){
  .gallery{columns:2 220px}
}
@media (max-width: 560px){
  .gallery{columns:1 220px}
}

.footer{
  padding:24px 0 40px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
.footer-inner{display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}

.lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.78);
  display:none; align-items:center; justify-content:center;
  padding:24px; z-index:999;
}
.lightbox.open{display:flex}
.lightbox figure{
  margin:0; max-width:min(1100px, 96vw); max-height:86vh;
  width:100%;
  display:flex; flex-direction:column; gap:10px;
}
.lightbox img{
  width:100%; height:auto; max-height:80vh; object-fit:contain;
  border-radius:18px; border:1px solid rgba(255,255,255,.18);
  background:rgba(15,15,18,.75);
}
.lightbox .controls{
  display:flex; justify-content:space-between; gap:10px; align-items:center;
}
.lb-btn{
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px; border-radius:14px;
  font-weight:900; cursor:pointer;
}
.lb-btn:hover{background:rgba(255,255,255,.10)}
.lb-cap{color:var(--muted); font-size:13px}
