/* =========================================================
   WEBARTY TEMPLATES — HOW IT WORKS
   COMPLETE CSS FOR REPLACEMENT
   ========================================================= */

.wa-tpl-process,
.wa-tpl-process *,
.wa-tpl-process *::before,
.wa-tpl-process *::after {
    box-sizing: border-box;
}

.wa-tpl-process h2,
.wa-tpl-process h3,
.wa-tpl-process p,
.wa-tpl-process ul,
.wa-tpl-process li {
    margin: 0;
    padding: 0;
}

.wa-tpl-process {
    --wa-pr-navy: #283550;
    --wa-pr-text: #637187;
    --wa-pr-teal: #00a78e;
    --wa-pr-teal-dark: #008f7a;
    --wa-pr-green: #36c88a;
    --wa-pr-border: #d9e3e8;

    width: 100%;
    padding: 96px 0 102px;
    color: var(--wa-pr-navy);
    background: linear-gradient(180deg, #f9fbfb 0%, #f3f7f8 100%);
    font-family: var(--e-global-typography-text-font-family, "Roboto"), Arial, sans-serif;
}

.wa-tpl-process__container {
    width: min(calc(100% - 128px), 1420px);
    max-width: 1420px;
    margin: 0 auto;
}

.wa-tpl-process__header {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    grid-template-rows: auto auto;
    column-gap: clamp(64px, 7vw, 120px);
    row-gap: 0;
    align-items: end;
    margin-bottom: 42px;
}

.wa-tpl-process__eyebrow {
    grid-column: 1;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    color: var(--wa-pr-teal);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .085em;
    text-transform: uppercase;
}

.wa-tpl-process__eyebrow-line {
    display: block;
    flex: 0 0 33px;
    width: 33px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wa-pr-teal), var(--wa-pr-green));
}

.wa-tpl-process__title {
    grid-column: 1;
    max-width: 760px;
    margin: 0 !important;
    color: var(--wa-pr-navy) !important;
    font-family: inherit !important;
    font-size: clamp(39px, 3.35vw, 52px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -.043em !important;
    text-transform: none !important;
}

.wa-tpl-process__description {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    max-width: 520px;
    margin: 0 0 5px !important;
    color: var(--wa-pr-text) !important;
    font-size: 16px;
    line-height: 1.68;
}

.wa-tpl-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

.wa-tpl-process__card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    padding: 24px 22px 22px;
    border: 1px solid var(--wa-pr-border);
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(40, 53, 80, .035);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.wa-tpl-process__card:hover,
.wa-tpl-process__card:focus-within {
    border-color: rgba(0, 167, 142, .30);
    background: #edf8f5;
    box-shadow: 0 14px 34px rgba(31, 51, 75, .065);
}

.wa-tpl-process__number {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border: 1px solid rgba(0, 167, 142, .18);
    border-radius: 50%;
    color: var(--wa-pr-teal);
    background: #effaf7;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.wa-tpl-process__card:hover .wa-tpl-process__number,
.wa-tpl-process__card:focus-within .wa-tpl-process__number {
    border-color: var(--wa-pr-teal);
    color: #ffffff;
    background: var(--wa-pr-teal);
}

.wa-tpl-process__card h3 {
    color: var(--wa-pr-navy) !important;
    font-family: inherit !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.28 !important;
    letter-spacing: -.025em !important;
    text-transform: none !important;
}

.wa-tpl-process__card > p {
    margin-top: 12px !important;
    color: var(--wa-pr-text) !important;
    font-size: 14px;
    line-height: 1.62;
}

.wa-tpl-process__card ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: auto;
    padding-top: 22px;
    list-style: none !important;
}

.wa-tpl-process__card li {
    position: relative;
    padding-left: 19px;
    color: var(--wa-pr-navy);
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.45;
    list-style: none !important;
}

.wa-tpl-process__card li::before {
    content: "";
    position: absolute;
    top: .48em;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid var(--wa-pr-teal);
    border-radius: 50%;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .wa-tpl-process {
        padding: 86px 0 92px;
    }

    .wa-tpl-process__container {
        width: min(calc(100% - 56px), 1420px);
    }

    .wa-tpl-process__header {
        column-gap: 48px;
    }

    .wa-tpl-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .wa-tpl-process__header {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }

    .wa-tpl-process__description {
        grid-column: 1;
        grid-row: auto;
        max-width: 720px;
        margin-top: 18px !important;
    }
}

@media (max-width: 767px) {
    .wa-tpl-process {
        padding: 70px 0 76px;
    }

    .wa-tpl-process__container {
        width: calc(100% - 48px);
    }

    .wa-tpl-process__header {
        margin-bottom: 30px;
    }

    .wa-tpl-process__eyebrow {
        gap: 10px;
        margin-bottom: 14px;
        font-size: 10.5px;
    }

    .wa-tpl-process__eyebrow-line {
        flex-basis: 27px;
        width: 27px;
        height: 2px;
    }

    .wa-tpl-process__title {
        font-size: clamp(31px, 8vw, 38px) !important;
    }

    .wa-tpl-process__description {
        font-size: 15px;
        line-height: 1.65;
    }

    .wa-tpl-process__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wa-tpl-process__card {
        padding: 23px 20px 22px;
        border-radius: 19px;
    }
}

@media (max-width: 390px) {
    .wa-tpl-process__container {
        width: calc(100% - 40px);
    }
}
