/* =========================================================
   COURSE PROCESS
========================================================= */

.course-process {

    padding: 60px 40px;

    background: var(--color-white);

}

/* =========================================================
   GRID
========================================================= */

.course-process__grid {

    display: grid;

    grid-template-columns: 1.4fr 0.85fr;

    gap: 18px;

    align-items: stretch;

}

/* =========================================================
   CARD
========================================================= */

.course-process__card {

    background: var(--color-white);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

}

/* =========================================================
   LEFT CARD
========================================================= */

.course-process__card--steps {

    padding: 24px;

}

/* =========================================================
   RIGHT CARD
========================================================= */

.course-process__card--offer {

    padding: 24px;

    background:
        linear-gradient(
            135deg,
            #03143f 0%,
            #07194b 55%,
            #0d2a78 100%
        );

    border: none;

}

/* =========================================================
   TITLE
========================================================= */

.course-process__title {

    font-size: 24px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--color-primary);

    margin-bottom: 26px;

}

.course-process__title span {

    color: var(--color-secondary);

}

.course-process__card--offer .course-process__title {

    color: var(--color-white);

}

/* =========================================================
   STEPS
========================================================= */

.course-process__steps {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

}

/* =========================================================
   STEP
========================================================= */

.course-process__step {

    position: relative;

    text-align: center;

    padding: 0 12px;

}

/* =========================================================
   ARROW
========================================================= */

.course-process__step::after {

    content: "→";

    position: absolute;

    top: 34px;
    right: -10px;

    font-size: 26px;

    color: #cbd5e1;

    font-weight: 300;

}

.course-process__step:last-child::after {

    display: none;

}

/* =========================================================
   ICON
========================================================= */

.course-process__icon {

    width: 68px;
    height: 68px;

    margin: 0 auto 14px;

    border-radius: 50%;

    background: var(--color-white);

    border: 1px solid #eef2ff;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.04);

}

.course-process__icon svg {

    width: 30px;
    height: 30px;

    stroke: #1d4ed8;

    stroke-width: 1.8;

}

/* =========================================================
   NUMBER
========================================================= */

.course-process__number {

    width: 28px;
    height: 28px;

    margin: 0 auto 12px;

    border-radius: 50%;

    background: #1d4ed8;

    color: var(--color-white);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;

    font-weight: 700;

}

/* =========================================================
   STEP TITLE
========================================================= */

.course-process__step h3 {

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

    color: var(--color-primary);

    margin-bottom: 8px;

}

/* =========================================================
   STEP TEXT
========================================================= */

.course-process__step p {

    font-size: 13px;

    line-height: 1.7;

    color: var(--color-text-muted);

}

/* =========================================================
   OFFER TOP
========================================================= */

.course-process__offer-top {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;

}

/* =========================================================
   OFFER ICON
========================================================= */

.course-process__offer-icon {

    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.course-process__offer-icon svg {

    width: 28px;
    height: 28px;

    stroke: var(--color-white);

    stroke-width: 1.8;

}

/* =========================================================
   OFFER CONTENT
========================================================= */

.course-process__offer-content h3 {

    font-size: 22px;

    font-weight: 700;

    line-height: 1.3;

    color: var(--color-white);

    margin-bottom: 6px;

}

.course-process__offer-content p {

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255,255,255,0.82);

}

/* =========================================================
   LIST
========================================================= */

.course-process__list {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 24px;

}

/* =========================================================
   ITEM
========================================================= */

.course-process__item {

    display: flex;

    align-items: center;

    gap: 10px;

}

.course-process__item svg {

    width: 16px;
    height: 16px;

    stroke: var(--color-white);

    stroke-width: 2.4;

    flex-shrink: 0;

}

.course-process__item span {

    font-size: 14px;

    line-height: 1.5;

    color: var(--color-white);

}

/* =========================================================
   BUTTON
========================================================= */

.course-process__btn {

    height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: var(--radius-sm);

    background: var(--color-secondary);

    color: var(--color-white);

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: var(--transition-fast);

}

.course-process__btn svg {

    width: 16px;
    height: 16px;

    stroke-width: 2.4;

}

.course-process__btn:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .course-process__grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 900px) {

    .course-process__steps {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;

    }

    .course-process__step::after {

        display: none;

    }

}

@media (max-width: 768px) {

    .course-process {

        padding: 50px 25px;

    }

    .course-process__card--steps,
    .course-process__card--offer {

        padding: 22px 20px;

    }

    .course-process__title {

        font-size: 22px;

        margin-bottom: 24px;

    }

    .course-process__steps {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .course-process__offer-content h3 {

        font-size: 20px;

    }

    .course-process__btn {

        width: 100%;

    }

}