.gradient-bg {
    background: #05ac30;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stats-bg {
    background: rgba(5, 172, 48, 0.9);
    background-size: cover;
    background-position: center;
}

/* Custom styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden; /* Предотвращает горизонтальный скролл */
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #05ac30;
}

.btn-primary {
    background: #05ac30;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #048526;
    transform: translateY(-2px);
}

.feature-icon {
    background: #05ac30;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

/* Навигация */
nav {
    position: relative;
    z-index: 40;
}

.nav-link {
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #05ac30;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #05ac30;
    transition: width 0.3s;
}

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

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 30;
    padding: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    background-color: #f3f4f6;
    color: #05ac30;
}

.mobile-menu .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

/* Кнопка меню */
.menu-button {
    transition: all 0.3s ease;
}

.menu-button:hover {
    background-color: #f3f4f6;
}

.menu-button .fa-bars,
.menu-button .fa-times {
    transition: opacity 0.3s ease;
}

.menu-button .fa-times {
    opacity: 0;
    position: absolute;
}

.menu-button.active .fa-bars {
    opacity: 0;
}

.menu-button.active .fa-times {
    opacity: 1;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Стили для попапа */
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-mobile {
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    color: #05ac30;
}

.nav-link-mobile:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #05ac30;
    transition: width 0.3s;
}

.nav-link-mobile:hover:after {
    width: 100%;
}