  body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #2C2D34;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 400px;
  background-image: url('background.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}

.container {
  max-width: 1200px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 5em;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  text-transform: none;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  margin-top: 120px;
}

.card {
  flex: 0 0 250px;
  padding: 20px 30px;
  text-align: center;
}

.card h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #BE2C41;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card p {
  font-size: 1em;
  line-height: 1.4;
  white-space: pre-line;
}

.icon {
  height: 24px;
  vertical-align: middle;
}

.icon-location {
  height: 28px;
  width: auto;
  vertical-align: middle;
}

.silent-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.silent-link:hover {
  text-decoration: none;
}

.cta-button {
  background-image: url('cta-brush.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  width: 320px;
  height: 115px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;      /* выравнивание по верхнему краю */
  justify-content: center;      /* горизонтальное центрирование */
  padding-top: 51px;            /* смещение текста вниз */
font-family: 'Montserrat', sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  color: #BE2C41;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}


.modal {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #2C2D34;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  text-transform: none;
  position: relative;
}

.modal-content h3 {
  margin-bottom: 20px;
  color: #BE2C41;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  background-color: #3a3b42;
  color: #fff;
  font-size: 1em;
}

.modal-content button {
  padding: 12px 24px;
  background-color: #BE2C41;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-content button:hover {
  background-color: #6f0a20;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
}

.why-section {
  width: 100vw;
  margin-top: 100px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-image: url('why-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.why-overlay {
  background-color: transparent; /* убран полупрозрачный фон */
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  max-width: 800px;
  border-radius: 12px;
}

.why-overlay h1 {
  color: #ffffff;
}

.why-text p {
  font-size: 1.2em;
  margin-bottom: 16px;
  line-height: 1.8;
  text-transform: none;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 701px) {
  .hero-wrapper {
    padding-top: 100px;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 2.4em;
    margin-bottom: 12px;
  }

  .description {
    margin-bottom: 20px;
  }

 .stats {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 12px;
  }

  .card {
    min-width: unset;
    padding: 24px 16px 16px 16px;
    margin: 6px 0;
    word-break: keep-all;
    white-space: normal;
  }

  .card h2 {
    font-size: 1.6em;
    margin-bottom: 8px;
  }

  .card p {
    font-size: 1.3em;
    line-height: 1.5;
    margin: 0;
  }

  .hero-bg {
    width: 90%;
    height: 180px;
  }

 .social-strip {
    padding: 20px 10px;
    margin-top: 16px;
    margin-bottom: 120px;
  }

  .social-title {
    font-size: 1.5em;
    margin-bottom: 14px;
  }

  .social-icons {
    flex-direction: column;
    gap: 16px;
  }

  .corner-icon {
    bottom: 16px;
  }

  .corner-icon img {
    height: 36px;
  }

  .right-corner img {
    height: 32px;
  }
}



.social-strip {
  margin-top: 40px;
  padding: 40px 20px;
  text-align: center;
}

.social-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #BE2C41;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: #BE2C41;
  transform: translateY(-4px);
}

.social-link:hover img {
  transform: scale(1.1);
}

.corner-icon {
  position: fixed;
  bottom: 40px;
  z-index: 5;
  opacity: 0.5;
}

.left-corner {
  left: 70px;
}

.right-corner {
  right: 70px;
}

.corner-icon img {
  height: 48px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.right-corner img {
  height: 43px;
}

.corner-icon img:hover {
  transform: scale(1.1);
}

.why-us-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 3rem 0;
  letter-spacing: 0.1em;
}

.jump {
  display: inline-block;
  animation: bouncePause 2.5s ease-in-out infinite;
}

.delay1 { animation-delay: 0s; }     /* П */
.delay3 { animation-delay: 0.3s; }   /* У */
.delay2 { animation-delay: 0.6s; }   /* Ч */
.delay4 { animation-delay: 0.9s; }   /* Ы */

@keyframes bouncePause {
  0%   { transform: translateY(0); opacity: 1; }
  10%  { transform: translateY(-15px); opacity: 0.85; }
  20%  { transform: translateY(8px); opacity: 0.95; }
  30%  { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; } /* пауза до следующего цикла */
}

.map-section {
  width: 100%;              /* карта на всю ширину */
  margin-top: 200px;        /* отступ сверху, чтобы опустить ниже */
  display: flex;
  justify-content: center;
}

.map-container {
  width: 100%;              /* контейнер тоже на всю ширину */
  border-radius: 0;         /* убираем скругления, если нужна ровная полоса */
  overflow: hidden;
}

.map-container iframe {
  width: 100%;              /* iframe растягивается на всю ширину */
  height: 500px;            /* можно регулировать высоту */
  border: none;
}

