/* =======================
   БАЗОВЫЕ СТИЛИ
======================= */
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background-color: #fafcfe;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== HEADER / ЛОГО ===== */
.wrapo-main {
  width: 100%;
  display: flex;
  justify-content: center;   /* центр по горизонтали */
  margin-top: 5px;          /* отступ сверху */
}

.brand-marks a {
  display: inline-block;
}

.brand-marks img {
  max-width: 160px;          /* размер логотипа (можно менять) */
  height: auto;
  display: block;
}

/* Верхний яркий блок */
.hero {
  position: relative;
  background-color: #0b1057;
  color: white;
  width: 1045px;
  height: 465px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  margin-top: 10px;
}

/* Текст */
.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  margin-right: 30px;
}

.hero-text h1 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Кнопка */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0077ff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 18px;
}

.hero-btn:hover {
  background: #0077ff;
  transform: translateY(-2px);
}

.hero-btn .icon {
  width: 28px;
  height: 28px;
  background: url("../images/vk.jpg") no-repeat center;
  background-size: contain;
  display: inline-block;
}

/* Картинка */
.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 380px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- Адаптивность под мобилки --- */
@media (max-width: 1060px) {
  .hero {
    width: 95%;
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-text {
    margin-right: 0;
  }

  .hero-image img {
    width: 80%;
    margin-top: 20px;
  }
}

/* Блок преимуществ */
.content {
  padding: 50px 20px;
  max-width: 900px;
  margin: 50px auto 10px;
  font-size: 18px;
  line-height: 1.6;
}

.content h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
}

ul li::before {
  content: "🐶";
  position: absolute;
  left: 0;
  top: 0;
}

/* CTA повтор */
.cta {
  text-align: center;
  padding: 60px 20px;
}

.cta a {
  display: inline-flex;       /* выравниваем иконку и текст */
  align-items: center;
  gap: 10px;                  /* расстояние между иконкой и текстом */
  background: #0077ff;
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.3s;
}

.cta a:hover {
  background: #0077ff;
  transform: translateY(-3px);
}

.cta .icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-image: url("../images/vk.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;   /* не обрезает картинку */
  flex-shrink: 0;             /* не даёт иконке сжиматься */
}

/* ========== Кнопка наверх ========== */
#Btnscroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e67e3e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none; /* по умолчанию скрыта */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

#Btnscroll:hover {
  transform: translateY(-2px);
}

/* Футер */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  width: 100%;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  width: 100%;
}

footer a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 6px;
}

footer a:hover {
  text-decoration: underline;
}

