/* =====================================
   FOLLOWUPP APP SHOWCASE
   ===================================== */

.app-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 12%, rgba(249,115,22,.045), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(59,130,246,.035), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.app-head {
    max-width: 780px;
}

.app-head h2 {
    color: #0f172a;
}

.app-head p {
    color: #64748b;
}

.app-section .eyebrow {
    background: rgba(249,115,22,.10);
    color: #f97316;
}

/* Layout */

.app-showcase {
    margin-top: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    gap: 28px;
    align-items: stretch;
}

/* Main Screen */

.app-main-screen {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;

    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.09);

    box-shadow:
        0 28px 80px rgba(15,23,42,.10);

    text-decoration: none;
    color: inherit;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.app-main-screen:hover {
    transform: translateY(-5px);
    border-color: rgba(249,115,22,.22);
    box-shadow:
        0 36px 95px rgba(15,23,42,.14);
}

.app-main-screen-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f8fafc;
    border-bottom: 1px solid rgba(15,23,42,.07);
}

.app-main-screen-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
}

.app-main-screen-content {
    padding: 26px 28px 28px;
}

.app-main-screen-content span {
    display: inline-flex;
    margin-bottom: 10px;

    color: #f97316;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .03em;
}

.app-main-screen-content strong {
    display: block;
    margin-bottom: 8px;

    color: #0f172a;
    font-size: 22px;
    line-height: 1.18;
}

.app-main-screen-content p {
    margin: 0;
    color: #64748b;
    font-size: 15.5px;
    line-height: 1.65;
}

/* Small Screens */

.app-screen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.app-screen {
    display: block;
    text-decoration: none;
    color: inherit;
}

.app-screen-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;

    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.09);

    box-shadow:
        0 16px 45px rgba(15,23,42,.07);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.app-screen:hover .app-screen-thumb {
    transform: translateY(-4px);
    border-color: rgba(249,115,22,.22);
    box-shadow:
        0 22px 60px rgba(15,23,42,.11);
}

.app-screen-thumb img {
    width: 138%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transform: translateX(-18%);
}

.app-screen span {
    display: block;
    margin-top: 10px;

    color: #0f172a;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
}

/* Mobile dots */

.app-mobile-dots {
    display: none;
}

/* Responsive */

@media (max-width: 1120px) {
    .app-showcase {
        grid-template-columns: 1fr;
    }

    .app-screen-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .app-showcase {
        margin-top: 34px;
        gap: 26px;
    }

    .app-main-screen {
        border-radius: 24px;
    }

    .app-main-screen-content {
        padding: 22px;
    }

    .app-main-screen-content strong {
        font-size: 20px;
    }

    .app-screen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .app-section {
        overflow: hidden;
    }

.app-main-screen {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 26px;
    border-radius: 22px;
}
    .app-showcase {
        display: block;
        margin-top: 30px;
    }

    .app-screen-grid {
        display: flex !important;
        gap: 16px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch;

        padding: 0 22px 8px 0 !important;
        margin: 0 -22px 0 0 !important;

        scrollbar-width: none;
        touch-action: pan-x pan-y !important;
    }

    .app-screen-grid::-webkit-scrollbar {
        display: none;
    }

    .app-screen {
        flex: 0 0 84% !important;
        min-width: 84% !important;
        max-width: 84% !important;

        scroll-snap-align: start !important;
    }

    .app-screen-thumb {
        border-radius: 20px;
        box-shadow: none !important;
    }

    .app-screen:hover .app-screen-thumb {
        transform: none;
        box-shadow: none !important;
    }

    .app-screen span {
        font-size: 14px;
        text-align: center;
    }

    .app-mobile-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 16px;
    }

    .app-mobile-dots span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #cbd5e1;
        cursor: pointer;
        transition: width .2s ease, background .2s ease;
    }

    .app-mobile-dots span.is-active {
        width: 20px;
        background: #f97316;
    }
    
    .app-main-screen-img {
    aspect-ratio: auto;
    background: #ffffff;
}

.app-main-screen-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
}

.app-main-screen-content {
    padding: 18px 18px 20px;
}
    
}

/* =====================================
   LIGHTBOX OVERRIDE
   ===================================== */

.lightbox,
.basicLightbox,
.fslightbox-container,
.glightbox-container {
    background: rgba(15, 23, 42, .78) !important;
}

.lightbox img,
.basicLightbox img,
.fslightbox-container img,
.glightbox-container img,
.gslide-image img {
    max-width: 80vw !important;
    max-height: 80vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

/* Mobile etwas größer, aber nicht vollflächig */
@media (max-width: 700px) {
    .lightbox img,
    .basicLightbox img,
    .fslightbox-container img,
    .glightbox-container img,
    .gslide-image img {
        max-width: 88vw !important;
        max-height: 78vh !important;
    }
}

/* GLightbox Caption komplett ausblenden */
.gslide-description,
.gdesc-inner,
.gdesc-outside,
.gslide-title,
.gslide-desc {
    display: none !important;
}

/* Lightbox Hintergrund heller */

.goverlay {
    background: rgba(15, 23, 42, 0.55) !important;
}