/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: height 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    color: var(--white);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.service-deliverables li {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--text);
    position: relative;
    padding-left: 1.25rem;
}

.service-deliverables li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.7rem;
    top: 0.5rem;
}

/* ==================== PROCESS STEPS ==================== */
.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.process-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step:hover .process-num {
    opacity: 1;
}

.process-step h5 {
    margin-bottom: 0.75rem;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
