/* GPU Supply Page Styles */

/* Page Hero Section */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 20%, #d6e7ff 40%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.benefits-section .section-title {
    color: #1a1a1a !important;
}

.benefits-section .section-subtitle {
    color: #666 !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card .feature-icon-check {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card .feature-icon-check .material-icons {
    font-size: 18px;
    color: #000;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

/* Product Catalog Section */
.product-catalog-section {
    padding: 80px 0;
    background: white;
}

.product-catalog-section .section-title {
    color: #1a1a1a !important;
}

.product-catalog-section .section-subtitle {
    color: #666 !important;
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 60px 0;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.catalog-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.catalog-tab.active {
    background: white;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.catalog-tab:hover:not(.active) {
    color: #475569;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.catalog-grid.hidden {
    display: none;
}

.product-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.product-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.product-card.popular {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.product-card.premium {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card.featured .product-badge {
    background: #f59e0b;
    color: white;
}

.product-card.popular .product-badge {
    background: #10b981;
    color: white;
}

.product-card.premium .product-badge {
    background: #8b5cf6;
    color: white;
}

.product-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.product-specs {
    margin: 24px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
}

.spec-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

.product-price {
    margin: 32px 0 24px 0;
    text-align: center;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.btn-product {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.services-section .section-title {
    color: white;
}

.services-section .section-subtitle {
    color: #cbd5e1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.service-card .feature-icon-check {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card .feature-icon-check .material-icons {
    font-size: 18px;
    color: #000;
}

.service-card h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 16px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: white;
}

.case-studies-section .section-title {
    color: #1a1a1a !important;
}

.case-studies-section .section-subtitle {
    color: #666 !important;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.case-icon {
    width: 64px;
    height: 64px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.case-icon .material-icons {
    font-size: 32px;
    color: #000;
}

.case-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 32px;
}

.case-metrics {
    display: flex;
    gap: 40px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-top: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .benefits-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .catalog-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .catalog-tab {
        text-align: center;
    }
    
    .product-card,
    .benefit-card,
    .service-card,
    .case-card {
        padding: 24px;
    }
    
    .case-metrics {
        justify-content: center;
        gap: 60px;
    }
    
    .product-header h3 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
}
