:root{
  --bg: #070A12;
  --bg2:#0B1224;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);
  --text:#EAF0FF;
  --muted: rgba(234,240,255,.78);
  --muted2: rgba(234,240,255,.62);
  --accent:#6EE7FF;
  --accent2:#A78BFA;
  --accent3:#34D399;
  --warn:#F59E0B;
  --danger:#FB7185;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 900px at 15% 10%, rgba(167,139,250,.24), transparent 55%),
    radial-gradient(900px 700px at 85% 25%, rgba(110,231,255,.20), transparent 55%),
    radial-gradient(1000px 900px at 45% 100%, rgba(52,211,153,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.grid{display:grid; gap:16px}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px; border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.pill i{
  width:10px; height:10px; border-radius:999px; display:inline-block;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow:0 0 18px rgba(110,231,255,.6);
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background:rgba(7,10,18,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(135deg, rgba(110,231,255,.85), rgba(167,139,250,.85));
  box-shadow:0 14px 35px rgba(110,231,255,.18);
  border:1px solid rgba(255,255,255,.14);
}
.nav{
  display:flex; align-items:center; gap:18px;
  color:var(--muted);
  font-size:14px;
}
.nav a{opacity:.85; transition: opacity .15s ease}
.nav a:hover{opacity:1}
.actions{display:flex; gap:10px; align-items:center}
.btn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  font-weight:600;
  cursor:pointer;
  transition:.18s ease;
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
  font-size:14px;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.08)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  border:none;
  background:linear-gradient(90deg, rgba(110,231,255,.95), rgba(167,139,250,.95));
  color:#061018;
  box-shadow: 0 22px 60px rgba(110,231,255,.18);
}
.btn.primary:hover{filter:saturate(1.05) brightness(1.03)}
.btn .kbd{
  font-size:12px; color:rgba(6,16,24,.75);
  padding:3px 8px; border-radius:8px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(255,255,255,.55);
}
.menuBtn{
  display:none;
  width:42px; height:42px;
  padding:0;
  border-radius:12px;
  position:relative;
  flex:0 0 auto;
}
.menuBtn .hamburger{
  display:block;
  width:20px; height:14px;
  position:relative;
}
.menuBtn .hamburger span{
  display:block;
  width:100%; height:2px;
  background:var(--text);
  border-radius:2px;
  position:absolute; left:0;
  transition:transform .2s ease, opacity .2s ease;
}
.menuBtn .hamburger span:nth-child(1){top:0}
.menuBtn .hamburger span:nth-child(2){top:6px}
.menuBtn .hamburger span:nth-child(3){top:12px}

/* Hero */
.hero{padding:62px 0 34px}
.heroWrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.h1{
  font-size: clamp(34px, 4.4vw, 54px);
  line-height:1.05;
  letter-spacing:-.02em;
  margin:14px 0 14px;
}
.lead{
  font-size: clamp(16px, 1.55vw, 18px);
  line-height:1.55;
  color:var(--muted);
  margin:0 0 20px;
  max-width: 56ch;
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.miniRow{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px; color:var(--muted2); font-size:13px;
}
.miniRow span{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.miniRow b{
  font-weight:700; color:var(--text)
}

/* Social proof counter */
.socialProof{
  display:inline-flex; align-items:center; gap:10px;
  margin-top:18px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(52,211,153,.22);
  background:
    linear-gradient(90deg, rgba(52,211,153,.10), rgba(110,231,255,.06));
  font-size:14px;
  color:var(--text);
}
.proofDot{
  width:10px; height:10px; border-radius:999px;
  background:var(--accent3);
  box-shadow:0 0 14px rgba(52,211,153,.55);
  animation: proofPulse 2s ease-in-out infinite;
}
@keyframes proofPulse{
  0%, 100%{ box-shadow:0 0 8px rgba(52,211,153,.4); transform:scale(1) }
  50%{ box-shadow:0 0 20px rgba(52,211,153,.7); transform:scale(1.25) }
}
.socialProof b{
  font-weight:800;
  font-size:16px;
  color:var(--accent3);
}

.heroCard{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 200px at 20% 0%, rgba(110,231,255,.25), transparent 55%),
              radial-gradient(500px 220px at 90% 10%, rgba(167,139,250,.22), transparent 60%),
              radial-gradient(500px 260px at 50% 100%, rgba(52,211,153,.14), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.heroCard > *{position:relative}
.heroViz{
  width:100%;
  aspect-ratio: 16 / 12;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.note{
  margin-top:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

/* SVG Animations */
.pulse{
  animation: svgPulse 2.5s ease-in-out infinite;
}
.pulse-d1{ animation-delay: .4s }
.pulse-d2{ animation-delay: .8s }
.pulse-d3{ animation-delay: 1.2s }
@keyframes svgPulse{
  0%, 100%{ opacity:.85; r: attr(r) }
  50%{ opacity:1; filter: brightness(1.4) }
}
.line-glow{
  animation: lineGlow 3s ease-in-out infinite;
}
@keyframes lineGlow{
  0%, 100%{ opacity:.5 }
  50%{ opacity:1 }
}
.chart-line{
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawChart 2s ease forwards;
}
@keyframes drawChart{
  to{ stroke-dashoffset: 0 }
}

/* Sections */
section{padding:52px 0}
.sectionTitle{
  font-size: clamp(22px, 2.7vw, 30px);
  margin:0 0 14px;
  letter-spacing:-.01em;
}
.sectionLead{
  margin:0 0 22px;
  color:var(--muted);
  max-width: 70ch;
  line-height:1.6;
}

.card{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.card h3{margin:0 0 10px; font-size:16px; letter-spacing:-.01em}
.card p{margin:0; color:var(--muted); line-height:1.6}

/* Problem */
.problemGrid{
  grid-template-columns: 1.1fr .9fr;
  align-items:start;
}
.bullets{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.bullets li{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.15);
  color:var(--muted);
  line-height:1.5;
}
.dot{
  width:10px; height:10px; border-radius:999px; margin-top:6px;
  background:linear-gradient(90deg, var(--danger), var(--warn));
  box-shadow:0 0 18px rgba(251,113,133,.25);
  flex:0 0 auto;
}
.solution{
  border-radius: 18px;
  padding:18px;
  border:1px solid rgba(110,231,255,.18);
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(110,231,255,.20), transparent 55%),
    rgba(0,0,0,.16);
}
.solution .tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(110,231,255,.18);
  background:rgba(110,231,255,.08);
  color:rgba(234,240,255,.84);
  font-size:13px;
  margin-bottom:10px;
}

/* Steps */
.stepsGrid{grid-template-columns: repeat(4, 1fr)}
.step{
  position:relative;
  overflow:hidden;
}
.step:before{
  content:"";
  position:absolute; inset:auto -40% -60% -40%;
  height:220px;
  background: radial-gradient(300px 160px at 50% 0%, rgba(167,139,250,.18), transparent 60%);
  pointer-events:none;
}
.step > *{position:relative}
.num{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:10px;
}

/* Tech */
.techGrid{grid-template-columns: 1fr 1fr}
.callout{
  border-radius: 18px;
  padding:18px;
  border:1px solid rgba(52,211,153,.18);
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(52,211,153,.16), transparent 55%),
    rgba(0,0,0,.16);
}
.callout .label{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(52,211,153,.20);
  background:rgba(52,211,153,.08);
  color:rgba(234,240,255,.84);
  font-size:13px;
  margin-bottom:10px;
}

/* Use cases */
.casesGrid{grid-template-columns: repeat(3, 1fr)}
.caseTop{
  display:flex; justify-content:space-between; gap:10px; align-items:flex-start;
  margin-bottom:10px;
}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  white-space:nowrap;
}
.caseLink{
  display:inline-flex;
  align-items:center;
  font-size:13px;
  padding:8px 16px;
  border:1px solid var(--accent);
  color:var(--accent);
  border-radius:10px;
  background:transparent;
  text-decoration:none;
  transition:background .2s, color .2s;
}
.caseLink:hover{
  background:var(--accent);
  color:#fff;
}
.casesGrid .card{
  display:flex;
  flex-direction:column;
}
.casesGrid .card .caseLink{
  margin-top:auto;
}

/* ===== Telegram block ===== */
.telegramBlock{
  padding:60px 0 70px;
  position:relative;
  overflow:hidden;
}

/* Gradient separators top/bottom */
.telegramSeparatorTop,
.telegramSeparatorBottom{
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(0,136,204,.6), rgba(110,231,255,.8), rgba(167,139,250,.6), transparent);
  margin:0 auto;
  max-width:var(--max);
}
.telegramSeparatorTop{margin-bottom:40px}
.telegramSeparatorBottom{margin-top:40px}

.telegramCardWrap{
  position:relative;
  margin-top:12px;
  border-radius:calc(var(--radius2) + 3px);
}

/* Animated conic-gradient border (modern trend) */
.telegramBorderGlow{
  position:absolute;
  inset:-2px;
  border-radius:calc(var(--radius2) + 4px);
  background:conic-gradient(from var(--tg-angle, 0deg), #0088cc, #6EE7FF, #A78BFA, #34D399, #0088cc);
  animation:telegramBorderSpin 4s linear infinite;
  z-index:0;
  opacity:.85;
}
@property --tg-angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes telegramBorderSpin{
  to{ --tg-angle: 360deg }
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)){
  .telegramBorderGlow{
    background:linear-gradient(90deg, #0088cc, #6EE7FF, #A78BFA, #34D399, #0088cc);
    background-size:300% 100%;
    animation:telegramGlowFallback 4s linear infinite;
  }
  @keyframes telegramGlowFallback{
    0%,100%{background-position:0% 50%}
    50%{background-position:100% 50%}
  }
}

/* Glow backdrop — усиленный */
.telegramGlow{
  position:absolute;
  inset:-8px;
  border-radius:calc(var(--radius2) + 8px);
  background:linear-gradient(90deg, rgba(0,136,204,.6), rgba(110,231,255,.5), rgba(167,139,250,.4), rgba(0,136,204,.6));
  background-size:300% 100%;
  animation:telegramGlowPulse 4s linear infinite, telegramGlowBreath 3s ease-in-out infinite;
  opacity:.7;
  z-index:-1;
  filter:blur(26px);
}
.telegramCardWrap:hover .telegramGlow{opacity:1; filter:blur(32px)}
@keyframes telegramGlowPulse{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
@keyframes telegramGlowBreath{
  0%,100%{opacity:.6}
  50%{opacity:.9}
}

/* Card itself */
.telegramCard{
  position:relative;
  z-index:1;
  display:block;
  padding:0;
  overflow:hidden;
  border-radius:var(--radius2);
  text-decoration:none;
  color:inherit;
  transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  border:none;
  background:
    radial-gradient(ellipse 90% 70% at 20% 40%, rgba(0,136,204,.22), transparent 55%),
    radial-gradient(ellipse 70% 90% at 80% 60%, rgba(110,231,255,.16), transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(167,139,250,.10), transparent 50%),
    linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 30px 80px rgba(0,0,0,.40);
}
.telegramCard:hover{
  transform:translateY(-6px) scale(1.015);
  box-shadow:
    0 0 0 1px rgba(0,136,204,.5),
    0 0 80px rgba(0,136,204,.25),
    0 0 120px rgba(110,231,255,.10),
    0 40px 100px rgba(0,0,0,.45);
}

/* Shimmer sweep — усиленный */
.telegramShine{
  position:absolute;
  top:0; left:-100%;
  width:50%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), rgba(110,231,255,.06), transparent);
  animation:telegramShine 3.5s ease-in-out 1s infinite;
  z-index:3;
  pointer-events:none;
}
@keyframes telegramShine{
  0%{left:-50%; opacity:0}
  40%{opacity:1}
  100%{left:130%; opacity:0}
}

/* Floating decorative dots */
.telegramDot{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:2;
  opacity:.4;
}
.telegramDot1{
  width:6px; height:6px;
  background:var(--accent);
  top:18%; right:12%;
  animation:tgFloat 6s ease-in-out infinite;
}
.telegramDot2{
  width:4px; height:4px;
  background:var(--accent2);
  bottom:22%; right:25%;
  animation:tgFloat 5s ease-in-out .8s infinite;
}
.telegramDot3{
  width:5px; height:5px;
  background:var(--accent3);
  top:35%; right:5%;
  animation:tgFloat 7s ease-in-out 1.5s infinite;
}
@keyframes tgFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

/* Inner layout */
.telegramInner{
  position:relative;
  z-index:4;
  display:flex;
  align-items:center;
  gap:36px;
  padding:48px 56px;
}
.telegramIconWrap{
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100px;
  height:100px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(0,136,204,.4), rgba(110,231,255,.25));
  border:1px solid rgba(255,255,255,.15);
  box-shadow:
    0 8px 32px rgba(0,136,204,.3),
    0 0 60px rgba(0,136,204,.15);
}
.telegramIcon{
  color:#fff;
  filter:drop-shadow(0 2px 12px rgba(0,136,204,.5));
}
.telegramIconPulse{
  animation:telegramIconPulse 2.5s ease-in-out infinite;
}
@keyframes telegramIconPulse{
  0%,100%{transform:scale(1); filter:drop-shadow(0 2px 12px rgba(0,136,204,.5))}
  50%{transform:scale(1.12); filter:drop-shadow(0 4px 24px rgba(0,136,204,.8))}
}

/* Content */
.telegramContent{flex:1; min-width:0}
.telegramLabel{
  display:inline-block;
  padding:4px 12px;
  font-size:12px;
  font-weight:700;
  color:#0a1628;
  background:linear-gradient(90deg, rgba(0,136,204,.7), rgba(110,231,255,.6));
  border-radius:999px;
  margin-bottom:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.telegramTitle{
  margin:0 0 12px;
  font-size:clamp(24px, 3vw, 34px);
  font-weight:800;
  line-height:1.15;
  color:#0a1628;
  letter-spacing:-.02em;
}
.telegramDesc{
  margin:0 0 16px;
  font-size:17px;
  line-height:1.55;
  color:#1e293b;
  max-width:540px;
}
.telegramSocial{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#334155;
  margin-bottom:20px;
  letter-spacing:.02em;
}

/* CTA button (полноценная кнопка) */
.telegramCtaBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  font-weight:700;
  font-size:16px;
  color:#fff;
  background:linear-gradient(135deg, #0088cc, #00aaee);
  border-radius:14px;
  transition:all .3s ease;
  box-shadow:
    0 4px 20px rgba(0,136,204,.4),
    0 0 0 1px rgba(255,255,255,.1) inset;
}
.telegramCard:hover .telegramCtaBtn{
  background:linear-gradient(135deg, #009ae0, #00bbff);
  box-shadow:
    0 6px 30px rgba(0,136,204,.55),
    0 0 60px rgba(0,136,204,.2),
    0 0 0 1px rgba(255,255,255,.15) inset;
  transform:translateX(2px);
}
.telegramCtaArrow{
  display:inline-block;
  transition:transform .3s ease;
  font-size:18px;
}
.telegramCard:hover .telegramCtaArrow{transform:translateX(6px)}

/* Responsive */
@media (max-width: 768px){
  .telegramBlock{padding:40px 0 50px}
  .telegramInner{flex-direction:column; padding:36px 28px; gap:28px; text-align:center}
  .telegramDesc{margin-left:auto; margin-right:auto}
  .telegramSocial{text-align:center}
}
@media (max-width: 640px){
  .telegramBlock{padding:28px 0 36px}
  .telegramInner{padding:28px 20px; gap:24px}
  .telegramIconWrap{width:80px; height:80px; border-radius:22px}
  .telegramIcon svg{width:40px; height:40px}
  .telegramCtaBtn{padding:12px 22px; font-size:15px}
}

/* ===== Promo Banner (перед карточками тарифов) ===== */
.promoBanner{
  position:relative;
  margin-bottom:32px;
  border-radius:var(--radius2);
  overflow:hidden;
}
.promoBannerBorder{
  position:absolute;
  inset:-2px;
  border-radius:calc(var(--radius2) + 2px);
  background:conic-gradient(from var(--promo-angle, 0deg), #34D399, #6EE7FF, #A78BFA, #F59E0B, #34D399);
  animation:promoBorderSpin 5s linear infinite;
  z-index:0;
}
@property --promo-angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes promoBorderSpin{
  to{ --promo-angle: 360deg }
}
.promoBannerInner{
  position:relative;
  z-index:1;
  border-radius:var(--radius2);
  padding:28px 36px;
  background:
    radial-gradient(ellipse 80% 100% at 10% 50%, rgba(52,211,153,.18), transparent 50%),
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(245,158,11,.12), transparent 50%),
    linear-gradient(135deg, rgba(7,10,18,.95), rgba(11,18,36,.95));
  overflow:hidden;
}
.promoBannerGlow{
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 50% 100% at 50% 50%, rgba(52,211,153,.10), transparent 70%);
  animation:promoBannerBreath 3s ease-in-out infinite;
  pointer-events:none;
}
@keyframes promoBannerBreath{
  0%,100%{opacity:.5}
  50%{opacity:1}
}
.promoBannerContent{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}
.promoBannerBadge{
  display:inline-block;
  padding:8px 20px;
  font-size:14px;
  font-weight:800;
  color:#061018;
  background:linear-gradient(135deg, #34D399, #6EE7FF);
  border-radius:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 4px 24px rgba(52,211,153,.5);
  animation:promoBadgePulse 2s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes promoBadgePulse{
  0%,100%{box-shadow:0 4px 24px rgba(52,211,153,.5); transform:scale(1)}
  50%{box-shadow:0 6px 36px rgba(52,211,153,.7); transform:scale(1.03)}
}
.promoBannerText{
  flex:1;
  min-width:200px;
}
.promoBannerTitle{
  display:block;
  font-size:clamp(18px, 2.5vw, 24px);
  font-weight:700;
  color:var(--text);
  line-height:1.3;
}
.promoBannerTitle strong{
  color:#34D399;
  font-size:clamp(22px, 3vw, 30px);
  text-shadow:0 0 20px rgba(52,211,153,.4);
}
.promoBannerSub{
  display:block;
  margin-top:4px;
  font-size:14px;
  color:var(--muted);
  font-weight:500;
}
.promoBannerBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  font-size:16px;
  font-weight:700;
  color:#061018;
  background:linear-gradient(135deg, #34D399, #10B981);
  border-radius:14px;
  text-decoration:none;
  transition:all .3s ease;
  box-shadow:0 4px 24px rgba(52,211,153,.4);
  flex-shrink:0;
}
.promoBannerBtn:hover{
  background:linear-gradient(135deg, #4ADE80, #34D399);
  box-shadow:0 6px 36px rgba(52,211,153,.6);
  transform:translateY(-2px);
}
@media (max-width: 768px){
  .promoBannerContent{justify-content:center; text-align:center}
  .promoBannerText{min-width:100%}
  .promoBannerInner{padding:24px 20px}
}

/* ===== Pricing ===== */
.pricingGrid{
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}
.pricingCard{
  display:flex;
  flex-direction:column;
  position:relative;
  padding:24px;
}
.pricingPopular{
  border-color:rgba(110,231,255,.30);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(110,231,255,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:
    0 0 0 1px rgba(110,231,255,.18),
    0 22px 70px rgba(0,0,0,.30);
}

/* Promo card — яркое свечение */
.pricingPromo{
  border:none;
  overflow:visible;
  background:
    radial-gradient(500px 250px at 50% 0%, rgba(52,211,153,.20), transparent 55%),
    radial-gradient(400px 200px at 50% 100%, rgba(245,158,11,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  box-shadow:
    0 0 0 2px rgba(52,211,153,.35),
    0 0 60px rgba(52,211,153,.12),
    0 22px 70px rgba(0,0,0,.30);
  z-index:2;
  transform:scale(1.04);
}
.pricingPromo:hover{
  box-shadow:
    0 0 0 2px rgba(52,211,153,.5),
    0 0 80px rgba(52,211,153,.18),
    0 30px 90px rgba(0,0,0,.35);
}

/* Animated border glow for promo card */
.pricingPromoBorderGlow{
  position:absolute;
  inset:-2px;
  border-radius:calc(var(--radius) + 2px);
  background:conic-gradient(from var(--pc-angle, 0deg), #34D399, #6EE7FF, #F59E0B, #34D399);
  animation:pricingCardBorderSpin 6s linear infinite;
  z-index:-1;
  opacity:.6;
}
@property --pc-angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes pricingCardBorderSpin{
  to{ --pc-angle: 360deg }
}

/* Badge — крупнее, ярче, пульсирующий */
.pricingBadge{
  position:absolute;
  top:-1px; right:20px;
  padding:5px 14px;
  font-size:12px;
  font-weight:700;
  color:#061018;
  background:linear-gradient(90deg, rgba(110,231,255,.95), rgba(167,139,250,.95));
  border-radius:0 0 12px 12px;
  letter-spacing:.02em;
}
.pricingBadgePromo{
  padding:8px 20px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.06em;
  background:linear-gradient(135deg, #F59E0B, #F97316);
  color:#fff;
  box-shadow:0 4px 24px rgba(245,158,11,.5);
  animation:pricingBadgePulse 2s ease-in-out infinite;
  display:flex;
  align-items:center;
  gap:6px;
}
.pricingBadgeIcon{
  font-size:16px;
}
@keyframes pricingBadgePulse{
  0%,100%{box-shadow:0 4px 24px rgba(245,158,11,.5); transform:scale(1)}
  50%{box-shadow:0 6px 36px rgba(245,158,11,.7); transform:scale(1.05)}
}

/* Price wrap */
.pricingPriceWrap{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:12px;
  margin-bottom:8px;
}

/* Old price — крупная, красная, жирное зачёркивание через pseudo-element */
.pricingPriceOld{
  position:relative;
  font-size:26px;
  font-weight:700;
  color:var(--danger);
  text-decoration:none;
}
.pricingPriceOld::after{
  content:"";
  position:absolute;
  left:-4px;
  right:-4px;
  top:50%;
  height:3px;
  background:var(--danger);
  border-radius:2px;
  transform:translateY(-50%) rotate(-6deg);
  opacity:.85;
}

/* New price — огромная, зелёная, пульсирующий glow */
.pricingPriceNew{
  font-size:52px;
  font-weight:900;
  color:#34D399;
  letter-spacing:-.03em;
  line-height:1;
  text-shadow:0 0 30px rgba(52,211,153,.4);
  animation:pricePulse 3s ease-in-out infinite;
}
@keyframes pricePulse{
  0%,100%{text-shadow:0 0 30px rgba(52,211,153,.4)}
  50%{text-shadow:0 0 50px rgba(52,211,153,.7), 0 0 80px rgba(52,211,153,.2)}
}

/* Urgency block — яркий, с пульсирующим dot */
.pricingUrgency{
  margin:4px 0 18px;
  padding:12px 16px;
  font-size:14px;
  font-weight:700;
  color:#fff;
  background:
    linear-gradient(135deg, rgba(245,158,11,.20), rgba(245,158,11,.08));
  border:1px solid rgba(245,158,11,.45);
  border-radius:12px;
  line-height:1.4;
  display:flex;
  align-items:center;
  gap:10px;
}
.pricingUrgencyDot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#F59E0B;
  flex-shrink:0;
  box-shadow:0 0 12px rgba(245,158,11,.6);
  animation:urgencyDotPulse 1.5s ease-in-out infinite;
}
@keyframes urgencyDotPulse{
  0%,100%{opacity:1; box-shadow:0 0 12px rgba(245,158,11,.6)}
  50%{opacity:.4; box-shadow:0 0 6px rgba(245,158,11,.3)}
}

/* Promo CTA button — ярче */
.pricingPromoBtn{
  background:linear-gradient(135deg, #34D399, #10B981) !important;
  color:#061018 !important;
  border-color:#34D399 !important;
  font-size:16px;
  font-weight:800;
  padding:14px 20px;
  box-shadow:0 4px 24px rgba(52,211,153,.35);
  transition:all .3s ease;
}
.pricingPromoBtn:hover{
  background:linear-gradient(135deg, #4ADE80, #34D399) !important;
  box-shadow:0 6px 36px rgba(52,211,153,.5);
  transform:translateY(-2px);
}

/* Тёмный текст внутри promo-карточки (светлый фон) */
.pricingPromo .pricingTag{color:#1e293b}
.pricingPromo .pricingPeriod{color:#334155}
.pricingPromo .pricingFeatures li{color:#1e293b}
.pricingPromo .pricingFeatures li.excluded{color:#64748b; opacity:.7}
.pricingPromo .pricingUrgency{color:#1e293b}

.pricingTag{
  font-size:14px;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:8px;
}
.pricingPrice{
  font-size:34px;
  font-weight:800;
  letter-spacing:-.02em;
  margin-bottom:18px;
  line-height:1.1;
}
.pricingPeriod{
  font-size:15px;
  font-weight:500;
  color:var(--muted);
}
.pricingFeatures{
  list-style:none;
  margin:0 0 auto;
  padding:0;
  display:grid;
  gap:10px;
  margin-bottom:20px;
}
.pricingFeatures li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.45;
  color:var(--muted);
}
.pricingFeatures li::before{
  content:"";
  width:18px; height:18px;
  border-radius:999px;
  flex:0 0 auto;
  margin-top:1px;
}
.pricingFeatures li.included::before{
  background:rgba(52,211,153,.18);
  box-shadow:inset 0 0 0 2px rgba(52,211,153,.65);
}
.pricingFeatures li.excluded{
  opacity:.45;
}
.pricingFeatures li.excluded::before{
  background:rgba(255,255,255,.06);
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.15);
}

@media (max-width: 980px){
  .pricingGrid{grid-template-columns: 1fr}
  .pricingPromo{transform:none}
}

/* Benefits */
.benefitsGrid{grid-template-columns: repeat(2, 1fr)}
.benefit{
  display:flex; gap:12px; align-items:flex-start;
}
.icon{
  width:42px; height:42px; border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(110,231,255,.18), rgba(167,139,250,.16));
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}
.icon svg{opacity:.95}

/* FAQ */
.faq{max-width: 860px}
details{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 16px;
  padding:14px 14px;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}
details + details{margin-top:12px}
summary{
  cursor:pointer;
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  font-weight:700;
  letter-spacing:-.01em;
}
summary::-webkit-details-marker{display:none}
.chev{transition: transform .2s ease}
details[open] .chev{transform: rotate(180deg)}
details p{margin:10px 0 0; color:var(--muted); line-height:1.65}

/* Footer CTA */
.final{
  padding:54px 0 68px;
}
.finalBox{
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(110,231,255,.20), transparent 55%),
    radial-gradient(900px 260px at 88% 10%, rgba(167,139,250,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: 26px;
  padding:26px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  align-items:center;
  gap:18px;
  overflow:hidden;
  position:relative;
}
.finalBox:after{
  content:"";
  position:absolute; inset:auto -30% -60% -30%;
  height:280px;
  background: radial-gradient(420px 240px at 50% 0%, rgba(52,211,153,.18), transparent 62%);
  pointer-events:none;
}
.finalBox > *{position:relative}
.footer{
  padding:18px 0 30px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted2);
  font-size:13px;
}
.footerRow{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}

/* Lead form */
.leadForm{
  display:grid;
  gap:12px;
}
.leadFormRow{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field label{
  font-size:13px;
  color:var(--muted2);
}
.field input,
.field textarea{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,10,18,.8);
  color:var(--text);
  padding:9px 11px;
  font-family:inherit;
  font-size:14px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder,
.field textarea::placeholder{
  color:var(--muted2);
}
.field input:focus,
.field textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(110,231,255,.45);
  background:rgba(7,10,18,.95);
}
.field textarea{
  min-height:80px;
  resize:vertical;
}
.planBadge{
  padding:9px 14px;
  border-radius:12px;
  border:1px solid rgba(110,231,255,.22);
  background:linear-gradient(90deg, rgba(110,231,255,.10), rgba(167,139,250,.08));
  color:var(--accent);
  font-size:13px;
  font-weight:600;
}
.formNote{
  font-size:13px;
  color:var(--muted2);
  line-height:1.5;
}
.formStatus{
  font-size:13px;
  margin-top:4px;
}
.formStatus.success{color:var(--accent3);}
.formStatus.error{color:var(--danger);}

/* ========== Scroll reveal animations ========== */
.reveal{
  opacity:0;
  transform:translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* Stagger children in grids */
.stepsGrid .reveal:nth-child(2){ transition-delay:.08s }
.stepsGrid .reveal:nth-child(3){ transition-delay:.16s }
.stepsGrid .reveal:nth-child(4){ transition-delay:.24s }
.casesGrid .reveal:nth-child(2){ transition-delay:.08s }
.casesGrid .reveal:nth-child(3){ transition-delay:.16s }
.pricingGrid .reveal:nth-child(2){ transition-delay:.08s }
.pricingGrid .reveal:nth-child(3){ transition-delay:.16s }
.benefitsGrid .reveal:nth-child(2){ transition-delay:.08s }
.benefitsGrid .reveal:nth-child(3){ transition-delay:.16s }
.benefitsGrid .reveal:nth-child(4){ transition-delay:.24s }

@media (max-width: 640px){
  .leadFormRow{
    grid-template-columns: 1fr;
  }
}

/* ========== Responsive: Tablet (<=980px) ========== */
@media (max-width: 980px){
  .heroWrap{grid-template-columns: 1fr; gap:20px}
  .problemGrid{grid-template-columns: 1fr}
  .stepsGrid{grid-template-columns: repeat(2, 1fr)}
  .techGrid{grid-template-columns: 1fr}
  .casesGrid{grid-template-columns: 1fr}
  .benefitsGrid{grid-template-columns: 1fr}
  .finalBox{grid-template-columns: 1fr; padding:22px}
  .nav{display:none}
  .menuBtn{display:inline-flex}
  .actions > .btn.primary{display:none}
  section{padding:36px 0}
  .hero{padding:40px 0 24px}
  .final{padding:36px 0 48px}
}

/* ========== Responsive: Small tablet (<=768px) ========== */
@media (max-width: 768px){
  .heroCard{padding:14px}
  .heroViz{aspect-ratio:16/10}
  .note{font-size:12px; padding:10px}
  .sectionTitle{font-size:clamp(20px,4.5vw,28px)}
  .sectionLead{font-size:15px}
  summary{font-size:15px; padding:4px 0; min-height:44px}
  details{padding:12px 14px}
  .card{padding:16px}
  .pricingCard{padding:20px}
  .blogGrid{gap:14px}
  .blogCard h3{font-size:15px}
  .blogCard .cardExcerpt{font-size:13px}
  .relatedGrid{grid-template-columns:1fr 1fr}
  .blogCard .cardBody{padding:14px}
  .articleContent h2{font-size:20px; margin:24px 0 10px}
  .articleContent h3{font-size:16px; margin:18px 0 8px}
  .answerCap{font-size:15px; padding:14px 16px}
  .articleCta{padding:16px 18px; margin:22px 0}
  .pageHero{padding:30px 0 16px}
  .pageHero h1{font-size:clamp(22px,5vw,32px)}
}

/* ========== Responsive: Phone (<=520px) ========== */
@media (max-width: 520px){
  .container{padding:0 16px}
  .stepsGrid{grid-template-columns: 1fr}
  .btn{width:100%; justify-content:center}
  .ctaRow{gap:10px}
  .hero{padding:28px 0 18px}
  .h1{font-size:clamp(26px,7vw,36px); margin:10px 0 10px}
  .lead{font-size:15px; margin-bottom:14px}
  .pill{font-size:12px; padding:7px 10px}
  .miniRow{gap:8px; margin-top:14px}
  .miniRow span{font-size:12px; padding:6px 8px}
  .socialProof{font-size:13px; padding:8px 12px; margin-top:12px}
  .socialProof b{font-size:14px}
  .heroCard{padding:10px; border-radius:18px}
  .heroViz{aspect-ratio:4/3; border-radius:12px}
  .note{margin-top:8px; padding:8px 10px; font-size:12px}
  section{padding:28px 0}
  .sectionTitle{font-size:clamp(18px,5.5vw,24px)}
  .sectionLead{font-size:14px; margin-bottom:16px}
  .card{padding:14px; border-radius:14px}
  .card h3{font-size:15px}
  .card p{font-size:13px}
  .num{width:34px; height:34px; font-size:14px; border-radius:10px}
  .benefit{gap:10px}
  .icon{width:38px; height:38px; border-radius:12px}
  summary{font-size:14px; min-height:48px; gap:8px}
  details{padding:12px; border-radius:12px}
  details p{font-size:14px}
  .pricingCard{padding:18px}
  .pricingPrice{font-size:28px}
  .pricingPriceNew{font-size:32px}
  .pricingFeatures li{font-size:13px}
  .finalBox{padding:18px; border-radius:18px; gap:14px}
  .final{padding:28px 0 36px}
  .sectionTitle[style*="text-align:center"]{text-align:left !important}
  .sectionLead[style*="text-align:center"]{text-align:left !important; margin-left:0 !important}
  .footerRow{flex-direction:column; align-items:flex-start; gap:10px}
  .footerRow nav{gap:12px !important}
  .footer{padding:16px 0 24px}
  .leadFormRow{grid-template-columns: 1fr}
  .field input, .field textarea{padding:11px 12px; font-size:15px}
  .field label{font-size:12px}
  .consentLabel{font-size:12px; gap:8px}
  .planBadge{font-size:12px; padding:8px 12px}
  .formNote{font-size:12px}
  .btn.primary{padding:12px 16px; font-size:15px}
  .btn .kbd{display:none}
  /* Blog page phone */
  .blogGrid{gap:12px; padding-bottom:40px}
  .blogCard .thumb{aspect-ratio:16/9}
  .blogCard .cardBody{padding:12px}
  .blogCard h3{font-size:14px}
  .blogCard .cardExcerpt{font-size:12px; line-height:1.5}
  .blogCard .cardMeta{font-size:11px; margin-bottom:6px}
  .blogCard .readMore{font-size:12px; margin-top:10px}
  /* Article page phone */
  .articleContent{padding-bottom:40px}
  .articleContent .articleMeta{font-size:12px; margin-bottom:18px}
  .articleContent p{font-size:14px; line-height:1.65; margin-bottom:12px}
  .articleContent ul, .articleContent ol{font-size:14px; padding-left:18px}
  .articleContent blockquote{padding:12px 14px; font-size:14px; margin:16px 0}
  .articleHero{border-radius:12px; margin-bottom:18px}
  .answerCap{font-size:14px; padding:12px 14px; margin-bottom:18px}
  .articleCta{padding:14px 16px; margin:18px 0; border-radius:14px}
  .articleCta p{font-size:14px !important}
  .articleCta .btn{font-size:13px}
  .articleTags{gap:6px; margin-top:20px}
  .articleTag{font-size:11px; padding:4px 10px}
  .relatedGrid{grid-template-columns:1fr; gap:12px}
  .relatedArticles{margin-top:24px; padding-top:20px}
  .relatedArticles h2{font-size:18px; margin-bottom:12px}
  .relatedCard .relatedTitle{font-size:14px}
  .relatedCard .relatedBody{padding:12px}
  .articleNav{padding:16px 0 28px; margin-top:18px; gap:10px}
  .articleNav .btn{font-size:13px}
  .keyTakeaways{font-size:14px}
  .breadcrumb{font-size:12px; margin-bottom:12px}
  .pageHero{padding:20px 0 12px}
  .pageHero h1{font-size:clamp(20px,6vw,28px); margin-bottom:8px}
  .pageHero p{font-size:14px}
  /* Drawer mobile */
  .panel{left:8px; right:8px; top:8px; padding:12px}
  .panel a{padding:14px 12px; font-size:15px; border-radius:12px}
}

/* Mobile menu */
.drawer{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  z-index:60;
}
.drawer.open{display:block}
.panel{
  position:absolute; right:12px; top:12px; left:12px;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(12,16,30,.92);
  backdrop-filter: blur(16px);
  padding:14px;
  box-shadow: var(--shadow);
}
.panel a{
  display:block;
  padding:12px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  margin-top:10px;
  font-weight:600;
}
.panel a:hover{color:var(--text); background:rgba(255,255,255,.06)}

/* ========== Blog & Article pages ========== */
.pageHero{
  padding:40px 0 20px;
}
.pageHero h1{
  font-size: clamp(28px, 3.5vw, 42px);
  line-height:1.1;
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.pageHero p{
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width:60ch;
  margin:0;
}
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size:13px;
  color:var(--muted2);
  margin-bottom:16px;
  flex-wrap:wrap;
}
.breadcrumb a{
  color:var(--accent);
  transition:opacity .15s;
}
.breadcrumb a:hover{opacity:.8}
.breadcrumb .sep{opacity:.4}

/* Blog grid */
.blogGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  padding-bottom:60px;
}
.blogCard{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 22px 70px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex;
  flex-direction:column;
}
.blogCard:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 80px rgba(0,0,0,.30);
}
.blogCard .thumb{
  width:100%;
  aspect-ratio:16/9;
  background:
    radial-gradient(300px 150px at 30% 40%, rgba(110,231,255,.18), transparent 60%),
    radial-gradient(300px 150px at 70% 60%, rgba(167,139,250,.14), transparent 60%),
    rgba(0,0,0,.22);
  display:flex; align-items:center; justify-content:center;
  font-size:40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.blogCard .cardBody{
  padding:18px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.blogCard .cardMeta{
  font-size:12px;
  color:var(--muted2);
  margin-bottom:8px;
  display:flex; gap:10px;
}
.blogCard h3{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.3;
  letter-spacing:-.01em;
}
.blogCard .cardExcerpt{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  flex:1;
}
.blogCard .readMore{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:14px;
  font-size:13px;
  font-weight:600;
  color:var(--accent);
  transition:opacity .15s;
}
.blogCard .readMore:hover{opacity:.8}

@media (max-width: 980px){
  .blogGrid{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 520px){
  .blogGrid{grid-template-columns: 1fr}
}

/* Article page */
.articleContent{
  max-width:760px;
  padding-bottom:60px;
}
.articleContent .articleMeta{
  display:flex; gap:12px; align-items:center;
  font-size:13px;
  color:var(--muted2);
  margin-bottom:24px;
  flex-wrap:wrap;
}
.articleContent h2{
  font-size:22px;
  margin:32px 0 12px;
  letter-spacing:-.01em;
}
.articleContent h3{
  font-size:18px;
  margin:24px 0 10px;
}
.articleContent p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 16px;
}
.articleContent ul,
.articleContent ol{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 16px;
  padding-left:22px;
}
.articleContent li{
  margin-bottom:8px;
}
.articleContent blockquote{
  margin:20px 0;
  padding:16px 18px;
  border-left:3px solid var(--accent);
  border-radius:0 12px 12px 0;
  background:rgba(110,231,255,.06);
  color:var(--muted);
  font-style:italic;
  line-height:1.65;
}
.articleContent strong{
  color:var(--text);
}
/* ========== Related Articles (Читайте также) ========== */
.relatedArticles{
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.08);
}
.relatedArticles h2{
  font-size:22px;
  margin-bottom:18px;
  color:var(--text);
}
.relatedGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.relatedCard{
  display:flex;
  flex-direction:column;
  background:var(--card);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  overflow:hidden;
  text-decoration:none;
  color:var(--text);
  transition:border-color .25s, transform .25s;
}
.relatedCard:hover{
  border-color:var(--accent);
  transform:translateY(-3px);
}
.relatedCard img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.relatedCard .relatedBody{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
}
.relatedCard .relatedTitle{
  font-size:15px;
  font-weight:600;
  line-height:1.4;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.relatedCard .relatedExcerpt{
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.relatedCard .relatedMore{
  font-size:13px;
  color:var(--accent);
  margin-top:auto;
  padding-top:6px;
}
/* Contextual inline link within article */
.articleContent a.inlineRef{
  color:var(--accent);
  text-decoration:underline;
  text-decoration-color:rgba(0,224,255,.3);
  text-underline-offset:3px;
  transition:text-decoration-color .2s;
}
.articleContent a.inlineRef:hover{
  text-decoration-color:var(--accent);
}

.articleNav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding:20px 0 40px;
  border-top:none;
  margin-top:24px;
}
.articleNav .btn{
  font-size:14px;
}

/* ========== Consent checkbox ========== */
.consentLabel{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
  cursor:pointer;
  margin-top:4px;
}
.consentLabel input[type="checkbox"]{
  width:18px;
  height:18px;
  min-width:18px;
  margin-top:2px;
  accent-color:var(--accent);
  cursor:pointer;
  border-radius:4px;
}
.consentLabel a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:2px;
}
.consentLabel a:hover{
  opacity:.8;
}

/* ========== Article hero image ========== */
.articleHero{
  width:100%;
  max-width:760px;
  height:auto;
  border-radius:var(--radius);
  margin-bottom:24px;
  border:1px solid rgba(255,255,255,.08);
}

/* ========== Answer cap (резюме для ИИ) ========== */
.answerCap{
  font-size:17px;
  line-height:1.65;
  color:var(--text);
  margin:0 0 24px;
  padding:16px 18px;
  border-radius:12px;
  background:rgba(110,231,255,.06);
  border-left:3px solid var(--accent);
}

/* ========== Mid-article CTA ========== */
.articleCta{
  margin:28px 0;
  padding:20px 22px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(110,231,255,.10), rgba(167,139,250,.10));
  border:1px solid rgba(255,255,255,.10);
  text-align:center;
}
.articleCta p{
  color:var(--text) !important;
  font-size:16px;
  font-weight:600;
  margin:0 0 12px;
}
.articleCta .btn{
  font-size:14px;
}

/* ========== Article tags ========== */
.articleTags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:28px 0 0;
}
.articleTag{
  display:inline-block;
  padding:5px 12px;
  font-size:12px;
  font-weight:600;
  color:var(--accent);
  border:1px solid rgba(110,231,255,.25);
  border-radius:20px;
  background:rgba(110,231,255,.06);
  letter-spacing:.02em;
}

/* ========== Blog card real images ========== */
.blogCard .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
}

/* ========== Key takeaways ========== */
.keyTakeaways{
  background:rgba(52,211,153,.08) !important;
  border-left-color:var(--accent3) !important;
}
