


.section-title {
}

/* Карточки */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  margin-bottom: 20px;
  height: 100%;
}

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



/* Секции */
.section-padding {
  padding: 80px 0;
}


/* Бобер */

.hero-section {
            height: 100vh;
            background: linear-gradient(90deg, #2a1741 0%, #7e669a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            padding-top: 10vh;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            line-height: 1.5;
            opacity: 0.9;
        }
        
        .hero-buttons .btn {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            margin-right: 15px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: white;
            color: #1a2980;
            border: none;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }
        
        .btn-primary:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }
        
        .btn-outline-light {
            border-width: 2px;
        }
        
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .hero-contact {
            margin-top: 2.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            margin-right: 15px;
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }
        
        .contact-link {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .contact-link:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
 
        
        /* Контент героя */
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 15vh;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            line-height: 1.5;
            opacity: 0.9;
        }
        
        .hero-buttons .btn {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            margin-right: 15px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: white;
            color: #1a2980;
            border: none;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }
        
        .btn-primary:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }
        
        .btn-outline-light {
            border-width: 2px;
        }
        
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .hero-contact {
            margin-top: 2.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            margin-right: 15px;
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }
        
        .contact-link {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .contact-link:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        /* Бобер */
        .beaver-container {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: end;
        }
        
        .beaver-image {
            max-height: 80vh;
            max-width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
            animation: float 6s ease-in-out infinite;
			margin-bottom: -25px;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        
        /* Технологии на фоне */
        .tech-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .tech-item {
            position: absolute;
            color: rgba(255, 255, 255, 0.08);
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            transform-origin: center;
            pointer-events: none;
            user-select: none;
            animation: drift 25s infinite linear;
        }
        
        @keyframes drift {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(100px, 100px) rotate(360deg); }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .beaver-container {
                height: 40vh;
                margin-top: 30px;
            }
            
            .beaver-image {
                max-height: 40vh;
            }
            
            /* Скрываем десктопное меню */
            .nav-menu, .header-contacts {
                display: none;
            }
            
            /* Показываем кнопку мобильного меню */
            .mobile-menu-btn {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 10px auto;
            }
            
            .tech-item {
                font-size: 1.8rem;
            }
            
            .mobile-menu {
                width: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .tech-item {
                font-size: 1.5rem;
            }
            
            .header-container {
                padding: 0 15px;
            }
        }






  
        /* Технологии на фоне */
        .tech-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .tech-item {
            position: absolute;
            color: rgba(255, 255, 255, 0.08);
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            transform-origin: center;
            pointer-events: none;
            user-select: none;
            animation: drift 25s infinite linear;
        }
        
        @keyframes drift {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(100px, 100px) rotate(360deg); }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .beaver-container {
                height: 40vh;
                margin-top: 30px;
            }
            
            .beaver-image {
                max-height: 40vh;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 10px auto;
            }
            
            .tech-item {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .tech-item {
                font-size: 1.5rem;
            }
        }

/* Технологии */
.tech-badge {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Услуги */
.service-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary-color);
}

.service-item h4 {
  color: var(--primary-color);
}

/* Преимущества */
.benefit-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}



/* Адаптивность */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}
 
 
 
 /* Этапы */
     .timeline-section {
            padding: 80px 0;
            background-color: var(--primary-color);
        }
        
        .timeline-section .section-title {
        color:var(--white)}
        
        .section-title::after {
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Центральная линия */
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        /* Контейнер для этапов */
        .timeline-container {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        /* Четные этапы (слева) */
        .timeline-left {
            left: 0;
        }
        
        /* Нечетные этапы (справа) */
        .timeline-right {
            left: 50%;
        }
        
        /* Круги на центральной линии */
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            right: -15px;
            background-color: var(--secondary-color);
            border: 5px solid white;
            top: 30px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-right::after {
            left: -15px;
        }
        
        /* Карточка этапа */
        .timeline-card {
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            border-left: 4px solid var(--secondary-color);
        }
        
        .timeline-right .timeline-card {
            border-left: none;
            border-right: 4px solid var(--secondary-color);
        }
        
        /* Номер этапа */
        .timeline-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
        }
        
        .timeline-right .timeline-number {
            left: auto;
            right: -15px;
        }
        
        /* Текст этапа */
        .timeline-text {
            font-size: 18px;
            color: #2c3e50;
            line-height: 1.5;
            margin: 0;
        }
        
        /* Бонусный блок */
        .bonus-block {
            margin-top: 60px;
            padding: 30px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .bonus-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .bonus-subtitle {
            font-size: 16px;
            opacity: 0.9;
            margin: 0;
        }
        
        /* Адаптивность для мобильных */
        @media (max-width: 768px) {
			
            .timeline::after {
                left: 31px;
				display:none;
            }
            
            .timeline-container {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-container::after {
                left: 16px;
                right: auto;
				display:none;
            }
            
            .timeline-right {
                left: 0;
            }
            
            .timeline-card {
                border-left: 4px solid #3498db;
                border-right: none; 				
            }
            
            .timeline-number {
                left: -55px;
                right: auto;
            }
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .timeline-container {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .timeline-container:nth-child(1) { animation-delay: 0.1s; }
        .timeline-container:nth-child(2) { animation-delay: 0.2s; }
        .timeline-container:nth-child(3) { animation-delay: 0.3s; }
        .timeline-container:nth-child(4) { animation-delay: 0.4s; }
        .timeline-container:nth-child(5) { animation-delay: 0.5s; }
        .timeline-container:nth-child(6) { animation-delay: 0.6s; }
        .timeline-container:nth-child(7) { animation-delay: 0.7s; }
        .timeline-container:nth-child(8) { animation-delay: 0.8s; }
        
        .bonus-block {
            animation: fadeInUp 0.6s ease 1s forwards;
            opacity: 0;
        }