/* ===== PRODUCTS SECTION STYLES ===== */

.products-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f3f4f6" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-10);
    margin-top: var(--space-16);
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-200);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.enterprise {
    border: 2px solid var(--primary-200);
    background: linear-gradient(135deg, white 0%, var(--primary-25) 100%);
}

.product-card.enterprise::before {
    background: var(--gradient-primary);
    height: 8px;
}

.product-card.cloud {
    border: 1px solid var(--secondary-200);
}

.product-card.cloud::before {
    background: var(--gradient-secondary);
}

.product-header {
    position: relative;
    margin-bottom: var(--space-8);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: white;
    font-size: var(--text-3xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.product-card.cloud .product-icon {
    background: var(--gradient-secondary);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.product-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.product-subtitle {
    font-size: var(--text-base);
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.product-description {
    margin-bottom: var(--space-8);
}

.product-description p {
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

.product-features {
    margin-bottom: var(--space-10);
}

.product-features h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    position: relative;
    padding-left: var(--space-6);
}

.product-features h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    background: var(--gray-25);
}

.feature-item:hover {
    background: var(--primary-50);
    transform: translateX(4px);
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-600);
    flex-shrink: 0;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
}

.feature-item span {
    color: var(--gray-700);
    font-size: var(--text-sm);
    font-weight: 500;
}

.product-pricing {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    margin-bottom: var(--space-8);
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.product-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.price-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.price-value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.price-detail {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 500;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.product-btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.btn-link:hover {
    color: var(--primary-700);
    background: var(--primary-50);
    transform: translateX(4px);
}

.btn-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-link:hover i {
    transform: translateX(2px);
}

.products-footer {
    margin-top: var(--space-20);
    position: relative;
    z-index: 1;
}

.enterprise-cta {
    background: white;
    border-radius: var(--radius-3xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    position: relative;
    overflow: hidden;
}

.enterprise-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.cta-content p {
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
    margin: 0;
}

.cta-action .btn {
    padding: var(--space-4) var(--space-8);
    font-weight: 700;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.cta-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .product-card {
        padding: var(--space-8);
    }
    
    .enterprise-cta {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }
    
    .product-icon {
        width: 64px;
        height: 64px;
        font-size: var(--text-2xl);
    }
    
    .price-value {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .product-card {
        padding: var(--space-6);
        border-radius: var(--radius-2xl);
    }
    
    .product-pricing {
        padding: var(--space-6);
    }
    
    .enterprise-cta {
        padding: var(--space-8);
    }
}
