/* ============================================================
   PRODUCT PAGE — WinTap Pro
   Standalone CSS for Software Introduction Page
============================================================ */

* {
    font-family: vazir, Tahoma, Arial, sans-serif !important;
}
/* ── Vazir @font-face (همان مسیر فایل‌های فونت کل پروژه) ── */


/* ── Force Vazir on entire page scope ── */
.pp-wrap,
.pp-wrap *,
.pp-wrap h1, .pp-wrap h2, .pp-wrap h3,
.pp-wrap h4, .pp-wrap h5, .pp-wrap h6,
.pp-wrap p, .pp-wrap span, .pp-wrap a,
.pp-wrap div, .pp-wrap li, .pp-wrap ul,
.pp-wrap strong, .pp-wrap em, .pp-wrap button {
    font-family: Vazir, Tahoma, Arial, sans-serif !important;
}

/* ── Keyframes ── */
@keyframes floatY {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes glowPulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(200,29,37,.25);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(200,29,37,0);
    }
}

@keyframes lineGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterIn {
    from {
        opacity: 0;
        transform: scale(.6);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Tokens ── */
:root {
    --navy: #0B3954;
    --navy-2: #071E2B;
    --red: #C81D25;
    --red-2: #9B1219;
    --slate: #5a7a8e;
    --ghost: #F8FBFF;
    --white: #ffffff;
    --border: rgba(11,57,84,.10);
    --r-card: 24px;
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
    --ease-smooth: cubic-bezier(.22,1,.36,1);
}

/* ── Reset scoped ── */
.pp-wrap * {
    box-sizing: border-box;
}

.pp-wrap a {
    text-decoration: none;
}

/* ============================================================
   1. HERO SECTION
============================================================ */
.pp-hero {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    direction: rtl;
    background: var(--navy-2);
}

/* Left side — image panel */
.pp-hero__img-panel {
    position: relative;
    overflow: hidden;
}

    .pp-hero__img-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(.75) saturate(.85);
        transition: transform 8s ease;
    }

    .pp-hero__img-panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, var(--navy-2) 0%, transparent 60%);
        z-index: 1;
    }

/* overlay badge on image */
.pp-hero__img-badge {
    position: absolute;
    bottom: 48px;
    right: 40px;
    z-index: 2;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp .8s 1.2s ease both;
}

.pp-hero__img-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: glowPulse 2.5s ease infinite;
}

    .pp-hero__img-badge-icon svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.pp-hero__img-badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .pp-hero__img-badge-text strong {
        font-size: 18px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
    }

    .pp-hero__img-badge-text span {
        font-size: 12px;
        color: rgba(255,255,255,.65);
    }

/* Right side — content panel */
.pp-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 72px 100px 52px;
    background: linear-gradient(135deg, var(--navy-2) 0%, #0d2e45 100%);
}

/* Decorative ring */
.pp-hero__ring {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(200,29,37,.12);
    animation: rotateRing 30s linear infinite;
    pointer-events: none;
}

    .pp-hero__ring::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 40px;
        right: 40px;
        bottom: 40px;
        border-radius: 50%;
        border: 1px dashed rgba(200,29,37,.08);
    }

.pp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    animation: fadeLeft .7s .2s ease both;
}

    .pp-hero__eyebrow::before {
        content: '';
        display: inline-block;
        width: 28px;
        height: 2px;
        background: var(--red);
        border-radius: 1px;
    }

.pp-hero__h1 {
    font-size: 62px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -1px;
    direction: rtl;
    animation: fadeLeft .7s .35s ease both;
}

    .pp-hero__h1 em {
        font-style: normal;
        color: var(--red);
        position: relative;
    }

        .pp-hero__h1 em::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 0;
            left: 0;
            height: 3px;
            background: var(--red);
            border-radius: 2px;
            opacity: .45;
        }

.pp-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,.60);
    line-height: 2;
    max-width: 480px;
    margin: 0 0 44px;
    direction: rtl;
    animation: fadeLeft .7s .5s ease both;
}

.pp-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeLeft .7s .65s ease both;
}

.pp-btn-primary {
    padding: 16px 38px;
    border-radius: 14px;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease-spring), box-shadow .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .pp-btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .pp-btn-primary:hover {
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(200,29,37,.40);
    }

        .pp-btn-primary:hover::before {
            opacity: 1;
        }

    .pp-btn-primary svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.pp-btn-ghost {
    padding: 16px 38px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .pp-btn-ghost:hover {
        color: #fff;
        border-color: rgba(255,255,255,.35);
        background: rgba(255,255,255,.12);
        transform: translateY(-2px);
    }

/* Hero pill tags */
.pp-hero__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
    animation: fadeLeft .7s .8s ease both;
}

.pp-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    font-size: 12px;
    color: rgba(255,255,255,.60);
    direction: rtl;
}

    .pp-hero__tag span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        flex-shrink: 0;
    }

/* ============================================================
   2. TICKER BAR
============================================================ */
.pp-ticker {
    width: 100%;
    background: var(--red);
    padding: 0;
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
}

.pp-ticker__track {
    display: flex;
    gap: 0;
    animation: tickerScroll 28s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.pp-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    letter-spacing: .5px;
    direction: rtl;
    flex-shrink: 0;
}

    .pp-ticker__item::after {
        content: '◆';
        font-size: 7px;
        opacity: .6;
        margin-right: 2px;
    }

    .pp-ticker__item svg {
        width: 14px;
        height: 14px;
        stroke: rgba(255,255,255,.80);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

/* ============================================================
   3. STATS STRIP
============================================================ */
.pp-stats {
    width: 100%;
    background: var(--ghost);
    padding: 52px 0;
    direction: rtl;
}

.pp-stats__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--border);
}

.pp-stat-item {
    background: var(--ghost);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    direction: rtl;
    transition: background .3s ease;
}

    .pp-stat-item:hover {
        background: #fff;
    }

.pp-stat__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--navy-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pp-stat__icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--red);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.pp-stat__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pp-stat__number {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1.5px;
}

    .pp-stat__number sup {
        font-size: 18px;
        color: var(--red);
        vertical-align: super;
    }

.pp-stat__label {
    font-size: 13px;
    color: var(--slate);
    font-weight: 600;
    direction: rtl;
}

/* ============================================================
   4. INTRO — TWO-COLUMN FEATURE
============================================================ */
.pp-intro {
    width: 100%;
    padding: 100px 0;
    background: #fff;
    direction: rtl;
    overflow: hidden;
}

.pp-intro__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pp-intro__image-frame {
    position: relative;
    animation: fadeRight .9s ease both;
}

    .pp-intro__image-frame img {
        width: 100%;
        border-radius: 28px;
        display: block;
        box-shadow: 0 32px 64px rgba(11,57,84,.16);
        position: relative;
        z-index: 1;
    }

/* Floating accent card */
.pp-intro__float-card {
    position: absolute;
    bottom: -28px;
    left: -32px;
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(11,57,84,.12);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    direction: rtl;
    animation: floatY 4s ease-in-out infinite;
    min-width: 220px;
}

.pp-intro__float-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(200,29,37,.08);
    border: 1px solid rgba(200,29,37,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pp-intro__float-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--red);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.pp-intro__float-text strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.pp-intro__float-text span {
    font-size: 12px;
    color: var(--slate);
}

/* Accent stripe behind image */
.pp-intro__image-frame::before {
    content: '';
    position: absolute;
    top: 32px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(200,29,37,.08), rgba(11,57,84,.06));
    border: 1px solid rgba(200,29,37,.10);
    z-index: 0;
}

.pp-intro__content {
    animation: fadeLeft .9s .2s ease both;
}

.pp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(200,29,37,.07);
    border: 1px solid rgba(200,29,37,.14);
}

    .pp-section-eyebrow::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--red);
        border-radius: 1px;
    }

.pp-section-h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 16px;
    line-height: 1.35;
    letter-spacing: -.3px;
    direction: rtl;
}

    .pp-section-h2 span {
        color: var(--red);
    }

.pp-intro__body-text {
    font-size: 16px;
    color: var(--slate);
    line-height: 2;
    direction: rtl;
    margin: 0 0 32px;
}

/* Check-list */
.pp-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .pp-check-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14.5px;
        color: var(--navy);
        font-weight: 600;
        direction: rtl;
    }

        .pp-check-list li::before {
            content: '';
            width: 22px;
            height: 22px;
            border-radius: 8px;
            background: rgba(200,29,37,.08);
            border: 1px solid rgba(200,29,37,.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%23C81D25' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

/* ============================================================
   5. MODULES TIMELINE
============================================================ */
.pp-modules {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, #0E2F44 0%, #071E2B 100%);
    direction: rtl;
    position: relative;
    overflow: hidden;
}

    .pp-modules::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -100px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200,29,37,.07) 0%, transparent 70%);
        pointer-events: none;
    }

.pp-modules__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
}

.pp-modules__header {
    text-align: center;
    margin-bottom: 72px;
}

    .pp-modules__header .pp-section-eyebrow {
        background: rgba(200,29,37,.12);
        border-color: rgba(200,29,37,.22);
    }

    .pp-modules__header .pp-section-h2 {
        color: #fff;
        font-size: 38px;
    }

        .pp-modules__header .pp-section-h2 span {
            color: var(--red);
        }

    .pp-modules__header p {
        font-size: 15px;
        color: rgba(255,255,255,.50);
        direction: rtl;
        max-width: 480px;
        margin: 12px auto 0;
        line-height: 1.9;
    }

/* Grid of module cards — masonry-feel with CSS grid */
.pp-modules__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-mod-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease-spring), background .3s ease, border-color .3s ease, box-shadow .3s ease;
    direction: rtl;
}

    .pp-mod-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--mod-color, var(--red));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .4s var(--ease-spring);
    }

    .pp-mod-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.09);
        border-color: var(--mod-color, rgba(200,29,37,.40));
        box-shadow: 0 24px 48px rgba(0,0,0,.30);
    }

        .pp-mod-card:hover::before {
            transform: scaleX(1);
        }

/* Tall card variant */
.pp-mod-card--tall {
    grid-row: span 2;
    justify-content: space-between;
}

.pp-mod__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--mod-icon-bg, rgba(200,29,37,.14));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .4s var(--ease-spring), background .3s ease;
}

    .pp-mod__icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--mod-color, var(--red));
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .3s ease;
    }

.pp-mod-card:hover .pp-mod__icon {
    transform: scale(1.1) rotate(-6deg);
    background: var(--mod-color, var(--red));
}

    .pp-mod-card:hover .pp-mod__icon svg {
        stroke: #fff;
    }

.pp-mod__title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    direction: rtl;
    margin: 0;
    line-height: 1.4;
}

.pp-mod__desc {
    font-size: 13px;
    color: rgba(255,255,255,.50);
    line-height: 1.75;
    direction: rtl;
    margin: 0;
}

.pp-mod__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--mod-pill-bg, rgba(200,29,37,.12));
    font-size: 11px;
    font-weight: 700;
    color: var(--mod-color, var(--red));
    letter-spacing: .5px;
    align-self: flex-start;
    margin-top: 4px;
}

/* Module color variants */
.pp-mod-card.mc-red {
    --mod-color: #C81D25;
    --mod-icon-bg: rgba(200,29,37,.14);
    --mod-pill-bg: rgba(200,29,37,.10);
}

.pp-mod-card.mc-teal {
    --mod-color: #087E8B;
    --mod-icon-bg: rgba(8,126,139,.14);
    --mod-pill-bg: rgba(8,126,139,.10);
}

.pp-mod-card.mc-amber {
    --mod-color: #D4860A;
    --mod-icon-bg: rgba(212,134,10,.14);
    --mod-pill-bg: rgba(212,134,10,.10);
}

.pp-mod-card.mc-blue {
    --mod-color: #2980B9;
    --mod-icon-bg: rgba(41,128,185,.14);
    --mod-pill-bg: rgba(41,128,185,.10);
}

.pp-mod-card.mc-green {
    --mod-color: #1A8C5B;
    --mod-icon-bg: rgba(26,140,91,.14);
    --mod-pill-bg: rgba(26,140,91,.10);
}

.pp-mod-card.mc-purple {
    --mod-color: #7B52AB;
    --mod-icon-bg: rgba(123,82,171,.14);
    --mod-pill-bg: rgba(123,82,171,.10);
}

/* ============================================================
   6. SHOWCASE SECTION — Full-bleed image with overlay content
============================================================ */
.pp-showcase {
    width: 100%;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    direction: rtl;
    display: flex;
    align-items: center;
}

.pp-showcase__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .pp-showcase__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(.4) saturate(.7);
    }

    .pp-showcase__bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(7,30,43,.92) 0%, rgba(11,57,84,.75) 100%);
    }

.pp-showcase__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 72px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.pp-showcase__content .pp-section-eyebrow {
    background: rgba(200,29,37,.18);
    border-color: rgba(200,29,37,.28);
}

.pp-showcase__content .pp-section-h2 {
    color: #fff;
    font-size: 40px;
}

.pp-showcase__content p {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    line-height: 2;
    direction: rtl;
    margin: 0 0 36px;
}

/* Feature pills grid */
.pp-feat-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pp-feat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    direction: rtl;
    transition: background .3s ease, border-color .3s ease;
}

    .pp-feat-pill:hover {
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.22);
    }

.pp-feat-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    animation: glowPulse 2s ease infinite;
}

.pp-feat-pill span {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

/* Right side — stacked glass cards */
.pp-showcase__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pp-glass-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    direction: rtl;
    backdrop-filter: blur(12px);
    transition: background .3s ease, transform .3s var(--ease-spring);
}

    .pp-glass-card:hover {
        background: rgba(255,255,255,.13);
        transform: translateX(-6px);
    }

.pp-glass-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(200,29,37,.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(200,29,37,.25);
}

    .pp-glass-card__icon svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.pp-glass-card__text {
    direction: rtl;
}

    .pp-glass-card__text strong {
        display: block;
        font-size: 15px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 4px;
    }

    .pp-glass-card__text p {
        font-size: 13px;
        color: rgba(255,255,255,.55);
        margin: 0;
        line-height: 1.6;
    }

/* ============================================================
   7. SCREENSHOTS / GALLERY SECTION
============================================================ */
.pp-gallery {
    width: 100%;
    padding: 100px 0;
    background: var(--ghost);
    direction: rtl;
    overflow: hidden;
}

.pp-gallery__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
}

.pp-gallery__header {
    text-align: center;
    margin-bottom: 56px;
}

    .pp-gallery__header .pp-section-h2 {
        margin: 12px auto 0;
    }

/* Bento grid */
.pp-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.pp-bento__item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--navy-2);
    box-shadow: 0 8px 24px rgba(11,57,84,.10);
    transition: transform .4s var(--ease-spring), box-shadow .4s ease;
}

    .pp-bento__item:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 24px 48px rgba(11,57,84,.18);
    }

.pp-bento__item--a {
    grid-column: span 7;
    aspect-ratio: 16/9;
}

.pp-bento__item--b {
    grid-column: span 5;
    aspect-ratio: 4/3;
}

.pp-bento__item--c {
    grid-column: span 4;
    aspect-ratio: 4/3;
}

.pp-bento__item--d {
    grid-column: span 4;
    aspect-ratio: 4/3;
}

.pp-bento__item--e {
    grid-column: span 4;
    aspect-ratio: 4/3;
}

.pp-bento__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.pp-bento__item:hover img {
    transform: scale(1.04);
}

/* Placeholder when no image */
.pp-bento__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0E2F44 0%, #1a4d6b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 200px;
}

    .pp-bento__placeholder svg {
        width: 40px;
        height: 40px;
        stroke: rgba(255,255,255,.25);
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .pp-bento__placeholder span {
        font-size: 13px;
        color: rgba(255,255,255,.30);
        direction: rtl;
    }

/* Label overlay on bento */
.pp-bento__label {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(7,30,43,.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.90);
    direction: rtl;
    border: 1px solid rgba(255,255,255,.10);
}

/* ============================================================
   8. WHY CHOOSE — Horizontal scroll pills
============================================================ */
.pp-why {
    width: 100%;
    padding: 100px 0;
    background: #fff;
    direction: rtl;
    overflow: hidden;
}

.pp-why__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
}

.pp-why__header {
    text-align: center;
    margin-bottom: 60px;
}

.pp-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.pp-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    direction: rtl;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease, transform .3s var(--ease-spring);
}

    .pp-why-item:hover {
        border-color: var(--border);
        background: var(--ghost);
        transform: translateX(-4px);
    }

.pp-why-item__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--navy-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

    .pp-why-item__icon::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 6px;
        right: 6px;
        height: 3px;
        background: var(--why-color, var(--red));
        border-radius: 1px;
        opacity: .6;
    }

    .pp-why-item__icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--why-color, var(--red));
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.pp-why-item__text h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 8px;
    direction: rtl;
}

.pp-why-item__text p {
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.8;
    direction: rtl;
    margin: 0;
}

/* Color variants */
.pp-why-item:nth-child(1) {
    --why-color: var(--red);
}

.pp-why-item:nth-child(2) {
    --why-color: #087E8B;
}

.pp-why-item:nth-child(3) {
    --why-color: #D4860A;
}

.pp-why-item:nth-child(4) {
    --why-color: #2980B9;
}

.pp-why-item:nth-child(5) {
    --why-color: #7B52AB;
}

.pp-why-item:nth-child(6) {
    --why-color: #1A8C5B;
}

/* ============================================================
   9. CTA BANNER
============================================================ */
.pp-cta {
    width: 100%;
    background: var(--navy-2);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .pp-cta::before {
        content: '';
        position: absolute;
        top: -150px;
        left: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200,29,37,.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .pp-cta::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(11,57,84,.30) 0%, transparent 70%);
        pointer-events: none;
    }

.pp-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 72px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pp-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 22px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(200,29,37,.12);
    border: 1px solid rgba(200,29,37,.22);
}

.pp-cta h2 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1px;
    margin: 0 0 16px;
    direction: rtl;
}

    .pp-cta h2 em {
        font-style: normal;
        color: var(--red);
    }

.pp-cta p {
    font-size: 17px;
    color: rgba(255,255,255,.55);
    line-height: 2;
    margin: 0 0 44px;
    direction: rtl;
}

.pp-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

    .pp-cta__actions .pp-btn-ghost {
        padding: 16px 42px;
        font-size: 15px;
    }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .pp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pp-hero__img-panel {
        height: 50vw;
        min-height: 300px;
    }

    .pp-hero__content {
        padding: 64px 40px;
    }

    .pp-hero__h1 {
        font-size: 46px;
    }

    .pp-hero__img-badge {
        bottom: 20px;
        right: 20px;
    }

    .pp-stats__inner {
        grid-template-columns: repeat(2,1fr);
        padding: 0 40px;
    }

    .pp-intro__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 40px;
    }

    .pp-intro__image-frame {
        order: -1;
    }

    .pp-modules__inner {
        padding: 0 40px;
    }

    .pp-modules__grid {
        grid-template-columns: repeat(2,1fr);
    }

    .pp-mod-card--tall {
        grid-row: auto;
    }

    .pp-showcase__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }

    .pp-gallery__inner {
        padding: 0 40px;
    }

    .pp-bento__item--a {
        grid-column: span 12;
    }

    .pp-bento__item--b {
        grid-column: span 12;
    }

    .pp-bento__item--c, .pp-bento__item--d, .pp-bento__item--e {
        grid-column: span 4;
    }

    .pp-why__inner {
        padding: 0 40px;
    }

    .pp-cta__inner {
        padding: 0 40px;
    }

    .pp-cta h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .pp-hero__h1 {
        font-size: 34px;
    }

    .pp-hero__content {
        padding: 52px 24px;
        text-align: center;
    }

    .pp-hero__eyebrow {
        justify-content: center;
    }

    .pp-hero__desc {
        max-width: 100%;
    }

    .pp-hero__actions {
        justify-content: center;
        flex-direction: column;
    }

    .pp-btn-primary, .pp-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .pp-hero__tags {
        justify-content: center;
    }

    .pp-stats__inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 24px;
    }

    .pp-stat-item {
        padding: 20px 18px;
    }

    .pp-stat__number {
        font-size: 28px;
    }

    .pp-intro__inner {
        padding: 0 24px;
        gap: 36px;
    }

    .pp-section-h2 {
        font-size: 28px;
    }

    .pp-intro__float-card {
        left: 0;
        min-width: auto;
    }

    .pp-modules__inner {
        padding: 0 24px;
    }

    .pp-modules__grid {
        grid-template-columns: 1fr;
    }

    .pp-showcase__inner {
        padding: 52px 24px;
    }

    .pp-feat-pills {
        grid-template-columns: 1fr;
    }

    .pp-gallery__inner {
        padding: 0 24px;
    }

    .pp-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pp-bento__item--a, .pp-bento__item--b,
    .pp-bento__item--c, .pp-bento__item--d, .pp-bento__item--e {
        grid-column: span 1;
    }

    .pp-why__inner {
        padding: 0 24px;
    }

    .pp-why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pp-why-item {
        padding: 20px 16px;
    }

    .pp-cta__inner {
        padding: 0 24px;
    }

    .pp-cta h2 {
        font-size: 28px;
    }

    .pp-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}



