 :root{
    --bg:#ffffff;
    --surface:#f6f8fb;
    --line:#e7edf5;
    --text:#0f172a;
    --muted:#475569;
    --accent:#2563eb;
    --accent2:#1d4ed8;
    --ok:#16a34a;
    --danger:#ef4444;
    --radius:18px;
    --shadow:0 14px 40px rgba(15,23,42,.10);
  }

  .heroClean2{background:var(--bg); color:var(--text);}
  .topTimerBar{
    background:#0b1220;
    color:#fff;
    padding:10px 0;
  }
  .topTimerBar__in{
    width:min(1100px, 100% - 24px);
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
  }
  .topTimerBar__left{display:flex; align-items:center; gap:10px; font-weight:600; opacity:.95}
  .dot{width:10px;height:10px;border-radius:999px;background:var(--danger); box-shadow:0 0 0 6px rgba(239,68,68,.18)}
  .timer{display:flex; align-items:center; gap:10px}
  .tCell{display:flex; flex-direction:column; align-items:center; min-width:42px}
  .tNum{
    font-weight:800;
    font-size:20px;
    letter-spacing:.02em;
    line-height:1;
    padding:6px 10px;
    border-radius:12px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
  }
  .tLbl{font-size:11px; opacity:.8; margin-top:4px}
  .tSep{opacity:.75; font-weight:800}

  /* Marquee */
  .marquee{
    background:#f1f5ff;
    border-bottom:1px solid var(--line);
    overflow:hidden;
    white-space:nowrap;
  }
  .marquee__track{position:relative}
  .marquee__row{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:10px 0;
    will-change:transform;
    animation:marquee 18s linear infinite;
  }
  .mItem{font-weight:700; color:#111827}
  .mDot{opacity:.35}
  @keyframes marquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
  }
  @media (prefers-reduced-motion: reduce){
    .marquee__row{animation:none}
  }

  .heroCard{
    margin:-11px auto;
    background:#fff;
    box-shadow:var(--shadow);
    padding:18px 16px 18px;
  }

  .kicker{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    background:var(--surface);
    border:1px solid var(--line);
    font-weight:800;
    letter-spacing:.04em;
    font-size:12px;
    color:#111827;
  }

  .title{
    margin:14px 0 10px;
    font-size:28px;
    line-height:1.12;
    letter-spacing:-.02em;
  }
  .title span{
    color:var(--accent2);
    white-space:nowrap;
  }
  .sub{
    margin:0 0 14px;
    color:var(--muted);
    font-size:15px;
    line-height:1.55;
  }

  /* Center image */
  .heroImg{
    position:relative;
    margin:12px 0 14px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
    background:linear-gradient(180deg, #fafcff, #f3f7ff);
  }
  .heroImg img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }
  .volSticker{
    position:absolute;
    left:12px;
    top:12px;
    background:rgba(22,163,74,.10);
    border:1px solid rgba(22,163,74,.22);
    color:#0f172a;
    border-radius:16px;
    padding:10px 12px;
    backdrop-filter: blur(6px);
  }
  .volTop{font-size:12px; font-weight:800; color:#14532d; opacity:.95}
  .volNum{font-size:26px; font-weight:900; line-height:1; margin-top:4px}
  .volNum span{font-size:14px; font-weight:800; margin-left:4px; opacity:.85}

  .trustRow{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin:10px 0 12px;
  }
  .trust{
    display:flex; align-items:center; gap:10px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:14px;
    padding:10px 12px;
    font-weight:700;
    color:#111827;
  }
  .ic{font-size:18px}
  @media (min-width:720px){
    .heroCard{padding:22px 22px 20px}
    .trustRow{grid-template-columns:repeat(3,1fr)}
    .title{font-size:34px}
  }

  /* Price */
  .priceCard{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    align-items:center;
    margin:14px 0 14px;
    padding:14px;
    border-radius:18px;
    border:1px solid var(--line);
    background:#fff;
  }
  .priceLeft,.priceRight{display:flex; flex-direction:column; gap:6px}
  .pLabel{font-size:12px; font-weight:800; color:var(--muted)}
  .pOld .old{
    font-size:22px; font-weight:900; text-decoration:line-through; opacity:.55
  }
  .pNow .now{font-size:34px; font-weight:950; color:#0f172a}
  .uah{font-weight:800; opacity:.8}
  .saveChip{
    justify-self:start;
    display:inline-flex;
    padding:9px 12px;
    border-radius:999px;
    background:rgba(239,68,68,.10);
    border:1px solid rgba(239,68,68,.22);
    color:#7f1d1d;
    font-weight:900;
    font-size:13px;
  }
  @media (min-width:720px){
    .priceCard{grid-template-columns:1fr auto 1fr}
    .saveChip{justify-self:center}
    .priceRight{align-items:flex-end}
  }

  /* CTA */
  .ctaBtn{
    display:flex; align-items:center; justify-content:center;
    width:100%;
    padding:16px 18px;
    border-radius:16px;
    text-decoration:none;
    color:#fff;
    font-weight:950;
    letter-spacing:.02em;
    background:linear-gradient(180deg, var(--accent), var(--accent2));
    border:1px solid rgba(37,99,235,.25);
    box-shadow:0 14px 28px rgba(37,99,235,.22);
    transition:.18s transform,.18s filter;
  }
  .ctaBtn:hover{transform:translateY(-1px); filter:brightness(1.03)}
  .ctaBtn:active{transform:translateY(0)}

  .scarcity{
    margin:12px 0 0;
    text-align:center;
    font-weight:800;
    color:#111827;
  }
  .scarcity b{
    display:inline-block;
    min-width:34px;
    padding:2px 10px;
    border-radius:10px;
    background:#0b1220;
    color:#fff;
    margin:0 6px;
  }
  .upd{display:block; margin-top:6px; font-size:12px; color:var(--muted); font-weight:700}
  .note{margin-top:12px; font-size:12px; color:var(--muted); line-height:1.45}
  .fixedOrderBtn{
  position:fixed;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  z-index:9999;

  width:calc(100% - 32px);
  max-width:420px;

  padding:16px 18px;
  border-radius:16px;

  background:linear-gradient(180deg, #2563eb, #1d4ed8);
  color:#fff;
  text-align:center;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.04em;

  box-shadow:0 14px 30px rgba(37,99,235,.35);
  border:1px solid rgba(255,255,255,.25);

  opacity:0;
  pointer-events:none;
  transition:.25s ease;
}

.fixedOrderBtn.show{
  opacity:1;
  pointer-events:auto;
}

.fixedOrderBtn.hide{
  opacity:0;
  pointer-events:none;
}

/* чтобы кнопка не перекрывала форму */
@media (max-width: 768px){
  body{
    padding-bottom:90px;
  }
}
.orderSection{
  padding:28px 0 40px;
  background:#f6f8fb;
}

.orderCard{
  width:min(560px, 100% - 24px);
  margin:0 auto;
  background:#fff;
  border:1px solid #e7edf5;
  border-radius:22px;
  padding:22px 18px 24px;
  box-shadow:0 14px 36px rgba(15,23,42,.10);
}

.orderTitle{
  margin:0 0 6px;
  font-size:26px;
  font-weight:900;
}

.orderSub{
  margin:0 0 16px;
  color:#475569;
  font-size:14px;
}

.orderForm{
  display:grid;
  gap:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.field label{
  font-size:13px;
  font-weight:800;
  color:#0f172a;
}

.field input,
.field select{
  height:52px;
  border-radius:14px;
  border:1px solid #e7edf5;
  padding:0 14px;
  font-size:15px;
  outline:none;
  background:#fff;
}

.field input:focus,
.field select:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.pricePreview{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid #e7edf5;
  font-weight:800;
}

.pricePreview b{
  font-size:20px;
}

.orderBtn{
  height:56px;
  border-radius:16px;
  border:none;
  cursor:pointer;
  background:linear-gradient(180deg, #2563eb, #1d4ed8);
  color:#fff;
  font-size:16px;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 14px 28px rgba(37,99,235,.28);
}

.orderBtn:active{
  transform:translateY(1px);
}

.orderTrust{
  display:grid;
  grid-template-columns:1fr;
  gap:6px;
  margin-top:6px;
  font-size:13px;
  color:#0f172a;
  font-weight:700;
}

@media (min-width:520px){
  .orderTrust{
    grid-template-columns:repeat(3,1fr);
    text-align:center;
  }
}

.orderNote{
  margin-top:8px;
  font-size:12px;
  color:#64748b;
  text-align:center;
}
.gifFeature{
    padding:22px 0;
    background:#000;
    color:#fff;
  }

  .gifCard{
    width:min(560px, 100% - 24px);
    margin:0 auto;
    padding:18px 16px 18px;
    border-radius:22px;
    background:radial-gradient(900px 420px at 50% 0%, rgba(255,31,31,.18), transparent 60%),
               linear-gradient(180deg, #070707, #000);
    border:2px dashed rgba(255,0,0,.55);
    box-shadow:
      0 0 0 4px rgba(255,0,0,.08),
      0 18px 44px rgba(0,0,0,.72);
  }

  .gifTitle{
    margin:0 0 14px;
    text-align:center;
    font-size:22px;
    line-height:1.15;
    font-weight:950;
    letter-spacing:.04em;
    text-transform:uppercase;
    text-shadow:0 0 14px rgba(255,31,31,.35);
  }

  .gifMedia{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    background:#0a0a0a;
    border:3px solid rgba(255,0,0,.65);
    box-shadow:
      0 0 0 4px rgba(255,31,31,.12),
      0 22px 44px rgba(0,0,0,.65);
  }

  .gifMedia img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }

  /* М’яка червона підсвітка як у твоєму блоці */
  .gifGlow{
    position:absolute;
    inset:-12px;
    pointer-events:none;
    border-radius:18px;
    box-shadow:
      0 0 0 10px rgba(255,31,31,.08),
      0 0 36px rgba(255,31,31,.22);
  }

  .gifText{
    margin:14px 0 12px;
    font-size:14px;
    line-height:1.55;
    color:rgba(255,255,255,.90);
    text-align:center;
  }

  .gifText b{color:#fff; font-weight:950}

  .gifBullets{
    display:grid;
    gap:10px;
    margin-top:12px;
  }

  .gItem{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
  }

  .gDot{
    width:10px;
    height:10px;
    margin-top:5px;
    border-radius:999px;
    background:#ff1f1f;
    box-shadow:0 0 0 6px rgba(255,31,31,.16);
    flex:0 0 auto;
  }

  .gItem span{
    font-size:13px;
    line-height:1.35;
    color:rgba(255,255,255,.92);
  }

  .gItem b{
    font-weight:950;
    color:#fff;
  }

  @media (min-width:560px){
    .gifCard{padding:22px 20px 20px}
    .gifTitle{font-size:24px}
    .gifText{font-size:15px}
  }
  uFeature{
    padding:18px 0 10px;
    background:var(--bg);
    color:var(--text);
  }

  .uFeature__card{
    width:min(560px, 100% - 24px);
    margin:0 auto;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:18px 16px 16px;
  }

  .uFeature__kicker{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    background:var(--surface);
    border:1px solid var(--line);
    color:#111827;
    font-weight:800;
    font-size:13px;
  }

  .uFeature__dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background:var(--danger);
    box-shadow:0 0 0 6px rgba(239,68,68,.14);
    flex:0 0 auto;
  }

  .uFeature__title{
    margin:14px 0 10px;
    font-size:22px;
    line-height:1.15;
    letter-spacing:.02em;
    font-weight:950;
    text-transform:uppercase;
  }

  .uFeature__text{
    margin:0 0 14px;
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
  }

  .uFeature__text b{
    color:var(--text);
    font-weight:950;
  }

  .uFeature__media{
    margin:12px 0 14px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
    background:linear-gradient(180deg, #fafcff, #f3f7ff);
  }
  .uFeature__media img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }

  .uFeature__list{
    display:grid;
    gap:10px;
    margin:10px 0 14px;
  }

  .uFeature__item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    background:var(--surface);
    border:1px solid var(--line);
    color:#0f172a;
    font-weight:700;
    font-size:13px;
    line-height:1.35;
  }

  .uFeature__bullet{
    width:10px;
    height:10px;
    margin-top:4px;
    border-radius:999px;
    background:var(--accent);
    box-shadow:0 0 0 6px rgba(37,99,235,.12);
    flex:0 0 auto;
  }

  .uFeature__item b{
    font-weight:950;
  }

  .uFeature__cta{
    margin-top:2px;
  }

  .uFeature__note{
    margin-top:10px;
  }

  @media (min-width:560px){
    .uFeature__card{padding:20px 18px 18px}
    .uFeature__title{font-size:24px}
    .uFeature__text{font-size:15px}
  }
    /* компактність: менше повітря, без окремої orderSection */
  .heroOrder .heroBody{padding:14px 0 18px}

  .heroHead{display:grid; gap:12px}
  .heroHead__copy{margin:0}
  @media (min-width: 840px){
    .heroHead{grid-template-columns:1.05fr .95fr; align-items:start}
    .heroImg{margin:0}
  }

  /* Order inline */
  .orderInline{
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid var(--line);
  }
  .orderInline__head{margin-bottom:10px}
  .orderInline .orderTitle{margin:0 0 6px; font-size:22px}
  .orderInline .orderSub{margin:0; font-size:13px}

  .orderGrid{
    display:grid;
    gap:12px;
  }
  @media (min-width: 560px){
    .orderGrid{
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .orderGrid__full{grid-column:1 / -1}
  }

  /* зробимо форму компактнішою, не міняючи твій стиль */
  .orderInline .field input,
  .orderInline .field select{height:50px}
  .orderInline .orderBtn{height:54px}

  /* прибираємо зайві відступи, якщо вони були від orderSection */
  .orderSection{padding:0; background:transparent}
  .orderHighlight{
  position:relative;
  margin-top:20px;
  padding:18px 16px 16px;

  background:
    radial-gradient(600px 120px at 50% 0%, rgba(37,99,235,.10), transparent 60%),
    linear-gradient(180deg, #ffffff, #f8faff);

  border:2px solid rgba(37,99,235,.35);
  border-radius:22px;

  box-shadow:
    0 0 0 6px rgba(37,99,235,.08),
    0 22px 50px rgba(15,23,42,.18);
}

/* верхний акцент */
.orderHighlight::before{
  content:"";
  position:absolute;
  top:-2px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* заголовок формы — сильнее */
.orderHighlight .orderTitle{
  font-size:24px;
  font-weight:950;
}

/* подзаголовок — компактнее */
.orderHighlight .orderSub{
  font-size:13px;
  margin-bottom:12px;
}

/* поля — чуть контрастнее */
.orderHighlight .field input,
.orderHighlight .field select{
  background:#fff;
  border:1.5px solid var(--line);
}

.orderHighlight .field input:focus,
.orderHighlight .field select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(37,99,235,.18);
}

/* блок суммы — как карточка */
.orderHighlight .pricePreview{
  background:linear-gradient(180deg, #f8faff, #eef4ff);
  border:1.5px solid rgba(37,99,235,.25);
}

/* кнопка — визуальный якорь */
.orderHighlight .orderBtn{
  font-size:17px;
  height:58px;
  box-shadow:
    0 16px 34px rgba(37,99,235,.35),
    inset 0 -2px 0 rgba(0,0,0,.15);
}

/* блок доверия — компакт и аккуратный */
.orderHighlight .orderTrust{
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed var(--line);
}
.powerImgBlock{
  padding:22px 0;
  background:var(--bg);
}

.powerImgCard{
  width:min(920px, 100% - 24px);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px 16px 18px;
  box-shadow:var(--shadow);
}

.powerImgTitle{
  margin:0 0 6px;
  font-size:24px;
  font-weight:950;
}

.powerImgSub{
  margin:0 0 16px;
  font-size:14px;
  color:var(--muted);
}

.powerImgGrid{
  display:grid;
  gap:12px;
}

@media (min-width:640px){
  .powerImgGrid{
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (min-width:900px){
  .powerImgGrid{
    grid-template-columns:repeat(3, 1fr);
  }
}

.powerImgItem{
  display:flex;
  gap:12px;
  padding:10px;
  border-radius:18px;
  background:var(--surface);
  border:1px solid var(--line);
}

.pImg{
  width:72px;
  height:72px;
  border-radius:14px;
  overflow:hidden;
  flex:0 0 auto;
  border:1px solid var(--line);
  background:#fff;
}

.pImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pText{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.pName{
  font-size:14px;
  font-weight:900;
  margin-bottom:2px;
}

.pDesc{
  font-size:13px;
  color:var(--muted);
  line-height:1.35;
}

.powerImgNote{
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed var(--line);
  font-size:12px;
  color:var(--muted);
}
 .howBlock{
    padding:22px 0;
    background:var(--bg);
    color:var(--text);
  }

  .howCard{
    width:min(560px, 100% - 24px);
    margin:0 auto;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:14px 14px 16px;
  }

  .howMedia{
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
    background:linear-gradient(180deg, #fafcff, #f3f7ff);
    box-shadow:0 10px 22px rgba(15,23,42,.10);
  }

  .howMedia img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }

  .howText{
    margin:12px 6px 0;
    text-align:center;
    font-size:14px;
    line-height:1.55;
    color:var(--text);
    font-weight:700;
  }

  @media (min-width:560px){
    .howCard{padding:16px 16px 18px}
    .howText{font-size:15px}
  }
  .techBlock{
    padding:22px 0;
    background:var(--bg);
    color:var(--text);
  }

  .techCard{
    width:min(920px, 100% - 24px);
    margin:0 auto;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:18px 16px 16px;
  }

  .techHead{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
  }

  .techIcon{
    width:44px;
    height:44px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg, rgba(245,158,11,.18), rgba(245,158,11,.10));
    border:1px solid rgba(245,158,11,.25);
    color:#b45309;
    flex:0 0 auto;
  }
  .techIcon svg{width:24px;height:24px}

  .techTitle{
    margin:0;
    font-size:24px;
    font-weight:950;
    letter-spacing:-.02em;
  }

  .techGrid{
    display:grid;
    gap:14px;
  }

  .techMedia{
    border-radius:18px;
    border:1px solid var(--line);
    background:linear-gradient(180deg, #fafcff, #f3f7ff);
    padding:10px;
    display:grid;
    place-items:center;
  }

  .techMedia img{
    width:min(260px, 100%);
    height:auto;
    display:block;
  }

  .techBody{
    display:grid;
    gap:12px;
  }

  /* list */
  .techList{
    display:grid;
    gap:10px;
  }

  .techItem{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px 12px;
    border-radius:16px;
    background:var(--surface);
    border:1px solid var(--line);
    font-weight:800;
    color:#111827;
    line-height:1.35;
    font-size:13px;
  }

  .techCheck{
    width:22px;
    height:22px;
    border-radius:999px;
    background:rgba(245,158,11,.16);
    border:1px solid rgba(245,158,11,.28);
    position:relative;
    flex:0 0 auto;
    margin-top:1px;
  }
  .techCheck::after{
    content:"";
    position:absolute;
    inset:0;
    margin:auto;
    width:10px;
    height:6px;
    border-left:2px solid #b45309;
    border-bottom:2px solid #b45309;
    transform:rotate(-45deg);
    top:6px;
    left:6px;
  }

  /* note text */
  .techNote{
    padding:12px 12px;
    border-radius:18px;
    border:1px solid var(--line);
    background:#fff;
  }
  .techNoteTitle{
    font-weight:950;
    margin-bottom:6px;
  }
  .techNoteText{
    color:var(--muted);
    font-weight:700;
    line-height:1.5;
    font-size:13px;
  }

  @media (min-width:780px){
    .techCard{padding:20px 18px 18px}
    .techGrid{
      grid-template-columns:.9fr 1.1fr;
      align-items:center;
      gap:18px;
    }
    .techTitle{font-size:26px}
  }
  .useCompact{
  padding:18px 0;
  background:var(--bg);
}

.useCompactCard{
  width:min(920px, 100% - 24px);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px 14px;
  box-shadow:var(--shadow);
}

.useCompactTitle{
  margin:0 0 12px;
  font-size:22px;
  font-weight:950;
}

.useCompactGrid{
  display:grid;
  gap:10px;
}

@media (min-width:640px){
  .useCompactGrid{
    grid-template-columns:repeat(2, 1fr);
  }
}

.useCompactItem{
  display:flex;
  gap:10px;
  align-items:center;
  padding:8px 10px;
  border-radius:14px;
  background:var(--surface);
  border:1px solid var(--line);
}

.useImg{
  width:64px;
  height:64px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--line);
  flex:0 0 auto;
  background:#fff;
}

.useImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.useTxt{
  font-size:13.5px;
  line-height:1.4;
  color:var(--text);
  font-weight:700;
}

.useTxt b{
  font-weight:950;
}
.reviewsMini{
  padding:18px 0;
  background:var(--bg);
}

.reviewsMiniCard{
  width:min(920px, 100% - 24px);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px 14px;
  box-shadow:var(--shadow);
}

.reviewsMiniTitle{
  margin:0 0 10px;
  font-size:22px;
  font-weight:950;
}

.reviewsMiniList{
  display:grid;
  gap:8px;
  max-height:350px;        /* компактность */
  overflow:auto;
  padding-right:6px;
}

.reviewMini{
  padding:10px 12px;
  border-radius:14px;
  background:var(--surface);
  border:1px solid var(--line);
  font-size:13.5px;
  line-height:1.4;
}

.reviewMini b{
  display:block;
  font-weight:900;
  margin-bottom:2px;
}

.reviewMini span{
  color:var(--muted);
  font-weight:700;
}

/* аккуратный скролл */
.reviewsMiniList::-webkit-scrollbar{
  width:6px;
}
.reviewsMiniList::-webkit-scrollbar-thumb{
  background:#dbe2ef;
  border-radius:10px;
}

.reviewsMiniNote{
  margin-top:10px;
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:var(--text);
}
.howOrder{
    padding:26px 0;
    background:linear-gradient(180deg, #0b1220, #070b14);
    color:#fff;
  }
  .howOrder__in{
    width:min(920px, 100% - 24px);
    margin:0 auto;
  }
  .howOrder__title{
    margin:0 0 18px;
    text-align:center;
    font-size:30px;
    line-height:1.05;
    font-weight:950;
    letter-spacing:.02em;
    text-transform:uppercase;
  }

  .howOrder__grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .howOrder__item{
    border-radius:18px;
    padding:14px 14px 12px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    text-align:center;
  }

  .howOrder__icon{
    width:62px;
    height:62px;
    margin:2px auto 10px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
  }
  .howOrder__icon svg{width:34px;height:34px}

  .howOrder__h{
    font-weight:950;
    font-size:16px;
    margin-bottom:6px;
  }
  .howOrder__p{
    font-size:13px;
    line-height:1.35;
    color:rgba(255,255,255,.86);
    font-weight:700;
  }

  @media (min-width:720px){
    .howOrder__grid{grid-template-columns:repeat(2, 1fr)}
    .howOrder__title{font-size:34px}
    .howOrder__item{padding:16px 16px 14px}
  }
  .siteFooter{
  background:linear-gradient(180deg, #0b1220, #070b14);
  color:#fff;
  padding:28px 0 18px;
}

.siteFooter__in{
  width:min(1100px, 100% - 24px);
  margin:0 auto;
}

.footerTop{
  display:grid;
  gap:20px;
}

.footerBrand{
  max-width:360px;
}

.footerLogo{
  font-size:20px;
  font-weight:950;
  margin-bottom:6px;
}

.footerDesc{
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.8);
}

.footerCols{
  display:grid;
  gap:16px;
}

.footerCol{
  display:grid;
  gap:6px;
  font-size:13px;
}

.footerTitle{
  font-weight:900;
  margin-bottom:4px;
}

.footerCol a,
.footerCol span{
  color:rgba(255,255,255,.85);
  text-decoration:none;
}

.footerCol a:hover{
  text-decoration:underline;
}

.footerBottom{
  margin-top:20px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:12px;
  color:rgba(255,255,255,.75);
}

.footerLinks{
  display:flex;
  gap:12px;
}

.footerLinks a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
}

.footerLinks a:hover{
  text-decoration:underline;
}

@media (min-width:820px){
  .footerTop{
    grid-template-columns:1fr 2fr;
    align-items:start;
  }
  .footerCols{
    grid-template-columns:repeat(3, 1fr);
  }
  .footerBottom{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}