/* =========================================
   SERVICES PAGE STYLING
   ========================================= */

/* Services Grid */
.wd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

/* Service Card */
.wd-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wd-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.wd-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FDF4FF 0%, #F5F3FF 100%);
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: var(--color-brand-primary, #8B5CF6);
}

.wd-service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.wd-service-desc {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1rem;
}

.wd-service-btn {
    margin-top: auto;
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    transition: all 0.2s;
    text-decoration: none;
}

.wd-service-btn:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

/* How It Works Section */
.wd-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.wd-step-item {
    text-align: left;
    position: relative;
    padding-top: 40px;
}

/* Number */
.wd-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    /* Very subtle watermark */
    position: absolute;
    top: -10px;
    left: 0;
    line-height: 1;
}

.wd-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
    position: relative;
    z-index: 2;
}

.wd-step-desc {
    font-size: 0.95rem;
    color: #6B7280;
    position: relative;
    z-index: 2;
}

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

    .wd-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

    .wd-steps-grid {
        grid-template-columns: 1fr;
    }
}