/* BIZON — bizon.website · общие стили лендинга и юр. страниц */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#070d0b;
  --bg2:#0a1210;
  --card:#101916;
  --card2:#151f1b;
  --border:rgba(255,255,255,0.08);
  --green:#00c97d;
  --green2:#00e48e;
  --green-dim:rgba(0,201,125,0.09);
  --glow:0 0 32px rgba(0,201,125,0.22);
  --text:#e8f0ec;
  --text2:#92a89e;
  --text3:#4d6b5f;
  --rad:16px;
  --rad-sm:10px;
  --header-h:72px;
}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--card2);border-radius:3px}

a{color:var(--green);text-decoration:none}
a:hover{text-decoration:underline}

/* ——— Шапка ——— */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  height:var(--header-h);
  padding:0 clamp(20px,4vw,56px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:rgba(7,13,11,0.78);
  backdrop-filter:blur(20px) saturate(1.2);
  border-bottom:1px solid transparent;
  transition:background .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.site-header.is-scrolled{
  background:rgba(7,13,11,0.94);
  border-bottom-color:var(--border);
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
}
.logo{
  font-size:22px;
  font-weight:800;
  letter-spacing:-0.5px;
  color:var(--text);
  text-decoration:none;
  flex-shrink:0;
  transition:transform .25s ease;
}
.logo:hover{transform:scale(1.02);text-decoration:none}
.logo span{color:var(--green)}
.footer-logo{display:inline-block}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;height:44px;
  padding:10px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  cursor:pointer;
  color:var(--text);
}
.nav-toggle-bar{
  display:block;
  height:2px;
  width:100%;
  background:var(--text2);
  border-radius:1px;
  transition:transform .25s ease,opacity .25s ease;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
.site-header.nav-open .nav-toggle-bar:nth-child(2){opacity:0}
.site-header.nav-open .nav-toggle-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.site-nav{
  display:flex;
  align-items:center;
  flex:1;
  justify-content:center;
}
.nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:clamp(12px,2vw,26px);
  align-items:center;
  justify-content:center;
}
.site-nav a{
  color:var(--text2);
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  position:relative;
  transition:color .2s ease;
}
.site-nav a::after{
  content:'';
  position:absolute;
  left:0;bottom:-4px;
  width:0;height:2px;
  background:var(--green);
  border-radius:1px;
  transition:width .25s ease;
}
.site-nav a:hover{color:var(--text);text-decoration:none}
.site-nav a:hover::after{width:100%}

.btn-nav{
  flex-shrink:0;
  background:linear-gradient(135deg,var(--green),#00b870);
  color:#03120c;
  border:none;
  cursor:pointer;
  padding:11px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  font-family:inherit;
  text-decoration:none;
  display:inline-block;
  transition:transform .2s ease,box-shadow .2s ease;
  box-shadow:0 4px 24px rgba(0,201,125,0.28);
}
.btn-nav:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(0,201,125,0.42);
  text-decoration:none;
}

@media(max-width:1020px){
  .site-header{
    justify-content:flex-start;
    gap:10px;
  }
  .nav-toggle{display:flex}
  .site-nav{
    position:absolute;
    top:var(--header-h);
    left:0;right:0;
    flex-direction:column;
    align-items:stretch;
    padding:16px 20px 24px;
    background:rgba(7,13,11,0.97);
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    opacity:0;
    pointer-events:none;
    transition:max-height .4s ease,opacity .3s ease;
  }
  .site-header.nav-open .site-nav{
    max-height:min(70vh,420px);
    opacity:1;
    pointer-events:auto;
  }
  .nav-links{flex-direction:column;align-items:flex-start;gap:4px}
  .site-nav a{padding:10px 0;width:100%}
  .site-nav a::after{display:none}
  .btn-nav{
    margin-top:0;
    margin-left:auto;
    flex:0 1 auto;
    min-width:0;
    width:auto;
    max-width:min(30vw, 124px);
    padding:9px 12px;
    text-align:center;
    font-size:13px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

/* ——— Подвал ——— */
.site-footer{
  background:var(--bg2);
  border-top:1px solid var(--border);
  padding:56px clamp(24px,5vw,80px) 32px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:clamp(32px,5vw,48px);
  margin-bottom:40px;
}
.footer-about p{
  font-size:13px;
  color:var(--text2);
  line-height:1.75;
  margin-top:14px;
  max-width:360px;
}
.footer-email{margin-top:14px!important;font-size:14px!important}
.footer-email a{color:var(--green);font-weight:600;text-decoration:none}
.footer-email a:hover{text-decoration:underline}
.footer-email-note{margin-top:8px!important;font-size:12px!important}
.footer-col h4{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:var(--text3);
  margin-bottom:18px;
}
.footer-col a{
  display:block;
  font-size:13px;
  color:var(--text2);
  text-decoration:none;
  margin-bottom:11px;
  transition:color .2s ease,transform .2s ease;
}
.footer-col a:hover{color:var(--green);text-decoration:none;transform:translateX(3px)}
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:24px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-legal{
  font-size:11px;
  color:var(--text3);
  line-height:1.75;
  max-width:720px;
}
.footer-legal a{color:var(--text2);text-decoration:underline}
.footer-legal a:hover{color:var(--green)}
.footer-copy{font-size:12px;color:var(--text3);white-space:nowrap}
@media(max-width:900px){
  .footer-top{grid-template-columns:1fr}
}

/* ——— Главная: отступ под фикс. шапку ——— */
.page-home{padding-top:var(--header-h)}

/* ——— Hero ——— */
#hero{
  min-height:calc(100vh - var(--header-h));
  display:flex;
  align-items:center;
  padding:48px clamp(24px,5vw,80px) 72px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,140,80,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 40%, rgba(0,201,125,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 0% 80%, rgba(0,80,60,0.12) 0%, transparent 45%);
}
#hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,var(--bg) 100%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,64px);
  align-items:center;
  max-width:1160px;
  margin:0 auto;
  width:100%;
}
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green-dim);
  border:1px solid rgba(0,201,125,0.28);
  border-radius:999px;
  padding:8px 18px;
  font-size:13px;
  color:var(--green);
  font-weight:600;
  margin-bottom:22px;
  animation:fadeSlide .8s ease both;
}
.hero-tag::before{
  content:'';
  width:8px;height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 12px var(--green);
  animation:pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(.85)}
}
@keyframes fadeSlide{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:none}
}
@keyframes heroGlow{
  0%,100%{opacity:.55}
  50%{opacity:1}
}
#hero h1{
  font-size:clamp(32px,5vw,56px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-1.5px;
  margin-bottom:20px;
  animation:fadeSlide .85s ease .08s both;
}
#hero h1 em{font-style:normal;color:var(--green)}
.hero-sub{
  font-size:clamp(15px,1.8vw,18px);
  color:var(--text2);
  line-height:1.75;
  margin-bottom:32px;
  max-width:500px;
  animation:fadeSlide .9s ease .14s both;
}
.hero-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  animation:fadeSlide .95s ease .2s both;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,var(--green2),var(--green));
  color:#03120c;
  border:none;
  cursor:pointer;
  padding:16px 28px;
  border-radius:14px;
  font-size:16px;
  font-weight:700;
  font-family:inherit;
  text-decoration:none;
  transition:transform .25s ease,box-shadow .25s ease;
  box-shadow:var(--glow);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(0,201,125,0.45);
  text-decoration:none;
}
.btn-ghost{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
  cursor:pointer;
  padding:16px 26px;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  font-family:inherit;
  text-decoration:none;
  transition:border-color .2s,color .2s,background .2s;
}
.btn-ghost:hover{
  border-color:rgba(0,201,125,0.45);
  color:var(--green);
  background:rgba(0,201,125,0.05);
  text-decoration:none;
}
.hero-stats{
  display:flex;
  gap:clamp(20px,4vw,40px);
  margin-top:44px;
  animation:fadeSlide 1s ease .26s both;
}
.stat-num{font-size:clamp(22px,3vw,30px);font-weight:800;color:var(--green)}
.stat-label{font-size:12px;color:var(--text2);font-weight:500}

.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  animation:fadeSlide 1.1s ease .18s both;
}
.shield-wrap{
  width:min(340px,85vw);
  height:min(340px,85vw);
  border-radius:50%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.shield-wrap::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid rgba(0,201,125,0.14);
  box-shadow:0 0 80px rgba(0,201,125,0.1),inset 0 0 50px rgba(0,201,125,0.05);
  animation:heroGlow 5s ease-in-out infinite;
}
.orbit{
  position:absolute;
  border-radius:50%;
  border:1px dashed rgba(0,201,125,0.14);
}
.orbit-1{width:78%;height:78%;animation:spin 22s linear infinite}
.orbit-2{width:104%;height:104%;animation:spin 34s linear infinite reverse}
@keyframes spin{to{transform:rotate(360deg)}}
.orbit-dot{
  position:absolute;
  top:-5px;left:50%;
  width:10px;height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 14px var(--green);
  transform:translateX(-50%);
}
.shield-svg{filter:drop-shadow(0 0 28px rgba(0,201,125,0.4))}

.code-badge{
  position:absolute;
  bottom:clamp(8px,2vw,36px);
  right:clamp(0px,2vw,32px);
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px 18px;
  font-family:ui-monospace,'Cascadia Code',monospace;
  font-size:11px;
  line-height:1.85;
  color:var(--text2);
  max-width:260px;
  box-shadow:0 16px 48px rgba(0,0,0,0.35);
}
.code-badge .green{color:var(--green)}
.code-badge .gray{color:var(--text3)}

/* Trust bar */
.trust-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:clamp(12px,2vw,28px);
  padding:20px clamp(20px,4vw,48px);
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg,rgba(0,201,125,0.04),transparent);
}
.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--text2);
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.02);
  transition:border-color .2s,transform .2s;
  text-decoration:none;
}
a.trust-item{color:var(--text2)}
a.trust-item:hover{color:var(--green);text-decoration:none}
.trust-item:hover{border-color:rgba(0,201,125,0.25);transform:translateY(-2px)}
.trust-item svg{flex-shrink:0;opacity:.9}

/* Sections */
section{
  padding:clamp(72px,10vw,108px) clamp(24px,5vw,60px);
  max-width:1160px;
  margin:0 auto;
}
.section-label{
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--green);
  margin-bottom:12px;
}
section h2{
  font-size:clamp(28px,4vw,40px);
  font-weight:800;
  letter-spacing:-1px;
  margin-bottom:16px;
}
.section-sub{
  font-size:16px;
  color:var(--text2);
  max-width:560px;
  line-height:1.75;
}
.section-header{margin-bottom:48px}

.divider{
  border:none;
  border-top:1px solid var(--border);
  margin:0 clamp(24px,5vw,60px);
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .65s cubic-bezier(.22,1,.36,1),transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}

/* Program curriculum */
.program-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
@media(max-width:768px){.program-grid{grid-template-columns:1fr}}

.program-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad);
  padding:26px 28px;
  transition:border-color .25s,box-shadow .25s,transform .25s;
  position:relative;
  overflow:hidden;
}
.program-card::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:4px;height:100%;
  background:linear-gradient(180deg,var(--green),transparent);
  opacity:0;
  transition:opacity .25s;
}
.program-card:hover{
  border-color:rgba(0,201,125,0.3);
  box-shadow:0 16px 48px rgba(0,0,0,0.25);
  transform:translateY(-4px);
}
.program-card:hover::before{opacity:1}
.program-num{
  font-size:11px;
  font-weight:800;
  color:var(--green);
  letter-spacing:1px;
  margin-bottom:8px;
}
.program-card h3{font-size:17px;font-weight:700;margin-bottom:10px}
.program-card p{font-size:14px;color:var(--text2);line-height:1.7}

/* Audience */
.audience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
@media(max-width:900px){.audience-grid{grid-template-columns:1fr}}

.audience-card{
  text-align:center;
  padding:32px 22px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad);
  transition:all .25s;
}
.audience-card:hover{
  border-color:rgba(0,201,125,0.25);
  background:var(--card2);
}
.audience-icon{
  width:56px;height:56px;
  margin:0 auto 18px;
  border-radius:16px;
  background:var(--green-dim);
  border:1px solid rgba(0,201,125,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
}
.audience-card h3{font-size:16px;margin-bottom:10px}
.audience-card p{font-size:14px;color:var(--text2);line-height:1.65}

/* Features */
.features-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.feature-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad);
  padding:30px;
  transition:all .25s;
}
.feature-card:hover{
  border-color:rgba(0,201,125,0.28);
  background:var(--card2);
  transform:translateY(-4px);
  box-shadow:0 14px 44px rgba(0,0,0,0.28);
}
.feature-icon{
  width:52px;height:52px;
  border-radius:14px;
  background:var(--green-dim);
  border:1px solid rgba(0,201,125,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  color:var(--green);
}
.feature-card h3{font-size:17px;font-weight:700;margin-bottom:10px}
.feature-card p{font-size:14px;color:var(--text2);line-height:1.7}

/* Plans */
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.plan-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad);
  padding:30px;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  transition:all .25s;
}
.plan-card.featured{
  background:linear-gradient(160deg,#0c2218,#081510);
  border-color:rgba(0,201,125,0.4);
  box-shadow:0 0 48px rgba(0,201,125,0.1);
}
.plan-card:not(.featured):hover{
  border-color:rgba(0,201,125,0.22);
  transform:translateY(-4px);
}
.plan-badge{
  position:absolute;
  top:18px;right:18px;
  background:var(--green);
  color:#03120c;
  font-size:10px;
  font-weight:800;
  padding:5px 12px;
  border-radius:999px;
}
.plan-name{
  font-size:12px;
  font-weight:700;
  color:var(--text2);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:1px;
}
.plan-price{
  font-size:44px;
  font-weight:800;
  letter-spacing:-2px;
  margin:10px 0 4px;
}
.plan-price sup{font-size:22px;font-weight:600;vertical-align:top}
.plan-price .per{font-size:15px;font-weight:400;color:var(--text2)}
.plan-billing{font-size:13px;color:var(--text2);margin-bottom:20px}
.plan-savings{
  display:inline-block;
  background:var(--green-dim);
  color:var(--green);
  font-size:12px;
  font-weight:700;
  padding:4px 12px;
  border-radius:999px;
  margin-bottom:20px;
}
.plan-features{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-bottom:28px;
  flex:1;
}
.plan-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:var(--text2);
}
.check{flex-shrink:0;margin-top:2px;color:var(--green)}
.btn-plan{
  display:block;
  width:100%;
  text-align:center;
  padding:14px 22px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  border:none;
  transition:all .2s;
  text-decoration:none;
}
.btn-plan-primary{
  background:linear-gradient(135deg,var(--green2),var(--green));
  color:#03120c;
  box-shadow:0 4px 24px rgba(0,201,125,0.3);
}
.btn-plan-primary:hover{filter:brightness(1.06);transform:translateY(-2px)}
.btn-plan-secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
}
.btn-plan-secondary:hover{border-color:var(--green);color:var(--green)}

/* Tech */
.tech-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.tech-chip{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad-sm);
  padding:22px 16px;
  text-align:center;
  transition:all .22s;
}
.tech-chip:hover{
  border-color:rgba(0,201,125,0.3);
  color:var(--green);
  transform:translateY(-3px);
}
.tech-chip .tname{font-size:14px;font-weight:600;margin-top:10px}
.tech-chip .tdesc{font-size:12px;color:var(--text2);margin-top:4px}

/* Contacts block */
#contacts .contacts-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  max-width:920px;
}
.contact-block{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad);
  padding:28px;
}
.contact-block h3{font-size:16px;font-weight:700;margin-bottom:12px}
.contact-block p,.contact-block .ph{
  font-size:14px;
  color:var(--text2);
  line-height:1.7;
  margin-bottom:8px;
}
.contact-block a{color:var(--green)}
.compliance-strip{
  margin-top:28px;
  padding:20px 24px;
  background:rgba(0,201,125,0.06);
  border:1px solid rgba(0,201,125,0.18);
  border-radius:var(--rad-sm);
  font-size:13px;
  color:var(--text2);
  line-height:1.7;
  max-width:920px;
}
.docs-inline{
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin-top:14px;
  font-size:13px;
}
.docs-inline a{text-decoration:none}
.docs-inline a:hover{text-decoration:underline}
.ph{color:var(--text3)}

/* FAQ */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:800px;
}
.faq-item{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad-sm);
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item:hover{border-color:rgba(0,201,125,0.2)}
.faq-q{
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  user-select:none;
  transition:color .2s;
}
.faq-q:hover{color:var(--green)}
.faq-icon{
  width:28px;height:28px;
  border-radius:8px;
  background:var(--card2);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:var(--green);
  transition:transform .35s ease,background .2s;
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease,padding .3s ease;
  font-size:14px;
  color:var(--text2);
  line-height:1.75;
  padding:0 22px;
}
.faq-item.open .faq-a{
  max-height:min(560px,70vh);
  padding:0 22px 22px;
}
.faq-item.open .faq-icon{
  transform:rotate(45deg);
  background:var(--green-dim);
}

/* CTA band */
.cta-band{
  margin:24px clamp(20px,4vw,60px) 80px;
  border-radius:24px;
  background:linear-gradient(135deg,#0a2218,#06140f);
  border:1px solid rgba(0,201,125,0.22);
  padding:clamp(48px,8vw,72px) clamp(24px,5vw,56px);
  text-align:center;
  box-shadow:inset 0 0 100px rgba(0,201,125,0.06);
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute;
  inset:-50%;
  background:radial-gradient(circle at 30% 50%,rgba(0,201,125,0.12),transparent 45%);
  animation:heroGlow 8s ease-in-out infinite;
  pointer-events:none;
}
.cta-band > *{position:relative;z-index:1}
.cta-band h2{font-size:clamp(26px,4vw,34px);margin-bottom:14px}
.cta-band p{color:var(--text2);margin-bottom:28px;font-size:16px}

/* Pay modal */
#pay-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.78);
  z-index:500;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  padding:20px;
}
#pay-modal.open{display:flex}
.pay-sheet{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:24px;
  padding:36px;
  max-width:460px;
  width:100%;
  position:relative;
  animation:fadeSlide .35s ease both;
  box-shadow:0 24px 80px rgba(0,0,0,0.5);
}
.pay-sheet h3{font-size:20px;font-weight:700;margin-bottom:6px}
.pay-sheet .pay-sub{font-size:14px;color:var(--text2);margin-bottom:26px}
.pay-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.pay-row:last-of-type{border:none;font-weight:700;font-size:16px;color:var(--green)}
.pay-methods{display:flex;gap:10px;margin:22px 0}
.pay-method{
  flex:1;
  padding:12px;
  border-radius:10px;
  border:2px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
  background:var(--card);
}
.pay-method.selected,.pay-method:hover{border-color:var(--green);color:var(--green)}
.btn-pay{
  width:100%;
  padding:16px;
  background:linear-gradient(135deg,var(--green2),var(--green));
  color:#03120c;
  border:none;
  border-radius:12px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  margin-top:6px;
  transition:filter .2s,transform .2s;
}
.btn-pay:hover{filter:brightness(1.05);transform:translateY(-1px)}
.pay-close{
  position:absolute;
  top:14px;right:14px;
  background:var(--card2);
  border:none;
  border-radius:50%;
  width:36px;height:36px;
  color:var(--text2);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
  transition:color .2s,background .2s;
}
.pay-close:hover{color:var(--text);background:var(--card)}
.pay-note{
  font-size:11px;
  color:var(--text3);
  text-align:center;
  margin-top:14px;
  line-height:1.65;
}
.pay-note a{color:var(--green)}

/* ——— Юридические страницы ——— */
.page-doc{
  padding-top:var(--header-h);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.doc-main{flex:1}
.doc-article{
  max-width:820px;
  margin:0 auto;
  padding:40px clamp(20px,4vw,40px) 100px;
}
.doc-article .doc-tag{
  display:inline-block;
  background:var(--green-dim);
  border:1px solid rgba(0,201,125,0.22);
  border-radius:999px;
  padding:5px 14px;
  font-size:12px;
  color:var(--green);
  font-weight:600;
  margin-bottom:20px;
}
.doc-article h1{
  font-size:clamp(28px,4vw,36px);
  font-weight:800;
  letter-spacing:-0.6px;
  margin-bottom:10px;
  line-height:1.15;
}
.doc-article .meta{
  font-size:13px;
  color:var(--text3);
  margin-bottom:36px;
  line-height:1.6;
}
.doc-article h2{
  font-size:19px;
  font-weight:700;
  color:var(--text);
  margin:36px 0 12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--border);
}
.doc-article h3{font-size:16px;font-weight:600;margin:22px 0 8px;color:var(--text)}
.doc-article p,.doc-article li{
  font-size:14px;
  color:var(--text2);
  margin-bottom:12px;
  line-height:1.75;
}
.doc-article ul,.doc-article ol{padding-left:20px;margin-bottom:14px}
.doc-article li{margin-bottom:6px}
.doc-article .highlight{
  background:rgba(0,201,125,0.06);
  border:1px solid rgba(0,201,125,0.16);
  border-radius:12px;
  padding:16px 20px;
  margin:20px 0;
  font-size:14px;
  color:var(--text2);
}
.doc-article .highlight strong{color:var(--green)}
.doc-article table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  margin:16px 0;
}
.doc-article th,.doc-article td{
  text-align:left;
  padding:10px 14px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.doc-article th{
  background:var(--card);
  color:var(--text2);
  font-weight:600;
}
.doc-article code{
  font-size:12px;
  background:var(--card);
  padding:2px 6px;
  border-radius:4px;
  border:1px solid var(--border);
}
.doc-article .data-table td{vertical-align:top}
.req-table th{width:38%}

/* Footer phones */
.footer-phones{
  margin-top:10px!important;
  font-size:13px!important;
  color:var(--text2);
}
.footer-phones a{
  color:var(--green);
  font-weight:600;
  text-decoration:none;
}
.footer-phones a:hover{text-decoration:underline}

/* Hero: декоративные «живые» пятна */
.hero-decor{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:0;
}
.hero-blob{
  position:absolute;
  border-radius:50%;
  filter:blur(72px);
  opacity:.22;
  animation:blobDrift 14s ease-in-out infinite;
}
.hero-blob:nth-child(1){
  width:min(420px,70vw);
  height:min(420px,70vw);
  background:rgba(0,201,125,0.45);
  top:-12%;
  right:-8%;
  animation-delay:0s;
}
.hero-blob:nth-child(2){
  width:min(320px,55vw);
  height:min(320px,55vw);
  background:rgba(0,100,140,0.4);
  bottom:5%;
  left:-10%;
  animation-delay:-5s;
  animation-duration:18s;
}
.hero-blob:nth-child(3){
  width:min(200px,40vw);
  height:min(200px,40vw);
  background:rgba(0,201,125,0.25);
  top:40%;
  left:35%;
  animation-delay:-9s;
  animation-duration:12s;
}
@keyframes blobDrift{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(3%,5%) scale(1.06)}
  66%{transform:translate(-4%,-3%) scale(0.95)}
}

#hero .hero-grid{z-index:1}

/* Счётчики в hero */
.stat-num{
  display:inline-block;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .6s ease,transform .6s ease;
}
.stat-num--in{
  opacity:1;
  transform:none;
  animation:statGlow 3s ease-in-out infinite;
  animation-delay:inherit;
}
@keyframes statGlow{
  0%,100%{text-shadow:0 0 0 transparent}
  50%{text-shadow:0 0 20px rgba(0,201,125,0.35)}
}

/* Метки секций — линия */
.section-label{
  position:relative;
  display:inline-block;
  padding-bottom:4px;
}
.section-label::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  height:2px;
  width:100%;
  background:linear-gradient(90deg,var(--green),transparent);
  border-radius:1px;
  transform-origin:left;
  animation:labelLine 1.2s ease .3s both;
}
@keyframes labelLine{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

/* Trust bar — лёгкое покачивание */
.trust-item{
  animation:trustFloat 5s ease-in-out infinite;
}
.trust-item:nth-child(1){animation-delay:0s}
.trust-item:nth-child(2){animation-delay:.4s}
.trust-item:nth-child(3){animation-delay:.8s}
.trust-item:nth-child(4){animation-delay:1.2s}
@keyframes trustFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-3px)}
}

/* Кнопка — блик */
.btn-primary,.btn-nav{
  position:relative;
  overflow:hidden;
}
.btn-primary::after,.btn-nav::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.2) 50%,transparent 60%);
  transform:translateX(-100%);
  animation:btnShine 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes btnShine{
  0%,70%{transform:translateX(-100%)}
  85%{transform:translateX(100%)}
  100%{transform:translateX(100%)}
}

/* Карточки программы — мягкая «дыхание» границы */
.program-card{
  animation:cardBreathe 6s ease-in-out infinite;
  animation-play-state:paused;
}
.program-card:hover,.reveal.is-visible.program-card{animation-play-state:running}
@keyframes cardBreathe{
  0%,100%{box-shadow:0 0 0 rgba(0,201,125,0)}
  50%{box-shadow:0 8px 32px rgba(0,201,125,0.08)}
}

/* Формат курса (шаги) */
.format-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:clamp(10px,2vw,18px);
  max-width:1160px;
  margin:0 auto;
}
@media(max-width:1000px){
  .format-steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .format-steps{grid-template-columns:1fr}
}
.format-step{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rad-sm);
  padding:22px 16px;
  text-align:center;
  position:relative;
  transition:border-color .25s,transform .25s;
}
.format-step:hover{
  border-color:rgba(0,201,125,0.35);
  transform:translateY(-4px);
}
.format-step-num{
  width:36px;height:36px;
  margin:0 auto 12px;
  border-radius:50%;
  background:var(--green-dim);
  border:1px solid rgba(0,201,125,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  color:var(--green);
  animation:stepPop .5s ease both;
}
.format-step:nth-child(1) .format-step-num{animation-delay:.05s}
.format-step:nth-child(2) .format-step-num{animation-delay:.12s}
.format-step:nth-child(3) .format-step-num{animation-delay:.19s}
.format-step:nth-child(4) .format-step-num{animation-delay:.26s}
.format-step:nth-child(5) .format-step-num{animation-delay:.33s}
@keyframes stepPop{
  from{opacity:0;transform:scale(.5)}
  to{opacity:1;transform:scale(1)}
}
.format-step h3{font-size:14px;font-weight:700;margin-bottom:6px}
.format-step p{font-size:12px;color:var(--text2);line-height:1.55}

.code-badge{
  animation:codeFloat 5s ease-in-out infinite;
}
@keyframes codeFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .section-label::after{transform:scaleX(1)!important}
  .stat-num,.stat-num--in{opacity:1!important;transform:none!important;animation:none!important}
  .trust-item{animation:none}
  .code-badge{animation:none}
  .program-card{animation:none}
  .btn-primary::after,.btn-nav::after{display:none}
}

/* Responsive home */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual,.code-badge{display:none}
  .features-grid,.plans-grid{grid-template-columns:1fr}
  .tech-grid{grid-template-columns:repeat(2,1fr)}
  #contacts .contacts-grid{grid-template-columns:1fr}
}

/* Product homepage additions */
.hero-grid-product{
  align-items:center;
}

.hero-product-side{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-console{
  position:relative;
  z-index:2;
  width:min(100%, 520px);
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(18,28,24,0.92), rgba(9,15,13,0.88)),
    radial-gradient(circle at top right, rgba(0,201,125,0.14), transparent 34%);
  box-shadow:0 24px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter:blur(22px) saturate(1.15);
}

.console-top{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.console-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.05);
  color:var(--text2);
  font-size:12px;
  font-weight:700;
}

.console-live{
  color:#baf0d6;
  background:rgba(0,201,125,0.12);
}

.console-title{
  margin-top:18px;
  font-size:30px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-1.1px;
}

.console-sub{
  margin-top:14px;
  color:var(--text2);
  font-size:14px;
  line-height:1.75;
}

.console-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.console-card{
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
}

.console-card strong{
  display:block;
  font-size:14px;
  line-height:1.35;
}

.console-card span{
  display:block;
  margin-top:8px;
  color:var(--text2);
  font-size:12px;
  line-height:1.6;
}

.floating-note{
  position:absolute;
  z-index:3;
  max-width:240px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(10,16,14,0.78);
  backdrop-filter:blur(20px);
  box-shadow:0 16px 44px rgba(0,0,0,0.28);
}

.floating-note strong{
  display:block;
  font-size:14px;
}

.floating-note span{
  display:block;
  margin-top:4px;
  color:var(--text2);
  font-size:12px;
  line-height:1.55;
}

.note-primary{
  top:20px;
  right:0;
}

.note-secondary{
  bottom:24px;
  left:10px;
}

.floating-dot{
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 14px rgba(0,201,125,0.55);
}

.point-list{
  display:grid;
  gap:8px;
  margin-top:16px;
}

.point-list span{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,0.04);
  color:var(--text2);
  font-size:13px;
}

.point-list span::before{
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 10px rgba(0,201,125,0.45);
  flex-shrink:0;
}

@media(max-width:900px){
  .hero-product-side{
    min-height:auto;
    padding-top:8px;
  }
  .floating-note{
    position:static;
    max-width:none;
    margin-top:14px;
  }
  .console-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:680px){
  #hero{
    padding:34px 18px 56px;
  }
  .hero-tag{
    font-size:11px;
    padding:8px 14px;
  }
  .hero-cta{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost{
    width:100%;
    justify-content:center;
  }
  .hero-stats{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }
  .product-console{
    padding:20px;
    border-radius:24px;
  }
  .console-title{
    font-size:24px;
  }
  .program-card,
  .feature-card,
  .plan-card,
  .audience-card,
  .contact-block{
    padding:22px 18px;
  }
  section{
    padding:56px 18px;
  }
  .trust-bar{
    padding:16px;
    justify-content:flex-start;
  }
  .trust-item{
    width:100%;
    justify-content:flex-start;
  }
  .cta-band{
    margin:20px 16px 56px;
    padding:34px 20px;
  }
}
