html{ scroll-behavior: smooth; }:root{
  --bg:#0B0D12;
  --card:#11141C;
  --text:#FFFFFF;
  --muted:#A3A9B8;
  --primary:#2F6BFF;
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font-family: 'Inter', sans-serif;
}
h1, h2, .brand{
  font-family: 'Sora', sans-serif;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.nav{
  padding: 14px 0; /* было слишком высоко и пусто */
  background: rgba(10,12,16,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{font-weight:700; letter-spacing:.2px}
.nav__links{display:flex; gap:18px; align-items:center}
.nav__links a{color:var(--muted); text-decoration:none}
.nav__links a:hover{color:var(--text)}

.hero{padding:90px 0 70px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:60px;
  align-items:center;
}
h1{font-size:56px; line-height:1.05; margin:0 0 18px}
h2{font-size:34px; margin:0 0 8px}
.muted{color:var(--muted)}
.note{color:var(--muted); font-size:14px; margin-top:18px}

.hero__actions{display:flex; gap:14px; margin-top:24px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #2F6BFF, #4F86FF);
  color:white;
  padding:14px 26px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  font-weight:600;
  transition: all .25s ease;
  box-shadow: 0 8px 30px rgba(47,107,255,.25);
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(47,107,255,.4);
}
.btn--small{padding:10px 14px; border-radius:10px}

.hero__media, .media{
  background: radial-gradient(
      circle at 30% 20%,
      rgba(47,107,255,.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.02)
    );
  border:1px solid var(--border);
  border-radius:20px;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.placeholder{color:rgba(255,255,255,.35); font-weight:600}

.section{padding:80px 0}
.form{
  margin-top:24px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:26px;
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
label{display:flex; flex-direction:column; gap:8px; font-size:14px; color:var(--muted)}
input, select, textarea{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
button.btn{border:none}

.footer{
  border-top:1px solid var(--border);
  padding:24px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* Mobile */
@media (max-width: 900px){
  h1{font-size:40px}
  .hero__inner{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
.brand{
  font-size:24px;
  font-weight:700;
  display:flex;
  align-items:center;
  line-height:1;
}

.brandAccent{
  color:#4F86FF;
}

.brand__e{
  position:relative;
  display:inline-block;
}

.brand__buddy{
  position:absolute;
  left: 0.25em;
top: 0.35em;
width: 1.15em;
  transform-origin:50% 10%;
  animation: buddySwing 2.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.35));
}

@keyframes buddySwing{
  0%   { transform: rotate(-5deg); }
  50%  { transform: rotate(5deg); }
  100% { transform: rotate(-5deg); }
}
.galleryGrid{
  margin-top: 30px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

.galleryItem{
  position:relative;
  aspect-ratio: 1 / 1;
  border-radius:20px;
  overflow:hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 20px 40px rgba(0,0,0,.4);
  transition: all .35s ease;
}

.galleryItem::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(79,134,255,.15), transparent 60%);
  background-size: 22px 22px, 22px 22px, cover;
  opacity:.35;
  transition:.4s ease;
}

.galleryItem:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(79,134,255,.5),
    0 30px 60px rgba(0,0,0,.6);
}

.galleryItem:hover::before{
  opacity:.8;
}
}.pricingGrid{
  margin-top:40px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:30px;
  align-items: stretch;
}

.pricingCard{
  position:relative;
  padding:40px;
  border-radius:22px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  transition:.35s ease;
}

.pricingCard:hover{
  transform: translateY(-8px);
}

.pricingCard.featured{
  border:1px solid rgba(79,134,255,.6);
  box-shadow: 0 30px 70px rgba(79,134,255,.2);
}

.badge{
  position:absolute;
  top:18px;
  right:18px;
  padding:7px 14px;
  background:#4f86ff;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  line-height:1;
  box-shadow: 0 10px 25px rgba(79,134,255,.25);
}

.price{
  font-size:36px;
  font-weight:700;
  margin:20px 0;
}

.pricingCard ul{
  margin:20px 0;
  padding-left:20px;
  color:rgba(255,255,255,.75);
}

.pricingCard li{
  margin-bottom:8px;
}
.pricingGrid .pricingCard{
  width: 100%;
}
.pricingGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:30px;
}
@media (max-width: 900px){
  .pricingGrid{ grid-template-columns: 1fr; }
}
/* ===== FAQ Accordion ===== */
.faq{
  margin-top: 28px;
  display:grid;
  gap:14px;
}

.faqItem{
  border-radius:18px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  transition: .25s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.faqQ{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px 18px;
  background:transparent;
  border:0;
  color: rgba(255,255,255,.92);
  font-family: 'Sora', sans-serif;
  font-size:16px;
  cursor:pointer;
  text-align:left;
}

.faqIcon{
  display:inline-flex;
  width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.faqA{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faqA > *{
  padding: 0 18px;
}

.faqA p, .faqA ul{
  color: rgba(255,255,255,.72);
  margin: 0 0 12px 0;
  line-height:1.6;
}

.faqA ul{
  padding-left: 34px;
}

.faqA p:first-child{
  margin-top: 6px;
}

.faqItem.active{
  border-color: rgba(79,134,255,.55);
  box-shadow: 0 24px 70px rgba(79,134,255,.18);
}

.faqItem.active .faqIcon{
  transform: rotate(180deg);
  background: rgba(79,134,255,.12);
  border-color: rgba(79,134,255,.35);
}