/* ================================
   Спорт Вокруг — основные стили
   ================================ */

:root {
  --color-primary: #2e7eed;
}

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");

body {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-weight: 300;
}

h1 {
  font-size: 45px;
  line-height: 61px;
}

h2 {
  font-size: 40px;
  line-height: 50px;
}

h3 {
  font-size: 20px;
  line-height: 30px;
}

p, li, blockquote, label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25px;
  color: #808080;
  margin-bottom: 0;
}

cite {
  font-size: 14px;
  font-style: normal;
}

a {
  font-size: inherit;
  color: inherit;
}

a:focus,
a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* --------------------------------
   Утилиты
   -------------------------------- */

.bg-blue {
  background: var(--color-primary);
}

.shadow {
  box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.08);
}

.section {
  padding: 100px 0;
}

/* --------------------------------
   Кнопки
   -------------------------------- */

.btn {
  text-transform: uppercase;
}

.btn-rounded-icon {
  border-radius: 100px;
  color: #fff;
  border: 1px solid #fff;
  padding: 13px 50px;
  width: 238px;
  text-align: center;
}

/* --------------------------------
   Навигация
   -------------------------------- */

.main-nav .container {
  display: flex;
  align-items: center;
}

.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.04) 100%
  ) !important;
  box-shadow: none !important;
  padding: 16px 0 !important;
}

.main-nav .navbar-brand {
  padding: 0;
  margin: 0;
}

.main-nav .navbar-brand img {
  width: 170px;
  height: auto;
}

/* --------------------------------
   Главный баннер
   -------------------------------- */

.gradient-banner {
  padding: 100px 0 170px;
  position: relative;
  overflow: hidden;
}

.gradient-banner::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #009EC5 0%, var(--color-primary) 20%, #02225B 50%);
}

.pull-top {
  margin-top: -100px;
}

.shapes-container {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shapes-container .shape {
  position: absolute;
}

.shapes-container .shape::before {
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-35deg);
  position: absolute;
  border-radius: 50px;
}

.shapes-container .shape:nth-child(1)  { top: 2%;  left: 11%; width: 400px; height: 70px; }
.shapes-container .shape:nth-child(2)  { top: 14%; left: 18%; width: 200px; height: 15px; }
.shapes-container .shape:nth-child(3)  { top: 80%; left: 4%;  width: 300px; height: 60px; }
.shapes-container .shape:nth-child(4)  { top: 85%; left: 15%; width: 100px; height: 10px; }
.shapes-container .shape:nth-child(5)  { top: 5%;  left: 50%; width: 300px; height: 25px; }
.shapes-container .shape:nth-child(6)  { top: 4%;  left: 52%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(7)  { top: 80%; left: 70%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(8)  { top: 55%; left: 95%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(9)  { top: 50%; left: 90%; width: 300px; height: 50px; }
.shapes-container .shape:nth-child(10) { top: 30%; left: 60%; width: 500px; height: 55px; }
.shapes-container .shape:nth-child(11) { top: 60%; left: 60%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(12) { top: 35%; left: 75%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(13) { top: 90%; left: 40%; width: 300px; height: 45px; }
.shapes-container .shape:nth-child(14) { top: 54%; left: 75%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(15) { top: 50%; left: 90%; width: 200px; height: 5px;  }
.shapes-container .shape:nth-child(16) { top: 50%; left: 81%; width: 100px; height: 5px;  }

/* --------------------------------
   Блоки с фичами
   -------------------------------- */

.feature .row {
  align-items: center;
}

.feature .feature-content {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.feature .feature-content h2,
.feature .feature-content p {
  margin-bottom: 25px;
  text-align: left;
}

.feature .image-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 !important;
}

.feature-screen .row {
  align-items: center;
}

.feature-screen .feature-content h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 28px;
}

.feature-screen .feature-content p {
  font-size: 22px;
  line-height: 1.6;
  color: #777;
}

.feature-screen .image-content img {
  max-width: 520px;
  width: 100%;
  height: auto;
}

.img-fluid-1 {
  max-width: 480px !important;
  width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 !important;
  transform: none !important;
}

.feature-screen .image-content .img-fluid-2 {
  max-width: 850px !important;
  width: 115% !important;
  height: auto !important;
  margin: 0 !important;
  transform: translateX(-40px) !important;
}

.feature-screen .image-content .img-fluid-3 {
  max-width: 520px !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  transform: none !important;
}

.registration-image {
  overflow: visible;
  text-align: left;
}

@media (max-width: 991px) {
  .feature .image-content {
    justify-content: center;
    margin-bottom: 35px;
  }

  .feature .feature-content {
    max-width: 100%;
    text-align: center;
  }

  .feature .feature-content h2,
  .feature .feature-content p {
    text-align: center;
  }

  .feature .image-content img,
  .feature-screen .image-content img,
  .img-fluid-1,
  .feature-screen .image-content .img-fluid-3 {
    max-width: 430px !important;
  }

  .feature-screen .image-content .img-fluid-2 {
    width: 100% !important;
    max-width: 520px !important;
    transform: none !important;
  }
}

/* --------------------------------
   Иконки преимуществ
   -------------------------------- */

.benefit-icon-font {
  font-size: 45px;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 8px;
}

/* --------------------------------
   Призыв к действию
   -------------------------------- */

.call-to-action-app {
  text-align: center;
}

.call-to-action-app h2,
.call-to-action-app p,
.call-to-action-app a {
  color: #fff !important;
}

.call-to-action-app p {
  margin-bottom: 60px;
}

.call-to-action-app ul li {
  margin: 10px;
}

@media (max-width: 480px) {
  .call-to-action-app ul li {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.call-to-action-app ul li:first-child {
  margin-left: 0;
}

.call-to-action-app ul li a i {
  font-size: 20px;
  margin-right: 5px;
}

/* --------------------------------
   Блок контактов
   -------------------------------- */

.contacts-section {
  background: #0d0d0d;
  border-top: 1px solid #2a2a2a;
  padding: 48px 0;
}

.contacts-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.contacts-logo {
  flex: 1;
  padding-right: 40px;
}

.contacts-logo img {
  width: 150px;
  height: auto;
  opacity: 0.9;
}

.contacts-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  border-left: 1px solid #2a2a2a;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.contacts-item:hover {
  opacity: 0.7;
  text-decoration: none;
}

.contacts-item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-item-icon i {
  font-size: 16px;
  color: #fff;
}

.contacts-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-item-label {
  font-size: 12px;
  color: #888;
  text-transform: none;
  letter-spacing: 0;
}

.contacts-item-value {
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contacts-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contacts-item {
    border-left: none;
    padding: 0;
  }

  .contacts-logo {
    padding-right: 0;
  }
}

/* --------------------------------
   Кнопка «Наверх»
   -------------------------------- */

.scroll-top-to {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  z-index: 999556;
  cursor: pointer;
  display: none;
}

.scroll-top-to:hover {
  background: #333;
}

@media (max-width: 768px) {
  .scroll-top-to {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/* --------------------------------
   Умная кнопка скачивания
   -------------------------------- */

.smart-download-wrap {
  position: relative;
  display: inline-block;
}

.smart-download-options {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
}

.smart-download-options.is-open {
  display: block;
}

.smart-download-options a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 15px;
  color: #222 !important;
  text-decoration: none;
  transition: background 0.15s;
}

.smart-download-options a:hover {
  background: #f4f4f4;
  color: var(--color-primary) !important;
}

.smart-download-options a i {
  font-size: 18px;
}

.smart-download-options a + a {
  border-top: 1px solid #eee;
}


