:root{
  --bg:#fbfbf7;
  --paper:#ffffff;
  --ink:#14202a;
  --muted:#576574;
  --line:#e8eadf;

  --accent:#2e7d6f;
  --accent2:#8a5cf6;
  --accent3:#f2a93b;

  --shadow: 0 18px 46px rgba(20,32,42,.10);
  --r1:22px;
  --r2:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(46,125,111,.12), transparent 60%),
    radial-gradient(900px 520px at 86% 12%, rgba(138,92,246,.10), transparent 58%),
    radial-gradient(900px 520px at 70% 92%, rgba(242,169,59,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff);
}

a{color:inherit}
.container{max-width:1180px; margin:0 auto; padding:0 18px;}
.shell{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:16px;
  min-height:100vh;
}
@media (max-width:1020px){
  .shell{grid-template-columns:1fr}
}

.side{
  position:sticky; top:0;
  align-self:start;
  height:100vh;
  padding:18px 0;
}
@media (max-width:1020px){
  .side{position:relative; height:auto; padding:14px 0}
}

.sideCard{
  background: rgba(255,255,255,.68);
  border:1px solid var(--line);
  border-radius: var(--r1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding:14px;
}

.brand{
  display:flex; gap:12px; align-items:center;
  text-decoration:none;
  margin-bottom:12px;
}
.mark{
  width:40px; height:40px; border-radius:16px;
  background:
    radial-gradient(circle at 35% 35%, rgba(46,125,111,.95), transparent 56%),
    radial-gradient(circle at 70% 70%, rgba(242,169,59,.95), transparent 56%),
    radial-gradient(circle at 65% 30%, rgba(138,92,246,.85), transparent 52%),
    #fff;
  border:1px solid var(--line);
}
.brand strong{display:block; letter-spacing:.2px}
.brand small{display:block; color:var(--muted); margin-top:2px}

.snav{
  display:grid;
  gap:8px;
  margin:10px 0 12px;
}
.snav a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.2s ease;
}
.snav a:hover{
  background:#fff;
  border-color:var(--line);
  color:var(--ink);
}

.sideMeta{
  border-top:1px solid var(--line);
  padding-top:12px;
  display:grid; gap:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  width:fit-content;
}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent); box-shadow:0 0 0 6px rgba(46,125,111,.12);}

.main{
  padding:18px 0 26px;
}

.card{
  background: var(--paper);
  border:1px solid var(--line);
  border-radius: var(--r1);
  box-shadow: var(--shadow);
}
.soft{
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  border-radius: var(--r1);
  box-shadow: 0 10px 30px rgba(20,32,42,.06);
}

.hero{
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute; inset:-140px auto auto -180px;
  width:420px; height:420px; border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(46,125,111,.18), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(138,92,246,.14), transparent 62%);
  transform: rotate(-14deg);
}
.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width:980px){ .heroGrid{grid-template-columns:1fr} }

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  color:var(--muted);
  width:fit-content;
}
.h1{
  margin:12px 0 10px;
  font-size:46px;
  line-height:1.04;
  letter-spacing:-.9px;
}
@media (max-width:520px){ .h1{font-size:36px} }
.lead{margin:0 0 14px; color:var(--muted); line-height:1.75; font-size:15.5px}

.actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
  font-weight:800;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #39a894);
  color:#fff;
  box-shadow: 0 16px 34px rgba(46,125,111,.22);
}
.btn.secondary{
  border-color: rgba(138,92,246,.22);
  background: rgba(138,92,246,.08);
  color: var(--accent2);
  box-shadow:none;
}

.heroAside{
  padding:14px;
  border-radius: var(--r1);
  border:1px solid var(--line);
  background: rgba(255,255,255,.80);
}
.heroAside h3{margin:0 0 8px; font-size:16px}
.heroAside p{margin:0 0 12px; color:var(--muted); line-height:1.6; font-size:13.5px}
.notice{
  border:1px dashed rgba(242,169,59,.45);
  background: rgba(242,169,59,.10);
  border-radius: 18px;
  padding:12px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.contactGrid{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:520px){ .contactGrid{grid-template-columns:1fr} }
.cTile{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  background:#fff;
}
.cTile small{display:block; color:var(--muted); margin-bottom:6px}
.cTile div{font-weight:950}

.section{margin-top:14px}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin:18px 2px 12px;
}
.sectionHead h2{margin:0; font-size:22px; letter-spacing:-.2px}
.sectionHead p{margin:0; color:var(--muted); line-height:1.6; max-width:720px}

.catalog{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.item{
  grid-column: span 4;
  padding:16px;
  border-radius: var(--r1);
}
@media (max-width:980px){ .item{grid-column: span 6} }
@media (max-width:640px){ .item{grid-column: span 12} }

.topline{display:flex; justify-content:space-between; align-items:flex-start; gap:10px}
.badge{
  font-size:12px;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(46,125,111,.10);
  color: var(--accent);
}
.pack{
  color:var(--muted);
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.item h3{margin:12px 0 6px; font-size:16px}
.item p{margin:0; color:var(--muted); line-height:1.6; font-size:13.5px}
.bottomline{
  margin-top:14px;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
}
.price{font-weight:950; font-size:18px; letter-spacing:.2px}
.pick{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.pick button{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
}
.pick button:hover{background: rgba(20,32,42,.02)}

.infoGrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .infoGrid{grid-template-columns:1fr} }
.info{
  padding:16px;
}
.icon{
  width:34px; height:34px; border-radius:14px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.8);
  font-weight:950;
  color: var(--accent2);
}
.info h3{margin:10px 0 6px}
.info p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .faq{grid-template-columns:1fr} }
details{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:12px 14px;
}
summary{
  cursor:pointer;
  font-weight:950;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.65}

.orderWrap{
  display:grid;
  grid-template-columns: 1fr .95fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width:980px){ .orderWrap{grid-template-columns:1fr} }
.formCard{padding:18px}
.formCard h3{margin:0 0 6px}
.formCard p{margin:0 0 14px; color:var(--muted); line-height:1.6}
form{display:grid; gap:10px}
.field{display:grid; gap:6px}
label{font-size:12px; color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  color:var(--ink);
}
textarea{min-height:92px; resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color: rgba(46,125,111,.35);
  box-shadow: 0 0 0 4px rgba(46,125,111,.12);
}
.row2{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
@media (max-width:520px){ .row2{grid-template-columns:1fr} }
.note{font-size:12px; color:var(--muted); line-height:1.55;}

.companyCard{padding:18px}
.companyCard h3{margin:0 0 10px}
.kv{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  background: rgba(20,32,42,.02);
}
.k{color:var(--muted); font-size:12px}
.v{font-weight:950; margin-top:4px}
.sep{height:1px; background:var(--line); margin:10px 0}

.footer{
  margin-top:20px;
  border-top:1px solid var(--line);
  background:#fff;
  border-radius: var(--r1);
  overflow:hidden;
}
.footInner{
  padding:16px;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footInner small{color:var(--muted); line-height:1.6}
.footLinks{display:flex; gap:12px; flex-wrap:wrap}
.footLinks a{color:var(--muted); text-decoration:none}
.footLinks a:hover{color:var(--ink)}

.page{
  padding:10px 0 26px;
}
.page .card{padding:18px}
.page h1{margin:0 0 10px; font-size:28px; letter-spacing:-.2px}
.page p,.page li{color:var(--muted); line-height:1.75}
