:root {
    --accent: #75bb8d;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
    --glass: rgba(0, 0, 0, 0.02);
    --border: rgba(0, 0, 0, 0.08);
}

.services-v2 {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#neural-canvas {
    position: fixed;
    top: 0; left: 0;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.reveal-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 15vw, 9rem);
    font-weight: 800;
    background: linear-gradient(to bottom, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -4px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    opacity: 0.5;
    text-transform: uppercase;
    margin-top: 1rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 200px;
}

.service-row.reverse { flex-direction: row-reverse; }

.service-text { flex: 1.2; }
.service-visual { flex: 0.8; display: flex; justify-content: center; }

.highlight { color: var(--accent); }

.tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.service-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.visual-box {
    width: 320px;
    height: 400px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    font-size: 5rem;
    color: var(--accent);
    position: relative;
    transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.visual-box:hover {
    transform: translateY(-20px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(117, 187, 141, 0.1);
}

.service-num {
    position: absolute;
    top: 30px; left: 30px;
    font-size: 0.9rem;
    font-weight: 900;
    opacity: 0.2;
}

.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
}

@media (max-width: 992px) {
    .service-row, .service-row.reverse { flex-direction: column; text-align: center; gap: 40px; }
    .feature-list li { justify-content: center; }
    .visual-box { width: 100%; height: 300px; }
}