/* ==========================================================================
   БЛОК: PROCESS (Этапы работы / Таймлайн)
   ========================================================================== */

.process-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: flex-start;
}

.process-left {
    position: sticky;
    top: 100px; /* С учетом высоты нашей фиксированной шапки */
}

.process-badge {
    display: inline-block;
    background-color: #e1f5fe;
    color: #0288d1;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.process-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #0b2545;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

.process-description {
    font-size: 15px;
    color: #617d98;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Синий информационный блок */
.time-info-card {
    background: linear-gradient(135deg, #2bb1e5 0%, #1a7fa6 100%);
    border-radius: 16px;
    padding: 35px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(26, 127, 166, 0.15);
}

.time-info-card .card-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.time-info-card .time-value {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.time-info-card .card-note {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.4;
    display: block;
}

/* Правая сторона — Таймлайн */
.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #e1f5fe;
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: #2bb1e5;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #ffffff;
}

.step-content {
    flex-grow: 1;
    padding-top: 6px;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 15px;
}

.step-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0b2545;
    font-weight: 700;
}

.step-duration {
    background-color: #e1f5fe;
    color: #0288d1;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.step-content p {
    font-size: 18px;
    color: #617d98;
    line-height: 1.6;
    max-width: 540px;
}

@media (max-width: 1200px) {
    .process-container { grid-template-columns: 1fr; gap: 60px; }
    .process-left { position: static; }
    .time-info-card .time-value { font-size: 30px; }
}

@media (max-width: 576px) {
    .process-section { padding: 60px 20px; }
    .process-left h2 { font-size: 32px; }
    .step-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .process-timeline { padding-left: 25px; }
    .process-timeline::before { left: 10px; }
    .step-number { width: 24px; height: 24px; font-size: 10px; box-shadow: 0 0 0 4px #ffffff; }
    .timeline-item { gap: 15px; }
    .time-info-card .time-value { font-size: 30px; }
}