* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #0B0B0C;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;

  background: url('hero.jpg') center/cover no-repeat;
}

/* затемнение */

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.75)
  );
}

/* контейнер */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* контент */

.hero-content {
  max-width: 600px;
}

/* заголовок */

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* подзаголовок */

.subtitle {
  font-size: 18px;
  color: #B3B3B3;
  margin-bottom: 16px;
}

/* доверие */

.trust {
  font-size: 14px;
  color: #6F6F6F;
  margin-bottom: 28px;
}

.trust span {
  color: #E0E0E0;
}

/* кнопки */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* основная кнопка */

.btn-primary {
  background: #F5B041;
  color: #0B0B0C;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #FFB84D;
  box-shadow: 0 0 20px rgba(245,176,65,0.35);
}

/* телефон */

.phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.phone:hover {
  color: #F5B041;
}

/* АДАПТИВ */

@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
  }

  .phone {
    font-size: 18px;
  }
}

/* SERVICES */

.services {
  padding: 100px 0;
  background: #0B0B0C;
}

.services h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* сетка */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* карточка */

.service-card {
  background: #1C1C1F;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 24px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* картинка */

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* заголовок */

.service-card h3 {
  font-size: 20px;
  padding: 20px 20px 10px;
}

/* список */

.service-card ul {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 16px;
}

.service-card li {
  margin-bottom: 10px;
  color: #B3B3B3;
  position: relative;
  padding-left: 20px;
}

/* галочка */

.service-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #F5B041;
}

/* результат */

.result {
  padding: 0 20px;
  font-weight: 600;
  color: #fff;
}

/* адаптив */

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    text-align: center;
  }
}
/* TRUST BLOCK */

.trust-block {
  padding: 100px 0;
  background: #141416;
  text-align: center;
}

/* заголовок */

.trust-block h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* основной текст */

.trust-text {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #B3B3B3;
  font-size: 16px;
  line-height: 1.6;
}

/* сетка */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* элементы */

.trust-item {
  background: #1C1C1F;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  color: #fff;
  text-align: left;
  transition: 0.3s;
}

/* hover */

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* адаптив */

@media (max-width: 768px) {

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-block {
    padding: 80px 0;
  }

  .trust-block h2 {
    font-size: 26px;
  }
}
/* GALLERY */

.gallery {
  padding: 100px 0;
  background: #0B0B0C;
  text-align: center;
}

.gallery h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* слайдер */

.slider {
  position: relative;
  overflow: hidden;
}

/* контейнер слайдов */

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

/* один слайд */

.slide {
  min-width: 100%;
  display: flex;
  gap: 10px;
}

/* картинки */

.slide img {
  width: 50%;
  border-radius: 10px;
  object-fit: cover;
}

/* кнопки */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(245,176,65,0.8);
}

/* позиции */

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* мобильная версия */

@media (max-width: 768px) {

  .slide {
    flex-direction: column;
  }

  .slide img {
    width: 100%;
  }
}
/* CONTACT */

.contact {
  padding: 100px 0;
  background: #141416;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-text {
  color: #B3B3B3;
  margin-bottom: 40px;
}

/* контейнер */

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

/* форма */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

.contact-form input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #2A2A2D;
  background: #1C1C1F;
  color: #fff;
}

.contact-form input:focus {
  border-color: #F5B041;
  outline: none;
}

/* инфо */

.contact-info {
  text-align: left;
}

.phone-big {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-note {
  color: #B3B3B3;
}

/* адаптив */

@media (max-width: 768px) {

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }

  .contact-info {
    text-align: center;
  }
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #F5B041;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245,176,65,0.4);
  z-index: 999;
}
.service-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}
.footer {
  padding: 50px 0;
  text-align: center;
  background: #0B0B0C;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
  margin-bottom: 6px;
}

.footer p:first-child {
  font-weight: 600;
}

.footer-sub {
  color: #6F6F6F;
  font-size: 14px;
}
/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(11,11,12,0.7);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* логотип */

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.logo span {
  color: #F5B041;
}

/* меню */

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #B3B3B3;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav a:hover {
  color: #fff;
}

/* действия */

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* телефон */

.header-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* кнопка */

.btn-small {
  background: #F5B041;
  color: #000;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.btn-small:hover {
  background: #FFB84D;
}

@media (max-width: 768px) {

  .nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .btn-small {
    padding: 10px 14px;
  }

  .logo {
    font-size: 18px;
  }
}