/* =============================================
   Service Landing Page Styles
   ============================================= */

/* ===== What We Do ===== */
.what-we-do { background: var(--bg); }

/* Reuses .curriculum-grid and .curriculum-item from batch.css */

/* ===== How We Work ===== */
.how-we-work { background: var(--bg-white); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.process-step:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: rgba(92,11,117,0.15);
}

.process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== Service Contact ===== */
.service-contact { background: var(--bg); }

.service-contact-inner {
    max-width: 660px;
    margin: 0 auto;
}

.service-contact-inner .form-panel {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* ===== Service card hint (index.html) ===== */
.card-link-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
    transition: gap 0.2s;
}

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

@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .service-contact-inner .form-panel { padding: 24px 20px; }
}
