/* ========================================
   Services Page — Premium Enterprise Design
   ======================================== */

/* Hero */
.services-hero {
    background: #0a0f1e;
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
}

.services-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card-modern {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s var(--transition-smooth);
    transform-origin: left;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.08);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-bubble {
    width: 72px;
    height: 72px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--transition-smooth);
    color: var(--primary);
    font-size: 2rem;
}

.service-card-modern:hover .service-icon-bubble {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.service-card-modern h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card-modern p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card-modern .btn-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}

.service-card-modern .btn-link:hover {
    gap: 0.7rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--lighter);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
    position: relative;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-content p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
}