/* === СЕКЦИЯ ФАКТОВ === */
.facts-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f093fb, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.fact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.fact-card p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* === СЕКЦИЯ ТОВАРОВ === */
.products-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.product-card.featured {
    border-color: #f093fb;
    box-shadow: 0 0 30px rgba(240, 147, 251, 0.3);
}

.product-card.premium {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb, #667eea);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #f093fb;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.product-description {
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features .fas {
    color: #4ade80;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.price-from {
    font-size: 0.9rem;
    opacity: 0.7;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f093fb;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f093fb;
}

.product-btn {
    width: 100%;
    margin-top: auto;
}

.premium-btn {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
    font-weight: 700;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #ffb347, #ffd700);
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fact-card,
    .product-card {
        padding: 25px;
    }
    
    .fact-number {
        font-size: 2rem;
    }
    
    .product-icon {
        font-size: 3rem;
    }
}