:root{
  --bg:#0b1017;
  --surface:#101926;
  --card:#0f1722;
  --text:#e7eef8;
  --muted:#b7c6dd;
  --accent:#8fd3ff;
  --accent2:#c7b6ff;
  --line:rgba(255,255,255,0.10);
  --r:24px;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --shadowSoft: 0 12px 40px rgba(0,0,0,0.22);
  --gap: 18px;
  --wrap: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(143,211,255,0.14), transparent 60%),
    radial-gradient(700px 500px at 85% 10%, rgba(199,182,255,0.12), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(143,211,255,0.08), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; display:block}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 18px}

.skip{
  position:absolute; left:-999px; top:10px;
  background:var(--accent); color:#051018; padding:8px 10px; border-radius:10px;
}
.skip:focus{left:18px; z-index:9999}

.siteheader{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(11,16,23,0.68);
  border-bottom: 1px solid var(--line);
}
.headwrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.logo{display:flex; align-items:center; gap:10px; font-weight:650; letter-spacing:0.2px}
.logoMark{
  width:34px; height:34px; border-radius:14px;
  background: linear-gradient(135deg, rgba(143,211,255,1), rgba(199,182,255,1));
  box-shadow: var(--shadowSoft);
}
.logoText{font-size:15px}

.topnav{display:flex; flex-wrap:wrap; align-items:center; gap:14px; justify-content:flex-end}
.navlink{opacity:0.9; font-size:14px; padding:8px 10px; border-radius:14px; border:1px solid transparent}
.navlink:hover{border-color:var(--line); text-decoration:none; opacity:1}
.navcart{display:flex; align-items:center; gap:10px; border:1px solid var(--line); background:rgba(255,255,255,0.04)}
.cartdot{width:8px; height:8px; border-radius:99px; background:var(--accent);}
.cartcount{min-width:24px; text-align:center; border-radius:12px; padding:2px 8px; background:rgba(143,211,255,0.12); border:1px solid rgba(143,211,255,0.20);}

.hero{display:grid; grid-template-columns: 1.15fr 0.85fr; gap:26px; align-items:stretch; padding:28px 0 10px}
.herotext{padding:22px; border-radius:var(--r); background:rgba(255,255,255,0.03); border:1px solid var(--line); box-shadow:var(--shadowSoft)}
.heroimg{border-radius:var(--r); overflow:hidden; border:1px solid var(--line); background:rgba(255,255,255,0.02); box-shadow:var(--shadowSoft)}
.heroimg img{width:100%; height:100%; object-fit:cover}

.kicker{display:inline-flex; gap:10px; align-items:center; font-size:12px; letter-spacing:0.16em; text-transform:uppercase; color:var(--muted);}
h1{font-size:44px; line-height:1.05; margin:10px 0 12px}
.lead{color:var(--muted); font-size:16px; margin:0}

.ctaRow{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:18px; border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  cursor:pointer; font-weight:600; font-size:14px;
}
.btn:hover{text-decoration:none; border-color:rgba(255,255,255,0.20);}
.btn.primary{background:linear-gradient(135deg, rgba(143,211,255,0.22), rgba(199,182,255,0.16)); border-color:rgba(143,211,255,0.25);}
.btn.ghost{background:transparent}
.btn.thin{padding:9px 12px; border-radius:14px; background:rgba(255,255,255,0.02)}

.trustRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{font-size:12px; color:var(--muted); padding:6px 10px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,0.02)}

.section{padding:26px 0}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:var(--gap); margin-bottom:14px}
.sectionHead h2{margin:0; font-size:22px}
.sectionHead p{margin:0; color:var(--muted)}

.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--gap)}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:var(--gap)}
.card{
  border-radius:var(--r);
  border:1px solid var(--line);
  background:rgba(255,255,255,0.03);
  padding:18px;
  box-shadow: var(--shadowSoft);
}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.textlink{display:inline-block; margin-top:10px; color:var(--accent); font-weight:650;}

.split{display:grid; grid-template-columns:1fr 1fr; gap:var(--gap);}
.bullets{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.noteCard{border-radius:22px; border:1px solid var(--line); padding:16px; background:rgba(255,255,255,0.02)}
.noteTitle{font-weight:700; margin-bottom:6px}

.newsletter{display:flex; justify-content:space-between; align-items:center; gap:var(--gap); border-radius:var(--r); padding:18px; border:1px solid var(--line); background:rgba(255,255,255,0.03);}
.miniForm{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
input, select, textarea{
  width:100%;
  background: rgba(255,255,255,0.02);
  border:1px solid var(--line);
  color:var(--text);
  padding:10px 12px;
  border-radius:16px;
  outline:none;
}
select{cursor:pointer}
input::placeholder, textarea::placeholder{color: rgba(183,198,221,0.75);}
input:focus, textarea:focus, select:focus{border-color:rgba(143,211,255,0.45);}

.pagehead{padding:22px 0 10px}
.pagehead h1{font-size:34px; margin:0 0 10px}
.sub{color:var(--muted); margin:0}

.controls{display:grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap:var(--gap); margin-top:16px}
.control label{display:block; font-size:12px; color:var(--muted); margin-bottom:6px}

.cataloggrid{display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--gap)}
.pcard{border-radius:var(--r); border:1px solid var(--line); background:rgba(255,255,255,0.03); overflow:hidden; box-shadow:var(--shadowSoft); display:flex; flex-direction:column}
.pimg{height:190px; background:rgba(255,255,255,0.02);}
.pimg img{width:100%; height:100%; object-fit:cover}
.pbody{padding:14px}
.ptag{font-size:12px; color:var(--muted); letter-spacing:0.12em; text-transform:uppercase}
.pname{font-size:18px; margin:6px 0 6px; font-weight:720}
.pdesc{color:var(--muted); margin:0 0 10px}
.prow{display:flex; align-items:center; justify-content:space-between; gap:10px}
.pprice{font-weight:800}

.infoRow{display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap)}
.infoCard{border:1px solid var(--line); border-radius:var(--r); padding:16px; background:rgba(255,255,255,0.02)}
.infoCard h3{margin:0 0 6px}
.infoCard p{margin:0; color:var(--muted)}

.crumbs{padding:18px 0 0; color:var(--muted); font-size:14px}
.crumbs a{color:var(--accent)}

.product{display:grid; grid-template-columns: 1fr 1fr; gap:var(--gap); padding:18px 0 28px}
.gallery{border-radius:var(--r); border:1px solid var(--line); background:rgba(255,255,255,0.02); overflow:hidden; box-shadow:var(--shadowSoft)}
.gallery > img{width:100%; height:380px; object-fit:cover}
.thumbRow{display:flex; gap:10px; padding:12px; border-top:1px solid var(--line)}
.thumb{width:56px; height:44px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,0.02); cursor:pointer}
.details .priceRow{display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin:10px 0 10px}
.price{font-size:26px; font-weight:850}
.micro{color:var(--muted); font-size:13px}

.specs{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:14px 0}
.spec{border:1px solid var(--line); background:rgba(255,255,255,0.02); border-radius:18px; padding:10px 12px; display:flex; justify-content:space-between; gap:10px}
.spec span{color:var(--muted); font-size:13px}

.buyRow{display:flex; flex-wrap:wrap; gap:12px; align-items:flex-end; margin:16px 0}
.qty span{display:block; font-size:12px; color:var(--muted); margin-bottom:6px}
.qty input{width:110px}

.accordion details{border:1px solid var(--line); border-radius:18px; padding:12px 12px; background:rgba(255,255,255,0.02); margin-top:10px}
.accordion summary{cursor:pointer; font-weight:700}
.accordion p{color:var(--muted); margin:10px 0 0}

.cartLayout{display:grid; grid-template-columns: 1.4fr 0.9fr; gap:var(--gap); padding:10px 0 30px}
.cartHeader{display:grid; grid-template-columns: 1.2fr 0.55fr 0.55fr 0.2fr; gap:10px; padding:10px 12px; color:var(--muted); font-size:13px}
.cartItems{display:flex; flex-direction:column; gap:10px}
.cartItem{display:grid; grid-template-columns: 1.2fr 0.55fr 0.55fr 0.2fr; gap:10px; padding:12px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,0.03)}
.cit{display:flex; gap:12px; align-items:center}
.cit img{width:58px; height:44px; border-radius:14px; border:1px solid var(--line); object-fit:cover}
.cname{font-weight:720}
.cmeta{color:var(--muted); font-size:13px}
.cqty input{width:90px}
.iconBtn{background:transparent; border:1px solid var(--line); border-radius:14px; padding:8px 10px; cursor:pointer}

.cartTools{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

.summaryCard, .leadCard{border:1px solid var(--line); border-radius:var(--r); background:rgba(255,255,255,0.03); padding:16px; box-shadow:var(--shadowSoft)}
.sumRow{display:flex; justify-content:space-between; margin-top:10px}
.sumRow.total{margin-top:12px; font-size:18px}
.divider{height:1px; background:var(--line); margin:12px 0}
.small{font-size:12px}
.muted{color:var(--muted)}

.leadForm{display:flex; flex-direction:column; gap:12px; margin-top:10px}
.leadForm label span{display:block; font-size:12px; color:var(--muted); margin-bottom:6px}

.banner{display:flex; align-items:center; justify-content:space-between; gap:var(--gap); border:1px solid var(--line); border-radius:var(--r); padding:16px; background:rgba(255,255,255,0.02)}
.timeline{display:flex; flex-direction:column; gap:12px}
.step{display:flex; gap:12px; padding:14px; border-radius:var(--r); border:1px solid var(--line); background:rgba(255,255,255,0.03)}
.stepNo{width:34px; height:34px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-weight:800; background:rgba(143,211,255,0.14); border:1px solid rgba(143,211,255,0.22)}
.step h2{margin:0 0 6px; font-size:18px}
.step p{margin:0; color:var(--muted)}

.success{padding:42px 0}
.successCard{border:1px solid var(--line); border-radius:var(--r); padding:22px; background:rgba(255,255,255,0.03); box-shadow:var(--shadow);}

.sitefooter{border-top:1px solid var(--line); margin-top:26px; padding:26px 0 18px; background:rgba(11,16,23,0.62)}
.footgrid{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:var(--gap); align-items:start; max-width:var(--wrap); margin:0 auto; padding:0 18px}
.footbrand{font-weight:800; margin-bottom:8px}
.footnote{color:var(--muted); margin:0}
.foottitle{font-weight:800; margin-bottom:10px}
.footlist{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; color:var(--muted)}
.footlist a{color:var(--accent)}
.copyright{max-width:var(--wrap); margin:18px auto 0; padding:0 18px; color:rgba(183,198,221,0.75); font-size:12px}

.srOnly{position:absolute; left:-9999px}
.ol{color:var(--muted)}
.ol li{margin:8px 0}

/* Responsive */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr;}
  .controls{grid-template-columns:1fr;}
  .cataloggrid{grid-template-columns:repeat(2, 1fr);}
  .grid3{grid-template-columns:1fr;}
  .infoRow{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr;}
  .product{grid-template-columns:1fr;}
  .cartLayout{grid-template-columns:1fr;}
  .footgrid{grid-template-columns:1fr; }
}
@media (max-width: 520px){
  h1{font-size:34px;}
  .cataloggrid{grid-template-columns:1fr;}
  .cartHeader{display:none}
  .cartItem{grid-template-columns:1fr; gap:8px}
}
