@charset "UTF-8";
:root {
  --primary: #b01b30;
  --secondary: rgb(27, 47, 71);
  --accent: #b10b21;
  --light: #ecf0f1;
  --dark: #1a252f;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 20%;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hero {
  height: 100vh;
  position: relative;
  color: white;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

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

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 3%;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  margin-left: 15px;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
}

.section-title h2 {
  font-size: 36px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 18px;
  color: #777;
  max-width: 700px;
  margin: 17px auto 0;
}

.about {
  background-color: var(--light);
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
  opacity: 0;
  transform: translateX(-30px);
}

.about-text h3 {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(30px);
}

.about-image img {
  width: 170%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.products {
  background-color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.clients {
  background-color: var(--light);
  text-align: center;
}

.clients-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.client-logo {
  height: 80px;
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Общие стили для клиентов */
.clients {
  background-color: var(--light);
  text-align: center;
  overflow: hidden;
}

.clients-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px; /* Для скроллбара */
  -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
}

.clients-grid {
  display: inline-flex;
  gap: 30px;
  padding: 20px 10px;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.client-logo {
  height: 60px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
  flex-shrink: 0; /* Предотвращает сжатие логотипов */
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Стили для десктопов */
@media (min-width: 769px) {
  .clients-scroll-wrapper {
    overflow-x: visible;
  }
  .clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
}
/* Скрытие скроллбара (опционально) */
.clients-scroll-wrapper::-webkit-scrollbar {
  height: 5px;
}

.clients-scroll-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.clients-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.stats {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("https://images.unsplash.com/photo-1608190003443-86a8cd7f240c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
}

.stat-item i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 50px;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  opacity: 0.8;
}

.contact {
  background-color: white;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-30px);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(30px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

footer {
  background-color: var(--secondary);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-column p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 14px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate {
  animation: fadeInUp 1s ease forwards;
}

.animate-left {
  animation: fadeInLeft 1s ease forwards;
}

.animate-right {
  animation: fadeInLeft 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 18px;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 24px;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 15px 0;
  }
  .hero h1 {
    font-size: 32px;
  }
  .btn {
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin: 25px auto 5px;
  }
  .btn-outline {
    margin-left: auto;
    margin-right: auto;
  }
  .about-text {
    padding-right: 0;
  }
  .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item h3 {
    font-size: 40px;
  }
}
/* Дополнительные стили для SEO оптимизации */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.seo-text {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.seo-text h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 24px;
}
.seo-text ul {
  margin: 20px 0;
  padding-left: 20px;
}
.seo-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.seo-text ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}
.seo-text p {
  margin-bottom: 15px;
}

/* Оптимизация для клиентов */
.clients-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.clients-scroll-wrapper::-webkit-scrollbar {
  height: 5px;
}
.clients-scroll-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.clients-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.clients-grid {
  display: inline-flex;
  gap: 30px;
  padding: 20px 10px;
  flex-wrap: nowrap;
}
@media (min-width: 992px) {
  .clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.client-logo {
  height: 60px;
  width: auto;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
  flex-shrink: 0;
}
.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Оптимизация для мобильных */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-top: 30%;
  }
  .section-title h2 {
    font-size: 26px !important;
  }
  .about-content,
  .contact-content {
    flex-direction: column;
  }
  .about-text {
    padding-right: 0 !important;
    margin-bottom: 30px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .stat-item h3 {
    font-size: 36px !important;
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .product-card {
    min-width: 100% !important;
  }
  .footer-column {
    min-width: 100%;
  }
}
/* Микроразметка для SEO */
[itemscope] {
  border: none !important;
}

/* About section styles */
.about {
  background-color: #f9f9f9;
  padding: 30px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 165%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

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

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 15px;
}

.feature-item h4 {
  margin: 10px 0;
  color: #333;
}

/* Products list styles */
.about-products {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-products h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: var(--secondary);
}

.products-columns {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.product-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.product-list i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary);
  width: 25px;
  text-align: center;
}

.about-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  .products-columns {
    flex-direction: column;
    gap: 20px;
  }
  .about-text,
  .about-image {
    width: 100%;
  }
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about-products {
    padding: 30px 20px;
  }
}
/* Clients section styles */
.clients {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(176, 27, 48, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.clients-showcase {
  position: relative;
  z-index: 1;
}

.featured-clients {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.featured-client {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-client:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(176, 27, 48, 0.15);
}

.featured-client img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.featured-client:hover img {
  opacity: 1;
}

.clients-marquee {
  margin: 60px 0;
  position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: 2400px;
}

.marquee-item {
  flex: 0 0 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.marquee-item img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.marquee-item:hover img {
  opacity: 1;
}

.clients-cta {
  text-align: center;
  margin-top: 60px;
}

.clients-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-960px);
  }
}
/* Responsive styles */
@media (max-width: 992px) {
  .featured-clients {
    gap: 20px;
  }
  .featured-client {
    width: 180px;
    height: 100px;
    padding: 20px;
  }
  .marquee-item {
    flex: 0 0 140px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .clients {
    padding: 60px 0;
  }
  .featured-clients {
    flex-direction: column;
    align-items: center;
  }
  .featured-client {
    width: 200px;
  }
  .clients-marquee::before,
  .clients-marquee::after {
    width: 50px;
  }
}
@media (max-width: 576px) {
  .marquee-track {
    gap: 20px;
  }
  .marquee-item {
    flex: 0 0 120px;
    height: 60px;
    padding: 15px;
  }
  .clients-cta p {
    font-size: 16px;
  }
}
.partners-hero {
  position: relative;
  padding: 100px 0 10px;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(176, 27, 48, 0.05);
}

.decoration-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.decoration-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -100px;
  background: rgba(27, 47, 71, 0.05);
}

.decoration-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 100px;
  right: 20%;
  background: rgba(176, 27, 48, 0.03);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .partners-hero {
    padding: 150px 0 10px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .partners-hero {
    padding: 130px 0 5px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */