/**
 * Maxtel Fjernsupport — Steps & info sections
 */

/* === Steps Section === */
.maxtel-remote-steps {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.maxtel-remote-steps__container {
    width: 100%;
}

.maxtel-remote-steps__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.maxtel-remote-steps__card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white, #fff);
    border-radius: 20px;
    border: 1px solid var(--color-slate-100, #EEF3F3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.maxtel-remote-steps__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.maxtel-remote-steps__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--color-primary, #69C6AE);
    color: var(--color-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(105, 198, 174, 0.3);
}

.maxtel-remote-steps__icon {
    width: 64px;
    height: 64px;
    margin: 0.5rem auto 1rem;
    background: var(--color-teal-50, #F0FAF7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #69C6AE);
}

.maxtel-remote-steps__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-slate-800, #1E293B);
    margin: 0 0 0.5rem;
}

.maxtel-remote-steps__desc {
    font-size: 0.88rem;
    color: var(--color-slate-600, #54606B);
    line-height: 1.6;
    margin: 0;
}

/* Connector arrows between steps */
.maxtel-remote-steps__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    margin-top: 3.5rem;
    color: var(--color-slate-300, #A9B4B8);
    flex-shrink: 0;
}

/* === Info Section === */
.maxtel-remote-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.maxtel-remote-info__container {
    width: 100%;
}

.maxtel-remote-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.maxtel-remote-info__card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-slate-50, #F4FAF9);
    border-radius: 16px;
    border: 1px solid var(--color-slate-100, #EEF3F3);
}

.maxtel-remote-info__card-icon {
    width: 44px;
    height: 44px;
    background: var(--color-white, #fff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #69C6AE);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.maxtel-remote-info__card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-slate-800, #1E293B);
    margin: 0 0 0.35rem;
}

.maxtel-remote-info__card-text {
    font-size: 0.88rem;
    color: var(--color-slate-600, #54606B);
    line-height: 1.6;
    margin: 0;
}

/* === Responsive === */
@media (max-width: 768px) {
    .maxtel-remote-steps {
        padding: 2rem 1rem 1.5rem;
    }

    .maxtel-remote-steps__grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .maxtel-remote-steps__card {
        max-width: 100%;
        width: 100%;
    }

    .maxtel-remote-steps__connector {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 0;
    }

    .maxtel-remote-info {
        padding: 0 1rem 2rem;
    }

    .maxtel-remote-info__grid {
        grid-template-columns: 1fr;
    }
}
