:root{
  --bg:#07080d;
  --panel:#0b0d14;
  --panel2:#0f1220;
  --text:#e9ecf5;
  --muted:#a5adc2;
  --line:rgba(255,255,255,.10);
  --brand1:#ff2bd6;
  --brand2:#7c4dff;
  --brand3:#00d1ff;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
              linear-gradient(180deg, rgba(7,8,13,.88), rgba(7,8,13,.92)),
              url("../img/brand/hero-bg.jpg") center/cover fixed no-repeat,
              radial-gradient(1200px 700px at 20% 10%, rgba(255,43,214,.18), transparent 60%),
              radial-gradient(1200px 700px at 80% 90%, rgba(124,77,255,.16), transparent 60%),
              radial-gradient(900px 500px at 70% 10%, rgba(0,209,255,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px, calc(100% - 40px));margin:0 auto}
.bg-noise{
  pointer-events:none;
  position:fixed;inset:0;opacity:.04;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(7,8,13,.55);
  backdrop-filter:saturate(140%) blur(16px);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex;gap:18px;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:12px;align-items:center}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 40px rgba(0,0,0,.22);
  overflow:hidden;
  display:grid;
  place-items:center;
}
.brand__logo{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(.92);
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.35));
}
.brand__text{display:flex;flex-direction:column;line-height:1}
.brand__name{font-weight:700;letter-spacing:.2px}
.brand__sub{font-size:12px;color:var(--muted);margin-top:3px}

.nav{display:flex;gap:14px;align-items:center}
.nav__link{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition:background .2s ease,color .2s ease;
}
.nav__link:hover{background:rgba(255,255,255,.06);color:var(--text)}
.header__right{display:flex;gap:10px;align-items:center}
.phone{display:none;flex-direction:column;gap:2px;padding:8px 12px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.04)}
.phone__label{font-size:12px;color:var(--muted)}
.phone__value{font-weight:600}

.cart-pill{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.cart-pill__count{
  min-width:26px;height:22px;border-radius:999px;
  display:grid;place-items:center;
  font-size:12px;font-weight:700;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
}
.icon-btn{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  display:grid;place-items:center;
  cursor:pointer;
}
.icon-btn span{display:block;width:18px;height:2px;background:var(--text);border-radius:999px;opacity:.9}
.icon-btn span:nth-child(2){width:14px;opacity:.7}
.icon-btn span:nth-child(3){width:10px;opacity:.55}

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(7,8,13,.65);
  backdrop-filter:saturate(140%) blur(16px);
}
.mobile-nav__inner{display:grid;gap:8px;padding:12px 0}
.mobile-nav__link{
  padding:12px 12px;border-radius:14px;
  color:var(--muted);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.mobile-nav__link:hover{color:var(--text)}
.mobile-nav.is-open{display:block}

.main{padding:26px 0 60px}

.hero{
  border-radius:calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(11,13,20,.70), rgba(11,13,20,.45)),
    url("../img/brand/section-bg.jpg") center/cover no-repeat,
    radial-gradient(900px 420px at 10% 20%, rgba(255,43,214,.22), transparent 55%),
    radial-gradient(800px 420px at 85% 85%, rgba(124,77,255,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero__inner{
  display:grid;grid-template-columns:1.2fr .8fr;gap:18px;
  padding:34px;
  align-items:center;
}
.kicker{color:var(--muted);font-size:13px;letter-spacing:.14em;text-transform:uppercase}
.h1{font-size:44px;line-height:1.08;margin:10px 0 12px;font-weight:800}
.lead{color:rgba(233,236,245,.82);font-size:16px;line-height:1.5;margin:0 0 18px}
.hero__cta{display:flex;gap:10px;flex-wrap:wrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--text);
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
  font-weight:600;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.18)}
.btn--primary{
  border:0;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
  box-shadow:0 18px 50px rgba(124,77,255,.18);
}
.btn--primary:hover{background:linear-gradient(135deg,#ff59e1,#8c6bff)}
.btn--ghost{background:transparent}

.hero-card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(11,13,20,.55);
  box-shadow:0 18px 55px rgba(0,0,0,.4);
  padding:18px;
}
.hero-card__top{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:10px}
.pill{
  display:inline-flex;align-items:center;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(233,236,245,.88);
  font-size:12px;
}
.pill--grad{border:0;background:linear-gradient(135deg, rgba(255,43,214,.22), rgba(124,77,255,.22))}
.hero-card__title{font-weight:700;margin:0 0 6px}
.hero-card__muted{color:var(--muted);font-size:13px;line-height:1.45;margin:0}
.hero-card__img{margin-top:14px;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.08)}

.section{margin-top:26px}
.section__head{display:flex;justify-content:space-between;align-items:end;gap:12px;margin-bottom:14px}
.h2{font-size:22px;margin:0;font-weight:750}
.section__sub{color:var(--muted);margin:0;font-size:13px}

.grid{display:grid;gap:14px}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}

.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 16px 52px rgba(0,0,0,.35);
  overflow:hidden;
  min-height:100%;
}
.card__media{aspect-ratio:16/10;background:rgba(255,255,255,.03);display:grid;place-items:center}
.card__media img{width:100%;height:100%;object-fit:cover}
.card__body{padding:14px}
.card__top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.badge{
  display:inline-flex;align-items:center;
  padding:6px 9px;border-radius:999px;
  background:linear-gradient(135deg, rgba(255,43,214,.22), rgba(124,77,255,.22));
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;color:rgba(233,236,245,.95);
}
.muted{color:var(--muted)}
.card__title{margin:0 0 6px;font-weight:750}
.card__text{margin:0 0 12px;color:rgba(233,236,245,.82);font-size:13px;line-height:1.45}
.price{display:flex;align-items:baseline;gap:10px;margin:0 0 12px}
.price__now{font-weight:800;font-size:18px}
.price__old{color:rgba(165,173,194,.9);text-decoration:line-through;font-size:13px}
.card__actions{display:flex;gap:10px;flex-wrap:wrap}

.form{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 16px 52px rgba(0,0,0,.35);
  padding:16px;
}
.field{display:grid;gap:8px;margin-bottom:12px}
.label{font-size:13px;color:var(--muted)}
.input, .select, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(7,8,13,.35);
  color:var(--text);
  outline:none;
}
.textarea{min-height:100px;resize:vertical}
.input:focus,.select:focus,.textarea:focus{border-color:rgba(124,77,255,.55);box-shadow:0 0 0 4px rgba(124,77,255,.18)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}

.toolbar{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:space-between;
  margin-bottom:14px;
}
.toolbar__left, .toolbar__right{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.chip{
  padding:9px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}
.table td, .table th{padding:12px}
.row{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.row td:first-child{border-top-left-radius:14px;border-bottom-left-radius:14px}
.row td:last-child{border-top-right-radius:14px;border-bottom-right-radius:14px}
.qty{
  display:flex;gap:8px;align-items:center;
}
.qty input{
  width:72px;text-align:center;
}

.footer{border-top:1px solid var(--line);padding:28px 0;background:rgba(7,8,13,.35)}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
.footer__brand{font-weight:800;margin-bottom:8px}
.footer__title{font-weight:700;margin-bottom:8px}
.footer__link{color:rgba(233,236,245,.9)}
.footer__link:hover{text-decoration:underline}
.footer__muted{color:var(--muted);font-size:13px;line-height:1.5}
.footer__bottom{display:flex;justify-content:space-between;gap:10px;margin-top:18px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08);color:rgba(233,236,245,.86);font-size:13px}

@media (max-width: 920px){
  .grid--3{grid-template-columns:repeat(2,1fr)}
  .hero__inner{grid-template-columns:1fr;gap:14px}
  .h1{font-size:36px}
  .footer__grid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav{display:none}
  .phone{display:none}
  .grid--3{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}
@media (min-width: 980px){
  .phone{display:flex}
}
