.explore-page {
    position: relative;
}

.explore-top {
    padding: 28px 0 24px;
    border-bottom: 1px solid #e8e8ee;
    background: var(--itzone-white);
}

.explore-top__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--itzone-base);
    margin-bottom: 12px;
}

.explore-top__back:hover {
    color: var(--itzone-black);
}

.explore-top__title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.explore-top__subtitle {
    margin: 0;
    color: var(--itzone-gray);
    font-size: 16px;
}

.explore-content {
    padding-bottom: 40px;
}

.explore-intro {
    padding: 48px 0 32px;
}

.explore-intro__lead {
    font-size: 17px;
    line-height: 1.85;
    color: var(--itzone-gray);
    margin-bottom: 0;
}

.explore-video {
    padding: 32px 0 48px;
}

.explore-video__box {
    border-radius: var(--itzone-bdr-radius);
    overflow: hidden;
    box-shadow: 0px 8px 30px 0px rgb(0 0 0 / 10%);
    background: #000;
    max-width: 900px;
}

.explore-video__box video {
    display: block;
    width: 100%;
    max-height: 420px;
}

.explore-features {
    padding: 32px 0 48px;
    background-color: #f6f6f8;
    border-radius: var(--itzone-bdr-radius);
}

.explore-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.explore-feature-card {
    background: var(--itzone-white);
    border-radius: var(--itzone-bdr-radius);
    padding: 22px 18px;
    box-shadow: 0px 4px 20px 0px rgb(0 0 0 / 5%);
    height: 100%;
}

.explore-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--itzone-base-rgb), .12);
    color: var(--itzone-base);
    font-size: 18px;
    margin-bottom: 14px;
}

.explore-feature-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.explore-feature-card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.explore-diagrams {
    padding: 48px 0;
}

.explore-diagram-card {
    background: var(--itzone-white);
    border-radius: var(--itzone-bdr-radius);
    padding: 18px;
    box-shadow: 0px 4px 20px 0px rgb(0 0 0 / 6%);
    height: 100%;
    text-align: center;
}

.explore-diagram-card img {
    width: auto;
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: calc(var(--itzone-bdr-radius) - 4px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.explore-diagram-card h4 {
    margin-bottom: 14px;
    font-size: 17px;
}

.explore-workflow {
    padding: 32px 24px 40px;
    background-color: #f6f6f8;
    border-radius: var(--itzone-bdr-radius);
}

.explore-workflow__group {
    margin-bottom: 36px;
}

.explore-workflow__group:last-child {
    margin-bottom: 0;
}

.explore-workflow__group-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--itzone-base-rgb), .12);
    color: var(--itzone-base);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}

.explore-timeline {
    position: relative;
    padding-right: 24px;
}

.explore-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 11px;
    bottom: 8px;
    width: 2px;
    background: rgba(var(--itzone-base-rgb), .25);
}

.explore-timeline__item {
    position: relative;
    padding-right: 42px;
    margin-bottom: 16px;
}

.explore-timeline__item:last-child {
    margin-bottom: 0;
}

.explore-timeline__item::before {
    content: attr(data-step);
    position: absolute;
    right: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--itzone-base);
    color: var(--itzone-white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-timeline__item p {
    margin: 0;
    line-height: 1.75;
    font-size: 15px;
}

.explore-screenshots {
    padding: 48px 0 32px;
}

.explore-screenshots__platform {
    margin-bottom: 40px;
}

.explore-screenshots__platform:last-child {
    margin-bottom: 0;
    padding-top: 32px;
    border-top: 1px solid #ececf1;
}

.explore-screenshot-grid {
    display: grid;
    gap: 16px;
}

.explore-screenshot-grid--desktop {
    grid-template-columns: repeat(4, 1fr);
}

.explore-screenshot-grid--mobile {
    grid-template-columns: repeat(7, 1fr);
}

.explore-screenshot-card {
    background: var(--itzone-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ececf1;
    transition: box-shadow 0.25s ease;
}

.explore-screenshot-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.explore-screenshot-card a {
    display: block;
}

.explore-screenshot-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6f8;
    padding: 10px;
    overflow: hidden;
}

.explore-screenshot-grid--desktop .explore-screenshot-card__thumb {
    height: 130px;
}

.explore-screenshot-grid--mobile .explore-screenshot-card__thumb {
    height: 180px;
}

.explore-screenshot-card__thumb img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.explore-screenshot-card__body {
    padding: 10px 12px 12px;
    text-align: center;
}

.explore-screenshot-card__body h5 {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.explore-cta {
    padding: 48px 0 64px;
}

.explore-cta__box {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--itzone-bdr-radius);
    background: linear-gradient(135deg, rgba(var(--itzone-base-rgb), .95), rgba(var(--itzone-base-rgb), .75));
    color: var(--itzone-white);
}

.explore-cta__box h3,
.explore-cta__box p {
    color: var(--itzone-white);
}

.explore-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.explore-cta__actions .thm-btn {
    background: var(--itzone-white);
    color: var(--itzone-base);
}

.explore-cta__actions .thm-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--itzone-white);
    background: transparent;
}

.explore-page .section-title {
    margin-bottom: 24px;
}

@media (max-width: 1199px) {
    .explore-screenshot-grid--desktop {
        grid-template-columns: repeat(3, 1fr);
    }

    .explore-screenshot-grid--mobile {
        grid-template-columns: repeat(4, 1fr);
    }

    .explore-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .explore-intro,
    .explore-diagrams,
    .explore-screenshots,
    .explore-cta {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .explore-screenshot-grid--desktop {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-screenshot-grid--mobile {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .explore-top__title {
        font-size: 26px;
    }

    .explore-features__grid {
        grid-template-columns: 1fr;
    }

    .explore-screenshot-grid--desktop,
    .explore-screenshot-grid--mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .explore-screenshot-grid--mobile .explore-screenshot-card__thumb {
        height: 160px;
    }

    .explore-screenshot-card__body h5 {
        font-size: 12px;
    }
}

/* Lightbox: mobile PNG — only image on dark overlay, no white/gray box */
.mfp-wrap .mfp-figure:has(img.mfp-img[src*="/explore/android"])::after {
    display: none;
}

.mfp-wrap img.mfp-img[src*="/explore/android"] {
    padding: 0;
    background: transparent;
    box-shadow: none;
}
