:root{
  --bg:#0b0b0b;
  --panel:#0f0f12;
  --panel2:#121218;
  --txt:#f6f6f7;
  --muted:rgba(246,246,247,.72);
  --line:rgba(246,246,247,.12);
  --blue:#1f6bff;
  --honey:#ffd400;
  --red:#ff2b2b;

  --r:22px;
  --shadow: 0 28px 90px rgba(0,0,0,.62);
  --glowB: 0 0 38px rgba(31,107,255,.34);
  --glowH: 0 0 38px rgba(255,212,0,.28);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--txt);
  background: var(--bg);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

a{color:inherit}

/* ===== Background ===== */
.bg{position:fixed; inset:0; z-index:0; pointer-events:none}
.bg__gradient{
  position:absolute; inset:-20%;
  background:
    radial-gradient(1100px 700px at 20% 20%, rgba(255,212,0,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(31,107,255,.12), transparent 62%),
    radial-gradient(900px 700px at 60% 90%, rgba(255,43,43,.08), transparent 60%),
    linear-gradient(180deg, #0b0b0b, #070708);
  filter: blur(0px);
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(-2%,1.5%,0) scale(1.03)}
}
.bg__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  opacity:.10;
  mask-image: radial-gradient(circle at 35% 25%, black 0 55%, transparent 78%);
}
.bg__noise{
  position:absolute; inset:-40%;
  opacity:.06;
  mix-blend-mode:overlay;
  transform:rotate(7deg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}
.bg__orbs .orb{
  position:absolute; width:420px; height:420px; border-radius:999px; filter: blur(40px);
  opacity:.26;
}
.o1{left:-120px; top:10vh; background:rgba(255,212,0,.35); animation: orb 12s ease-in-out infinite;}
.o2{right:-140px; top:18vh; background:rgba(31,107,255,.35); animation: orb 14s ease-in-out infinite;}
.o3{left:30vw; bottom:-160px; background:rgba(255,43,43,.25); animation: orb 16s ease-in-out infinite;}
@keyframes orb{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(30px,-24px,0) scale(1.08)}
}
.bg__particles, .bg__trail{position:absolute; inset:0; width:100%; height:100%}

/* ===== Layout ===== */
.top{
  position:sticky; top:0; z-index:30;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background: rgba(11,11,11,.62);
  backdrop-filter: blur(14px);
}
.wrap{position:relative; z-index:5; max-width:1200px; margin:0 auto; padding:24px 16px 56px}

.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.brand__logo{width:48px; height:48px; object-fit:contain; filter: drop-shadow(0 0 16px rgba(255,212,0,.18));}
.brand__name{font-family:Unbounded, Manrope, sans-serif; font-weight:800; letter-spacing:.6px}
.kz{color:var(--red)}
.brand__tag{margin-top:4px; font-size:12px; color:var(--muted); font-weight:800; letter-spacing:.6px}

.top__actions{display:flex; align-items:center; gap:10px}
.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  transition:.18s ease;
}
.pill:hover{border-color: rgba(255,255,255,.22); transform: translateY(-1px)}

.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--txt);
  padding:11px 14px;
  border-radius:16px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.btn:hover{border-color: rgba(255,255,255,.22); transform: translateY(-1px)}
.btn--ghost{background:transparent}
.btn--blue{
  border-color: rgba(31,107,255,.52);
  background: radial-gradient(140% 140% at 0% 0%, rgba(31,107,255,.22), rgba(255,255,255,.03));
  box-shadow: var(--glowB);
}
.btn--honey{
  border-color: rgba(255,212,0,.55);
  background: radial-gradient(160% 160% at 0% 0%, rgba(255,212,0,.22), rgba(255,255,255,.03));
  box-shadow: var(--glowH);
}

/* ===== Stage ===== */
.stage{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
}
.chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  padding:8px 10px;
  border-radius:999px;
  font-weight:900; font-size:12px;
}
.chip--honey{border-color: rgba(255,212,0,.55); box-shadow: var(--glowH)}
.lead{margin:14px 0 0; color:var(--muted); font-weight:700; line-height:1.65; max-width: 68ch}
.cta{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

.title3d{
  margin:14px 0 0;
  font-family:Unbounded, Manrope, sans-serif;
  font-weight:800;
  font-size: clamp(30px, 4.1vw, 56px);
  line-height:1.05;
  letter-spacing:.5px;
  text-shadow: 0 18px 40px rgba(0,0,0,.55);
  transform-style:preserve-3d;
  will-change: transform;
}
.title3d .l{display:inline-block; transform: translateZ(0px); transition: transform .18s ease, color .18s ease, text-shadow .18s ease;}
.title3d .l.h{color:var(--honey); text-shadow:0 0 24px rgba(255,212,0,.35); transform: translateZ(22px) translateY(-1px);}
.title3d .l.b{color:var(--blue); text-shadow:0 0 24px rgba(31,107,255,.35); transform: translateZ(18px) translateY(-1px);}

.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadow);
}
.panel__title{
  font-family:Unbounded, Manrope, sans-serif;
  font-weight:800;
  letter-spacing:1px;
  font-size:13px;
}
.panel__sub{margin-top:8px; color:var(--muted); font-weight:700; line-height:1.55}
.pick{margin-top:12px; display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.pick__btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  padding:12px 10px;
  border-radius:16px;
  color:rgba(246,246,247,.92);
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.pick__btn:hover{border-color: rgba(31,107,255,.55); box-shadow: var(--glowB); transform: translateY(-1px)}
.pick__btn--honey:hover{border-color: rgba(255,212,0,.6); box-shadow: var(--glowH)}
.panel__foot{margin-top:14px; border-top:1px solid rgba(255,255,255,.10); padding-top:12px}
.panel__line{display:flex; justify-content:space-between; gap:10px; color:rgba(246,246,247,.84); font-weight:800; font-size:13px}
.panel__line span{color:var(--muted); font-weight:900}

/* ===== Services ===== */
.sectionHead{margin-top:34px}
.h2{margin:0; font-family:Unbounded, Manrope, sans-serif; font-weight:800; font-size: clamp(20px, 2.7vw, 34px);}
.muted{margin:8px 0 0; color:var(--muted); font-weight:700; line-height:1.55}

.toolbar{margin-top:14px; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:center}
.tags{display:flex; gap:8px; flex-wrap:wrap}
.tag{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  padding:10px 12px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  color:rgba(246,246,247,.92);
  transition:.18s ease;
}
.tag:hover{border-color: rgba(255,255,255,.22)}
.tag.is-active{border-color: rgba(255,212,0,.55); box-shadow: var(--glowH)}
.search{
  display:flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  padding:10px 12px;
  border-radius:999px;
  min-width:min(440px,100%);
  color:rgba(246,246,247,.8);
}
.search input{
  width:100%; border:0; outline:none; background:transparent;
  color:var(--txt); font-weight:800;
}

.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  border-radius: var(--r);
  padding:14px;
  box-shadow: var(--shadow);
  cursor:pointer;
  transition:.18s ease;
  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
}
.card:before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,212,0,.10), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(31,107,255,.10), transparent 60%);
  opacity:.55;
  transform: translateZ(-1px);
  pointer-events:none;
}
.card:hover{
  border-color: rgba(255,212,0,.35);
  box-shadow: var(--shadow), var(--glowH);
}
.card__top{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.card__title{font-family:Unbounded, Manrope, sans-serif; font-weight:800; font-size:14px; line-height:1.2}
.card__tag{
  border:1px solid rgba(255,212,0,.35);
  background: rgba(255,212,0,.08);
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  white-space:nowrap;
}
.card__desc{margin-top:10px; color:rgba(246,246,247,.74); font-weight:700; line-height:1.55; font-size:13px}
.pills{margin-top:10px; display:flex; gap:8px; flex-wrap:wrap}
.pillMini{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:rgba(246,246,247,.86);
}

/* ===== Manifest + Contacts ===== */
.manifest{margin-top:44px}
.manifest__grid{margin-top:12px; display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.manifest__card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadow);
}
.manifest__card h3{margin:0; font-family:Unbounded, Manrope, sans-serif; font-weight:800; font-size:14px}
.manifest__card p{margin:10px 0 0; color:rgba(246,246,247,.74); font-weight:700; line-height:1.6}

.contacts{margin-top:44px}
.contactGrid{margin-top:12px; display:grid; grid-template-columns: repeat(4, 1fr); gap:12px}
.contactCard{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  border-radius: var(--r);
  padding:14px;
  box-shadow: var(--shadow);
  text-decoration:none;
  transition:.18s ease;
  text-align:left;
  cursor:pointer;
}
.contactCard:hover{border-color: rgba(255,212,0,.35); box-shadow: var(--shadow), var(--glowH); transform: translateY(-2px)}
.contactCard .k{color:var(--muted); font-weight:900; font-size:12px}
.contactCard .v{margin-top:8px; font-family:Unbounded, Manrope, sans-serif; font-weight:800; font-size:14px}
.contactCard--btn{appearance:none}

.footer{
  margin-top:44px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:18px;
  color:rgba(246,246,247,.75);
  font-weight:700;
}

/* ===== Lightbox ===== */
.lightbox{position:fixed; inset:0; z-index:80}
.lightbox__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.62); backdrop-filter: blur(10px);}
.lightbox__panel{
  position:relative;
  margin: 40px auto 0;
  width: min(960px, calc(100vw - 28px));
  max-height: min(86vh, 900px);
  overflow:auto;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,15,18,.92);
  border-radius: 26px;
  box-shadow: var(--shadow), var(--glowH);
  padding:16px;
}
.lbClose{
  position:sticky; top:0; float:right;
  width:42px; height:42px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--txt);
  cursor:pointer;
}
.lbTop{padding-right:46px}
.lbTag{
  display:inline-flex;
  border:1px solid rgba(255,212,0,.35);
  background: rgba(255,212,0,.10);
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.lbTitle{
  margin:10px 0 0;
  font-family:Unbounded, Manrope, sans-serif;
  font-weight:800;
  font-size:24px;
}
.lbSub{margin:10px 0 0; color:var(--muted); font-weight:700; line-height:1.6}
.lbBody{margin-top:14px; border-top:1px solid rgba(255,255,255,.10); padding-top:12px; color:rgba(246,246,247,.78); font-weight:700; line-height:1.7}
.lbBody h3{margin:14px 0 6px; font-family:Unbounded, Manrope, sans-serif; font-weight:800; font-size:13px; letter-spacing:.8px; color:rgba(246,246,247,.92)}
.lbActions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

/* ===== Chat ===== */
.beeFab{
  position:fixed; right:16px; bottom:16px; z-index:90;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.55);
  background: radial-gradient(140% 140% at 0% 0%, rgba(255,212,0,.22), rgba(255,255,255,.03));
  box-shadow: var(--shadow), var(--glowH);
  color:var(--txt);
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.beeFab:hover{transform: translateY(-2px)}
.beeFab__icon{font-size:18px}
.beeFab__text{font-family:Unbounded, Manrope, sans-serif; font-size:12px; letter-spacing:.8px}

.chat{position:fixed; inset:0; z-index:95}
.chat__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}
.chat__panel{
  position:absolute; top:0; right:0;
  width: min(460px, calc(100vw - 18px));
  height: 100%;
  background: rgba(15,15,18,.92);
  border-left:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow), var(--glowH);
  display:flex; flex-direction:column;
  transform: translateX(0);
}
.chat__head{
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.chat__who{display:flex; gap:12px; align-items:center}
.avatar{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,212,0,.10);
  border:1px solid rgba(255,212,0,.30);
  box-shadow: var(--glowH);
  font-size:20px;
}
.chat__title{font-family:Unbounded, Manrope, sans-serif; font-weight:800}
.chat__sub{margin-top:6px; color:var(--muted); font-weight:700; font-size:12px; line-height:1.4}
.chat__close{
  width:42px; height:42px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--txt);
  cursor:pointer;
}

.chat__body{
  flex:1; overflow:auto;
  padding:14px;
  display:flex; flex-direction:column; gap:10px;
}
.msg{
  max-width: 86%;
  padding:10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(246,246,247,.92);
  font-weight:700;
  line-height:1.45;
}
.msg.bot{align-self:flex-start}
.msg.user{align-self:flex-end; border-color: rgba(31,107,255,.35); background: rgba(31,107,255,.12)}
.msg small{display:block; margin-top:6px; color:var(--muted); font-weight:800}

.chat__quick{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  display:flex; flex-wrap:wrap; gap:8px;
  background: rgba(255,255,255,.02);
}
.q{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: rgba(246,246,247,.92);
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
  font-size:12px;
}
.q:hover{border-color: rgba(255,212,0,.55); box-shadow: var(--glowH); transform: translateY(-1px)}

.chat__form{
  padding:12px 14px;
  display:flex; gap:10px;
  background: rgba(255,255,255,.02);
}
.chat__input{
  flex:1;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color:var(--txt);
  padding:0 12px;
  font-weight:800;
  outline:none;
}
.chat__input:focus{border-color: rgba(255,212,0,.55); box-shadow: var(--glowH)}
.chat__send{
  border:1px solid rgba(255,212,0,.55);
  background: rgba(255,212,0,.14);
  color:var(--txt);
  border-radius:16px;
  padding:0 14px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.chat__send:hover{box-shadow: var(--glowH); transform: translateY(-1px)}

.chat__foot{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.tiny{color:var(--muted); font-weight:900; font-size:12px}

/* ===== Magnet / Tilt helpers ===== */
.magnet{will-change: transform}
.tilt{will-change: transform}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .top__actions{display:none}
  .stage{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .manifest__grid{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .search{min-width:100%}
}
/* ===== Улучшение читаемости главного заголовка ===== */
.title3d{
  margin-top: 32px; /* БОЛЬШЕ воздуха */
  display: flex;
  flex-direction: column;
  gap: 12px;        /* расстояние между словами */
}

.title3d .line{
  display: block;
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
}

.title3d .line.honey{
  color: var(--honey);
  text-shadow: 0 0 30px rgba(255,212,0,.45);
}

/* ===== Воздух между текстами ===== */
.lead{
  margin-top: 28px;
  margin-bottom: 32px;
}

/* ===== Больше воздуха между секциями ===== */
.stage{
  margin-bottom: 120px;
}

.services{
  margin-top: 140px;
}

.manifest{
  margin-top: 160px;
}

.contacts{
  margin-top: 160px;
}

/* ===== Карточки услуг не липнут ===== */
.cards{
  margin-top: 28px;
  row-gap: 22px;
}

/* ===== Мелкие блоки тоже дышат ===== */
.mini{
  margin-top: 44px;
}

.mini__card{
  padding: 18px;
}
