/* products.css */
/* Герой секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--text-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 10px solid var(--card-bg);
    transition: transform 0.5s ease;
}

.hero-image:hover .profile-image {
    transform: perspective(1000px) rotateY(0deg);
}

/* Особенности продукта */
.features {
    padding: 6rem 5%;
    background-color: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 97, 238, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Преимущества */
.benefits {
    padding: 6rem 5%;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent);
    min-width: 50px;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.benefit-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Статус разработки */
.development-status {
    padding: 6rem 5%;
    background-color: var(--darker-bg);
    text-align: center;
}

.status-content {
    max-width: 600px;
    margin: 0 auto;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.status-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 5% 3rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        padding: 6rem 5% 3rem;
    }
    
    .profile-image {
        max-width: 300px;
        border-width: 5px;
    }
    
    .features {
        padding: 4rem 5%;
    }
    
    .benefits {
        padding: 4rem 5%;
    }
    
    .development-status {
        padding: 4rem 5%;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 5% 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
}

/* Анимации */
/* .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

.delay-3 {
    transition-delay: 0.6s;
} */