/* Shared interactive “Alles wat je nodig hebt” section. */
.lp-how-section {
    padding: 100px 0;
    background: #ffffff;
}

.lp-istep-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 8px 0 0;
}

:root {
    --lp-istep-video-ratio: 1206 / 2622;
}

.lp-istep-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
}

.lp-istep-phone-col {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
}

.lp-istep-phone-frame {
    width: 260px;
    background: #0e0e10;
    border-radius: 42px;
    padding: 12px 8px 10px;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 32px 80px rgba(15, 23, 42, 0.22),
        0 12px 32px rgba(15, 23, 42, 0.12);
}

.lp-istep-phone-frame::before {
    content: '';
    position: absolute;
    left: -2.5px;
    top: 76px;
    width: 2.5px;
    height: 26px;
    background: #1e1e22;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 34px 0 #1e1e22, 0 66px 0 #1e1e22;
}

.lp-istep-phone-frame::after {
    content: '';
    position: absolute;
    right: -2.5px;
    top: 98px;
    width: 2.5px;
    height: 56px;
    background: #1e1e22;
    border-radius: 0 2px 2px 0;
}

.lp-istep-phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #0e0e10;
    border-radius: 12px;
    z-index: 25;
}

.lp-istep-phone-screen {
    width: 100%;
    aspect-ratio: var(--lp-istep-video-ratio);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background: #050507;
}

.lp-istep-visual {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.lp-istep-visual.active {
    opacity: 1;
    pointer-events: auto;
}

.lp-istep-visual img,
.lp-istep-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-istep-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-istep-item {
    border: 1.5px solid transparent;
    border-radius: 16px;
    transition: border-color 0.25s ease, background 0.25s ease;
    overflow: hidden;
}

.lp-istep-item.active {
    border-color: var(--accent, #49c3b3);
    background: rgba(73, 195, 179, 0.04);
}

.lp-istep-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.15s;
}

.lp-istep-header:hover {
    background: rgba(73, 195, 179, 0.04);
}

.lp-istep-number,
.lp-istep-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.lp-istep-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: #475569;
}

.lp-istep-item.active .lp-istep-number,
.lp-istep-item.active .lp-istep-plus {
    background: var(--accent, #49c3b3);
    color: #fff;
}

.lp-istep-plus {
    font-size: 1.1rem;
    font-weight: 700;
    color: #94a3b8;
}

.lp-istep-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
    line-height: 1.3;
}

.lp-istep-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
}

.lp-istep-item.active .lp-istep-chevron {
    transform: rotate(180deg);
    color: var(--accent, #49c3b3);
}

.lp-istep-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px 0 66px;
}

.lp-istep-item.active .lp-istep-body {
    max-height: 200px;
    padding: 0 20px 20px 66px;
}

.lp-istep-body p {
    margin: 0 0 10px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
}

.lp-istep-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent, #49c3b3);
    text-decoration: none;
    transition: opacity 0.2s;
}

.lp-istep-link:hover {
    opacity: 0.75;
}

.lp-istep-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 20px;
}

.lp-istep-inline-preview {
    display: none;
}

.lp-istep-inline-frame {
    border-radius: 32px;
    overflow: hidden;
    background: #0e0e10;
    padding: 8px;
    aspect-ratio: var(--lp-istep-video-ratio);
    max-height: 380px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 12px 32px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(15, 23, 42, 0.06);
}

.lp-istep-inline-frame img,
.lp-istep-inline-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

@media (max-width: 960px) {
    .lp-istep-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lp-istep-phone-col {
        display: none;
    }

    .lp-istep-inline-preview {
        display: block;
        margin-bottom: 16px;
    }

    .lp-istep-item.active .lp-istep-body {
        max-height: 520px;
    }
}

@media (max-width: 640px) {
    .lp-how-section {
        padding: 72px 0;
    }
}
