/* Services Page */

.services-page {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

.services-header {
    margin-bottom: 4rem;
}

.services-header h1 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-tile {
    aspect-ratio: 1;
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-tile:hover {
    transform: scale(1.05);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tile-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.service-tile h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-tile p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 6rem 1.5rem 3rem;
    }

    .services-header h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-tile {
        aspect-ratio: auto;
        padding: 2rem;
    }

    .tile-icon {
        font-size: 4rem;
    }

    .service-tile h2 {
        font-size: 1.5rem;
    }
}
