:root{
  --bg:#0c0b0a;
  --card:#141210;
  --text:#f4f1ed;
  --muted:#c8bfb6;
  --line:rgba(255,255,255,.10);
  --accent:#ff7a2f;
  --accent2:#ffb02f;
  --ok:#2fdf84;
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 18% -10%, rgba(255,122,47,.22), transparent 60%),
    radial-gradient(900px 550px at 92% 8%, rgba(255,176,47,.18), transparent 55%),
    linear-gradient(180deg, #070606, var(--bg) 55%, #070606);
  line-height:1.35;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

/* TOPBAR */
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(150%) blur(10px);
  background:rgba(12,11,10,.65);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px;
}
.brand-badge{
  width:36px;height:36px;border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 10px 30px rgba(255,122,47,.25);
}

/* menu as plain links (your HTML) */
.menu{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end;
  font-size:14px; color:var(--muted);
}
.menu a{padding:8px 10px;border-radius:12px}
.menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}

/* menu if you ever switch to wp_nav_menu() */
.menu ul{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; margin:0; padding:0; list-style:none}
.menu li{margin:0; padding:0}
.menu ul a{display:block; padding:8px 10px; border-radius:12px}
.menu ul a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.nav-cta{display:flex; gap:10px; align-items:center}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:600;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
  cursor:pointer;
  transition:.18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}
.btn.primary{
  border:none;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#1a120c;
  box-shadow:0 18px 40px rgba(255,122,47,.22);
}
.btn.primary:hover{filter:saturate(1.05); transform:translateY(-1px)}
.btn.ghost{background:transparent}

/* HERO */
.hero{
  padding:56px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:13px;
  width:max-content;
}
.dot{
  width:9px;height:9px;border-radius:999px;background:var(--ok);
  box-shadow:0 0 18px rgba(47,223,132,.45);
}
h1{
  margin:14px 0 12px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.7px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:54ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}
.trust{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.trust .pill{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}
.trust strong{display:block; color:var(--text); font-size:14px; margin-bottom:4px}

.hero-card{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:
    radial-gradient(800px 380px at 25% 25%, rgba(255,122,47,.18), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
  min-height:360px;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-photo{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(12,11,10,.20), rgba(12,11,10,.85)),
    url("https://images.unsplash.com/photo-1544984243-ec57ea16fe25?auto=format&fit=crop&w=1200&q=60");
  background-size:cover;
  background-position:center;
  filter:saturate(1.1);
  opacity:.92;
}
.hero-card > *{position:relative}
.statrow{display:grid; grid-template-columns:repeat(3,1fr); gap:10px}
.stat{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,9,8,.45);
  padding:12px;
}
.stat .n{font-size:20px; font-weight:800}
.stat .t{color:var(--muted); font-size:12px; margin-top:4px}

/* SECTIONS */
section{padding:34px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}
.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.3px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:62ch;
  font-size:14px;
}

.grid{
  display:grid;
  gap:14px;
}
.grid.cols-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid.cols-4{grid-template-columns:repeat(4, minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2, minmax(0,1fr))}

.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:16px;
  box-shadow:0 14px 40px rgba(0,0,0,.22);
}
.card:hover{border-color:rgba(255,255,255,.16)}
.card .title{font-weight:750; margin:0 0 6px}
.card .desc{margin:0; color:var(--muted); font-size:13px}
.chip{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
  width:max-content;
}

/* CATEGORIES */
.cat{
  display:flex; flex-direction:column; gap:10px;
  min-height:140px;
  position:relative;
  overflow:hidden;
}
.cat:before{
  content:"";
  position:absolute; inset:-20px;
  background:
    radial-gradient(400px 140px at 20% 20%, rgba(255,122,47,.18), transparent 60%),
    radial-gradient(380px 140px at 90% 30%, rgba(255,176,47,.12), transparent 55%);
  opacity:.95;
}
.cat > *{position:relative}
.cat .go{margin-top:auto; color:var(--text); font-weight:650}
.cat .go span{color:var(--muted); font-weight:600}

/* STEPS */
.steps{counter-reset:step}
.step{
  display:flex; gap:12px; align-items:flex-start;
}
.step:before{
  counter-increment:step;
  content:counter(step);
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#1a120c;
  font-weight:900;
  flex:0 0 auto;
}

/* PRODUCTS */
.products{
  display:flex; gap:14px; overflow:auto; padding-bottom:6px;
  scroll-snap-type:x mandatory;
}
.product{
  min-width:260px;
  scroll-snap-align:start;
}
.product .img{
  height:150px; border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(12,11,10,.15), rgba(12,11,10,.82)),
    url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=900&q=60");
  background-size:cover;
  background-position:center;
  margin-bottom:10px;
}
.product .meta{display:flex; justify-content:space-between; gap:10px; color:var(--muted); font-size:12px}

/* FAQ */
details{
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:14px;
}
details summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
}
details summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); font-size:13px}

/* CTA FORM */
.cta{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(900px 380px at 25% 30%, rgba(255,122,47,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  padding:18px;
}
.cta-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
form{
  display:grid; gap:10px;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(12,11,10,.55);
  color:var(--text);
  outline:none;
}
textarea{min-height:92px; resize:vertical}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.note{color:var(--muted); font-size:12px; margin:8px 0 0}

/* FOOTER */
footer{
  padding:28px 0 36px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .trust{grid-template-columns:1fr}
  .grid.cols-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid.cols-3{grid-template-columns:repeat(2, minmax(0,1fr))}
  .cta-grid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  h1{font-size:32px}
  .menu{display:none}
  .grid.cols-4,.grid.cols-3{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

/* WP admin bar fix (so sticky header doesn't hide under admin bar) */
body.admin-bar .topbar { top: 32px; }
@media (max-width: 782px){
  body.admin-bar .topbar { top: 46px; }
}

.catalog-card .wp-block-image { margin: 0 0 12px; }
.catalog-card .wp-block-image img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
}

/* FOOTER (like screenshot) */
.site-footer{
  padding:46px 0 56px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
  background:rgba(255,255,255,.00);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:22px;
  align-items:start;
}

.footer-title{
  font-size:44px;
  line-height:1;
  letter-spacing:-.4px;
  color:rgba(150,220,255,.95); /* нежный голубой как на скрине */
  margin-top:4px;
}

.footer-h{
  font-size:20px;
  color:var(--text);
  margin:6px 0 12px;
  letter-spacing:-.2px;
}

.footer-menu{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.footer-menu li{margin:0;padding:0}

.footer-menu a{
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 0;
}

.footer-menu a:hover{color:var(--text)}

/* small square icon like in screenshot */
.footer-menu.bullets a::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:3px;
  background:rgba(255,255,255,.22);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  flex:0 0 auto;
  transform:translateY(1px);
}

@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr 1fr; gap:18px}
  .footer-title{font-size:36px}
}
@media (max-width: 560px){
  .footer-grid{grid-template-columns:1fr}
}
