/* ==========================================================
   Block: Steps Section — frontend styles
   ========================================================== */

.steps-section {
    background: var(--bg);
    padding: 80px 0;
}

.steps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: start;
}

/* Таймлайн */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    padding-bottom: 36px;
}

.step-row:last-child { padding-bottom: 0; }

.step-row::after {
    content: '';
    position: absolute;
    top: 56px; left: 27px;
    width: 2px; bottom: 0;
    background: linear-gradient(to bottom, var(--blue-light), transparent);
}

.step-row:last-child::after { display: none; }

.step-circle {
    min-width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), #2b6ee0);
    color: #fff;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
    position: relative;
    z-index: 1;
}

.step-body { padding-top: 10px; }

.step-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 4px 14px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.step-badge.blue  { background: var(--blue-light); color: var(--blue); }
.step-badge.red   { background: var(--red-light);  color: var(--red); }
.step-badge.gold  { background: #fffbeb;           color: #d97706; }
.step-badge.green { background: #f0fdf4;           color: #22c55e; }

/* Accent banner */
.accent-banner {
    background: linear-gradient(135deg, var(--blue), #2b6ee0);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.accent-banner-icon {
    font-size: 64px;
    flex-shrink: 0;
    line-height: 1;
}

.accent-banner-text { flex: 1; }

.accent-banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.accent-banner-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .accent-banner { padding: 32px 28px; }
}

@media (max-width: 768px) {
    .steps-section { padding: 48px 0; }
    .steps-section .container { padding: 0 16px; }
    .accent-banner { flex-direction: column; text-align: center; padding: 28px 20px; gap: 0; }
    .accent-banner-icon { font-size: 48px; margin-bottom: 16px; }
}
