body {
    background: #f7f7f7;
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
}
/* Hero */
.workdr-hero {
    max-width: 1400px;
    margin: 54px auto 28px auto;
    padding: 0 18px;
}
.workdr-hero h1 {
    color: #174a96;
    font-size: 2.5rem;
    font-weight: 900;
    display: inline-block;
    padding-bottom: 7px;
}
.workdr-lead {
    font-size: 1.2rem;
    color: #18314c;
    opacity: 0.93;
    margin-bottom: 0;
    line-height: 1.6rem;
}
/* Process section */
.workdr-process-section {
    max-width: 1400px;
    margin: 52px auto 34px auto;
    padding: 0 18px;
}
.workdr-process-section h2 {
    color: #174a96;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: 0.01em;
}

.workdr-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem 0;
    padding: 0;
    grid-template-areas:
        "step1 step2"
        "step3 step3"
        "step4 step5";
}
.area-step1 {
    grid-area: step1;
}
.area-step2 {
    grid-area: step2;
}
.area-step3 {
    grid-area: step3;
}
.area-step4 {
    grid-area: step4;
}
.area-step5 {
    grid-area: step5;
}

.workdr-step {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(32, 88, 166, 0.07);
    border: 2px solid #e1eaf7;
    padding: 36px 26px 24px 26px;
    position: relative;
    min-width: 240px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        box-shadow 0.16s,
        border-color 0.16s;
}

.workdr-step-num {
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(120deg, #174a96 60%, #397de3 100%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -24px;
    left: 16px;
    box-shadow: 0 2px 8px rgba(32, 88, 166, 0.13);
    border: 3px solid #e7f2ff;
    z-index: 2;
}
.workdr-step-content {
    margin-top: 18px;
}
.workdr-step-content h3 {
    color: #174a96;
    font-size: 2rem;
    margin: 0 0 7px 0;
    font-weight: 800;
}
.workdr-step-content p {
    font-size: 1.2rem;
    color: #333;
    opacity: 0.96;
    margin-bottom: 1.5rem;
    line-height: 1.6rem;
}

.workdr-tags {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    list-style: none;
}
.workdr-tags li {
    margin: 1rem;
}

.workdr-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: #174a96;
    border: none;
    border-radius: 24px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition:
        background 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(32, 88, 166, 0.11);
}
.workdr-btn:hover {
    background: #397de3;
    box-shadow: 0 4px 18px rgba(32, 88, 166, 0.18);
}

/* Responsive: Stack on mobile */
@media (max-width: 900px) {
    .workdr-process-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas:
            "step1"
            "step2"
            "step3"
            "step4"
            "step5";
        gap: 24px 0;
    }
    .workdr-step {
        max-width: 99vw;
    }
}