.mobile-third-screen {
    position: relative;
    z-index: 6;
    flex: 0 0 100svh;
    height: 100svh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: max(36px, env(safe-area-inset-top)) clamp(16px, 5vw, 24px) max(36px, env(safe-area-inset-bottom));
    box-sizing: border-box;
    overflow: hidden;
    background-color: #000000;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.mobile-third-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/web2.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.third-screen-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    text-align: center;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.third-screen-block {
    width: 100%;
    text-align: center;
}

.third-screen-block-top {
    margin-top: clamp(6px, 1.2vh, 14px);
}

.third-screen-block-top .third-line {
    font-size: clamp(40px, 9vw, 52px);
    font-weight: 800;
}

.third-screen-block-bottom {
    margin-top: clamp(48px, 10vh, 130px);
}

.third-line {
    margin: 0;
    font-family: 'Mont', 'Inter Tight', sans-serif;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.third-line + .third-line {
    margin-top: 0;
}

.third-line-white {
    color: #ffffff;
}

.third-line-green {
    color: var(--accent-color);
}

.third-screen-cta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    flex-shrink: 0;
}
