/* Feature Steps Block */
.feature-steps {
    position: relative;
}

.feature-steps-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.feature-steps-title {
    font-size: 36px;
    font-weight: 700;
    color: #37556b;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.feature-steps-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ea6463 0%, #f47776 100%);
    border-radius: 2px;
}

.feature-steps-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 0 !important;
}

.feature-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.feature-step:last-child {
    margin-bottom: 0;
}

.feature-step-connector {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    padding-top: 32px;
}

.feature-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #37556b 0%, #4a6b7c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(55, 85, 107, 0.3);
}

.feature-step-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(to bottom, #37556b 0%, rgba(55, 85, 107, 0.2) 100%);
    margin-top: 10px;
    border-radius: 1.5px;
}

.feature-step-content {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(55, 85, 107, 0.08);
}

.feature-step-image-rechts .feature-step-content {
    grid-template-columns: 400px 1fr;
}

.feature-step-image-rechts .feature-step-image {
    order: -1;
}

.feature-step-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.container h3.feature-step-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #37556b;
    margin-bottom: 12px;
    margin-top: 0 !important;
    line-height: inherit !important;
}

.feature-step-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.feature-step-desc p {
    margin-bottom: 10px;
    margin: inherit !important;
    display: inherit !important;
    line-height: inherit !important;
}

.feature-step-desc p:last-child {
    margin-bottom: 0!important;
}

.feature-step-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mini Phone Mockup */
.feature-step-phone {
    width: 140px;
    height: 290px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 6px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-step-phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 14px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

.feature-step-phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-size: cover;
    background-position: center top;
    border-radius: 20px;
    overflow: hidden;
}

/* Mini Laptop Mockup */
.feature-step-laptop {
    width: 380px;
    position: relative;
}

.feature-step-laptop-screen {
    width: 100%;
    padding-bottom: 62.5%;
    background-color: #f5f7f9;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
    border: 8px solid #1a1a1a;
    border-bottom: none;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.15);
}

.feature-step-laptop-base {
    width: 115%;
    height: 12px;
    background: linear-gradient(to bottom, #d4d4d4 0%, #a8a8a8 100%);
    border-radius: 0 0 8px 8px;
    margin-left: -7.5%;
    position: relative;
}

.feature-step-laptop-base::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #888;
    border-radius: 2px;
}

/* Timeline Layout */
.feature-steps-layout-timeline .feature-steps-container {
    position: relative;
}

.feature-steps-layout-timeline .feature-steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #37556b 0%, rgba(55, 85, 107, 0.1) 100%);
    border-radius: 1.5px;
}

.feature-steps-layout-timeline .feature-step-line {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-step-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-step-image-rechts .feature-step-content {
        grid-template-columns: 1fr;
    }

    .feature-step-image-rechts .feature-step-image {
        order: 0;
    }

    .feature-steps-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .feature-step-connector {
        width: 40px;
        margin-right: 16px;
    }

    .feature-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .feature-step-content {
        padding: 20px;
    }

    .feature-step-title {
        font-size: 18px;
    }

    .feature-step-phone {
        width: 100px;
        height: 210px;
        border-radius: 18px;
        padding: 4px;
    }

    .feature-step-phone-notch {
        width: 40px;
        height: 10px;
    }

    .feature-step-phone-screen {
        border-radius: 15px;
    }

    .feature-step-laptop {
        width: 220px;
    }

    .feature-step-laptop-screen {
        border-radius: 6px 6px 0 0;
        border-width: 6px;
    }

    .feature-step-laptop-base {
        height: 10px;
    }

    .feature-step-laptop-base::before {
        width: 40px;
        height: 3px;
        top: 3px;
    }

    .feature-steps-title {
        font-size: 26px;
    }

    .feature-steps-layout-timeline .feature-steps-container::before {
        left: 20px;
    }
}
