﻿/* =========================================
   WILLSFLY – PRODUCTECOSYSTEMS.CSS (FINAL)
========================================= */
/* ---------- HERO ---------- */
.wf-pe-hero {
    position: relative;
    z-index: 2;
    padding: 54px 0 24px;
    overflow: clip;
}

.wf-pe-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.wf-pe-orb,
.wf-pe-grid,
.wf-pe-noise {
    position: absolute;
    pointer-events: none;
}

.wf-pe-orb {
    border-radius: 999px;
    filter: blur(90px);
}

.wf-pe-orb-1 {
    width: 340px;
    height: 340px;
    left: -90px;
    top: 52px;
    background: rgba(196, 135, 54, 0.16);
}

.wf-pe-orb-2 {
    width: 300px;
    height: 300px;
    right: 6%;
    top: 34px;
    background: rgba(77, 115, 255, 0.13);
}

.wf-pe-orb-3 {
    width: 240px;
    height: 240px;
    right: -30px;
    bottom: 10%;
    background: rgba(154, 205, 196, 0.07);
}

.wf-pe-grid {
    inset: 0;
    opacity: 0.10;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 34%, transparent 92%);
}

.wf-pe-noise {
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.55px, transparent 0.55px);
    background-size: 8px 8px;
    mix-blend-mode: soft-light;
}

.wf-pe-copy {
    max-width: none !important;
    padding-right: 12px;
    padding-top: 6px;
}

.wf-pe-kicker-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.wf-pe-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wf-primary);
    background: rgba(196, 135, 54, 0.08);
    border: 1px solid rgba(196, 135, 54, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wf-pe-kicker-line {
    width: 68px;
    height: 1px;
    background: linear-gradient(90deg, rgba(196, 135, 54, 0.50), transparent);
}

.wf-pe-title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 4.15vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
    color: var(--wf-text);
}

.wf-pe-subtitle {
    margin: 22px 0 0;
    color: var(--wf-text-soft);
    font-size: 1rem;
    line-height: 1.88;
    max-width: 94%;
}

.wf-pe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.wf-pe-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.wf-pe-trust-card {
    position: relative;
    overflow: hidden;
    min-height: 122px;
    padding: 16px 16px 16px 15px;
    border-radius: 22px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(24, 28, 39, 0.78) 0%, rgba(12, 15, 24, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.42s cubic-bezier(.22,1,.36,1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

    .wf-pe-trust-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 14% 16%, rgba(255,255,255,0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.02), transparent 56%);
        pointer-events: none;
    }

    .wf-pe-trust-card:hover {
        transform: translateY(-6px);
        border-color: rgba(196, 135, 54, 0.18);
        box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(196, 135, 54, 0.04), inset 0 1px 0 rgba(255,255,255,0.05);
    }

.wf-pe-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--wf-primary);
    background: linear-gradient(145deg, rgba(196,135,54,0.16), rgba(255,255,255,0.03));
    border: 1px solid rgba(196,135,54,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 18px rgba(0,0,0,0.18);
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
}

.wf-pe-trust-card:hover .wf-pe-trust-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 24px rgba(0,0,0,0.22);
}

.wf-pe-trust-content {
    min-width: 0;
}

    .wf-pe-trust-content h4 {
        margin: 1px 0 6px;
        font-family: 'Manrope', sans-serif;
        font-size: 0.98rem;
        line-height: 1.35;
        color: var(--wf-text);
    }

    .wf-pe-trust-content p {
        margin: 0;
        color: var(--wf-text-soft);
        font-size: 0.885rem;
        line-height: 1.68;
    }

@media (max-width: 1199.98px) {
    .wf-pe-trust-grid {
        grid-template-columns: 1fr;
    }

    .wf-pe-trust-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .wf-pe-trust-grid {
        gap: 12px;
    }

    .wf-pe-trust-card {
        padding: 15px;
        border-radius: 20px;
    }

    .wf-pe-trust-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }
}

.wf-pe-left-band {
    margin-top: 30px;
}

.wf-pe-side-stack {
    display: grid;
    gap: 18px;
}

/* ---------- SHARED CARDS ---------- */

.wf-pe-panel,
.wf-pe-card,
.wf-pe-mini-card,
.wf-pe-story-card,
.wf-pe-arch-card,
.wf-pe-ai-feature,
.wf-pe-ai-card,
.wf-pe-integration-panel,
.wf-pe-region-card,
.wf-pe-value-card,
.wf-pe-final-cta,
.wf-pe-ai-support-card,
.wf-pe-integration-support-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(24, 28, 39, 0.82) 0%, rgba(12, 15, 24, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.48s cubic-bezier(.22, 1, .36, 1), border-color 0.38s ease, box-shadow 0.38s ease, background 0.38s ease;
    will-change: transform;
}

    .wf-pe-panel::before,
    .wf-pe-card::before,
    .wf-pe-mini-card::before,
    .wf-pe-story-card::before,
    .wf-pe-arch-card::before,
    .wf-pe-ai-feature::before,
    .wf-pe-ai-card::before,
    .wf-pe-integration-panel::before,
    .wf-pe-region-card::before,
    .wf-pe-value-card::before,
    .wf-pe-final-cta::before,
    .wf-pe-ai-support-card::before,
    .wf-pe-integration-support-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.06), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%);
        pointer-events: none;
    }

    .wf-pe-panel:hover,
    .wf-pe-card:hover,
    .wf-pe-mini-card:hover,
    .wf-pe-story-card:hover,
    .wf-pe-arch-card:hover,
    .wf-pe-ai-feature:hover,
    .wf-pe-ai-card:hover,
    .wf-pe-integration-panel:hover,
    .wf-pe-region-card:hover,
    .wf-pe-value-card:hover,
    .wf-pe-final-cta:hover,
    .wf-pe-ai-support-card:hover,
    .wf-pe-integration-support-card:hover {
        transform: translateY(-7px);
        border-color: rgba(196, 135, 54, 0.18);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(196, 135, 54, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

/* ---------- HERO RIGHT ---------- */

.wf-pe-panel-primary {
    padding: 28px;
}

.wf-pe-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.wf-pe-panel-badge,
.wf-pe-panel-status {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wf-pe-panel-badge {
    color: var(--wf-primary);
    background: rgba(196, 135, 54, 0.08);
    border: 1px solid rgba(196, 135, 54, 0.16);
}

.wf-pe-panel-status {
    color: #b8dfd8;
    background: rgba(154, 205, 196, 0.08);
    border: 1px solid rgba(154, 205, 196, 0.16);
}

.wf-pe-panel-primary h3 {
    margin: 0 0 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.46rem;
    line-height: 1.18;
    letter-spacing: -0.04em;
    color: var(--wf-text);
}

.wf-pe-panel-primary p {
    margin: 0;
    color: var(--wf-text-soft);
    line-height: 1.82;
}

/* ---------- HERO MINI CARDS ---------- */

.wf-pe-mini-card {
    padding: 18px;
    min-height: 128px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.wf-pe-mini-card-wide {
    min-height: 136px;
}

.wf-pe-mini-icon,
.wf-pe-card-icon,
.wf-pe-story-icon,
.wf-pe-arch-icon,
.wf-pe-ai-icon,
.wf-pe-region-icon,
.wf-pe-value-icon,
.wf-pe-ai-support-icon,
.wf-pe-integration-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(196, 135, 54, 0.16), rgba(255, 255, 255, 0.03));
    color: var(--wf-primary);
    border: 1px solid rgba(196, 135, 54, 0.16);
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.38s cubic-bezier(.22, 1, .36, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.wf-pe-mini-card:hover .wf-pe-mini-icon,
.wf-pe-card:hover .wf-pe-card-icon,
.wf-pe-story-card:hover .wf-pe-story-icon,
.wf-pe-arch-card:hover .wf-pe-arch-icon,
.wf-pe-ai-card:hover .wf-pe-ai-icon,
.wf-pe-region-card:hover .wf-pe-region-icon,
.wf-pe-value-card:hover .wf-pe-value-icon,
.wf-pe-ai-support-card:hover .wf-pe-ai-support-icon,
.wf-pe-integration-support-card:hover .wf-pe-integration-support-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(196, 135, 54, 0.06);
}

.wf-pe-mini-card h4,
.wf-pe-card h4,
.wf-pe-arch-card h4,
.wf-pe-ai-card h4,
.wf-pe-value-card h4,
.wf-pe-ai-support-card h4,
.wf-pe-integration-support-card h4 {
    margin: 2px 0 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--wf-text);
}

.wf-pe-mini-card p,
.wf-pe-card p,
.wf-pe-arch-card p,
.wf-pe-ai-card p,
.wf-pe-value-card p,
.wf-pe-ai-support-card p,
.wf-pe-integration-support-card p {
    margin: 0;
    color: var(--wf-text-soft);
    line-height: 1.72;
    font-size: 0.93rem;
}

/* ---------- HERO RIGHT TIMELINE ---------- */

.wf-pe-timeline {
    position: relative;
    display: grid;
    gap: 16px;
    padding-left: 34px;
}

.wf-pe-line {
    position: absolute;
    left: 12px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient( 180deg, rgba(196, 135, 54, 0.12) 0%, rgba(196, 135, 54, 0.38) 20%, rgba(77, 115, 255, 0.22) 100% );
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 14px rgba(196, 135, 54, 0.08);
}

.wf-pe-node {
    position: relative;
}

.wf-pe-node-2 {
    margin-left: 16px;
}

.wf-pe-node-3 {
    margin-left: 28px;
}

.wf-pe-node-4 {
    margin-left: 40px;
}

.wf-pe-dot {
    position: absolute;
    left: -31px;
    top: 46px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #d6a760, #c48736);
    box-shadow: 0 0 0 6px rgba(196, 135, 54, 0.10), 0 0 22px rgba(196, 135, 54, 0.20);
    transition: transform 0.38s cubic-bezier(.22, 1, .36, 1), box-shadow 0.38s ease;
    z-index: 3;
}

.wf-pe-node::after {
    content: "";
    position: absolute;
    left: -17px;
    top: 52px;
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, rgba(196, 135, 54, 0.42), rgba(255, 255, 255, 0.06));
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wf-pe-node:hover .wf-pe-dot {
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(196, 135, 54, 0.12), 0 0 28px rgba(196, 135, 54, 0.28);
}

.wf-pe-node:hover::after {
    transform: scaleX(1.08);
    opacity: 1;
}

.wf-pe-card {
    padding: 18px;
    min-height: 144px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.wf-pe-card-wide {
    min-height: 126px;
}

/* ---------- STORY ---------- */

.wf-pe-story,
.wf-pe-architecture,
.wf-pe-ai,
.wf-pe-integration,
.wf-pe-values,
.wf-pe-cta {
    padding-top: 52px;
    padding-bottom: 52px;
}

.wf-pe-story-card {
    height: 100%;
    padding: 30px;
}

.wf-pe-story-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.wf-pe-inline-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wf-primary);
    background: rgba(196, 135, 54, 0.08);
    border: 1px solid rgba(196, 135, 54, 0.14);
}

.wf-pe-story-card h2,
.wf-pe-ai-feature h2,
.wf-pe-integration-copy h2,
.wf-pe-final-cta h2 {
    margin: 0 0 14px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.1rem, 2.8vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: var(--wf-text);
}

.wf-pe-story-card p,
.wf-pe-ai-feature p,
.wf-pe-integration-copy p,
.wf-pe-final-cta p {
    margin: 0;
    color: var(--wf-text-soft);
    line-height: 1.88;
    font-size: 1rem;
}

/* ---------- ARCHITECTURE ---------- */

.wf-pe-arch-card {
    padding: 24px;
    min-height: 100%;
}

    .wf-pe-arch-card h4 {
        margin: 18px 0 10px;
    }

/* ---------- AI FLOW ---------- */

.wf-pe-ai-feature {
    padding: 30px;
    height: 100%;
}

.wf-pe-ai-support {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.wf-pe-ai-support-card {
    padding: 16px 18px;
    border-radius: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.wf-pe-ai-flow {
    position: relative;
    display: grid;
    gap: 16px;
    padding-left: 30px;
}

.wf-pe-ai-line {
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(196, 135, 54, 0.34), rgba(77, 115, 255, 0.16));
}

.wf-pe-ai-node {
    position: relative;
}

.wf-pe-ai-dot {
    position: absolute;
    left: -24px;
    top: 36px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--wf-primary);
    box-shadow: 0 0 0 5px rgba(196, 135, 54, 0.10);
}

.wf-pe-ai-card {
    padding: 22px;
    min-height: 126px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* ---------- INTEGRATION ---------- */

.wf-pe-integration-panel {
    padding: 32px;
}

.wf-pe-integration-support {
    margin-top: 24px;
}

.wf-pe-integration-support-card {
    padding: 16px 18px;
    border-radius: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.wf-pe-region-grid {
    display: grid;
    gap: 16px;
}

.wf-pe-region-card {
    padding: 22px;
    min-height: 116px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .wf-pe-region-card small {
        display: block;
        margin-bottom: 6px;
        color: var(--wf-text-faint);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-weight: 700;
    }

    .wf-pe-region-card strong {
        color: var(--wf-text);
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
    }

/* ---------- VALUES ---------- */

.wf-pe-value-card {
    padding: 24px;
    min-height: 190px;
}

/* ---------- CTA ---------- */

.wf-pe-final-cta {
    padding: 32px;
}

/* ---------- FALLBACK ---------- */

@supports not (backdrop-filter: blur(16px)) {
    .wf-pe-panel,
    .wf-pe-card,
    .wf-pe-mini-card,
    .wf-pe-story-card,
    .wf-pe-arch-card,
    .wf-pe-ai-feature,
    .wf-pe-ai-card,
    .wf-pe-integration-panel,
    .wf-pe-region-card,
    .wf-pe-value-card,
    .wf-pe-final-cta,
    .wf-pe-ai-support-card,
    .wf-pe-integration-support-card {
        background: rgba(18, 22, 32, 0.95);
    }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1199.98px) {
    .wf-pe-hero {
        padding: 74px 0 22px;
    }

    .wf-pe-subtitle {
        max-width: 100%;
    }

    .wf-pe-node-2,
    .wf-pe-node-3,
    .wf-pe-node-4 {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .wf-pe-hero {
        padding: 66px 0 18px;
    }

    .wf-pe-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
        line-height: 1;
    }

    .wf-pe-actions,
    .wf-pe-trust,
    .wf-final-cta-actions {
        flex-direction: column;
    }

    .wf-pe-trust-chip {
        width: 100%;
        justify-content: center;
    }

    .wf-pe-panel-primary,
    .wf-pe-card,
    .wf-pe-mini-card,
    .wf-pe-story-card,
    .wf-pe-arch-card,
    .wf-pe-ai-feature,
    .wf-pe-ai-card,
    .wf-pe-integration-panel,
    .wf-pe-region-card,
    .wf-pe-value-card,
    .wf-pe-final-cta,
    .wf-pe-ai-support-card,
    .wf-pe-integration-support-card {
        padding: 22px;
    }

        .wf-pe-story-card h2,
        .wf-pe-ai-feature h2,
        .wf-pe-integration-copy h2,
        .wf-pe-final-cta h2 {
            font-size: clamp(1.8rem, 9vw, 2.4rem);
        }

    .wf-pe-ai-flow,
    .wf-pe-timeline {
        padding-left: 24px;
    }

    .wf-pe-ai-dot,
    .wf-pe-dot {
        left: -18px;
    }

    .wf-pe-line {
        left: 10px;
    }

    .wf-pe-node::after {
        left: -12px;
        width: 16px;
    }

    .wf-pe-card,
    .wf-pe-card-wide {
        min-height: auto;
    }

    .wf-pe-ai-support-card,
    .wf-pe-integration-support-card {
        padding: 16px;
    }
}

/* =========================================================
   PRODUCT PORTFOLIO SECTION
========================================================= */

.wf-pe-products {
    position: relative;
}

.wf-pe-products-intro {
    max-width: 920px;
    margin: 14px auto 0;
    color: var(--wf-text-soft);
    line-height: 1.9;
    font-size: 1rem;
}

.wf-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(24, 28, 39, 0.82) 0%, rgba(12, 15, 24, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    height: 100%;
    transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

    .wf-product-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 14% 16%, rgba(255,255,255,0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.02), transparent 56%);
        pointer-events: none;
    }

    .wf-product-card:hover {
        transform: translateY(-7px);
        border-color: rgba(196, 135, 54, 0.18);
        box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(196, 135, 54, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

.wf-product-card-glow {
    position: absolute;
    inset: auto auto -34% -8%;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    filter: blur(56px);
    opacity: 0.14;
    background: rgba(196, 135, 54, 0.34);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
}

.wf-product-card:hover .wf-product-card-glow {
    opacity: 0.24;
    transform: scale(1.08);
}

.wf-product-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.wf-product-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wf-primary);
    background: linear-gradient(145deg, rgba(196,135,54,0.16), rgba(255,255,255,0.03));
    border: 1px solid rgba(196,135,54,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 22px rgba(0,0,0,0.18);
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wf-product-card:hover .wf-product-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 28px rgba(0,0,0,0.24), 0 0 0 1px rgba(196,135,54,0.06);
}

.wf-product-icon-health {
    color: #bb8cff;
    background: linear-gradient(145deg, rgba(187,140,255,0.16), rgba(255,255,255,0.03));
    border-color: rgba(187,140,255,0.18);
}

.wf-product-icon-transit {
    color: #e2b06d;
    background: linear-gradient(145deg, rgba(226,176,109,0.16), rgba(255,255,255,0.03));
    border-color: rgba(226,176,109,0.18);
}

.wf-product-icon-workflow {
    color: #e0ae63;
    background: linear-gradient(145deg, rgba(224,174,99,0.16), rgba(255,255,255,0.03));
    border-color: rgba(224,174,99,0.18);
}

.wf-product-icon-analytics {
    color: #d8ae79;
    background: linear-gradient(145deg, rgba(216,174,121,0.16), rgba(255,255,255,0.03));
    border-color: rgba(216,174,121,0.18);
}

.wf-product-head-meta {
    flex: 1;
}

.wf-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wf-primary);
    background: rgba(196, 135, 54, 0.08);
    border: 1px solid rgba(196, 135, 54, 0.14);
    margin-bottom: 10px;
}

.wf-product-head h3 {
    margin: 0 0 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--wf-text);
}

.wf-product-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--wf-text-faint);
    font-size: 0.82rem;
    font-weight: 700;
}

.wf-dot-separator {
    opacity: 0.65;
}

.wf-product-desc {
    margin: 0 0 18px;
    color: var(--wf-text-soft);
    line-height: 1.88;
    font-size: 1rem;
}

.wf-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.wf-product-panel,
.wf-product-footer-card,
.wf-product-subpanel {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 18px;
}

    .wf-product-panel h5,
    .wf-product-footer-card h5,
    .wf-product-subpanel h6,
    .wf-product-detail-row h6 {
        margin: 0 0 10px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        color: var(--wf-text);
    }

    .wf-product-panel ul,
    .wf-product-footer-card ul,
    .wf-product-subpanel ul {
        margin: 0;
        padding-left: 18px;
        color: var(--wf-text-soft);
        line-height: 1.9;
        font-size: 0.93rem;
    }

.wf-product-details {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 16px;
    overflow: hidden;
}

.wf-product-detail-row {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .wf-product-detail-row:last-child {
        border-bottom: 0;
    }

    .wf-product-detail-row p {
        margin: 0;
        color: var(--wf-text-soft);
        line-height: 1.82;
        font-size: 0.93rem;
    }

.wf-product-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 14px;
    margin-bottom: 16px;
}

.wf-product-footer-card p {
    margin: 0 0 14px;
    color: var(--wf-text-soft);
    line-height: 1.82;
    font-size: 0.93rem;
}

.wf-product-footer-card-wide {
    min-height: 100%;
}

.wf-product-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
}

.wf-product-subpanel ul {
    margin-bottom: 0;
}

.wf-product-impact {
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--wf-text-soft);
    background: linear-gradient(180deg, rgba(196,135,54,0.055) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(196,135,54,0.10);
    line-height: 1.8;
    font-size: 0.92rem;
}

    .wf-product-impact strong {
        color: var(--wf-text);
    }

@media (max-width: 1199.98px) {
    .wf-product-grid,
    .wf-product-footer-grid,
    .wf-product-subgrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .wf-product-card {
        padding: 22px;
        border-radius: 24px;
    }

    .wf-product-head {
        flex-direction: column;
    }

        .wf-product-head h3 {
            font-size: 1.7rem;
        }

    .wf-product-panel,
    .wf-product-footer-card,
    .wf-product-subpanel,
    .wf-product-detail-row {
        padding: 16px;
    }
}

.wf-product-icon-workos {
    color: #f0bf45;
    background: linear-gradient(145deg, rgba(240,191,69,0.16), rgba(255,255,255,0.03));
    border-color: rgba(240,191,69,0.18);
}

.wf-product-icon-mobility {
    color: #6fe0d3;
    background: linear-gradient(145deg, rgba(111,224,211,0.16), rgba(255,255,255,0.03));
    border-color: rgba(111,224,211,0.18);
}


/* =========================================
   PRODUCT PORTFOLIO HEADING FIX
========================================= */

.wf-pe-products-heading {
    max-width: 1320px;
    margin: 0 auto 28px;
}

    .wf-pe-products-heading h2 {
        text-align: center;
        max-width: 1180px;
        margin-left: auto;
        margin-right: auto;
    }

.wf-pe-products-heading-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: start;
    text-align: left;
}

.wf-pe-products-heading-left,
.wf-pe-products-heading-right {
    border-radius: 22px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.018) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .wf-pe-products-heading-left h4 {
        margin: 0 0 8px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        color: var(--wf-text);
    }

    .wf-pe-products-heading-left p,
    .wf-pe-products-heading-right p {
        margin: 0;
        color: var(--wf-text-soft);
        line-height: 1.82;
        font-size: 0.96rem;
    }

/* =========================================
   PRODUCT ECOSYSTEM HERO FIX
========================================= */

.wf-pe-hero-copy {
    max-width: none !important;
    padding-right: 12px;
    padding-top: 6px;
}

.wf-pe-hero-title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 4.15vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
    color: var(--wf-text);
}

.wf-pe-hero-subtitle {
    margin: 22px 0 0;
    color: var(--wf-text-soft);
    font-size: 1rem;
    line-height: 1.88;
    max-width: 95%;
}

.wf-pe-hero-left-band {
    margin-top: 30px;
}

.wf-pe-hero-mini-card,
.wf-pe-side-panel,
.wf-pe-side-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(24, 28, 39, 0.82) 0%, rgba(12, 15, 24, 0.94) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.48s cubic-bezier(.22,1,.36,1), border-color 0.38s ease, box-shadow 0.38s ease;
}

    .wf-pe-hero-mini-card::before,
    .wf-pe-side-panel::before,
    .wf-pe-side-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 14% 16%, rgba(255,255,255,0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.02), transparent 55%);
        pointer-events: none;
    }

    .wf-pe-hero-mini-card:hover,
    .wf-pe-side-panel:hover,
    .wf-pe-side-card:hover {
        transform: translateY(-7px);
        border-color: rgba(196, 135, 54, 0.18);
        box-shadow: 0 22px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(196, 135, 54, 0.04), inset 0 1px 0 rgba(255,255,255,0.05);
    }

.wf-pe-hero-mini-card {
    padding: 18px;
    min-height: 128px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.wf-pe-hero-mini-card-wide {
    min-height: 136px;
}

.wf-pe-hero-mini-icon,
.wf-pe-side-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(196,135,54,0.16), rgba(255,255,255,0.03));
    color: var(--wf-primary);
    border: 1px solid rgba(196,135,54,0.16);
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 20px rgba(0,0,0,0.18);
    transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease;
}

.wf-pe-hero-mini-card:hover .wf-pe-hero-mini-icon,
.wf-pe-side-card:hover .wf-pe-side-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 26px rgba(0,0,0,0.24);
}

.wf-pe-hero-mini-card h4 {
    margin: 2px 0 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--wf-text);
}

.wf-pe-hero-mini-card p {
    margin: 0;
    color: var(--wf-text-soft);
    line-height: 1.72;
    font-size: 0.93rem;
}

/* right panel */

.wf-pe-side-stack {
    display: grid;
    gap: 18px;
}

.wf-pe-side-panel {
    padding: 28px;
}

.wf-pe-side-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.wf-pe-side-badge,
.wf-pe-side-status {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wf-pe-side-badge {
    color: var(--wf-primary);
    background: rgba(196,135,54,0.08);
    border: 1px solid rgba(196,135,54,0.16);
}

.wf-pe-side-status {
    color: #b8dfd8;
    background: rgba(154,205,196,0.08);
    border: 1px solid rgba(154,205,196,0.16);
}

.wf-pe-side-panel h3 {
    margin: 0 0 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.42rem;
    line-height: 1.18;
    letter-spacing: -0.04em;
    color: var(--wf-text);
}

.wf-pe-side-panel p {
    margin: 0;
    color: var(--wf-text-soft);
    line-height: 1.82;
}

/* timeline */

.wf-pe-timeline {
    position: relative;
    display: grid;
    gap: 16px;
    padding-left: 34px;
}

.wf-pe-line {
    position: absolute;
    left: 12px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient( 180deg, rgba(196,135,54,0.12) 0%, rgba(196,135,54,0.38) 20%, rgba(77,115,255,0.22) 100% );
    box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 0 14px rgba(196,135,54,0.08);
}

.wf-pe-node {
    position: relative;
}

.wf-pe-dot {
    position: absolute;
    left: -31px;
    top: 40px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #d6a760, #c48736);
    box-shadow: 0 0 0 6px rgba(196,135,54,0.10), 0 0 22px rgba(196,135,54,0.20);
    transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease;
    z-index: 3;
}

.wf-pe-node::after {
    content: "";
    position: absolute;
    left: -17px;
    top: 46px;
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, rgba(196,135,54,0.42), rgba(255,255,255,0.06));
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wf-pe-node:hover .wf-pe-dot {
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(196,135,54,0.12), 0 0 28px rgba(196,135,54,0.28);
}

.wf-pe-node:hover::after {
    transform: scaleX(1.08);
}

.wf-pe-side-card {
    padding: 18px;
    min-height: 116px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .wf-pe-side-card h4 {
        margin: 2px 0 6px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        color: var(--wf-text);
    }

    .wf-pe-side-card p {
        margin: 0;
        color: var(--wf-text-soft);
        line-height: 1.72;
        font-size: 0.93rem;
    }

/* responsive */

@media (max-width: 1199.98px) {
    .wf-pe-products-heading-row {
        grid-template-columns: 1fr;
    }

    .wf-pe-hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .wf-pe-hero-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
        line-height: 1;
    }

    .wf-pe-timeline {
        padding-left: 24px;
    }

    .wf-pe-dot {
        left: -18px;
    }

    .wf-pe-line {
        left: 10px;
    }

    .wf-pe-node::after {
        left: -12px;
        width: 16px;
    }
}

.wf-pe-shell {
    position: relative;
    z-index: 2;
}

.wf-pe-shell-wide {
    padding-left: clamp(18px, 2vw, 32px);
    padding-right: clamp(18px, 2vw, 32px);
}

/* =========================================================
   FINAL — PRODUCT ECOSYSTEMS PRODUCT HEADING ALIGNMENT
========================================================= */

.wf-pe-products-heading {
    width: 100%;
    max-width: 1320px !important;
    margin: 0 auto 34px !important;
    text-align: center !important;
}

    .wf-pe-products-heading > .wf-section-kicker {
        display: inline-flex !important;
        margin: 0 auto 18px !important;
    }

    .wf-pe-products-heading h2 {
        max-width: 980px !important;
        margin: 0 auto 24px !important;
        text-align: center !important;
        text-wrap: balance;
    }

.wf-pe-products-heading-row {
    max-width: 1120px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
    gap: 22px !important;
    align-items: stretch !important;
    text-align: left !important;
}

.wf-pe-products-heading-left,
.wf-pe-products-heading-right {
    padding: 18px 20px !important;
    border-radius: 22px !important;
    min-height: 118px !important;
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

    .wf-pe-products-heading-left:hover,
    .wf-pe-products-heading-right:hover {
        transform: translateY(-4px);
        border-color: rgba(196,135,54,.20);
        box-shadow: 0 18px 40px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.06);
    }

    .wf-pe-products-heading-left h4 {
        margin: 0 0 8px !important;
    }

    .wf-pe-products-heading-left p,
    .wf-pe-products-heading-right p {
        margin: 0 !important;
        line-height: 1.74 !important;
    }

@media (max-width: 991.98px) {
    .wf-pe-products-heading-row {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .wf-pe-products-heading h2 {
        max-width: 100% !important;
    }
}