/* ─── SERVICES PAGE STYLES ─── */

.services-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sh-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.07), transparent);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
}

.sh-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    bottom: 0;
    right: -100px;
    filter: blur(60px);
}

.sh-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0.5rem 0;
}

/* SERVICES GRID */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-card {
    padding: 2.2rem;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.svc-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.svc-number {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.svc-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.svc-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-thin);
}

.benefit-item span {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 0.8rem;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.svc-tag {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.svc-btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.7rem;
    padding: 0.65rem 1.4rem;
}

/* PROCESS */
.process-steps {
    display: flex;
    gap: 0;
    position: relative;
    justify-content: center;
}

.process-line {
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), var(--neon-blue), transparent);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.process-num {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transition: all var(--transition-med);
}

.process-step:hover .process-icon {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.process-step h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* CTA reuse */
.cta-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent);
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-inner {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-family: var(--font-thin);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (max-width: 768px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-line {
        display: none;
    }

    .cta-inner {
        padding: 3rem 1.5rem;
    }
}