/* styles.css */
/* ============================
   ПЕРЕМЕННЫЕ И БАЗА
   ============================ */
:root{
  --bg-primary:#0A0E1A;
  --bg-secondary:#111827;
  --bg-card:rgba(255,255,255,0.04);
  --border-glass:rgba(255,255,255,0.08);
  --text-primary:#FFFFFF;
  --text-secondary:#B4BCD0;
  --text-muted:#8892B0;
  --accent-cyan:#04eaf0;
  --accent-cyan-soft:#04CBC3;
  --accent-orange:#ec6f0e;
  --accent-orange-soft:#f87c08;
  --accent-gold:#FFD700;
  --accent-yellow:#FFEB3B;
  --shadow-cyan:0 10px 40px rgba(4,234,240,0.25);
  --shadow-orange:0 10px 40px rgba(248,124,8,0.35);

  /* Затемнение фоновых изображений — меняйте здесь */
  --overlay-color:rgba(10,14,26,0.75);   /* цвет затемнения */
  --overlay-color-forwhom:rgba(10,14,26,0.82); /* для блока "Кому подойдёт" */
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Roboto',system-ui,-apple-system,sans-serif;
  font-size:16px;font-weight:400;line-height:1.6;
  color:var(--text-secondary);
  background:var(--bg-primary);
  overflow-x:hidden;-webkit-overflow-scrolling:touch;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul,ol{list-style:none}

.container{max-width:1280px;margin:0 auto;padding:0 24px}
.container--narrow{max-width:880px}

.accent{color:var(--accent-cyan)}
.gold{color:var(--accent-gold)}

/* ============================
   ТИПОГРАФИКА
   ============================ */
h1,h2,h3,h4{color:var(--text-primary);font-weight:900;line-height:1.15;letter-spacing:-0.01em}
.section__title{font-weight:800;font-size:clamp(28px,4vw,52px);text-align:center;margin-bottom:16px}
.section__subtitle{text-align:center;font-size:clamp(16px,1.8vw,20px);color:var(--text-muted);margin-bottom:48px;max-width:760px;margin-left:auto;margin-right:auto}
.cta-text{font-weight:700;font-size:clamp(18px,2.2vw,24px);text-align:center;line-height:1.45;margin-top:48px;max-width:980px;margin-left:auto;margin-right:auto}

/* ============================
   HEADER
   ============================ */
.header{
  position:sticky;top:0;z-index:100;
  background:rgba(10,14,26,0.85);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border-glass);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:72px;max-width:1280px;margin:0 auto;padding:0 24px}
.logo{font-family:'Russo One',sans-serif;font-size:22px;letter-spacing:0.5px;white-space:nowrap}
.logo__primary{color:var(--accent-cyan)}
.logo__secondary{color:#fff}
.nav{display:none}
.nav__list{display:flex;gap:28px}
.nav__link{font-size:14px;font-weight:500;color:#fff;transition:color .25s ease;position:relative}
.nav__link::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--accent-cyan);transition:width .3s ease}
.nav__link:hover,.nav__link.is-active{color:var(--accent-cyan)}
.nav__link:hover::after,.nav__link.is-active::after{width:100%}

.burger{width:40px;height:40px;display:flex;flex-direction:column;justify-content:center;gap:5px;padding:0 8px;border-radius:8px;transition:background .25s}
.burger span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:transform .35s ease,opacity .25s ease}
.burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.is-open span:nth-child(2){opacity:0}
.burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile overlay menu */
.mobile-menu{
  position:fixed;inset:0;z-index:99;
  background:rgba(10,14,26,0.97);backdrop-filter:blur(28px);
  display:flex;align-items:center;justify-content:center;
  transform:translateX(100%);transition:transform .45s cubic-bezier(.7,.0,.2,1);
  padding-top:72px;
}
.mobile-menu.is-open{transform:translateX(0)}
.mobile-menu ul{display:flex;flex-direction:column;gap:20px;text-align:center}
.mobile-menu a{font-size:22px;font-weight:700;color:#fff;transition:color .25s}
.mobile-menu a:hover{color:var(--accent-cyan)}

/* ============================
   КНОПКИ
   ============================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 32px;border-radius:14px;
  font-weight:700;font-size:16px;letter-spacing:.2px;
  transition:transform .25s ease,background .25s ease,box-shadow .25s ease,color .25s ease;
  position:relative;overflow:hidden;white-space:nowrap;
}
.btn--primary{background:var(--accent-orange-soft);color:#fff;box-shadow:var(--shadow-orange)}
.btn--primary svg{transition:transform .3s ease}
.btn--outline{background:transparent;color:#fff;border:2px solid var(--accent-cyan)}
.btn--big{padding:20px 56px;font-size:18px}
.btn--block{width:100%;padding:16px}
.btn--pulse{animation:pulse 2.4s ease-in-out infinite}

@keyframes pulse{
  0%,100%{transform:scale(1);box-shadow:var(--shadow-orange)}
  50%{transform:scale(1.03);box-shadow:0 14px 50px rgba(248,124,8,0.5)}
}

@media (hover:hover){
  .btn:hover{transform:translateY(-2px) scale(1.02)}
  .btn--primary:hover{background:var(--accent-orange);box-shadow:0 14px 50px rgba(236,111,14,0.5)}
  .btn--primary:hover svg{transform:translateX(4px)}
  .btn--outline:hover{background:var(--accent-cyan);color:#0A0E1A}
}

/* Shimmer */
.btn::before{
  content:"";position:absolute;top:0;left:-100%;width:60%;height:100%;
   background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,0.25) 50%,transparent 100%);
  transform:skewX(-20deg);transition:left .8s ease;pointer-events:none;
}
@media (hover:hover){
  .btn:hover::before{left:130%}
}

/* ============================
   HERO
   ============================ */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;
  padding:120px 0 80px;
  overflow:hidden;
  isolation:isolate;
}
.hero__bg{
  position:absolute;inset:0;z-index:-3;
  background:url('images/hero-bg.jpg') center/cover no-repeat,#0A0E1A;
}
.hero__overlay{position:absolute;inset:0;z-index:-2;background:var(--overlay-color)}
.hero__mesh{position:absolute;inset:0;z-index:-1;pointer-events:none;overflow:hidden}
.mesh-blob{
  position:absolute;border-radius:50%;filter:blur(100px);opacity:.35;
  animation:blobMove 22s ease-in-out infinite alternate;
}
.mesh-blob--1{width:520px;height:520px;background:var(--accent-cyan);top:-120px;left:-80px}
.mesh-blob--2{width:600px;height:600px;background:var(--accent-orange);bottom:-200px;right:-150px;animation-delay:-7s}
.mesh-blob--3{width:380px;height:380px;background:#7e3bfa;top:30%;right:25%;opacity:.25;animation-delay:-14s}
@keyframes blobMove{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(60px,-40px) scale(1.15)}
}
.hero__particles{position:absolute;inset:0;z-index:-1;width:100%;height:100%}

.hero__content{position:relative;text-align:center;max-width:1080px}
.hero__title{
  font-weight:900;
  font-size:clamp(36px,6vw,88px);
  line-height:1.05;letter-spacing:-0.02em;
  color:#fff;margin-bottom:24px;
}
.hero__lead{
  font-size:clamp(17px,1.8vw,22px);
  color:var(--text-secondary);
  max-width:820px;margin:0 auto 32px;line-height:1.55;
}
.trust{
  display:flex;align-items:flex-start;gap:14px;text-align:left;
  background:var(--bg-card);border:1px solid var(--border-glass);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  padding:20px 24px;border-radius:18px;
  max-width:780px;margin:0 auto 36px;
}
.trust__icon{color:var(--accent-cyan);flex-shrink:0;margin-top:2px}
.trust p{color:var(--text-secondary);font-size:15px;line-height:1.5}

.hero__cta{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin-bottom:20px}
.hero__micro{color:var(--accent-gold);font-size:15px;font-weight:500;letter-spacing:.2px}

/* Stagger fade-in */
.stagger{opacity:0;transform:translateY(30px);animation:staggerIn .8s ease forwards}
.stagger:nth-child(1){animation-delay:.1s}
.stagger:nth-child(2){animation-delay:.25s}
.stagger:nth-child(3){animation-delay:.4s}
.stagger:nth-child(4){animation-delay:.55s}
.stagger:nth-child(5){animation-delay:.7s}
@keyframes staggerIn{to{opacity:1;transform:translateY(0)}}

/* ============================
   ОБЩИЕ СЕКЦИИ
   ============================ */
.section{padding:80px 0;position:relative}
@media (min-width:768px){.section{padding:96px 0}}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(40px);transition:opacity .8s ease,transform .8s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}

/* ============================
   CARDS
   ============================ */
.cards{display:grid;gap:20px}
.cards--6{grid-template-columns:1fr}
.cards--8{grid-template-columns:1fr}
@media (min-width:600px){
  .cards--6{grid-template-columns:repeat(2,1fr)}
  .cards--8{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1024px){
  .cards--6{grid-template-columns:repeat(3,1fr)}
  .cards--8{grid-template-columns:repeat(4,1fr)}
}

.card{
  display:flex;gap:18px;
  background:var(--bg-card);
  border:1px solid var(--border-glass);
  border-radius:20px;padding:28px;
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease,background .35s ease;
}
.card--whom{flex-direction:column;align-items:flex-start;text-align:left}
.card__icon{
  flex-shrink:0;width:48px;height:48px;border-radius:14px;
  background:rgba(4,234,240,0.15);color:var(--accent-cyan);
  display:flex;align-items:center;justify-content:center;
  transition:transform .6s ease;
}
.card__title{font-size:18px;font-weight:700;color:#fff;margin-bottom:8px}
.card__text{font-size:15px;color:var(--text-secondary);line-height:1.55}

@media (hover:hover){
  .card:hover{
    transform:translateY(-6px);
    border-color:rgba(4,234,240,0.5);
    box-shadow:0 0 30px rgba(4,234,240,0.2),0 12px 40px rgba(0,0,0,0.4);
    background:rgba(255,255,255,0.06);
  }
  .card:hover .card__icon{transform:rotate(360deg)}
  .card--whom:hover{transform:translateY(-8px)}
}

/* ============================
   TIMELINE (HOW)
   ============================ */
.timeline{position:relative;max-width:920px;margin:0 auto;padding:20px 0}
.timeline::before{
  content:"";position:absolute;left:42px;top:30px;bottom:30px;width:2px;
  background:linear-gradient(180deg,var(--accent-cyan),transparent);
}
.timeline__item{
  position:relative;display:flex;align-items:center;gap:28px;
  padding:18px 0;
}
.timeline__num{
  flex-shrink:0;width:86px;height:86px;
  display:flex;align-items:center;justify-content:center;
  font-size:48px;font-weight:900;line-height:1;
  background:linear-gradient(135deg,var(--accent-cyan),var(--accent-orange));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  border:2px solid var(--accent-cyan);border-radius:50%;
  background-color:rgba(10,14,26,0.9);
  box-shadow:0 0 24px rgba(4,234,240,0.35);
  position:relative;z-index:1;
}
.timeline__text{font-size:17px;color:var(--text-secondary);line-height:1.55}
.how__note{
  max-width:980px;margin:48px auto 0;text-align:center;
  color:var(--text-secondary);font-size:16px;line-height:1.7;
  background:var(--bg-card);border:1px solid var(--border-glass);
  border-radius:18px;padding:24px 28px;
  backdrop-filter:blur(16px);
}

@media (min-width:768px){
  .timeline__num{width:120px;height:120px;font-size:72px}
  .timeline::before{left:60px}
  .timeline__text{font-size:18px}
}

/* ============================
   FOR-WHOM
   ============================ */
.for-whom{position:relative;isolation:isolate;overflow:hidden}
.for-whom__bg{
  position:absolute;inset:0;z-index:-2;
  background:url('images/forwhom-bg.jpg') center/cover no-repeat,#0A0E1A;
}
.for-whom__overlay{position:absolute;inset:0;z-index:-1;background:var(--overlay-color-forwhom)}

/* ============================
   GET — конверсионный блок
   ============================ */
.get{position:relative;overflow:hidden;isolation:isolate}
.get__mesh{position:absolute;inset:0;z-index:-1;pointer-events:none;overflow:hidden}
.get__mesh .mesh-blob--1{width:560px;height:560px;background:var(--accent-cyan);top:-150px;left:-100px;opacity:.2}
.get__mesh .mesh-blob--2{width:520px;height:520px;background:var(--accent-orange);bottom:-150px;right:-80px;opacity:.25}

.get__inner{
  position:relative;
  max-width:920px;margin:0 auto;
  background:linear-gradient(180deg,rgba(255,255,255,0.05),rgba(255,255,255,0.02));
  border:1px solid var(--border-glass);
  border-radius:28px;padding:48px 32px;
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,0.45);
}
.get__inner::before{
  content:"";position:absolute;inset:-2px;border-radius:30px;z-index:-1;
  background:conic-gradient(from 0deg,var(--accent-cyan),var(--accent-orange),var(--accent-cyan));
  filter:blur(18px);opacity:.35;animation:rotateBorder 8s linear infinite;
}
@keyframes rotateBorder{to{transform:rotate(360deg)}}

.get__product{font-size:clamp(20px,2.4vw,28px);font-weight:700;margin:16px 0 24px}
.get__advantages{display:flex;flex-wrap:wrap;justify-content:center;gap:16px 24px;margin-bottom:28px}
.get__advantages li{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:15px;font-weight:500}
.get__advantages svg{color:var(--accent-cyan)}

.price{display:flex;align-items:center;justify-content:center;gap:18px;margin-bottom:28px;flex-wrap:wrap}
.price__old{color:var(--text-muted);font-size:22px;text-decoration:line-through}
.price__new{
  font-size:clamp(38px,5vw,56px);font-weight:900;line-height:1;
  background:linear-gradient(135deg,var(--accent-orange-soft),var(--accent-gold));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.price__badge{
  background:var(--accent-orange);color:#fff;
  font-weight:700;font-size:14px;padding:6px 12px;border-radius:8px;
}

.get__micro{color:var(--accent-yellow);font-size:14px;margin-top:16px;font-weight:500}

/* Agree checkbox */
.agree{display:flex;align-items:flex-start;gap:12px;text-align:left;max-width:680px;margin:24px auto 0;cursor:pointer;user-select:none}
.agree input{position:absolute;opacity:0;width:0;height:0}
.agree__box{
  flex-shrink:0;width:22px;height:22px;border-radius:6px;
  border:2px solid var(--accent-cyan);background:transparent;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease;margin-top:2px;
}
.agree__box::after{
  content:"";width:10px;height:6px;border-left:2px solid #fff;border-bottom:2px solid #fff;
  transform:rotate(-45deg) scale(0);transition:transform .2s ease;margin-bottom:3px;
}
.agree input:checked + .agree__box{background:var(--accent-cyan)}
.agree input:checked + .agree__box::after{transform:rotate(-45deg) scale(1)}
.agree__text{font-size:13.5px;color:var(--text-muted);line-height:1.5}
.agree__text a{color:var(--accent-cyan);text-decoration:underline}
.agree__text a:hover{color:var(--accent-orange)}

.agree__alert{
  max-width:680px;margin:14px auto 0;padding:14px 18px;
  background:rgba(255,60,60,0.12);border:1px solid rgba(255,60,60,0.4);
  color:#ff7676;border-radius:12px;font-size:14px;
  opacity:0;transform:translateY(-6px);transition:opacity .35s ease,transform .35s ease;
  pointer-events:none;
}
.agree__alert.is-show{opacity:1;transform:translateY(0)}

/* Bonus */
.bonus{margin-top:48px}
.bonus__title{font-size:clamp(22px,2.6vw,30px);text-align:center;margin-bottom:28px}
.bonus__grid{display:grid;grid-template-columns:1fr;gap:18px}
@media (min-width:768px){.bonus__grid{grid-template-columns:repeat(3,1fr)}}
.bonus__card{
  background:var(--bg-card);border:1px solid var(--border-glass);
  border-radius:18px;padding:24px;text-align:left;
  backdrop-filter:blur(16px);transition:transform .3s ease,border-color .3s ease;
}
@media (hover:hover){
  .bonus__card:hover{transform:translateY(-6px);border-color:rgba(4,234,240,0.4)}
}
.bonus__icon{width:42px;height:42px;border-radius:12px;background:rgba(4,234,240,0.15);color:var(--accent-cyan);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.bonus__name{font-size:15px;font-weight:700;color:#fff;line-height:1.4;margin-bottom:14px}
.bonus__price{display:flex;align-items:center;gap:10px;font-size:15px;color:var(--text-muted)}
.badge--free{background:#1fd47a;color:#062;font-weight:700;font-size:12px;padding:4px 10px;border-radius:6px;letter-spacing:.4px;color:#03371b}
.bonus__final{margin-top:28px;text-align:center;font-size:clamp(17px,1.8vw,22px);font-weight:700;color:#fff;line-height:1.5}

/* ============================
   REVIEWS SLIDER
   ============================ */
.slider{position:relative}
.slider__track{
  display:flex;gap:20px;overflow-x:auto;
  scroll-snap-type:x mandatory;scroll-behavior:smooth;
  padding:8px 4px 24px;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.slider__track::-webkit-scrollbar{display:none}

.review{
  flex:0 0 100%;scroll-snap-align:start;
  background:var(--bg-card);border:1px solid var(--border-glass);
  border-radius:20px;padding:28px;
  backdrop-filter:blur(20px);
  transition:transform .35s ease,border-color .35s ease;
}
@media (min-width:768px){.review{flex-basis:calc((100% - 20px) / 2)}}
@media (min-width:1024px){.review{flex-basis:calc((100% - 40px) / 3)}}
@media (hover:hover){
  .review:hover{border-color:rgba(4,234,240,0.4)}
}

.review__head{display:flex;align-items:center;gap:16px;margin-bottom:16px}
.review__photo{width:64px;height:64px;border-radius:50%;object-fit:cover;border:2px solid var(--accent-cyan)}
.stars{display:flex;gap:2px;color:var(--accent-gold)}
.stars svg{width:18px;height:18px}
.review__text{font-size:14.5px;color:var(--text-secondary);line-height:1.6;margin-bottom:16px}
.review__name{font-size:16px;font-weight:700;color:var(--accent-cyan)}

.slider__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:2;
  width:48px;height:48px;border-radius:50%;
  background:var(--accent-cyan);color:#0A0E1A;
  display:flex;align-items:center;justify-content:center;
  transition:background .25s ease,transform .25s ease;
  box-shadow:0 6px 20px rgba(0,0,0,0.4);
}
.slider__arrow--prev{left:-8px}
.slider__arrow--next{right:-8px}
@media (hover:hover){
  .slider__arrow:hover{background:var(--accent-orange);color:#fff;transform:translateY(-50%) scale(1.1)}
}
@media (max-width:520px){
  .slider__arrow{width:40px;height:40px}
  .slider__arrow--prev{left:-4px}
  .slider__arrow--next{right:-4px}
}

/* ============================
   FAQ
   ============================ */
.faq__list{display:flex;flex-direction:column;gap:14px}
.faq__item{
  background:var(--bg-card);border:1px solid var(--border-glass);
  border-radius:16px;backdrop-filter:blur(16px);
  overflow:hidden;transition:border-color .3s ease;
}
.faq__item[open]{border-color:rgba(4,234,240,0.5)}
.faq__item summary{
  list-style:none;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:22px 24px;font-size:17px;font-weight:700;color:#fff;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__plus{
  flex-shrink:0;width:34px;height:34px;border-radius:50%;
  background:rgba(4,234,240,0.15);color:var(--accent-cyan);
  display:flex;align-items:center;justify-content:center;
  transition:transform .35s ease,background .25s ease;
}
.faq__item[open] .faq__plus{transform:rotate(45deg);background:var(--accent-cyan);color:#0A0E1A}
.faq__body{padding:0 24px 24px;color:var(--text-secondary);font-size:16px;line-height:1.65;animation:faqFade .35s ease}
@keyframes faqFade{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}

/* ============================
   CONTACTS
   ============================ */
.contacts__grid{display:grid;grid-template-columns:1fr;gap:24px}
@media (min-width:900px){.contacts__grid{grid-template-columns:1fr 1.4fr}}
.contacts__card{
  background:var(--bg-card);border:1px solid var(--border-glass);
  border-radius:20px;padding:32px;backdrop-filter:blur(20px);
  display:flex;flex-direction:column;gap:22px;
}
.contacts__row{display:flex;align-items:flex-start;gap:14px}
.contacts__ico{
  flex-shrink:0;width:44px;height:44px;border-radius:12px;
  background:rgba(4,234,240,0.15);color:var(--accent-cyan);
  display:flex;align-items:center;justify-content:center;
}
.contacts__label{display:block;font-size:13px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.contacts__val{display:block;font-size:17px;font-weight:500;color:#fff}
.contacts__val--link{transition:color .2s}
@media (hover:hover){.contacts__val--link:hover{color:var(--accent-cyan)}}

.contacts__map{
  min-height:450px;border-radius:20px;
  border:1px solid var(--border-glass);
  overflow:hidden;position:relative;
}
.contacts__map iframe{width:100%;height:100%;border:0;display:block;min-height:450px}
.map-placeholder{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(4,234,240,0.08),rgba(248,124,8,0.08));
  color:var(--text-muted);font-size:18px;font-weight:500;
}

/* ============================
   FOOTER
   ============================ */
.footer{
  position:relative;padding:40px 0;
  border-top:1px solid transparent;
  background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent);
}
.footer::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--accent-cyan),transparent);
}
.footer .container{display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center}
.footer__copy{color:var(--text-muted);font-size:14px}
.footer__links{display:flex;flex-wrap:wrap;justify-content:center;gap:8px 20px}
.footer__links a{color:#fff;font-size:14px;transition:color .2s}
@media (hover:hover){.footer__links a:hover{color:var(--accent-cyan)}}
.footer__links li{display:flex;align-items:center;gap:20px}
.footer__links li:not(:last-child)::after{content:"·";color:var(--text-muted)}
@media (max-width:600px){
  .footer__links{flex-direction:column;gap:10px}
  .footer__links li:not(:last-child)::after{display:none}
}

/* ============================
   SCROLL TOP
   ============================ */
.scroll-top{
  position:fixed;bottom:24px;left:24px;z-index:50;
  width:56px;height:56px;border-radius:50%;
  background:var(--accent-cyan-soft);color:#fff;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transform:translateY(20px);pointer-events:none;
  transition:opacity .3s ease,transform .3s ease,background .25s ease;
  box-shadow:var(--shadow-cyan);
}
.scroll-top.is-show{opacity:1;transform:translateY(0);pointer-events:auto}
@media (hover:hover){.scroll-top:hover{background:var(--accent-orange)}}

/* ============================
   STICKY BOTTOM BAR (mobile)
   ============================ */
.bottom-bar{display:none}
@media (max-width:768px){
  .bottom-bar{
    display:block;position:fixed;left:0;right:0;bottom:0;z-index:60;
    background:rgba(10,14,26,0.95);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
    padding:12px 16px;border-top:1px solid var(--border-glass);
	}
  body{padding-bottom:80px}
  .scroll-top{bottom:90px}
}

/* ============================
   DOCUMENT PAGES (privacy/oferta/personal-data)
   ============================ */
.doc-content{
  max-width:900px;margin:0 auto;padding:64px 24px;
}
.doc-content h1{
  font-family:'Roboto',sans-serif;font-weight:900;
  font-size:clamp(28px,4vw,40px);color:#fff;margin-bottom:24px;
}
.doc-content h2{
  font-weight:700;font-size:clamp(20px,2.4vw,26px);color:#fff;
  margin-top:32px;margin-bottom:14px;
}
.doc-content p{
  font-size:17px;color:var(--text-secondary);line-height:1.7;margin-bottom:14px;
}
.doc-content ul,.doc-content ol{padding-left:24px;margin-bottom:16px}
.doc-content ul li,.doc-content ol li{
  color:var(--text-secondary);font-size:17px;line-height:1.7;margin-bottom:8px;
  list-style:disc;
}
.doc-content ul li::marker,.doc-content ol li::marker{color:var(--accent-cyan)}
.doc-content a{color:var(--accent-cyan);text-decoration:underline;transition:color .2s}
.doc-content a:hover{color:var(--accent-orange)}
.doc-back{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--accent-cyan);margin-bottom:24px;font-weight:500;
}
.doc-back:hover{color:var(--accent-orange)}

/* ============================
   АДАПТИВ
   ============================ */
@media (min-width:1024px){
  .nav{display:block}
  .burger{display:none}
}
@media (max-width:1023px){
  .nav{display:none}
}

@media (max-width:480px){
  .container{padding:0 16px}
  .header__inner{padding:0 16px;height:64px}
  .logo{font-size:18px}
  .get__inner{padding:36px 20px}
  .btn--big{padding:18px 32px;font-size:16px}
  .card{padding:22px;flex-direction:column}
  .card__icon{width:44px;height:44px}
  .timeline__num{width:72px;height:72px;font-size:40px}
  .timeline::before{left:36px}
  .timeline__item{gap:18px}
}

/* ============================
   REDUCED MOTION
   ============================ */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
  .mesh-blob{animation:none}
  .btn--pulse{animation:none}
}
/* ============================================
   БЛОК «ПОЛУЧИТЬ» (GET)
   ============================================ */
.get {
  position: relative;
  background: #0a0e1a;
  padding: 80px 0 60px;
  overflow: hidden;
}

.get__eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #8892a8;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.get__title {
  text-align: center;
  font-family: 'Russo One', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.get__title-accent {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.get__subtitle {
  text-align: center;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #ffd700;
  margin: 0 auto 24px;
  max-width: 800px;
  line-height: 1.35;
}

.get__lead {
  text-align: center;
  font-size: 17px;
  color: #b8c0d0;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Карточка покупки */
.get__card {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1f30 0%, #141826 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 215, 0, 0.08) inset;
}

.get__price-old {
  font-size: 24px;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #ff5555;
  text-decoration-thickness: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.get__price-new {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.get__price-save {
  font-size: 15px;
  font-weight: 600;
  color: #b8c0d0;
  margin-bottom: 24px;
}

.get__badge-special {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border: 1.5px solid #ff7a3d;
  border-radius: 100px;
  color: #ff9a5d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  background: rgba(255, 122, 61, 0.08);
}

.get__badge-flame {
  font-size: 16px;
}

/* Главная кнопка */
.get__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px 30px;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff5a1f 100%);
  color: #fff;
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 122, 61, 0.5),
              0 10px 30px rgba(255, 90, 31, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.get__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.get__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 122, 61, 0.7),
              0 15px 40px rgba(255, 90, 31, 0.5);
}

.get__btn:hover::before {
  opacity: 1;
}

.get__btn-icon {
  flex-shrink: 0;
}

/* Способы оплаты */
.get__pay-methods {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.get__pay-method {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #d4d8e0;
  letter-spacing: 0.5px;
}

/* Особенности */
.get__features {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.get__feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #b8c0d0;
}

.get__feature svg {
  color: #ffd700;
  flex-shrink: 0;
}

/* Согласие */
.get__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  text-align: left;
}

.get__consent-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.get__consent p {
  margin: 0;
  font-size: 12.5px;
  color: #b8c0d0;
  line-height: 1.55;
}

.get__consent a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.get__consent a:hover {
  color: #ffaa00;
}

/* ============================================
   БЛОК «БОНУСЫ»
   ============================================ */
.bonuses {
  background: #0a0e1a;
  padding: 60px 0 100px;
}

.bonuses__eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #8892a8;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.bonuses__title {
  text-align: center;
  font-family: 'Russo One', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 60px;
  letter-spacing: -0.5px;
}

.bonuses__title-accent {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Карточка бонуса */
.bonus-card {
  position: relative;
  background: linear-gradient(180deg, #1a1f30 0%, #141826 100%);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 20px;
  padding: 48px 28px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
}

.bonus-card__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #0a0e1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 24px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.35);
  white-space: nowrap;
}

.bonus-card__title {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.bonus-card__text {
  font-size: 15px;
  color: #b8c0d0;
  line-height: 1.55;
  margin: 0 0 24px;
  min-height: 70px;
}

.bonus-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bonus-card__old {
  font-size: 17px;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #ff5555;
  text-decoration-thickness: 2px;
  font-weight: 600;
}

.bonus-card__free {
  display: inline-block;
  padding: 9px 18px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 10px;
  color: #ffd700;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.bonus-card:hover .bonus-card__free {
  background: #ffd700;
  color: #0a0e1a;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

/* Итоговая строка */
.bonuses__total {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #d4d8e0;
  margin: 0;
  line-height: 1.6;
}

.bonuses__total-value {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: #ffd700;
  font-weight: 800;
}

/* ============================================
   АДАПТИВ (мобильные)
   ============================================ */
@media (max-width: 900px) {
  .bonuses__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .bonus-card__text {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .get { padding: 60px 0 40px; }
  .bonuses { padding: 40px 0 80px; }

  .get__card {
    padding: 36px 24px;
    border-radius: 20px;
  }

  .get__btn {
    font-size: 16px;
    padding: 20px 20px;
    letter-spacing: 0.5px;
  }

  .get__features {
    gap: 14px;
  }

  .get__pay-methods {
    gap: 8px;
  }

  .get__pay-method {
    padding: 7px 14px;
    font-size: 12px;
  }

  .get__consent p {
    font-size: 12px;
  }

  .bonus-card {
    padding: 44px 24px 26px;
  }
}
/* ============================================
   БЛОК «ПОЛУЧИТЬ» (GET) — бирюзовая тема
   ============================================ */
.get {
  position: relative;
  padding: 100px 0 70px;
  overflow: hidden;
}

.get__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 234, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 234, 240, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}

.get__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
}

.get__bg-glow--1 {
  top: -200px;
  left: -200px;
  background: #04EAF0;
}

.get__bg-glow--2 {
  bottom: -200px;
  right: -200px;
  background: #0099a8;
}

.get__head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.get__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(4, 234, 240, 0.08);
  border: 1px solid rgba(4, 234, 240, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #04EAF0;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.get__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #04EAF0;
  border-radius: 50%;
  box-shadow: 0 0 12px #04EAF0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.get__title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.get__title-accent {
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 50%, #04EAF0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 4s linear infinite;
}

@keyframes shine-text {
  to { background-position: 200% center; }
}

.get__subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: #04EAF0;
  margin: 0 auto 22px;
  max-width: 800px;
  line-height: 1.35;
}

.get__lead {
  font-size: 16px;
  color: #b8c0d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== Карточка покупки ===== */
.get__card {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(4, 234, 240, 0.04) 0%, rgba(10, 14, 26, 0.6) 100%),
    rgba(15, 20, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(4, 234, 240, 0.25);
  border-radius: 28px;
  padding: 56px 44px 40px;
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(4, 234, 240, 0.05) inset,
    0 0 60px rgba(4, 234, 240, 0.1);
  z-index: 2;
}

/* Угловые декоры */
.get__card-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #04EAF0;
}

.get__card-corner--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-radius: 28px 0 0 0; }
.get__card-corner--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-radius: 0 28px 0 0; }
.get__card-corner--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-radius: 0 0 0 28px; }
.get__card-corner--br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-radius: 0 0 28px 0; }

/* Бейдж скидки */
.get__discount-badge {
  position: absolute;
  top: -22px;
  right: 28px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
  color: #fff;
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 23, 68, 0.5);
  transform: rotate(-12deg);
  animation: badge-bounce 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes badge-bounce {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-6px); }
}

/* Цена */
.get__price-block {
  margin-bottom: 24px;
}

.get__price-old {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.get__price-old-label {
  font-size: 12px;
  color: #6b7280;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.get__price-old-value {
  font-size: 22px;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #ff5252;
  text-decoration-thickness: 2px;
  font-weight: 700;
}

.get__price-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.get__price-new-label {
  font-size: 13px;
  color: #b8c0d0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.get__price-new-value {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(60px, 9vw, 86px);
  font-weight: 900;
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -2px;
  filter: drop-shadow(0 0 20px rgba(4, 234, 240, 0.4));
  display: inline-flex;
  align-items: flex-start;
}

.get__price-currency {
  font-size: 0.5em;
  margin-left: 6px;
  margin-top: 0.15em;
}

.get__price-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #04EAF0;
  font-size: 14px;
  font-weight: 600;
}

.get__price-save svg {
  color: #04EAF0;
}

/* Hot бейдж */
.get__hot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, rgba(255, 82, 82, 0.15), rgba(255, 122, 61, 0.15));
  border: 1.5px solid rgba(255, 122, 61, 0.45);
  border-radius: 100px;
  color: #ffb185;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 26px;
}

.get__hot-flame {
  font-size: 16px;
  animation: flame-shake 1.5s ease-in-out infinite;
}

@keyframes flame-shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* ===== Кнопка ===== */
.get__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px 24px;
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 50%, #04EAF0 100%);
  background-size: 200% auto;
  color: #0a0e1a;
  font-family: 'Russo One', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 16px;
  box-shadow:
    0 0 50px rgba(4, 234, 240, 0.5),
    0 15px 40px rgba(4, 234, 240, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  margin-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
}

.get__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 50%, #04EAF0 100%);
  background-size: 200% auto;
  animation: btn-shine 3s linear infinite;
  z-index: -1;
}

@keyframes btn-shine {
  to { background-position: 200% center; }
}

.get__btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btn-flash 3.5s ease-in-out infinite;
}

@keyframes btn-flash {
  0%, 80% { left: -100%; }
  100% { left: 200%; }
}

.get__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 70px rgba(4, 234, 240, 0.7),
    0 20px 50px rgba(4, 234, 240, 0.5);
}

.get__btn-arrow {
  transition: transform 0.3s;
}

.get__btn:hover .get__btn-arrow {
  transform: translateX(5px);
}

.get__btn-icon,
.get__btn-text,
.get__btn-arrow {
  position: relative;
  z-index: 1;
}

/* Способы оплаты */
.get__pay-methods {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.get__pay-method {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(4, 234, 240, 0.15);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #d4d8e0;
  letter-spacing: 0.8px;
  transition: all 0.3s;
}

.get__pay-method:hover {
  border-color: rgba(4, 234, 240, 0.4);
  color: #04EAF0;
}

/* Преимущества */
.get__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px 16px;
  background: rgba(4, 234, 240, 0.04);
  border: 1px solid rgba(4, 234, 240, 0.12);
  border-radius: 16px;
}

.get__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: #d4d8e0;
  font-weight: 500;
  line-height: 1.3;
}

.get__feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(4, 234, 240, 0.15), rgba(4, 234, 240, 0.05));
  border: 1px solid rgba(4, 234, 240, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04EAF0;
  transition: all 0.3s;
}

.get__feature:hover .get__feature-icon {
  background: linear-gradient(135deg, rgba(4, 234, 240, 0.3), rgba(4, 234, 240, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 234, 240, 0.25);
}

/* Согласие */
.get__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(4, 234, 240, 0.05);
  border: 1px solid rgba(4, 234, 240, 0.18);
  border-radius: 12px;
  text-align: left;
}

.get__consent-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #04EAF0;
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(4, 234, 240, 0.5);
}

.get__consent p {
  margin: 0;
  font-size: 12.5px;
  color: #b8c0d0;
  line-height: 1.55;
}

.get__consent a {
  color: #04EAF0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.get__consent a:hover {
  color: #00B8C7;
}

/* ============================================
   БЛОК «БОНУСЫ»
   ============================================ */
.bonuses {
  position: relative;
  padding: 70px 0 110px;
  overflow: hidden;
}

.bonuses__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(4, 234, 240, 0.12) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.bonuses__head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.bonuses__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(4, 234, 240, 0.08);
  border: 1px solid rgba(4, 234, 240, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #04EAF0;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.bonuses__eyebrow span:first-child {
  font-size: 16px;
}

.bonuses__title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.bonuses__title-accent {
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 50%, #04EAF0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 4s linear infinite;
}

.bonuses__lead {
  font-size: 16px;
  color: #b8c0d0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Карточка бонуса */
.bonus-card {
  position: relative;
  background: linear-gradient(180deg, rgba(4, 234, 240, 0.04) 0%, rgba(15, 20, 35, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(4, 234, 240, 0.2);
  border-radius: 24px;
  padding: 56px 28px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.bonus-card__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(4, 234, 240, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bonus-card:hover {
  transform: translateY(-10px);
  border-color: rgba(4, 234, 240, 0.5);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(4, 234, 240, 0.2);
}

.bonus-card:hover .bonus-card__glow {
  opacity: 1;
}

.bonus-card--featured {
  border-color: rgba(4, 234, 240, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(4, 234, 240, 0.15);
}

.bonus-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, #04EAF0, transparent 40%, transparent 60%, #04EAF0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Лента BONUS */
.bonus-card__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 100%);
  color: #0a0e1a;
  font-family: 'Russo One', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 24px rgba(4, 234, 240, 0.4);
  white-space: nowrap;
  z-index: 3;
}

.bonus-card__ribbon-num {
  font-size: 15px;
  padding-right: 8px;
  border-right: 1.5px solid rgba(10, 14, 26, 0.3);
}

/* Иконка */
.bonus-card__icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(4, 234, 240, 0.2), rgba(4, 234, 240, 0.05));
  border: 1px solid rgba(4, 234, 240, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04EAF0;
  transition: all 0.4s;
}

.bonus-card__icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #04EAF0, transparent, #04EAF0);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
  filter: blur(8px);
}

.bonus-card:hover .bonus-card__icon {
  transform: scale(1.08) rotate(-5deg);
  border-color: #04EAF0;
}

.bonus-card:hover .bonus-card__icon::before {
  opacity: 0.6;
}

.bonus-card__title {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.bonus-card__text {
  font-size: 14.5px;
  color: #b8c0d0;
  line-height: 1.6;
  margin: 0 0 28px;
  min-height: 70px;
}

.bonus-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bonus-card__old {
  font-size: 16px;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #ff5252;
  text-decoration-thickness: 2px;
  font-weight: 700;
}

.bonus-card__free {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 2px solid #04EAF0;
  border-radius: 12px;
  color: #04EAF0;
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card__free::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #04EAF0, #00B8C7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.bonus-card:hover .bonus-card__free {
  color: #0a0e1a;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(4, 234, 240, 0.4);
}

.bonus-card:hover .bonus-card__free::before {
  transform: scaleX(1);
}

/* Итоговая плашка */
.bonuses__total {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bonuses__total-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 40px;
  background:
    linear-gradient(135deg, rgba(4, 234, 240, 0.08), rgba(4, 234, 240, 0.02));
  border: 1px solid rgba(4, 234, 240, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(4, 234, 240, 0.1);
}

.bonuses__total-left {
  flex: 1;
  text-align: left;
}

.bonuses__total-label {
  font-size: 13px;
  color: #b8c0d0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bonuses__total-value {
  font-family: 'Russo One', sans-serif;
  font-size: 36px;
  background: linear-gradient(135deg, #04EAF0 0%, #00B8C7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 1;
}

.bonuses__total-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(4, 234, 240, 0.4), transparent);
}

.bonuses__total-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.bonuses__total-gift {
  font-size: 38px;
  animation: gift-bounce 2s ease-in-out infinite;
}

@keyframes gift-bounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(-5deg); }
}

.bonuses__total-text {
  font-size: 15px;
  color: #d4d8e0;
  line-height: 1.4;
  text-align: left;
}

.bonuses__total-text strong {
  color: #04EAF0;
  font-weight: 700;
}

/* ============================================
   АДАПТИВ
   ============================================ */
@media (max-width: 980px) {
  .bonuses__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .bonus-card__text {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .get { padding: 70px 0 50px; }
  .bonuses { padding: 50px 0 90px; }

  .get__card {
    padding: 44px 24px 32px;
    border-radius: 22px;
  }

  .get__discount-badge {
    width: 60px;
    height: 60px;
    font-size: 18px;
    right: 18px;
    top: -18px;
  }

  .get__btn {
    font-size: 15px;
    padding: 20px 16px;
    letter-spacing: 0.8px;
    gap: 8px;
  }

  .get__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px 10px;
  }

  .get__feature {
    font-size: 11.5px;
  }

  .get__feature-icon {
    width: 36px;
    height: 36px;
  }

  .get__pay-methods { gap: 6px; }

  .get__pay-method {
    padding: 7px 12px;
    font-size: 11.5px;
  }

  .get__consent p { font-size: 11.5px; }

  .bonus-card {
    padding: 50px 22px 28px;
  }

  .bonuses__total-inner {
    flex-direction: column;
    gap: 18px;
    padding: 24px 24px;
    text-align: center;
  }

  .bonuses__total-left,
  .bonuses__total-right,
  .bonuses__total-text {
    text-align: center;
  }

  .bonuses__total-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(4, 234, 240, 0.4), transparent);
  }

  .bonuses__total-right {
    flex-direction: column;
    gap: 8px;
  }
}