:root {
  --accent:#a6ff00;
}

body {
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, Inter, sans-serif;
  background:#000;
  color:#fff;
}

.hero {
  text-align:center;
  padding:90px 20px;
}

.logo {
  width:150px;
  margin-bottom:30px;
}

h1 {
  font-size:34px;
  line-height:1.3;
}

p {
  color:#ccc;
}

.btn {
  display:inline-block;
  margin-top:30px;
  padding:14px 30px;
  color:#000;
  background:var(--accent);
  text-decoration:none;
  font-weight:600;
}

section {
  padding:70px 20px;
}

h2 {
  text-align:center;
  color:var(--accent);
  margin-bottom:40px;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.grid div {
  border:1px solid #222;
  padding:25px;
  text-align:center;
}

.media {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.media img,
.media video {
  max-width:380px;
  border-radius:8px;
}

ul {
  max-width:700px;
  margin:0 auto;
  list-style:none;
  padding:0;
}

ul li {
  padding:10px 0;
  border-bottom:1px solid #222;
}

iframe {
  width:100%;
  max-width:700px;
  height:480px;
  margin:0 auto;
  display:block;
  border:none;
}

footer {
  text-align:center;
  padding:20px;
  border-top:1px solid #222;
  color:#777;
}

/* ====== REVIEWS (Яндекс Отзывы) ====== */

.reviews {
  text-align: center;
  padding: 70px 20px;
}

.reviews h2 {
  color: var(--accent);
  margin-bottom: 20px;
}

.reviews-text {
  color: #ccc;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* кнопки в блоке отзывов */
.reviews .btn {
  min-width: 220px;
}

/* адаптация под телефон */
@media (max-width: 480px) {
  .reviews {
    padding: 50px 15px;
  }

  .reviews-actions {
    gap: 15px;
  }

  .reviews .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ====== SCROLL ANIMATIONS ====== */

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* задержки (чтоб не всё сразу) */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ====== КРАСИВЫЕ КНОПКИ ====== */

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(166,255,0,0.35);
}

.service-card {
  margin: 60px auto;
  max-width: 900px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* ===== SLIDER FIX ===== */

.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  max-height: 70vh;
  background: #000;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: var(--accent);
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

.why-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
}

.why-text p {
  margin-bottom: 18px;
  color: #ddd;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.why-points li {
  margin-bottom: 12px;
  font-size: 17px;
}

.why-final {
  margin-top: 25px;
  font-weight: 600;
  color: var(--accent);
}

