/* === WHAT WE DO PAGE === */
.page-content {
    position: relative;
    padding-top: var(--header-height);
}

/* Hero Section - Fullscreen with glassmorphism */
.hero-fullscreen {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 4rem;
    z-index: 2;
}

.hero-fullscreen .bg-wallpaper {
    position: absolute;
    inset: 0;
    background-image: url('/static/images/wallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-fullscreen .bg-wallpaper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero-container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-fullscreen .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.hero-fullscreen h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-fullscreen .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
}

/* Services Grid */
.services-grid {
    position: relative;
    z-index: 2;
    padding: 5rem 4rem;
    background: var(--bg-primary);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.service-card .card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 1.2rem;
    opacity: 0.5;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.tech-tag {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-fullscreen {
        padding: 3rem 2.5rem;
    }
    
    .hero-fullscreen h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 4rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .hero-fullscreen h2 {
        font-size: 2.2rem;
    }
    
    .hero-fullscreen .hero-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-fullscreen h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        padding: 2.5rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
}
