/**
 * Funnel step: Choose your path (spec 012, Figma 1:741 / 1:3162).
 * Auto-enqueued by FunnelController on funnel requests only.
 * Every selector is scoped under .cu-step-path.
 */

.cu-step-path {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px 96px;
}

/* ---------- heading ---------- */

.cu-step-path__header {
    text-align: center;
    margin-bottom: 44px;
}

.cu-step-path__title {
    font-family: "Palatino", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-heading-color, #751144);
    margin: 0 0 6px;
}

.cu-step-path__subtitle {
    font-family: "Palatino", serif;
    font-size: 1rem;
    color: var(--bs-heading-color, #751144);
    margin: 0;
}

/* ---------- validation error ---------- */

.cu-step-path__error {
    max-width: 660px;
    margin: 0 auto 28px;
    padding: 12px 18px;
    border: 1px solid var(--bs-heading-color, #751144);
    border-radius: 8px;
    background-color: var(--light-beige, #fcf5df);
    font-family: "Palatino", serif;
    font-size: 0.9375rem;
    color: var(--bs-heading-color, #751144);
    text-align: center;
}

/* ---------- cards ---------- */

.cu-step-path__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: stretch;
}

.cu-step-path__card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 28px 30px 26px;
}

/* Scheduled: raised cream card with a soft outer shadow (Figma left card). */
.cu-step-path__card--scheduled {
    background-color: #faf3e0;
    border: 1px solid #ddceab;
    box-shadow: 6px 8px 18px rgba(89, 38, 11, 0.16);
}

/* Flexible: lighter card outlined in maroon (Figma right card). */
.cu-step-path__card--flexible {
    background-color: var(--light-beige, #fcf5df);
    border: 1.5px solid var(--bs-heading-color, #751144);
}

.cu-step-path__card-title {
    font-family: "Palatino", serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--bs-heading-color, #751144);
    margin: 0 0 6px;
}

.cu-step-path__card-intro {
    font-family: "Palatino", serif;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--text-body-color, #4f2a10);
    margin: 0;
}

.cu-step-path__includes {
    font-family: "Palatino", serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-body-color, #4f2a10);
    margin: 24px 0 12px;
}

.cu-step-path__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cu-step-path__list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 11px;
    font-family: "Palatino", serif;
    font-size: 0.9063rem;
    line-height: 1.35;
    color: var(--text-body-color, #4f2a10);
}

.cu-step-path__list-item:last-child {
    margin-bottom: 0;
}

.cu-step-path__list-item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bs-heading-color, #751144);
}

/* ---------- price + CTA (pinned to the card bottom) ---------- */

.cu-step-path__footer {
    margin-top: auto;
    padding-top: 24px;
}

.cu-step-path__price {
    font-family: "Palatino", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bs-heading-color, #751144);
    margin: 0;
    line-height: 1.1;
}

.cu-step-path__term {
    font-family: "Palatino", serif;
    font-size: 0.875rem;
    color: var(--text-body-color, #4f2a10);
    margin: 2px 0 0;
}

.cu-step-path__form {
    margin: 18px 0 0;
}

.cu-step-path__cta {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 13px 18px;
    border: none;
    border-radius: 6px;
    background-color: var(--bs-heading-color, #751144);
    color: #ffffff;
    font-family: "Proza Libre", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.cu-step-path__form .cu-step-path__cta {
    margin-top: 0;
}

.cu-step-path__cta:hover,
.cu-step-path__cta:focus {
    background-color: #5c0d36;
    color: #ffffff;
}

/* Unavailable state (Figma 1:3162): muted rose, not clickable. */
.cu-step-path__cta--disabled,
.cu-step-path__cta--disabled:hover,
.cu-step-path__cta--disabled:focus {
    background-color: #bd8aa5;
    color: #fdf6ea;
    cursor: not-allowed;
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
    .cu-step-path__cards {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .cu-step-path {
        padding: 28px 16px 64px;
    }

    .cu-step-path__header {
        margin-bottom: 32px;
    }

    .cu-step-path__title {
        font-size: 1.875rem;
    }

    .cu-step-path__card {
        padding: 22px 20px;
    }
}
