.process-hero {
    background: #f7f8fb;
    padding: 140px 0 78px;
    text-align: center;
}

    .process-hero .container.centered {
        max-width: 980px;
    }

    .process-hero h1 {
        margin: 0 0 16px;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        line-height: 1.1;
        color: var(--gold);
        font-weight: 600;
        letter-spacing: -0.03em;
    }

    .process-hero p {
        font-size: 0.9rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.8;
        color: #7b8494;
    }

.process-intro-section {
    background: #eef0f3;
    padding: 66px 0;
    text-align: center;
}

.narrow-process {
    max-width: 900px;
    margin: 0 auto;
}

.process-intro-section h2,
.process-approach-section .section-heading h2,
.process-timeline-section .section-heading h2,
.process-cta-section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.process-intro-section p {
    margin: 0 auto;
    max-width: 700px;
    color: #7a8393;
    font-size: 0.9rem;
    line-height: 1.8;
}

.process-approach-section {
    background: #ffffff;
    padding: 74px 0;
}

.process-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.process-approach-card {
    background: #f8f8fb;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 22px 18px;
    min-height: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .process-approach-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(0,0,0,0.06);
        border-color: rgba(199,154,74,0.20);
    }

.process-approach-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

/* internal text only */
.process-approach-card h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #243041;
    font-weight: 700;
}

.process-approach-card p {
    margin: 0;
    color: #7b8494;
    font-size: 0.85rem;
    line-height: 1.75;
}

.process-timeline-section {
    background: #eef0f3;
    padding: 78px 0;
}

.process-timeline {
    max-width: 880px;
    margin: 12px auto 0;
    display: grid;
    gap: 30px;
}

.process-step-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    align-items: start;
}

.process-step-side {
    display: flex;
    justify-content: center;
    padding-top: 2px;
}

.process-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(199,154,74,0.08);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1rem;
    border: 1px solid rgba(199,154,74,0.14);
}

.process-step-content {
    padding-top: 2px;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.process-step-number {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* internal text only */
.process-step-header h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.15;
    color: #1f2735;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.process-step-description {
    margin: 0 0 10px;
    color: #6f7788;
    font-size: 1rem;
    line-height: 1.75;
}

.process-step-bullets {
    margin: 0;
    padding-left: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 26px;
}

    .process-step-bullets li {
        color: #7b8494;
        line-height: 1.75;
        font-size: 0.95rem;
    }

.process-cta-section {
    background: #ffffff;
    padding: 74px 0 88px;
    text-align: center;
}

    .process-cta-section h2 {
        margin: 0 0 24px;
        font-size: clamp(1.8rem, 3.4vw, 2.8rem);
        line-height: 1.15;
        color: var(--gold);
        font-weight: 600;
        letter-spacing: -0.025em;
    }

/* RTL */
body.rtl .process-step-content,
body.rtl .process-approach-card {
    text-align: right;
}

body.rtl .process-step-bullets {
    padding-left: 0;
    padding-right: 18px;
}

body.rtl .process-step-header {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* Dark mode */
body.dark-mode .process-hero {
    background: #09152a;
}

    body.dark-mode .process-hero p {
        color: rgba(230,236,247,0.72);
    }

body.dark-mode .process-intro-section {
    background: #0c1730;
}

    body.dark-mode .process-intro-section h2 {
        color: #eef3fb;
    }

    body.dark-mode .process-intro-section p {
        color: rgba(230,236,247,0.72);
    }

body.dark-mode .process-approach-section {
    background: #09152a;
}

body.dark-mode .process-approach-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
    box-shadow: none;
}

    body.dark-mode .process-approach-card h3,
    body.dark-mode .process-step-header h3 {
        color: #eef3fb;
    }

    body.dark-mode .process-approach-card p,
    body.dark-mode .process-step-description,
    body.dark-mode .process-step-bullets li {
        color: rgba(230,236,247,0.72);
    }

body.dark-mode .process-timeline-section {
    background: #0d1a33;
}

body.dark-mode .process-step-icon {
    background: rgba(199,154,74,0.10);
    border-color: rgba(199,154,74,0.18);
}

body.dark-mode .process-cta-section {
    background: #09152a;
}

/* Responsive */
@media (max-width: 991px) {
    .process-hero {
        padding: 130px 0 74px;
    }

    .process-approach-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        max-width: 760px;
    }

    .process-step-bullets {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .process-hero {
        padding: 118px 0 64px;
    }

        .process-hero h1 {
            font-size: 2.9rem;
        }

        .process-hero p {
            font-size: 0.98rem;
        }

    .process-intro-section,
    .process-approach-section,
    .process-timeline-section,
    .process-cta-section {
        padding: 64px 0;
    }

    .process-step-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-step-side {
        justify-content: flex-start;
    }

    body.rtl .process-step-side {
        justify-content: flex-end;
    }

    .process-step-header h3 {
        font-size: 1.2rem;
    }

    .process-step-bullets {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
