/* ── Steps Block ──────────────────────────────────────────────────────────── */

.step-block {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.step-watermark {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    color: rgba(0, 2, 14, 0.05);
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 5px;
    pointer-events: none;
    text-transform: uppercase;
}

.step-header {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-bottom: 70px;
}

.step-header__title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.step-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1400px;
}

.step-col {
    padding: 40px 32px;
    background: var(--card-gradient);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform 0.45s var(--ease-card),
                box-shadow 0.45s var(--ease-card),
                border-color 0.3s ease;
}

.step-col:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(242, 101, 34, 0.22);
}

.step-col__line {
    display: none;
}

.step-col__title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
    max-width: 250px;
}

.step-col__text {
    font-size: 15px;
    line-height: 1.7;
    color: #1f1f1f;
    font-weight: 400;
}

/* ── Icon wrappers ─────────────────────────────────────────────────────────── */

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-circle--solid { background: var(--color-primary); }
.icon-circle--large { width: 64px; height: 64px; }

/* ── Premium step cards (used in page templates) ───────────────────────────── */

.step-grid--premium { gap: 20px; }

.step-card--premium {
    background: var(--card-gradient);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 40px;
    transition: transform 0.45s var(--ease-card),
                box-shadow 0.45s var(--ease-card),
                border-color 0.3s ease;
}

.step-card--premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(242, 101, 34, 0.22);
}

.step-num--premium {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.1;
    margin-bottom: -15px;
    transition: opacity 0.3s ease;
}

.step-card--premium:hover .step-num--premium { opacity: 0.2; }

/* ── Result card / check list ──────────────────────────────────────────────── */

.result-card--white {
    background: var(--card-gradient);
    padding: 50px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.result-list--check {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result-list--check li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.result-list--check li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 18px;
}

.result-list--check li strong { color: var(--color-text-main); }

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .step-header__title {
        font-size: 32px;
    }

    .step-watermark {
        font-size: 12vw;
    }
}

@media (max-width: 992px) {
    .step-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .step-grid {
        grid-template-columns: 1fr;
    }

    .step-col {
        padding: 40px 20px;
    }
}
