/* System Requirements Page Styles */

/* Product Button Tertiary Style */
.btn-product.tertiary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-top: 8px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-product.tertiary:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #9ca3af;
}

/* System Requirements Page Styles */
.requirements-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.tier-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tier-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.tier-badge {
    background: #e5e7eb;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.tier-badge-featured {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-specs {
    margin: 20px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #374151;
}

.spec-item i {
    color: #3b82f6;
    width: 20px;
}

.tier-performance h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

.tier-performance ul {
    list-style: none;
    padding: 0;
}

.tier-performance li {
    padding: 5px 0;
    color: #64748b;
}

.tier-pricing {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.tier-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.tier-pricing .price-period {
    color: #64748b;
    font-size: 0.9rem;
}

/* Performance Baselines */
.performance-baselines {
    padding: 80px 0;
    background: white;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.performance-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.performance-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.performance-metrics {
    margin: 20px 0;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #64748b;
}

.metric-value {
    font-weight: 600;
    color: #1e293b;
}

/* ML Architecture */
.ml-architecture {
    padding: 80px 0;
    background: #f8fafc;
}

.ml-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ml-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ml-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.ml-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ml-card li {
    padding: 8px 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.ml-card li:last-child {
    border-bottom: none;
}

.ml-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
}

.ml-badge.cpu {
    background: #dbeafe;
    color: #1e40af;
}

.ml-badge.gpu {
    background: #fef3c7;
    color: #d97706;
}

.ml-badge.hybrid {
    background: #d1fae5;
    color: #065f46;
}

/* Memory Requirements */
.memory-requirements {
    padding: 80px 0;
    background: white;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.memory-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.memory-card h3 {
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.memory-card h3 i {
    color: #3b82f6;
}

.memory-breakdown {
    margin-top: 20px;
}

.memory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.memory-item:last-child {
    border-bottom: none;
}

.memory-item.total {
    font-weight: 600;
    background: #f1f5f9;
    margin: 10px -15px;
    padding: 12px 15px;
    border-radius: 8px;
}

.memory-label {
    color: #64748b;
}

.memory-value {
    font-weight: 600;
    color: #1e293b;
}

/* Deployment Options */
.deployment-options {
    padding: 80px 0;
    background: #f8fafc;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deployment-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.deployment-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.deployment-badge-featured {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.deployment-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.deployment-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.deployment-card li {
    padding: 8px 0;
    color: #64748b;
}

.deployment-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
    background: #e5e7eb;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tier-comparison,
    .performance-grid,
    .ml-grid,
    .memory-grid,
    .deployment-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured,
    .deployment-card.featured {
        transform: none;
    }
    
    .memory-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-card {
        min-width: auto;
    }
}
