/* ============================================
   Solutions (Gaming PCs) Page Styles
   ============================================ */

/* Page Hero */
.page-hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.15), transparent),
        var(--color-bg-primary);
}

.page-hero .hero-content {
    max-width: 700px;
}

.page-hero h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

.page-hero .hero-description {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.page-hero .hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.bg-secondary {
    background: var(--color-bg-secondary);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 700px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    padding: var(--space-2xl);
}

.comparison-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    position: relative;
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    color: var(--color-text-secondary);
}

.comparison-card.bad {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.bad li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--color-error);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
}

.comparison-card.good {
    border-color: rgba(34, 197, 94, 0.3);
}

.comparison-card.good li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--color-success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Pricing Card Extension */
.pricing-description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* Use Case Grid */
.usecase-grid {
    gap: var(--space-xl);
}

.usecase-card {
    padding: var(--space-2xl);
}

.usecase-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.usecase-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.usecase-card > p {
    margin-bottom: var(--space-lg);
}

.usecase-card ul {
    list-style: none;
    padding: 0;
}

.usecase-card li {
    position: relative;
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.usecase-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent-primary);
    border-radius: 50%;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.process-step {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.step-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-accent-primary);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.step-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--color-bg-primary);
}

.cta-card {
    text-align: center;
    padding: var(--space-4xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent-gradient);
}

.cta-card h2 {
    margin-bottom: var(--space-md);
}

.cta-card p {
    font-size: var(--text-lg);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}
