.pm-hero {
    min-height: 78vh;
    background: linear-gradient(160deg, #0C1F3F 0%, #1340A5 35%, var(--b2e-primary) 65%, #0F2B5B 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.pm-hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -12%;
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(6,182,212,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pm-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pm-hero-content {
    position: relative;
    z-index: 2;
}

.pm-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--b2e-white);
    margin-bottom: 22px;
    line-height: 1.25;
}

.pm-hero .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.95;
}

.pm-hero-visual {
    position: relative;
    z-index: 2;
}

/* Animated gauge graphic in hero */
.pm-hero-gauge {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--b2e-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.pm-gauge-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pm-gauge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .pm-gauge-dot:nth-child(1) { background: #FF6B6B; }
    .pm-gauge-dot:nth-child(2) { background: #FFD93D; }
    .pm-gauge-dot:nth-child(3) { background: #6BCB77; }

.pm-gauge-body {
    padding: 28px;
}

.pm-gauge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pm-gauge-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--b2e-radius-sm);
    padding: 18px 16px;
}

.pm-gauge-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pm-gauge-card .card-label {
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.pm-gauge-card .card-value {
    color: var(--b2e-white);
    font-size: 1.15rem;
    font-weight: 700;
}

.pm-gauge-bar-wrap {
    margin-top: 8px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.pm-gauge-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--b2e-accent), var(--b2e-primary));
}

/* Overview */
.pm-overview-bg {
    background: var(--b2e-white);
}

.pm-overview-text {
    font-size: 1.08rem;
    color: var(--b2e-gray-700);
    line-height: 2;
    max-width: 840px;
    margin: 0 auto 48px;
}

/* How it works — stepped process */
.pm-process-bg {
    background: var(--b2e-gray-50);
}

.pm-step {
    position: relative;
    padding: 32px 28px;
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    height: 100%;
    transition: var(--b2e-transition);
    overflow: hidden;
}

    .pm-step::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--b2e-primary), var(--b2e-accent));
        opacity: 0;
        transition: var(--b2e-transition);
    }

    .pm-step:hover {
        border-color: transparent;
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
    }

        .pm-step:hover::before {
            opacity: 1;
        }

.pm-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--b2e-primary);
    color: var(--b2e-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.pm-step h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pm-step p {
    font-size: 0.94rem;
    color: var(--b2e-gray-500);
    line-height: 1.75;
    margin-bottom: 0;
}

/* Advantages section */
.pm-advantages-bg {
    background: var(--b2e-white);
}

.pm-advantage-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 24px;
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    transition: var(--b2e-transition);
    height: 100%;
}

    .pm-advantage-card:hover {
        border-color: transparent;
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-3px);
    }

.pm-advantage-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--b2e-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.pm-advantage-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.pm-advantage-card p {
    color: var(--b2e-gray-500);
    font-size: 0.93rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Features checklist section */
.pm-features-bg {
    background: var(--b2e-gray-900);
    color: var(--b2e-white);
}

    .pm-features-bg .b2e-section-title {
        color: var(--b2e-white);
    }

    .pm-features-bg .b2e-section-subtitle {
        color: var(--b2e-gray-400);
    }

.pm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pm-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--b2e-radius-md);
    padding: 22px 20px;
    transition: var(--b2e-transition);
}

    .pm-feature-item:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-2px);
    }

.pm-feature-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(6,182,212,0.2);
    color: var(--b2e-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}

.pm-feature-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Screenshots gallery */
.pm-gallery-bg {
    background: var(--b2e-gray-50);
}

.pm-screenshot-card {
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    overflow: hidden;
    transition: var(--b2e-transition);
    height: 100%;
}

    .pm-screenshot-card:hover {
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
    }

.pm-screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--b2e-gray-100), var(--b2e-gray-200));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--b2e-gray-400);
    gap: 10px;
    position: relative;
}

    .pm-screenshot-placeholder i {
        font-size: 2.2rem;
    }

    .pm-screenshot-placeholder span {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .pm-screenshot-placeholder .pm-screen-number {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--b2e-primary);
        color: var(--b2e-white);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
    }

.pm-screenshot-caption {
    padding: 20px 24px;
}

    .pm-screenshot-caption h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .pm-screenshot-caption p {
        font-size: 0.88rem;
        color: var(--b2e-gray-500);
        margin-bottom: 0;
        line-height: 1.6;
    }

/* Stat strip */
.pm-stats-strip {
    background: var(--b2e-white);
    border-top: 1px solid var(--b2e-gray-200);
    border-bottom: 1px solid var(--b2e-gray-200);
}

.pm-stat-item {
    text-align: center;
    padding: 36px 16px;
}

.pm-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--b2e-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.pm-stat-label {
    font-size: 0.93rem;
    color: var(--b2e-gray-500);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .pm-hero h1 { font-size: 2.5rem; }
    .pm-hero-visual { margin-top: 48px; }
    .pm-feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .pm-hero { min-height: auto; padding: 120px 0 70px; }
    .pm-hero h1 { font-size: 2rem; }
    .pm-gauge-grid { grid-template-columns: 1fr; }
}