.chip-card {
    padding: 120px 0 180px;
}

.chip-card__header {
    margin-bottom: 20px;
}

.chip-card__title-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.chip-card__subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.chip-card__subtitle {
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    background: linear-gradient(128.21deg, #ED5574 -17.05%, #D93657 72.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.chip-card__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    gap: 10px;
    background: linear-gradient(128.21deg, #ED5574 -17.05%, #D93657 72.02%);
    border-radius: 16px 16px 16px 0px;
}

.chip-card__description {
    max-width: 800px;
    margin-top: 20px;
}

.chip-card__steps-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.chip-card__steps {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.chip-card__step {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 130px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chip-card__step:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.12);
}

.chip-card__step--active {
    max-width: 130px;
    background: linear-gradient(128.21deg, #ED5574 -17.05%, #D93657 72.02%);
    box-shadow: 0px 4px 25px rgba(217, 54, 87, 0.3);
    border: 1px solid #ffffff;
}

.chip-card__step-number {
    /* font-family: 'Roboto'; */
    font-weight: 700;
    font-size: 60px;
    background: linear-gradient(128.21deg, #ED5574 -17.05%, #D93657 72.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chip-card__step-number--active {
    color: #ffffff;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.chip-card__step-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

.chip-card__step-text--active {
    color: #ffffff;
}

.chip-card__step-text--highlight {
    color: #B50039;
}

.chip-card__illustration {
    right: 0;
    top: 0;
    flex-shrink: 0;
    transform: translate(75%, -20%);
    position: absolute;
    z-index: 3;
    align-self: center;
}

.chip-card__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 10px 30px rgba(79, 115, 183, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */

@media (max-width: 1099px) {
    .chip-card {
        padding: 80px 0;
    }

    .chip-card__title-container {
        justify-content: center;
    }
    
    .chip-card__subtitle-wrapper {
        margin: 0 16px;
    }

    .chip-card__subtitle {
        font-size: 18px;
    }

    .chip-card__steps {
        flex-direction: column;
        padding: 0 16px;
    }

    .chip-card__step {
        width: 100%;
        justify-content: flex-start;
    }

    .chip-card__step--active {
        max-width: 100%;
        position: relative;
    }

    .chip-card__illustration {
        right: 0;
        top: 0;
        transform: translate(20%, -10%);
    }
}