/* ============================================
   СЕКЦИЯ СТАТИСТИКИ
   ============================================ */

.stats{
  padding:30px 0 80px;
  position:relative;
  overflow:hidden;
  margin-top:-20px;
}

.stats-in{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
  position:relative;
  z-index:2;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.st-card{
  position:relative;
  background:var(--card);
  border:none;
  border-radius:22px;
  padding:24px 22px;
  overflow:hidden;
  text-align:center;
  transition:all .35s cubic-bezier(.2,.7,.2,1);
}

[data-theme="dark"] .st-card{
  background:var(--card);
}

.st-card::before{
  content:"";
  position:absolute;
  width:200px;
  height:200px;
  border-radius:50%;
  filter:blur(40px);
  opacity:0;
  transition:opacity .35s;
  top:-60px;
  right:-60px;
}

.st-card:nth-child(odd)::before,
.st-card:nth-child(even)::before{
  background:var(--orange);
}

.st-card:hover{
  transform:translateY(-6px);
  border-color:transparent;
  box-shadow:var(--sh-lg);
}

.st-card:hover::before{
  opacity:0.18;
}

.st-top{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.st-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  transition:transform .3s;
}

.st-card:nth-child(1) .st-icon,
.st-card:nth-child(2) .st-icon,
.st-card:nth-child(3) .st-icon,
.st-card:nth-child(4) .st-icon{background:var(--orange-l);color:var(--orange);}

.st-card:hover .st-icon{
  transform:rotate(-10deg) scale(1.1);
}

.st-num-mini{
  font-family:'Unbounded',sans-serif;
  font-size:11px;
  font-weight:700;
  color:var(--ink3);
  letter-spacing:0.08em;
}

.st-num{
  font-family:'Unbounded',sans-serif;
  font-size:clamp(40px,4vw,54px);
  font-weight:800;
  line-height:0.95;
  letter-spacing:-0.04em;
  color:var(--blue);
  margin-bottom:8px;
  display:flex;
  align-items:baseline;
  justify-content:center;
}

.st-num .plus{
  font-size:0.55em;
  margin-left:2px;
  font-weight:700;
  color:var(--orange);
}

.st-lbl{
  font-size:14px;
  color:var(--ink2);
  font-weight:500;
  line-height:1.4;
}

/* ============================================
   СЕКЦИЯ УСЛУГ
   ============================================ */

.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.svc-card{
  background:var(--card);
  border:none;
  border-radius:24px;
  padding:32px 30px;
  position:relative;
  overflow:hidden;
  transition:all .4s cubic-bezier(.2,.7,.2,1);
  min-height:260px;
  display:flex;
  flex-direction:column;
  cursor:default;
}

.svc-card::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  border-radius:50%;
  filter:blur(50px);
  opacity:0;
  transition:opacity .4s;
  top:-100px;
  right:-100px;
  pointer-events:none;
}

.svc-card:nth-child(odd)::before{
  background:var(--blue);
}

.svc-card:nth-child(even)::before{
  background:var(--orange);
}

.svc-card:hover{
  transform:translateY(-8px);
  border-color:transparent;
  box-shadow:var(--sh-lg);
}

.svc-card:hover::before{
  opacity:0.18;
}

.svc-num{
  font-family:'Unbounded',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.05em;
  margin-bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ink3);
}

.svc-num .dash{
  width:20px;
  height:1.5px;
  background:currentColor;
  display:inline-block;
}

.svc-card .ico{
  width:60px;
  height:60px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:24px;
  transition:transform .4s,background .3s;
  position:relative;
}

.svc-card:nth-child(odd) .ico{
  background:var(--blue-l);
  color:var(--blue);
}

.svc-card:nth-child(even) .ico{
  background:var(--orange-l);
  color:var(--orange);
}

.svc-card:hover .ico{
  transform:rotate(-10deg) scale(1.15);
}

.svc-card:nth-child(odd):hover .ico{
  background:var(--blue);
  color:#fff;
}

.svc-card:nth-child(even):hover .ico{
  background:var(--orange);
  color:#fff;
}

.svc-card .ico::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:20px;
  border:2px solid currentColor;
  opacity:0;
}

.svc-card:hover .ico::after{
  animation:pulseRing 1.4s ease-out infinite;
}

.svc-card h3{
  font-size:20px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:10px;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.svc-card p{
  font-size:14px;
  color:var(--ink2);
  line-height:1.65;
  flex:1;
}

.svc-card .underline{
  height:3px;
  width:32px;
  background:var(--orange);
  border-radius:2px;
  margin-top:18px;
  transition:width .4s;
}

.svc-card:nth-child(odd) .underline{
  background:var(--blue);
}

.svc-card:hover .underline{
  width:80px;
}

/* ============================================
   СЕКЦИЯ ПРАЙС-ЛИСТА
   ============================================ */

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.pc{
  background:var(--card);
  border:none;
  border-radius:28px;
  padding:36px 30px;
  position:relative;
  transition:all .35s;
  display:flex;
  flex-direction:column;
  box-shadow:var(--sh-lg);
}

.pc:hover{
  transform:translateY(-6px);
  box-shadow:var(--sh-lg);
}

.pc.hot{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
  position:relative;
  overflow:hidden;
  margin-top:0;
  box-shadow:0 16px 40px rgba(10,21,48,0.18);
}

.pc.hot::before{
  display:none;
}

.pc-badge{
  position:absolute;
  top:24px;
  right:24px;
  background:var(--orange);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.1em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:20px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  z-index:2;
}

.pc-badge .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
}

.pc-num{
  font-family:'Unbounded',sans-serif;
  font-size:13px;
  font-weight:700;
  color:var(--ink3);
  margin-bottom:16px;
  letter-spacing:0.04em;
}

.pc.hot .pc-num{
  color:rgba(255,255,255,0.55);
}

.pc-name{
  font-family:'Unbounded',sans-serif;
  font-size:24px;
  font-weight:700;
  margin-bottom:24px;
  letter-spacing:-0.02em;
  line-height:1.15;
  color:var(--blue);
}

.pc.hot .pc-name{
  color:#fff;
}

.pc-price-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:6px;
}

.pc-price{
  font-family:'Unbounded',sans-serif;
  font-size:54px;
  font-weight:800;
  line-height:0.95;
  letter-spacing:-0.04em;
  color:var(--blue);
}

.pc.hot .pc-price{
  color:var(--orange);
}

.pc-from{
  font-size:14px;
  color:var(--ink3);
  font-weight:600;
}

.pc.hot .pc-from{
  color:rgba(255,255,255,0.55);
}

.pc-unit{
  font-size:13px;
  color:var(--ink2);
  margin-bottom:28px;
  font-weight:500;
}

.pc.hot .pc-unit{
  color:rgba(255,255,255,0.7);
}

.pc-list{
  list-style:none;
  margin-bottom:24px;
  flex:1;
}

.pc-list li{
  font-size:14px;
  padding:11px 0;
  display:flex;
  align-items:flex-start;
  gap:14px;
  border-bottom:1px solid var(--line);
  color:var(--ink2);
}

.pc.hot .pc-list li{
  border-bottom-color:rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.88);
}

.pc-list li:last-child{
  border-bottom:none;
}

.pc-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue);
  flex-shrink:0;
  margin-top:8px;
}

.pc.hot .pc-list li::before{
  background:var(--orange);
}

.pc-note{
  font-size:12px;
  color:var(--ink3);
  font-style:italic;
}

.pc.hot .pc-note{
  color:rgba(255,255,255,0.5);
}

/* ============================================
   «КАК ОФОРМИТЬ ЗАКАЗ» — pill + цепочка шагов
   ============================================ */

/* Шапка секции — по центру */
.how-head{
  text-align:center;
  margin-bottom:40px;
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}

.how-kicker{
  align-items:center;
}

.how-sub{
  margin:14px auto 0;
}

/* Pill-переключатель — по центру */
.how-switch{
  display:flex;
  justify-content:center;
  margin-bottom:64px;
}

.how-toggle{
  display:inline-flex;
  background:var(--card);
  border-radius:999px;
  padding:6px;
  box-shadow:var(--sh);
  gap:4px;
}

.how-opt{
  background:transparent;
  border:none;
  border-radius:999px;
  padding:12px 26px;
  font-family:'Manrope',sans-serif;
  font-size:14px;
  font-weight:700;
  color:var(--ink2);
  cursor:pointer;
  transition:all .25s cubic-bezier(.2,.7,.2,1);
  white-space:nowrap;
}

.how-opt:hover{
  color:var(--blue);
}

.how-opt.active-blue{
  background:var(--blue);
  color:#fff;
  box-shadow:0 6px 16px rgba(34,83,156,0.32);
}

.how-opt.active-orange{
  background:var(--orange);
  color:#fff;
  box-shadow:0 6px 16px rgba(255,101,0,0.32);
}

/* Цепочка шагов */
.how-steps{
  display:none;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  position:relative;
}

.how-steps.active{
  display:grid;
  animation:fadeUp .5s ease both;
}

/* Соединяющая линия между кружками — разных цветов для панелей */
.how-steps::before{
  content:"";
  position:absolute;
  top:32px; /* центр кружка-цифры 64px */
  left:10%;
  right:10%;
  height:2px;
  border-radius:1px;
  opacity:0.4;
  z-index:0;
}

.panel-catalog::before{
  background:var(--blue);
}

.panel-custom::before{
  background:var(--orange);
}

/* Один шаг */
.step-c{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:0 8px;
  transition:transform .25s cubic-bezier(.2,.7,.2,1);
}

.step-c:hover{
  transform:translateY(-4px);
}

/* Кружок с цифрой */
.step-c-dot{
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Unbounded',sans-serif;
  font-size:26px;
  font-weight:800;
  color:#fff;
  margin-bottom:18px;
  transition:transform .3s;
  flex-shrink:0;
}

.panel-catalog .step-c-dot{
  background:var(--blue);
  box-shadow:0 8px 22px rgba(34,83,156,0.32);
}

.panel-custom .step-c-dot{
  background:var(--orange);
  box-shadow:0 8px 22px rgba(255,101,0,0.32);
}

.step-c:hover .step-c-dot{
  transform:scale(1.08);
}

.step-c-t{
  font-family:'Unbounded',sans-serif;
  font-size:15px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:8px;
  letter-spacing:-0.01em;
  line-height:1.2;
  text-align:center;
  text-shadow:0 8px 22px rgba(34,83,156,0.32);
}

.panel-custom .step-c-t{
  color:var(--orange);
  text-shadow:0 8px 22px rgba(255,101,0,0.32);
}

.step-c-d{
  font-size:13px;
  color:var(--ink2);
  line-height:1.5;
}

/* ============================================
   АДАПТИВ ДЛЯ «КАК ОФОРМИТЬ ЗАКАЗ»
   ============================================ */

/* Анимации исчезновения при смене панели — мягкие, без смены сторон */
@keyframes howFadeOut{
  from{opacity:1;transform:translateY(0);}
  to{opacity:0;transform:translateY(-6px);}
}
@keyframes howFadeIn{
  from{opacity:0;transform:translateY(6px);}
  to{opacity:1;transform:translateY(0);}
}

/* ПЛАНШЕТ: вертикальный список — dots слева, текст справа, всё по центру страницы */
@media(max-width:1024px){
  .how-steps{
    grid-template-columns:1fr;
    gap:0;
    max-width:480px;
    margin-left:auto;
    margin-right:auto;
  }

  .how-steps.active{
    display:block;
  }

  /* Полоса вертикальная — слева, через центры dots */
  .how-steps::before{
    top:32px;
    bottom:32px;
    left:32px; /* центр dot 64px = 32px */
    right:auto;
    transform:none;
    width:3px;
    height:auto;
    opacity:0.4;
  }

  /* Каждый шаг — dot слева, текст справа */
  .step-c{
    display:grid;
    grid-template-columns:64px 1fr;
    align-items:start;
    column-gap:28px;
    row-gap:8px;
    padding:0;
  }

  .step-c + .step-c{
    margin-top:44px;
  }

  .step-c-dot{
    grid-column:1;
    grid-row:1 / span 2;
    margin:0;
  }

  /* И для catalog, и для custom — текст всегда справа */
  .panel-catalog .step-c-t,
  .panel-custom .step-c-t{
    grid-column:2;
    grid-row:1;
    text-align:left;
    margin-bottom:0;
    padding-top:8px;
  }
  .panel-catalog .step-c-d,
  .panel-custom .step-c-d{
    grid-column:2;
    grid-row:2;
    text-align:left;
  }

  /* Смена панели: мягкое исчезновение вверх, появление снизу */
  .how-steps.leaving .step-c-t,
  .how-steps.leaving .step-c-d{
    animation:howFadeOut .35s cubic-bezier(.25,.8,.3,1) forwards;
  }
  .how-steps.active:not(.leaving) .step-c-t,
  .how-steps.active:not(.leaving) .step-c-d{
    animation:howFadeIn .5s cubic-bezier(.25,.8,.3,1) both;
  }

  /* Лёгкий stagger по шагам */
  .how-steps.active .step-c:nth-child(2) .step-c-t,
  .how-steps.active .step-c:nth-child(2) .step-c-d{animation-delay:.05s;}
  .how-steps.active .step-c:nth-child(3) .step-c-t,
  .how-steps.active .step-c:nth-child(3) .step-c-d{animation-delay:.1s;}
  .how-steps.active .step-c:nth-child(4) .step-c-t,
  .how-steps.active .step-c:nth-child(4) .step-c-d{animation-delay:.15s;}
  .how-steps.active .step-c:nth-child(5) .step-c-t,
  .how-steps.active .step-c:nth-child(5) .step-c-d{animation-delay:.2s;}
}

/* МОБИЛЬНЫЙ: тот же принцип — dot слева, текст справа, просто компактнее */
@media(max-width:640px){
  .how-steps{
    max-width:340px;
  }

  .step-c + .step-c{
    margin-top:32px;
  }

  /* dot чуть меньше на мобильном */
  .step-c-dot{
    width:56px;
    height:56px;
    font-size:22px;
  }

  .step-c{
    grid-template-columns:56px 1fr;
    column-gap:18px;
  }

  /* Полоса смещена под новый размер dot */
  .how-steps::before{
    left:28px; /* центр dot 56px = 28px */
  }

  .panel-catalog .step-c-t,
  .panel-custom .step-c-t{
    padding-top:4px;
  }
}

.how-tabs{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:36px;
}

.how-tab{
  display:flex;
  align-items:center;
  gap:18px;
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:18px;
  padding:22px 24px;
  cursor:pointer;
  transition:all .3s;
  text-align:left;
  width:100%;
  position:relative;
  overflow:hidden;
}

.how-tab:hover{
  border-color:var(--blue);
  background:var(--blue-l);
}

.how-tab.active-blue{
  border-color:var(--blue);
  background:var(--blue);
  color:#fff;
}

.how-tab.active-orange{
  border-color:var(--orange);
  background:var(--orange);
  color:#fff;
}

.how-tab.active-blue .tab-ico,
.how-tab.active-orange .tab-ico{
  background:rgba(255,255,255,0.2);
  color:#fff;
}

.how-tab.active-blue .tab-sub,
.how-tab.active-orange .tab-sub{
  color:rgba(255,255,255,0.85);
}

.how-tab.active-blue .tab-arrow,
.how-tab.active-orange .tab-arrow{
  background:#fff;
  color:var(--blue);
}

.tab-ico{
  width:54px;
  height:54px;
  border-radius:14px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  transition:all .3s;
}

.how-tab:nth-child(1) .tab-ico{
  background:var(--blue-l);
  color:var(--blue);
}

.how-tab:nth-child(2) .tab-ico{
  background:var(--orange-l);
  color:var(--orange);
}

.tab-body{
  flex:1;
  min-width:0;
}

.tab-label{
  font-family:'Unbounded',sans-serif;
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
  letter-spacing:-0.01em;
  color:var(--blue);
}

.how-tab.active-blue .tab-label,
.how-tab.active-orange .tab-label{
  color:#fff;
}

.tab-sub{
  font-size:13px;
  color:var(--ink2);
  line-height:1.5;
}

.tab-arrow{
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--bg2);
  color:var(--ink2);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:all .25s;
}

.steps-panel{
  display:none;
}

.steps-panel.active{
  display:block;
}

.steps-tl{
  position:relative;
}

.steps-tl::before{
  content:"";
  position:absolute;
  left:30px;
  top:30px;
  height:calc(100% - 92px);
  width:3px;
  background:linear-gradient(180deg,var(--blue) 0%,var(--orange) 100%);
  border-radius:2px;
  opacity:0.18;
}

.panel-custom .steps-tl::before{
  background:linear-gradient(180deg,var(--orange) 0%,var(--blue) 100%);
}

.step-item{
  position:relative;
  padding-left:84px;
  padding-bottom:32px;
  opacity:0;
  transform:translateX(-20px);
  transition:opacity .55s ease,transform .55s ease;
}

.step-item:last-child{
  padding-bottom:0;
}

.steps-panel.active .step-item{
  opacity:1;
  transform:translateX(0);
}

.steps-panel.active .step-item:nth-child(1){transition-delay:0.05s;}
.steps-panel.active .step-item:nth-child(2){transition-delay:0.15s;}
.steps-panel.active .step-item:nth-child(3){transition-delay:0.25s;}
.steps-panel.active .step-item:nth-child(4){transition-delay:0.35s;}
.steps-panel.active .step-item:nth-child(5){transition-delay:0.45s;}

.step-dot{
  position:absolute;
  left:0;
  top:0;
  width:62px;
  height:62px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Unbounded',sans-serif;
  font-size:24px;
  font-weight:800;
  color:#fff;
  transition:all .3s;
  z-index:2;
}

.panel-catalog .step-dot{
  background:var(--blue);
  box-shadow:0 8px 22px rgba(34,83,156,0.32);
}

.panel-custom .step-dot{
  background:var(--orange);
  box-shadow:0 8px 22px rgba(255,101,0,0.32);
}

.step-dot::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:22px;
  border:2px solid currentColor;
  opacity:0;
}

.step-item:hover .step-dot{
  transform:scale(1.08) rotate(-5deg);
}

.step-item:hover .step-dot::before{
  animation:pulseRing 1.6s ease-out infinite;
}

.step-card{
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:18px;
  padding:20px 24px;
  transition:all .3s;
  position:relative;
}

.step-item:hover .step-card{
  border-color:transparent;
  box-shadow:var(--sh);
  transform:translateX(8px);
}

.step-t{
  font-family:'Unbounded',sans-serif;
  font-size:17px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:6px;
  letter-spacing:-0.01em;
  display:flex;
  align-items:center;
  gap:10px;
}

.step-t .step-icon{
  font-size:18px;
  color:var(--orange);
  transition:transform .3s;
}

.step-item:hover .step-t .step-icon{
  transform:rotate(-10deg) scale(1.15);
}

.step-d{
  font-size:14px;
  color:var(--ink2);
  line-height:1.6;
}

/* ============================================
   CTA-БЛОК
   ============================================ */

.sec-cta{
  padding:120px 0;
}

.cta-card{
  background:var(--card);
  border:none;
  border-radius:36px;
  padding:64px 56px;
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  color:var(--ink);
  box-shadow:0 18px 60px rgba(34,83,156,0.10);
  transition:transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s cubic-bezier(.2,.7,.2,1);
}

[data-theme="dark"] .cta-card{
  box-shadow:0 18px 60px rgba(0,0,0,0.4);
}

.cta-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 72px rgba(34,83,156,0.20);
}

[data-theme="dark"] .cta-card:hover{
  box-shadow:0 28px 72px rgba(0,0,0,0.55);
}

.cta-card::before,
.cta-card::after{
  display:none;
}

.cta-l{
  position:relative;
  z-index:2;
}

.cta-l .kicker .num{
  color:var(--orange);
}

.cta-l .kicker .lbl{
  color:var(--orange);
}

.cta-l h2{
  font-size:clamp(34px,3.4vw,48px);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-0.03em;
  margin-bottom:20px;
  color:var(--blue);
}

.cta-l p{
  font-size:16px;
  color:var(--ink2);
  line-height:1.7;
  margin-bottom:36px;
  max-width:480px;
}

.cta-r{
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  z-index:2;
}

.cta-cc{
  background:var(--bg2);
  border:1.5px solid var(--line);
  border-radius:18px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  gap:18px;
  transition:all .25s;
}

.cta-cc:hover{
  background:var(--blue-l);
  border-color:var(--blue-m);
  transform:translateX(6px);
}

.cta-cc-ico{
  width:52px;
  height:52px;
  border-radius:14px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  background:var(--blue-l);
  color:var(--blue);
}

.cta-cc:nth-child(1) .cta-cc-ico{background:var(--blue-l);color:var(--blue);}
.cta-cc:nth-child(2) .cta-cc-ico{background:var(--blue-l);color:var(--blue);}
.cta-cc:nth-child(3) .cta-cc-ico{background:var(--blue-l);color:var(--blue);}

.cta-cc-t{
  font-family:'Unbounded',sans-serif;
  font-size:14px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:3px;
  letter-spacing:-0.01em;
}

.cta-cc-s{
  font-size:13px;
  color:var(--ink2);
}

.cta-cc-s a{
  color:var(--ink2);
}

.cta-cc-s a:hover{
  color:var(--blue);
}

/* ============================================
   ФУТЕР
   ============================================ */

footer{
  background:#163d7a;
  padding:60px 0 0;
  color:rgba(255,255,255,0.75);
  position:relative;
  overflow:hidden;
}

[data-theme="dark"] footer{
  background:#0e2752;
}

footer::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,0.07),transparent 65%);
  top:-200px;
  left:-100px;
  filter:blur(60px);
  animation:drift 20s ease-in-out infinite;
}

footer::after{
  display:none;
}

.f-in{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
  position:relative;
  z-index:2;
}

.f-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.f-grid > div:not(:first-child){
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
}

.f-grid > div:not(:first-child) > h4,
.f-grid > div:not(:first-child) > ul{
  width:200px;
  max-width:100%;
}

.f-grid > div:first-child{
  grid-column:1 / -1;
  text-align:center;
  padding-bottom:32px;
  margin-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.f-brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}

.f-ico{
  flex-shrink:0;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* В футере лого на синем фоне — белое сопло + оранжевые слои */
.f-ico .logo-svg .logo-body,
.f-ico .logo-svg .logo-cone{
  fill:#fff;
}

.f-ico .logo-svg .logo-accent{
  fill:var(--orange);  /* капля и слои остаются оранжевыми */
}

.f-name{
  font-family:'Unbounded',sans-serif;
  font-size:26px;
  font-weight:800;
  color:#fff;
  line-height:1;
  letter-spacing:-0.01em;
  text-align:left;
}

.f-name span{
  display:block;
  font-family:'Unbounded',sans-serif;
  font-size:13px;
  font-weight:700;
  color:var(--orange);
  margin-top:6px;
  letter-spacing:0.01em;
}

.f-desc{
  display:none;
}

footer h4{
  font-family:'Unbounded',sans-serif;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:#fff;
  margin-bottom:20px;
  text-align:left;
}

footer ul{
  list-style:none;
  text-align:left;
}

footer li{
  margin-bottom:11px;
}

footer li a{
  font-size:14px;
  color:rgba(255,255,255,0.7);
  transition:color .18s;
}

footer li a:hover{
  color:var(--orange);
}

/* Контакты — просто текст, не ссылки (без подсветки) */
.f-contacts li{
  font-size:14px;
  color:rgba(255,255,255,0.7);
}

.f-bottom{
  padding:24px 0 32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:rgba(255,255,255,0.5);
  flex-wrap:wrap;
  gap:18px;
}

.f-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:1.5;
}

.f-copy span:first-child{
  color:rgba(255,255,255,0.8);
  font-weight:600;
}

.f-copy-sub{
  color:rgba(255,255,255,0.45);
  font-size:12px;
}

.f-bottom-r{
  display:flex;
  gap:10px;
}

.f-soc{
  width:40px;
  height:40px;
  border-radius:11px;
  background:rgba(255,255,255,0.08);
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,0.75);
  font-size:16px;
  font-weight:700;
  transition:all .25s;
  font-family:'Unbounded',sans-serif;
  text-decoration:none;
}

.f-soc:hover{
  background:var(--orange);
  color:#fff;
  transform:translateY(-3px) rotate(-5deg);
  box-shadow:0 8px 20px rgba(255,101,0,0.4);
}

.f-soc svg{
  width:22px;
  height:22px;
}

.f-soc .max-text{
  font-family:'Unbounded',sans-serif;
  font-weight:800;
  font-size:11px;
  letter-spacing:-0.02em;
  line-height:1;
}

/* ============================================
   АДАПТИВНОСТЬ КОМПОНЕНТОВ
   ============================================ */

@media(max-width:1440px){
  .stats-in,
  .f-in{
    padding-left:28px;
    padding-right:28px;
  }
}

@media(max-width:1180px){
  .sec-cta{
    padding:96px 0;
  }
  .cta-card{
    padding:56px 44px;
    gap:40px;
  }
  .f-grid{
    gap:36px;
  }
}

@media(max-width:1024px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }
  .svc-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .price-grid{
    grid-template-columns:1fr;
  }
  .how-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
  .cta-card{
    grid-template-columns:1fr;
    padding:48px 36px;
    gap:32px;
  }
  .f-grid{
    gap:16px;
  }
  .f-grid > div:not(:first-child) > h4,
  .f-grid > div:not(:first-child) > ul{
    width:170px;
  }
  .f-grid > div:not(:first-child) > ul li{
    font-size:13px;
  }
}

@media(max-width:820px){
  .sec-cta{
    padding:72px 0;
  }
  .stats{
    padding:24px 0 56px;
  }
  .st-card{
    padding:22px 20px;
  }
}

@media(max-width:640px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .svc-grid{
    grid-template-columns:1fr;
  }
  .f-grid{
    grid-template-columns:1fr;
    gap:32px;
    text-align:center;
  }
  .f-grid > div:first-child{
    grid-column:auto;
    padding-bottom:24px;
  }
  footer h4{
    text-align:center;
  }
  footer ul{
    text-align:center;
  }
  .sec-cta{
    padding:64px 0;
  }
  .stats-in,
  .f-in{
    padding-left:20px;
    padding-right:20px;
  }
  .cta-card{
    padding:36px 24px;
    border-radius:24px;
  }
  .pc{
    padding:28px 22px;
  }
  .pc-name{
    font-size:22px;
  }
  .pc-price{
    font-size:46px;
  }
  .st-num{
    font-size:36px;
  }
  .f-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .f-copy{
    align-items:center;
  }
  .step-item{
    padding-left:72px;
  }
  .step-dot{
    width:54px;
    height:54px;
    font-size:20px;
  }
  .steps-tl::before{
    left:26px;
  }
}

@media(max-width:420px){
  .stats-grid{
    grid-template-columns:1fr;
  }
}

/* ============================================
   FLASH — всплывающие уведомления (flash messages)
   Стек карточек справа сверху, над контентом.
   ============================================ */
.flash-stack{
  position:fixed;
  top:84px;
  right:20px;
  z-index:1000;
  display:flex;
  flex-direction:column;
  gap:10px;
  width:min(360px, calc(100vw - 40px));
}

.flash{
  display:flex;
  align-items:center;
  gap:11px;
  padding:14px 14px 14px 16px;
  border-radius:14px;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--sh);
  color:var(--ink);
  font-size:14px;
  font-weight:600;
  opacity:1;
  transform:translateX(0);
  transition:opacity .35s ease, transform .35s ease;
  animation:flashIn .35s ease;
}

@keyframes flashIn{
  from{ opacity:0; transform:translateX(20px); }
  to{ opacity:1; transform:translateX(0); }
}

.flash-ico{
  font-size:18px;
  line-height:1;
  flex-shrink:0;
}

.flash-text{
  flex:1;
  line-height:1.4;
}

.flash-close{
  color:var(--ink3);
  font-size:18px;
  line-height:1;
  padding:0 2px;
  flex-shrink:0;
  transition:color .2s;
}

.flash-close:hover{
  color:var(--ink);
}

/* Цвета по категориям — только иконка (без цветной каёмки) */
.flash-success .flash-ico{ color:#1ea65a; }
.flash-error   .flash-ico{ color:#e23b3b; }
.flash-warning .flash-ico{ color:var(--orange); }
.flash-info    .flash-ico{ color:var(--blue); }

@media(max-width:600px){
  .flash-stack{
    top:74px;
    right:10px;
    left:10px;
    width:auto;
  }
}

/* ============================================
   НАВБАР — авторизация (регистрация + профиль)
   ============================================ */

/* Кнопка «Регистрация» — вторичная, синий контур */
.btn-reg{
  display:inline-flex;
  align-items:center;
  padding:11px 20px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  color:var(--blue);
  box-shadow:inset 0 0 0 1.5px var(--blue);
  transition:all .25s;
}
.btn-reg:hover{
  background:var(--blue-l);
  transform:translateY(-1px);
}
[data-theme="dark"] .btn-reg{
  color:var(--ink);
  box-shadow:inset 0 0 0 1.5px var(--blue-m);
}
[data-theme="dark"] .btn-reg:hover{
  background:var(--blue-l);
}

/* Иконка корзины — в рамке (как кнопка темы), оранжевая в обеих темах. */
.nav-cart{
  width:44px;
  height:44px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg);
  font-size:20px;
  position:relative;
  box-shadow:inset 0 0 0 1.5px var(--orange);
  color:var(--orange);
  transition:background .2s, color .2s, box-shadow .2s;
}
.nav-cart:hover{
  background:var(--orange-l);
}

/* Счётчик позиций на иконке корзины — оранжевый кружок справа сверху */
.nav-cart-badge{
  position:absolute;
  top:-5px;
  right:-5px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-size:11px;
  font-weight:800;
  line-height:19px;
  text-align:center;
  box-shadow:0 0 0 2px var(--bg);
}
.nav-cart-badge[hidden]{
  display:none;
}

/* Колокольчик уведомлений (заказчик) — синий контур, бейдж непрочитанных. */
.nav-bell{
  width:44px;
  height:44px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg);
  font-size:19px;
  position:relative;
  box-shadow:inset 0 0 0 1.5px var(--blue);
  color:var(--blue);
  transition:background .2s, color .2s, box-shadow .2s;
}
.nav-bell:hover{
  background:var(--blue-l);
}
[data-theme="dark"] .nav-bell{
  box-shadow:inset 0 0 0 1.5px var(--blue-m);
  color:var(--blue-m);
}
.nav-bell-badge{
  position:absolute;
  top:-5px;
  right:-5px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-size:11px;
  font-weight:800;
  line-height:19px;
  text-align:center;
  box-shadow:0 0 0 2px var(--bg);
}
.nav-bell-badge[hidden]{
  display:none;
}

/* Иконка переключения витрина ↔ рабочее пространство — такой же вид, как у корзины. */
.nav-switch{
  width:44px;
  height:44px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg);
  font-size:19px;
  position:relative;
  box-shadow:inset 0 0 0 1.5px var(--orange);
  color:var(--orange);
  transition:background .2s, color .2s, box-shadow .2s;
}
.nav-switch:hover{
  background:var(--orange-l);
}

/* Модалка подтверждения выхода */
.logout-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(10,21,48,0.55);
  -webkit-backdrop-filter:blur(3px);
  backdrop-filter:blur(3px);
  animation:flashIn .2s ease;
}
.logout-modal[hidden]{
  display:none;
}

.logout-modal-card{
  width:100%;
  max-width:360px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--sh-lg);
  padding:28px 26px;
  text-align:center;
}
.logout-modal-ico{
  width:56px;
  height:56px;
  border-radius:16px;
  background:var(--orange-l);
  color:var(--orange);
  font-size:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
}
.logout-modal-card h3{
  font-family:'Unbounded',sans-serif;
  font-size:19px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:8px;
}
.logout-modal-card p{
  font-size:14px;
  color:var(--ink2);
  margin-bottom:22px;
}
.logout-modal-actions{
  display:flex;
  gap:10px;
}
.logout-cancel,
.logout-confirm{
  flex:1;
  padding:12px;
  border-radius:11px;
  font-family:'Manrope',sans-serif;
  font-size:14px;
  font-weight:700;
  text-align:center;
  cursor:pointer;
  transition:all .2s;
}
.logout-cancel{
  background:var(--bg2);
  color:var(--ink2);
  box-shadow:inset 0 0 0 1.5px var(--line);
}
.logout-cancel:hover{
  color:var(--ink);
  box-shadow:inset 0 0 0 1.5px var(--blue-m);
}
.logout-confirm{
  background:var(--orange);
  color:#fff;
}
.logout-confirm:hover{
  background:var(--orange-d);
}

/* Обёртка профиля: аватар+имя — кнопка-триггер меню */
.profile{
  position:relative;
  display:inline-flex;
  align-items:center;
}

/* Аватар + имя — по тапу открывается меню */
.profile-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:opacity .2s;
}
.profile-link:hover{
  opacity:.7;
}

/* Кружок-аватар с инициалом — оранжевый */
.profile-ava{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  font-family:'Unbounded',sans-serif;
  font-weight:700;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* Имя — оранжевое, димится вместе с аватаром при наведении */
.profile-name{
  font-weight:700;
  font-size:14px;
  color:var(--orange);
  max-width:120px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* Выпадающее меню — в стиле сортировки (пункты-ссылки с подчёркиванием) */
.profile-menu{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:150px;
  flex-direction:column;
  padding:10px 16px 12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--sh-lg);
  z-index:1001;
}
.profile-menu.open{
  display:flex;
}

.profile-menu-item{
  position:relative;
  align-self:flex-start;
  padding:8px 0;
  font-family:'Manrope',sans-serif;
  font-size:16px;
  font-weight:600;
  color:var(--ink3);
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  white-space:nowrap;
  transition:color .2s ease;
}
/* Подчёркивание слева-направо при hover */
.profile-menu-item::after{
  content:"";
  position:absolute;
  left:0;
  bottom:4px;
  width:0;
  height:2px;
  background:var(--orange);
  border-radius:2px;
  transition:width .25s ease;
}
.profile-menu-item:hover{
  color:var(--orange);
}
.profile-menu-item:hover::after{
  width:100%;
}

/* Разделитель перед «Выйти» */
.profile-menu-divider{
  align-self:stretch;
  height:1px;
  background:var(--line);
  margin:6px 0;
}

/* Бейдж-счётчик в пунктах меню (корзина / уведомления) */
.profile-menu-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 5px;
  margin-left:8px;
  border-radius:9px;
  background:var(--orange);
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-size:11px;
  font-weight:800;
  line-height:1;
  vertical-align:middle;
}
.profile-menu-badge[hidden]{
  display:none;
}

/* ============================================
   ПЕРЕКЛЮЧАТЕЛЬ РЕЖИМОВ (бургер + выпадающий список)
   Пользователь / Сотрудник / Администратор — единый для всех навбаров.
   ============================================ */
.mode-switch{ position:relative; display:inline-flex; align-items:center; }
.mode-btn{
  width:44px; height:44px;
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--bg);
  color:var(--orange);
  font-size:20px;
  cursor:pointer;
  box-shadow:inset 0 0 0 1.5px var(--orange);
  transition:background .2s;
}
.mode-btn:hover{ background:var(--orange-l); }
.mode-menu{
  display:none;
  position:absolute; top:calc(100% + 10px); right:0; z-index:1001;
  min-width:150px;
  flex-direction:column;
  padding:10px 16px 12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--sh-lg);
}
.mode-menu.open{ display:flex; }
.mode-menu-item{
  position:relative; align-self:flex-start;
  padding:8px 0;
  font-family:'Manrope',sans-serif;
  font-size:16px; font-weight:600; color:var(--ink3);
  background:none; border:none; cursor:pointer;
  text-align:left; white-space:nowrap;
  transition:color .2s ease;
}
.mode-menu-item::after{
  content:""; position:absolute; left:0; bottom:4px; width:0; height:2px;
  background:var(--orange); border-radius:2px; transition:width .25s ease;
}
.mode-menu-item:hover{ color:var(--orange); }
.mode-menu-item:hover::after{ width:100%; }
.mode-menu-item.is-on{ color:var(--blue); }
.mode-menu-item.is-on::after{ width:100%; background:var(--blue); }

/* На мобильном — у профиля только иконка (тап открывает меню); «Регистрация» скрыта */
@media(max-width:640px){
  .btn-reg{
    display:none;
  }
  .profile-name{
    display:none;
  }
  /* Шапка тесная — колокольчик прячем (уведомления есть в меню профиля). */
  .nav-bell{
    display:none;
  }
}

/* Админ-навбар: на узких экранах имя может не поместиться —
   оставляем только аватар (на десктопе/широких планшетах имя видно). */
@media(max-width:900px){
  .nav-admin .profile-name{
    display:none;
  }
}

/* ============================================
   НАВБАР — метка текущей страницы (мобильная версия)
   На десктопе скрыта (видны горизонтальные ссылки .nav-menu).
   На мобильном — ссылки прячутся, показывается слово текущей страницы.
   ============================================ */
.nav-current{
  display:none;
}

@media(max-width:640px){
  /* Горизонтальные ссылки прячем — их заменяет слово + стрелка */
  .nav-menu{
    display:none;
  }
  .nav-current{
    display:inline-block;
    margin-left:14px;
    font-family:'Manrope',sans-serif;
    font-size:18px;
    font-weight:700;
    color:var(--blue);
    white-space:nowrap;
  }
}

/* ============================================
   ПЛАШКА «ВКЛЮЧИТЬ УВЕДОМЛЕНИЯ» (push-prompt)
   Фиксированная карточка снизу справа, всплывает при заходе.
   ============================================ */
.push-prompt{
  width:380px;
  max-width:100%;
  margin-left:auto;   /* прижата вправо в контейнере .corner-prompts */
  display:flex;
  align-items:stretch;
  gap:14px;
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:16px;
  padding:16px 16px 16px 18px;
  box-shadow:var(--sh-lg);
  position:relative;
  /* состояние до появления */
  opacity:0;
  transform:translateY(18px);
  transition:opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.push-prompt.show{
  opacity:1;
  transform:translateY(0);
}
/* Пока есть атрибут hidden — плашки нет в потоке кликов.
   Без этого правила display:flex перебивает [hidden], и невидимая
   (opacity:0) плашка перехватывает нажатия снизу экрана. */
.push-prompt[hidden]{ display:none; }
.push-prompt-ico{
  width:44px;
  height:44px;
  border-radius:50%;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  background:var(--blue);
  color:#fff;
  box-shadow:0 6px 16px rgba(34,83,156,0.32);
}
.push-prompt-body{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
}
.push-prompt-title{
  font-family:'Unbounded',sans-serif;
  font-size:14px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:4px;
}
.push-prompt-text{
  font-size:12.5px;
  line-height:1.5;
  color:var(--ink2);
  margin-bottom:12px;
}
.push-prompt-actions{
  display:flex;
  gap:9px;
  margin-top:auto;
}
.push-prompt-yes{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:var(--orange);
  color:#fff;
  border:none;
  cursor:pointer;
  border-radius:10px;
  padding:9px 16px;
  font-family:'Manrope',sans-serif;
  font-size:13px;
  font-weight:700;
  transition:background .2s;
}
.push-prompt-yes:hover{ background:var(--orange-d); }
.push-prompt-yes:disabled{ background:var(--ink3); cursor:default; }
.push-prompt-no{
  background:var(--bg2);
  color:var(--ink2);
  border:1.5px solid var(--line);
  cursor:pointer;
  border-radius:10px;
  padding:9px 14px;
  font-family:'Manrope',sans-serif;
  font-size:13px;
  font-weight:700;
  transition:all .2s;
}
.push-prompt-no:hover{ border-color:var(--blue-m); color:var(--blue); }
.push-prompt-x{
  position:absolute;
  top:10px;
  right:10px;
  width:26px;
  height:26px;
  border-radius:8px;
  background:transparent;
  border:none;
  cursor:pointer;
  color:var(--ink3);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  transition:all .2s;
}
.push-prompt-x:hover{ background:var(--bg2); color:var(--orange); }

@media(max-width:560px){
  .push-prompt-x{ top:8px; right:8px; }
}

/* ============================================
   УГЛОВЫЕ ПЛАШКИ (cookie слева + уведомления справа)
   Общий фиксированный контейнер внизу: cookie прижат влево,
   плашка уведомлений — вправо. На узких экранах — стопкой по центру.
   ============================================ */
.corner-prompts{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:1000;
  display:flex;
  align-items:stretch;   /* обе карточки одинаковой высоты */
  justify-content:space-between;
  gap:16px;
  padding:22px;
  pointer-events:none;   /* клики проходят мимо пустого места */
}
.corner-prompts > *{ pointer-events:auto; }

/* Баннер cookie — компактная карточка, иконка оранжевая */
.cookie-banner{
  width:360px;
  max-width:100%;
  margin-right:auto;   /* прижат влево */
  display:flex;
  align-items:stretch;
  gap:12px;
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  box-shadow:var(--sh-lg);
  position:relative;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.cookie-banner.show{ opacity:1; transform:translateY(0); }
.cookie-banner[hidden]{ display:none; }
.cookie-banner-ico{
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:17px;
  background:var(--orange-l); color:var(--orange);
}
.cookie-banner-body{ flex:1; min-width:0; display:flex; flex-direction:column; }
.cookie-banner-title{
  font-family:'Unbounded',sans-serif; font-size:13.5px; font-weight:700;
  color:var(--blue); margin-bottom:3px;
}
.cookie-banner-text{
  font-size:12px; line-height:1.4; color:var(--ink2); margin-bottom:10px;
}
.cookie-banner-actions{ display:flex; gap:8px; flex-wrap:wrap; margin-top:auto; }
.cookie-banner-yes{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--orange); color:#fff; border:none; cursor:pointer;
  border-radius:9px; padding:8px 14px;
  font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:700;
  white-space:nowrap; transition:background .2s;
}
.cookie-banner-yes:hover{ background:var(--orange-d); }
.cookie-banner-no{
  background:var(--bg2); color:var(--ink2);
  border:1.5px solid var(--line); cursor:pointer;
  border-radius:9px; padding:8px 13px;
  font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:700;
  white-space:nowrap; transition:all .2s;
}
.cookie-banner-no:hover{ border-color:var(--blue-m); color:var(--blue); }

/* На узких экранах — стопкой по центру (не накладываются) */
@media(max-width:800px){
  .corner-prompts{
    flex-direction:column;
    align-items:center;
    padding:12px;
    gap:10px;
  }
  .cookie-banner,
  .push-prompt{
    width:100%;
    max-width:440px;
    margin:0;
  }
}
