@media (max-width: 768px) {
    .section-header {
        padding: 120px 20px 42px;
    }

    .process-title {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.3;
        word-break: keep-all;
    }

    .process-container {
        padding: 42px 18px 64px;
    }

    .timeline-wrapper {
        padding-top: 0;
    }

    .timeline-line {
        display: block;
        top: 40px;
        bottom: 40px;
        left: 42px;
        right: auto;
        width: 2px;
        height: auto;
        background: #cbd5e1;
        opacity: 1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .step-item {
        display: grid;
        grid-template-columns: 84px minmax(0, 1fr);
        align-items: stretch;
        text-align: left;
    }

    .step-node {
        z-index: 2;
        align-self: center;
        width: 72px;
        height: 72px;
        margin: 0;
        border-width: 2px;
        box-shadow: 0 6px 16px rgba(0, 46, 110, .1);
    }

    .step-item:hover .step-node {
        transform: none;
    }

    .step-number {
        top: -7px;
        padding: 2px 7px;
        font-size: 8px;
        white-space: nowrap;
    }

    .step-icon {
        width: 30px;
        height: 30px;
    }

    .step-content {
        min-height: 0;
        padding: 18px;
        border-radius: 8px;
    }

    .step-name {
        margin-bottom: 7px;
        font-size: 16px;
    }

    .step-desc {
        font-size: 13px;
        line-height: 1.65;
    }
}
