/* WHAT MAKES US DIFFERENT SECTION - SOLIDPRO STYLES */
.solidpro-difference {
    padding: 2rem 0;
    background: linear-gradient(145deg, #ffffff 0%, #f9fafc 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: 'Inter', sans-serif;
}

.solidpro-difference .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* subtle background tech grid */
.solidpro-difference::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(23,71,158,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,71,158,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 30% 30%, black, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* floating accent blobs */
.diff-bg-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,71,158,0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.diff-bubble-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.diff-bubble-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(225,27,34,0.02) 0%, transparent 70%);
}

/* main wrapper */
.diff-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* header styles */
.diff-header {
    max-width: 700px;
}

.diff-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e11b22;
    margin-bottom: 1.5rem;
    border-left: 4px solid #e11b22;
    padding-left: 1rem;
}

.diff-eyebrow i {
    font-size: 1.1rem;
    color: #17479e;
}

.diff-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0b1a33;
}

.diff-title span {
    background: linear-gradient(135deg, #17479e 20%, #1e3b77 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.diff-sub {
    font-size: 1.3rem;
    font-weight: 400;
    color: #1e2b3e;
    margin-top: 1rem;
    border-bottom: 2px solid rgba(23,71,158,0.15);
    padding-bottom: 1.2rem;
    max-width: 600px;
}

/* three pillars grid */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 1rem;
}

.diff-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(23,71,158,0.15);
    border-radius: 2rem;
    padding: 2rem 1.8rem;
    box-shadow: 0 15px 35px -12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.diff-card:hover {
    border-color: rgba(23,71,158,0.3);
    box-shadow: 0 25px 45px -15px rgba(23,71,158,0.15);
    transform: translateY(-6px);
    background: white;
}

.diff-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #ffffff, #f0f4fe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(23,71,158,0.2);
    color: #17479e;
    font-size: 1.8rem;
}

.diff-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1a33;
    margin-bottom: 0.75rem;
}

.diff-card p {
    color: #2c3b4f;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.diff-accent-line {
    width: 40px;
    height: 3px;
    background: #e11b22;
    border-radius: 3px;
    margin-top: 0.5rem;
}

/* production-first expanded block */
.diff-production-block {
    background: #ffffff;
    border-radius: 2.5rem;
    padding: 2.5rem 3rem;
    border: 1px solid rgba(23,71,158,0.15);
    box-shadow: 0 20px 45px -20px rgba(0,32,64,0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    transition: 0.2s;
}

.diff-production-left {
    flex: 2 1 300px;
}

.diff-production-left h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1a33;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.diff-production-left h4 i {
    color: #e11b22;
    font-size: 2rem;
}

.diff-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1e3b77;
    margin-bottom: 1.8rem;
    border-left: 3px solid #17479e;
    padding-left: 1.2rem;
    background: rgba(23,71,158,0.02);
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

.diff-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1e2f40;
}

.diff-list li i {
    color: #17479e;
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.diff-list li strong {
    color: #e11b22;
    font-weight: 600;
    margin-right: 4px;
}

.diff-production-right {
    flex: 1 1 200px;
    background: linear-gradient(145deg, #f0f5ff, #ffffff);
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px dashed #17479e40;
}

.diff-production-right .big-quote {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(145deg, #17479e, #2d4f8a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.diff-production-right small {
    color: #50627b;
    font-size: 0.9rem;
    font-weight: 400;
}

/* text highlight utilities */
.text-highlight-red {
    color: #e11b22;
    font-weight: 600;
}

.text-highlight-blue {
    color: #17479e;
    font-weight: 600;
}

/* RESPONSIVE STYLES */
@media (max-width: 1000px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-production-block {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .diff-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    .diff-title {
        font-size: 2rem;
    }
    
    .solidpro-difference {
        padding: 4rem 0;
    }
    
    .solidpro-difference .container {
        padding: 0 1.5rem;
    }
}


 /* ===== TEAM POD SECTION - COMPLETELY UNIQUE PREFIX 'zp-' ===== */
    .zp-team-pod {
        padding: 4rem 0 0rem;
        background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
        position: relative;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
        isolation: isolate;
    }

    .zp-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 10;
    }

    /* ----- BACKGROUND ELEMENTS ----- */
    .zp-bg-grid {
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(rgba(23,71,158,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(23,71,158,0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
        z-index: 1;
        animation: zp-grid-float 20s linear infinite;
    }

    @keyframes zp-grid-float {
        0% { transform: translate(0, 0); }
        100% { transform: translate(20px, 20px); }
    }

    .zp-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        z-index: 1;
        pointer-events: none;
        animation: zp-blob-pulse 8s infinite alternate;
    }

    .zp-blob-1 {
        width: 400px;
        height: 400px;
        background: rgba(23,71,158,0.05);
        top: -150px;
        right: -50px;
        animation-delay: 0s;
    }

    .zp-blob-2 {
        width: 350px;
        height: 350px;
        background: rgba(225,27,34,0.03);
        bottom: -100px;
        left: -30px;
        animation-delay: 2s;
    }

    .zp-blob-3 {
        width: 300px;
        height: 300px;
        background: rgba(23,71,158,0.04);
        top: 40%;
        left: 20%;
        animation-delay: 4s;
    }

    @keyframes zp-blob-pulse {
        0% { opacity: 0.3; transform: scale(1); }
        100% { opacity: 0.7; transform: scale(1.2); }
    }

    .zp-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: rgba(225,27,34,0.2);
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        animation: zp-particle-float 15s infinite linear;
    }

    .zp-particle-1 { top: 20%; left: 10%; animation-duration: 12s; }
    .zp-particle-2 { top: 70%; right: 15%; animation-duration: 18s; background: rgba(23,71,158,0.2); }
    .zp-particle-3 { bottom: 30%; left: 20%; animation-duration: 14s; }
    .zp-particle-4 { top: 40%; right: 30%; animation-duration: 16s; background: rgba(23,71,158,0.15); }

    @keyframes zp-particle-float {
        0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translate(100px, -100px) rotate(360deg); opacity: 0; }
    }

    /* ----- HEADER ----- */
    .zp-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        z-index: 15;
    }

    .zp-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(23,71,158,0.05);
        padding: 0.6rem 1.8rem;
        border-radius: 40px;
        border: 1px solid rgba(23,71,158,0.15);
        margin-bottom: 1.5rem;
        color: #17479e;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        backdrop-filter: blur(4px);
        animation: zp-badge-pulse 2s infinite;
    }

    @keyframes zp-badge-pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(225,27,34,0.1); }
        50% { box-shadow: 0 0 20px 5px rgba(225,27,34,0.1); }
    }

    .zp-badge i {
        color: #e11b22;
        animation: zp-icon-spin 4s infinite linear;
    }

    @keyframes zp-icon-spin {
        0% { transform: rotate(0deg); }
        25% { transform: rotate(10deg); }
        75% { transform: rotate(-10deg); }
        100% { transform: rotate(0deg); }
    }

    .zp-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #0b1a33;
    }

    .zp-title span:first-child {
        background: linear-gradient(135deg, #1e2b3e, #2c3b4f);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .zp-title-accent {
        background: linear-gradient(135deg, #17479e, #e11b22);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-left: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .zp-title-accent::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #e11b22, #17479e, transparent);
        animation: zp-underline 3s infinite;
    }

    @keyframes zp-underline {
        0% { transform: scaleX(0); opacity: 0; }
        50% { transform: scaleX(1); opacity: 1; }
        100% { transform: scaleX(0); opacity: 0; }
    }

    .zp-subhead {
        font-size: 1.2rem;
        color: #4a5b72;
        max-width: 700px;
        margin: 1rem auto 0;
        padding: 0 1rem;
        line-height: 1.6;
    }

    /* ----- TEAM GRID ----- */
    .zp-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin: 3rem 0;
        position: relative;
        z-index: 20;
    }

    .zp-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* ----- CARDS ----- */
    .zp-card {
        perspective: 1000px;
    }

    .zp-card-inner {
        background: white;
        border: 1px solid rgba(23,71,158,0.1);
        border-radius: 2rem;
        padding: 2rem 1.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
        box-shadow: 0 15px 35px -15px rgba(23,71,158,0.15);
        height: 100%;
        display: flex;
        flex-direction: column;
        animation: zp-card-float 6s infinite ease-in-out;
    }

    .zp-card:nth-child(1) .zp-card-inner { animation-delay: 0s; }
    .zp-card:nth-child(2) .zp-card-inner { animation-delay: 0.2s; }
    .zp-card:nth-child(3) .zp-card-inner { animation-delay: 0.4s; }
    .zp-card:nth-child(4) .zp-card-inner { animation-delay: 0.1s; }
    .zp-card:nth-child(5) .zp-card-inner { animation-delay: 0.3s; }
    .zp-card:nth-child(6) .zp-card-inner { animation-delay: 0.5s; }

    @keyframes zp-card-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    .zp-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #17479e, #e11b22, #17479e);
        background-size: 200% 100%;
        animation: zp-gradient-shift 3s infinite;
    }

    @keyframes zp-gradient-shift {
        0% { background-position: 0% 0; }
        100% { background-position: 200% 0; }
    }

    .zp-card-inner:hover {
        transform: translateY(-12px) scale(1.02);
        border-color: rgba(225,27,34,0.3);
        box-shadow: 0 30px 50px -20px rgba(225,27,34,0.2);
    }

    .zp-card-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: #17479e;
        background: rgba(23,71,158,0.05);
        padding: 0.2rem 0.8rem;
        border-radius: 20px;
        border: 1px solid rgba(23,71,158,0.1);
        text-transform: uppercase;
    }

    .zp-card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(145deg, #f0f5ff, #ffffff);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(23,71,158,0.15);
        color: #e11b22;
        font-size: 2rem;
        transition: all 0.3s ease;
        animation: zp-icon-pulse 3s infinite;
    }

    @keyframes zp-icon-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(225,27,34,0.1); }
    }

    .zp-card-inner:hover .zp-card-icon {
        background: linear-gradient(145deg, #ffffff, #f0f5ff);
        border-color: #e11b22;
        transform: scale(1.1) rotate(5deg);
    }

    .zp-card-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .zp-card-desc {
        font-size: 0.95rem;
        color: #4a5b72;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex: 1;
    }

    .zp-card-footer {
        margin-top: auto;
        border-top: 1px solid rgba(23,71,158,0.1);
        padding-top: 1rem;
    }

    .zp-card-footer span {
        font-size: 0.85rem;
        color: #17479e;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .zp-card-footer i {
        color: #e11b22;
        font-size: 0.9rem;
    }

    /* ----- CONSTELLATION ----- */
    .zp-constellation {
        position: relative;
        margin: 5rem 0 3rem;
        padding: 3rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .zp-dots {
        position: relative;
        width: 100%;
        height: 250px;
        max-width: 600px;
        margin: 0 auto;
    }

    .zp-dot {
        position: absolute;
        width: 50px;
        height: 50px;
        background: white;
        border: 2px solid rgba(23,71,158,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #17479e;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: zp-dot-pulse 2s infinite;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .zp-dot:hover {
        border-color: #e11b22;
        color: #e11b22;
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(225,27,34,0.2);
    }

    .zp-dot-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 90px;
        background: linear-gradient(145deg, #17479e, #1e3b77);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        text-align: center;
        box-shadow: 0 0 40px rgba(23,71,158,0.3);
        animation: zp-center-pulse 3s infinite;
        z-index: 5;
    }

    .zp-dot-center span {
        font-size: 0.65rem;
        font-weight: 600;
        line-height: 1.2;
    }

    @keyframes zp-center-pulse {
        0%, 100% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.05); }
    }

    .zp-dot-1 { top: 0; left: 20%; animation-delay: 0s; }
    .zp-dot-2 { top: 15%; right: 15%; animation-delay: 0.3s; }
    .zp-dot-3 { top: 40%; left: 5%; animation-delay: 0.6s; }
    .zp-dot-4 { bottom: 20%; right: 25%; animation-delay: 0.2s; }
    .zp-dot-5 { bottom: 5%; left: 30%; animation-delay: 0.5s; }
    .zp-dot-6 { bottom: 25%; left: 60%; animation-delay: 0.4s; }

    .zp-lines {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .zp-lines svg {
        width: 100%;
        height: 100%;
    }

    /* Tooltip */
    .zp-dot[data-tooltip] {
        position: relative;
    }

    .zp-dot[data-tooltip]:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        color: #0b1a33;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 1px solid rgba(23,71,158,0.1);
        margin-bottom: 10px;
        animation: zp-tooltip-fade 0.3s ease;
        z-index: 100;
    }

    @keyframes zp-tooltip-fade {
        from { opacity: 0; transform: translateX(-50%) translateY(10px); }
        to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    /* ----- COLLAPSIBLE BANNER (EXACTLY FROM IMAGE) ----- */
    .zp-collapse-banner {
        margin: 3rem 0 2rem;
        background: linear-gradient(135deg, #f0f5ff, #ffffff);
        border: 1px solid rgba(23,71,158,0.2);
        border-radius: 60px;
        padding: 1.2rem 2rem;
        box-shadow: 0 15px 30px -15px rgba(23,71,158,0.2);
        transition: all 0.3s ease;
        animation: zp-banner-glow 3s infinite;
    }

    .zp-collapse-banner:hover {
        transform: scale(1.01);
        border-color: #e11b22;
        box-shadow: 0 20px 40px -15px rgba(225,27,34,0.2);
    }

    @keyframes zp-banner-glow {
        0%, 100% { box-shadow: 0 15px 30px -15px rgba(23,71,158,0.2); }
        50% { box-shadow: 0 20px 40px -10px rgba(225,27,34,0.15); }
    }

    .zp-banner-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .zp-banner-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(145deg, #17479e, #1e3b77);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 5px 15px rgba(23,71,158,0.3);
    }

    .zp-banner-text {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 1.2rem;
        font-weight: 500;
        color: #0b1a33;
    }

    .zp-banner-highlight {
        background: linear-gradient(135deg, #17479e, #e11b22);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

    .zp-banner-separator {
        color: #e11b22;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .zp-banner-badge {
        width: 36px;
        height: 36px;
        background: #e11b22;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        animation: zp-badge-spin 4s infinite;
    }

    @keyframes zp-badge-spin {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(10deg); }
        75% { transform: rotate(-10deg); }
    }

    /* Windows Activation (from image) */
    .zp-windows-activate {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed rgba(23,71,158,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        font-size: 0.9rem;
        color: #4a5b72;
    }

    .zp-windows-activate i {
        color: #17479e;
        font-size: 1.1rem;
    }

    .zp-activate-link {
        color: #e11b22;
        font-weight: 500;
        text-decoration: underline;
        text-decoration-style: dotted;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .zp-activate-link:hover {
        color: #17479e;
        text-decoration-style: solid;
    }

    /* ----- FOOTER (backup) ----- */
    .zp-footer {
        text-align: center;
        margin-top: 3rem;
    }

    .zp-footer-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(145deg, white, #f8faff);
        padding: 0.8rem 2rem;
        border-radius: 50px;
        border: 1px solid rgba(23,71,158,0.15);
        box-shadow: 0 10px 30px -15px rgba(23,71,158,0.2);
        color: #4a5b72;
        font-weight: 500;
        animation: zp-pill-pulse 3s infinite;
    }

    @keyframes zp-pill-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); box-shadow: 0 15px 40px -15px rgba(225,27,34,0.2); }
    }

    .zp-footer-pill i {
        color: #e11b22;
        font-size: 1.2rem;
        animation: zp-check-spin 4s infinite;
    }

    @keyframes zp-check-spin {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(10deg); }
        75% { transform: rotate(-10deg); }
    }

    /* ----- RESPONSIVE ----- */
    @media (max-width: 1000px) {
        .zp-row {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .zp-constellation {
            display: none;
        }
        
        .zp-banner-text {
            font-size: 1rem;
            gap: 0.5rem;
        }
    }

    @media (max-width: 700px) {
        .zp-row {
            grid-template-columns: 1fr;
        }
        
        .zp-team-pod {
            padding: 4rem 0;
        }
        
        .zp-container {
            padding: 0 1.5rem;
        }
        
        .zp-title {
            font-size: 2.2rem;
        }
        
        .zp-card-inner {
            padding: 1.8rem 1.2rem;
        }
        
        .zp-collapse-banner {
            padding: 1rem 1.5rem;
        }
        
        .zp-banner-content {
            flex-direction: column;
            gap: 0.8rem;
            text-align: center;
        }
        
        .zp-windows-activate {
            flex-direction: column;
            gap: 0.3rem;
        }
    }

    /* ===== INDUSTRIES WE SERVE - UNIQUE PREFIX 'zi-' ===== */
    .zi-industries-showcase {
        padding: 4rem 0;
        background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
        position: relative;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
        isolation: isolate;
    }

    .zi-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 10;
    }

    /* ----- BACKGROUND ELEMENTS ----- */
    .zi-bg-grid {
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(rgba(23,71,158,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(23,71,158,0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 1;
        animation: zi-grid-float 25s linear infinite;
    }

    @keyframes zi-grid-float {
        0% { transform: translate(0, 0); }
        100% { transform: translate(25px, 25px); }
    }

    .zi-bg-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
        pointer-events: none;
        animation: zi-orb-pulse 12s infinite alternate;
    }

    .zi-orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(23,71,158,0.06);
        top: -200px;
        right: -100px;
        animation-delay: 0s;
    }

    .zi-orb-2 {
        width: 450px;
        height: 450px;
        background: rgba(225,27,34,0.04);
        bottom: -200px;
        left: -100px;
        animation-delay: 3s;
    }

    .zi-orb-3 {
        width: 350px;
        height: 350px;
        background: rgba(23,71,158,0.05);
        top: 30%;
        left: 10%;
        animation-delay: 6s;
    }

    @keyframes zi-orb-pulse {
        0% { opacity: 0.3; transform: scale(1); }
        100% { opacity: 0.7; transform: scale(1.3); }
    }

    .zi-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: rgba(225,27,34,0.15);
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        animation: zi-particle-float 18s infinite linear;
    }

    .zi-particle-1 { top: 15%; left: 20%; animation-duration: 14s; }
    .zi-particle-2 { top: 70%; right: 25%; animation-duration: 20s; background: rgba(23,71,158,0.15); }
    .zi-particle-3 { bottom: 20%; left: 30%; animation-duration: 16s; }
    .zi-particle-4 { top: 40%; right: 40%; animation-duration: 22s; background: rgba(23,71,158,0.12); }

    @keyframes zi-particle-float {
        0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
        15% { opacity: 0.8; }
        85% { opacity: 0.8; }
        100% { transform: translate(120px, -120px) rotate(360deg); opacity: 0; }
    }

    /* ----- HEADER ----- */
    .zi-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        z-index: 15;
    }

    .zi-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(23,71,158,0.05);
        padding: 0.6rem 1.8rem;
        border-radius: 40px;
        border: 1px solid rgba(23,71,158,0.15);
        margin-bottom: 1.5rem;
        color: #17479e;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        backdrop-filter: blur(4px);
        animation: zi-eyebrow-pulse 2s infinite;
    }

    @keyframes zi-eyebrow-pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(225,27,34,0.1); }
        50% { box-shadow: 0 0 20px 5px rgba(225,27,34,0.1); }
    }

    .zi-eyebrow i {
        color: #e11b22;
    }

    .zi-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #0b1a33;
    }

    .zi-title span:first-child {
        background: linear-gradient(135deg, #1e2b3e, #2c3b4f);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .zi-title-accent {
        background: linear-gradient(135deg, #17479e, #e11b22);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-left: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .zi-title-accent::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, transparent, #e11b22, #17479e, transparent);
        animation: zi-underline 3s infinite;
        border-radius: 2px;
    }

    @keyframes zi-underline {
        0% { transform: scaleX(0); opacity: 0; }
        50% { transform: scaleX(1); opacity: 1; }
        100% { transform: scaleX(0); opacity: 0; }
    }

    .zi-subhead {
        font-size: 1.2rem;
        color: #4a5b72;
        max-width: 600px;
        margin: 1rem auto 0;
        line-height: 1.6;
    }

    /* ----- INDUSTRIES GRID ----- */
    

   

  

   
    .service-table-row {
					border-bottom: 1px solid #e9ecef;
					transition: 0.2s;
				}

				.service-table-row:hover {
					background-color: #f8f9fe;
				}

				.service-table-row td {
					padding: 1rem 0.75rem;
					vertical-align: middle;
				}

				.service-icon-cell {
					width: 50px;
					text-align: center;
					color: #17479e;
				}

				.service-arrow-cell {
					width: 40px;
					text-align: right;
				}

				.service-arrow-cell a {
					color: #17479e;
					font-size: 1.2rem;
					opacity: 0.5;
					transition: 0.2s;
				}

				.service-table-row:hover .service-arrow-cell a {
					opacity: 1;
				}

				.service-title {
					font-weight: 600;
					color: #0b1a33;
				}

				.service-desc {
					color: #4a5b6e;
					font-size: 0.95rem;
				}

				.cta-modern-block {
					background: linear-gradient(135deg, #0f2b4b, #1c3d64);
					border-radius: 3rem;
					padding: 3.5rem 3rem;
					box-shadow: 0 30px 60px -15px rgba(0, 20, 40, 0.4);
					position: relative;
					overflow: hidden;
					border: 1px solid rgba(255, 255, 255, 0.1);
				}

				.cta-modern-block::before {
					content: '';
					position: absolute;
					top: -30%;
					right: -10%;
					width: 50%;
					height: 200%;
					background: radial-gradient(circle, rgba(225, 27, 34, 0.2) 0%, transparent 70%);
					pointer-events: none;
				}

				.cta-modern-title {
					font-size: 2.5rem;
					font-weight: 700;
					color: white;
					line-height: 1.2;
				}

				.cta-modern-sub {
					color: #cbd9f0;
					font-size: 1.2rem;
					max-width: 550px;
				}

				.cta-modern-buttons {
					display: flex;
					gap: 1.2rem;
					justify-content: flex-end;
					flex-wrap: wrap;
				}

				.cta-btn-white {
					background: white;
					color: #0b1f33;
					border-radius: 50px;
					padding: 0.9rem 2.5rem;
					font-weight: 600;
					text-decoration: none;
					display: inline-flex;
					align-items: center;
					gap: 12px;
					transition: 0.2s;
					box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.4);
					border: none;
				}

				.cta-btn-white:hover {
					background: #f0f4fe;
					transform: scale(1.02);
					color: #0b1f33;
				}

				.cta-btn-outline-modern {
					background: transparent;
					border: 2px solid rgba(255, 255, 255, 0.35);
					color: white;
					border-radius: 50px;
					padding: 0.9rem 2.5rem;
					font-weight: 600;
					text-decoration: none;
					display: inline-flex;
					align-items: center;
					gap: 12px;
					backdrop-filter: blur(5px);
					transition: 0.2s;
				}

				.cta-btn-outline-modern:hover {
					border-color: white;
					background: rgba(255, 255, 255, 0.05);
					transform: scale(1.02);
					color: white;
				}

				.bg-soft-light {
					background: #f9fafc;
				}

				@media (max-width:768px) {
					.cta-modern-buttons {
						justify-content: center;
						margin-top: 2rem;
					}

					.cta-modern-title {
						font-size: 2rem;
					}
				}

				/* original header/footer colors kept, but we reset some for safety */
				.nav-links a {
					color: #0b1a33;
				}

                /* Gradient Text - only section title */
				.method-title-refined {
					background: linear-gradient(90deg, #17479e 0%, #2d76e6 100%);
					-webkit-background-clip: text;
					-webkit-text-fill-color: transparent;
					background-clip: text;
					text-align: center;
					font-size: 2.5rem;
					margin-bottom: 40px;
					font-weight: 700;
				}

				.method-section-refined .method-title-refined {
					background: linear-gradient(90deg, #e11b22, #17479e);
					-webkit-background-clip: text;
					-webkit-text-fill-color: transparent;
					background-clip: text;
					text-align: center;
					font-size: 2.5rem;
					margin-bottom: 40px;
					font-weight: 700;
				}

				.red-color-text {
					color: #e11b22
				}

				/* Cards Grid */
				.method-cards-refined {
					display: grid;
					grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
					gap: 25px;
					margin-top: 40px;
				}

				/* Card Styles - All content visible */
				.method-card-refined {
					background: white;
					border-radius: 12px;
					padding: 15px 5px;
					position: relative;
					box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
					border: 1px solid #e2e8f0;
					display: flex;
					flex-direction: column;
					align-items: center;
					text-align: center;
					transition: all 0.3s ease;
				}

				/* Only show gradient on card hover */
				.method-card-refined:hover {
					box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
					transform: translateY(-5px);
				}

				.method-card-refined:hover .card-highlight {
					background: linear-gradient(90deg, #17479e 0%, #2d76e6 100%);
				}

				.card-icon-refined {
					width: 60px;
					height: 60px;
					background: #f8fafc;
					border-radius: 12px;
					display: flex;
					align-items: center;
					justify-content: center;
					margin-bottom: 20px;
					border: 1px solid #e2e8f0;
				}

				.card-icon-refined i {
					font-size: 24px;
					color: #17479e;
				}

				.card-title-refined {
					font-size: 14px;
					font-weight: 600;
					color: #1e293b;
					margin-bottom: 15px;
					line-height: 1.4;
				}

				/* Description - always visible */
				.card-description {
					display: flex;
					flex-direction: column;
					align-items: center;
					gap: 12px;
					margin-top: 10px;
				}

				.card-description .detail-icon {
					width: 24px;
					height: 24px;
					background: #17479e;
					border-radius: 50%;
					display: flex;
					align-items: center;
					justify-content: center;
				}

				.card-description .detail-icon i {
					color: white;
					font-size: 12px;
				}

				.card-description p {
					color: #000;
					font-size: 13px;
					line-height: 1.5;
					margin: 0;
					margin-top: 0px;
				}

				/* Top highlight bar */
				.card-highlight {
					position: absolute;
					top: 0;
					left: 0;
					right: 0;
					height: 4px;
					background: #e2e8f0;
					border-radius: 12px 12px 0 0;
					transition: background 0.3s ease;
				}

				/* Process Steps */
				.method-process-refined {
					margin-bottom: 40px;
				}

				.progress-line-wrapper {
					position: relative;
					height: 2px;
					background: #e2e8f0;
					margin: 30px 0;
				}

				.progress-line-fill {
					position: absolute;
					top: 0;
					left: 0;
					height: 100%;
					background: linear-gradient(90deg, #17479e, #2d76e6);
					width: 20%;
					transition: width 0.3s ease;
				}

				.process-steps {
					display: flex;
					justify-content: space-between;
				}

				.process-step {
					display: flex;
					flex-direction: column;
					align-items: center;
					position: relative;
				}

				.step-dot-refined {
					width: 50px;
					height: 50px;
					background: white;
					border-radius: 50%;
					display: flex;
					align-items: center;
					justify-content: center;
					border: 2px solid #e2e8f0;
					transition: all 0.3s ease;
					position: relative;
					margin-bottom: 10px;
				}

				.step-dot-refined i {
					font-size: 20px;
					color: #64748b;
				}

				.process-step.active .step-dot-refined {
					border-color: #17479e;
					background: #17479e;
				}

				.heading-red {
					color: #e11b22;
				}

				.heading-blue {
					color: #17479e;
				}

				.process-step.active .step-dot-refined i {
					color: white;
				}

				.step-label-refined {
					font-size: 0.875rem;
					text-align: center;
					max-width: 120px;
					line-height: 1.3;
					color: #1e293b;
				}

				/* Responsive */
				@media (max-width: 768px) {
					.method-title-refined {
						font-size: 2rem;
					}

					.method-cards-refined {
						grid-template-columns: 1fr;
						gap: 20px;
					}

					.method-card-refined {
						padding: 25px;
					}

					.process-steps {
						flex-wrap: wrap;
						justify-content: center;
						gap: 20px;
					}

					.process-step {
						flex: 0 0 calc(33.333% - 20px);
					}

					.progress-line-wrapper {
						display: none;
					}
				}

				@media (max-width: 480px) {
					.method-title-refined {
						font-size: 1.8rem;
					}

					.process-step {
						flex: 0 0 calc(50% - 20px);
					}

					.step-dot-refined {
						width: 40px;
						height: 40px;
					}

					.step-dot-refined i {
						font-size: 16px;
					}

					.step-label-refined {
						font-size: 0.75rem;
						max-width: 100px;
					}
				}

                /* UNIQUE LIGHT SECTION STYLES ONLY */
				.light-cta-section {
					background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
					padding: 80px 0;
					position: relative;
					overflow: hidden;
					font-family: 'Inter', sans-serif;
				}

				/* Animated Background Container */
				.light-animated-bg {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					pointer-events: none;
					z-index: 1;
				}

				/* Floating Bubbles */
				.light-bubble {
					position: absolute;
					border-radius: 50%;
					background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
					animation: floatLight 25s infinite linear;
				}

				.lb1 {
					width: 300px;
					height: 300px;
					top: 10%;
					right: 5%;
					background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
					animation-duration: 30s;
				}

				.lb2 {
					width: 200px;
					height: 200px;
					bottom: 15%;
					left: 5%;
					background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
					animation-duration: 35s;
					animation-delay: -5s;
				}

				.lb3 {
					width: 150px;
					height: 150px;
					top: 40%;
					right: 20%;
					background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
					animation-duration: 28s;
					animation-delay: -10s;
				}

				.lb4 {
					width: 180px;
					height: 180px;
					bottom: 25%;
					right: 15%;
					background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
					animation-duration: 32s;
					animation-delay: -15s;
				}

				.lb5 {
					width: 120px;
					height: 120px;
					top: 20%;
					left: 10%;
					background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
					animation-duration: 26s;
					animation-delay: -20s;
				}

				/* Grid Pattern */
				.light-grid {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background-image:
						linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
						linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
					background-size: 40px 40px;
					animation: gridMoveLight 40s linear infinite;
				}

				/* Sparkles */
				.light-sparkle {
					position: absolute;
					background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
					border-radius: 50%;
					animation: sparkleLight 4s infinite ease-in-out;
				}

				.ls1 {
					width: 8px;
					height: 8px;
					top: 30%;
					left: 20%;
					animation-delay: 0s;
				}

				.ls2 {
					width: 6px;
					height: 6px;
					top: 60%;
					right: 25%;
					animation-delay: 1.3s;
				}

				.ls3 {
					width: 10px;
					height: 10px;
					bottom: 40%;
					left: 30%;
					animation-delay: 2.7s;
				}

				/* Container & Layout */
				.light-cta-section .container {
					position: relative;
					z-index: 2;
					max-width: 1200px;
					margin: 0 auto;
					padding: 0 20px;
				}

				.light-cta-section .cta-wrapper {
					display: flex;
					justify-content: space-between;
					align-items: center;
					gap: 60px;
					position: relative;
					z-index: 2;
				}

				/* Left Content */
				.light-cta-section .cta-left h2 {
					color: #0f172a;
					font-size: 42px;
					line-height: 1.2;
					margin-bottom: 40px;
					font-weight: 700;
					text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
				}

				/* Buttons */
			

				

				
				/* Primary Button */
				.primary-light {
					background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
					color: white;
					box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
				}

				.primary-light::before {
					content: '';
					position: absolute;
					top: 0;
					left: -100%;
					width: 100%;
					height: 100%;
					background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
					transition: left 0.6s;
					z-index: -1;
				}

				.primary-light:hover::before {
					left: 100%;
				}

				.primary-light:hover {
					transform: translateY(-3px);
					box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
				}

				

				

				/* Profile Card */
				.light-profile-card {
					background: rgba(255, 255, 255, 0.95);
					backdrop-filter: blur(10px);
					border-radius: 20px;
					overflow: hidden;
					max-width: 380px;
					box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
					border: 1px solid rgba(255, 255, 255, 0.8);
					position: relative;
					transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
				}

				.light-profile-card:hover {
					transform: translateY(-10px) scale(1.02);
					box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
				}

				/* Profile Image */
				.light-profile-image {
					position: relative;
					overflow: hidden;
					height: 250px;
				}

				.light-profile-image img {
					width: 100%;
					height: 100%;
					object-fit: cover;
					transition: transform 0.8s ease;
				}

				.light-profile-card:hover .light-profile-image img {
					transform: scale(1.05);
				}

				.light-profile-badge {
					position: absolute;
					bottom: 20px;
					left: 20px;
					background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
					color: white;
					font-size: 14px;
					font-weight: 700;
					padding: 8px 20px;
					border-radius: 8px;
					letter-spacing: 2px;
					text-transform: uppercase;
					box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
				}

				/* Profile Info */
				.light-profile-info {
					padding: 24px;
				}

				.light-profile-info h4 {
					font-size: 22px;
					color: #0f172a;
					margin-bottom: 8px;
					font-weight: 700;
				}

				.light-profile-info p {
					font-size: 15px;
					color: #000;
					line-height: 1.6;
					margin-bottom: 0;
				}

				/* Animations */
				@keyframes floatLight {

					0%,
					100% {
						transform: translate(0, 0) rotate(0deg);
					}

					25% {
						transform: translate(20px, -20px) rotate(90deg);
					}

					50% {
						transform: translate(-15px, 15px) rotate(180deg);
					}

					75% {
						transform: translate(10px, -10px) rotate(270deg);
					}
				}

				@keyframes gridMoveLight {
					0% {
						transform: translate(0, 0);
					}

					100% {
						transform: translate(40px, 40px);
					}
				}

				@keyframes sparkleLight {

					0%,
					100% {
						opacity: 0.3;
						transform: scale(1);
					}

					50% {
						opacity: 1;
						transform: scale(1.5);
					}
				}

				/* Responsive */
				@media (max-width: 1024px) {
					.light-cta-section .cta-wrapper {
						flex-direction: column;
						align-items: flex-start;
						gap: 40px;
					}

					.light-profile-card {
						max-width: 100%;
						width: 100%;
					}

					.light-cta-section .cta-left h2 {
						font-size: 36px;
					}

					.light-bubble {
						opacity: 0.5;
					}
				}

				@media (max-width: 768px) {
					.light-cta-section {
						padding: 60px 0;
					}

					.light-cta-section .cta-left h2 {
						font-size: 32px;
					}

					.light-cta-section .cta-actions {
						flex-direction: column;
					}

					.light-cta-btn {
						width: 100%;
						justify-content: center;
					}
				}

				@media (max-width: 480px) {
					.light-cta-section .cta-left h2 {
						font-size: 28px;
					}

					.light-profile-info h4 {
						font-size: 20px;
					}

					.light-profile-info p {
						font-size: 14px;
					}
				}

				
				

			

				/* Outline Button Styles */
		

				/* Responsive Adjustments */
				@media (max-width: 768px) {
					.outline-light:hover {
						transform: translateY(-2px);
						box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
					}

					.outline-light:hover svg {
						transform: scale(1.1);
					}
				}

                /* UNIQUE LIGHT SECTION STYLES ONLY */
				

				.sub-title {
					display: inline-block;
					font-size: 14px;
					font-weight: 500;
					letter-spacing: 3px;
					text-transform: uppercase;
					color: #d90528;
					margin-bottom: 15px;
					padding-left: 20px;
					position: relative;
				}

				.sub-title::before {
					content: '';
					position: absolute;
					left: 0;
					top: 50%;
					width: 10px;
					height: 2px;
					background: #d90528;
					transform: translateY(-50%);
				}

				.ls2 {
					width: 6px;
					height: 6px;
					top: 60%;
					right: 25%;
					animation-delay: 1.3s;
				}

				.ls3 {
					width: 10px;
					height: 10px;
					bottom: 40%;
					left: 30%;
					animation-delay: 2.7s;
				}

				/* Container & Layout */
				.light-cta-section .container {
					position: relative;
					z-index: 2;
					max-width: 1200px;
					margin: 0 auto;
					padding: 0 20px;
				}

				.light-cta-section .cta-wrapper {
					display: flex;
					justify-content: space-between;
					align-items: center;
					gap: 60px;
					position: relative;
					z-index: 2;
				}

				/* Left Content */
				.light-cta-section .cta-left h2 {
					color: #0f172a;
					font-size: 42px;
					line-height: 1.2;
					margin-bottom: 40px;
					font-weight: 700;
					text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
				}

				/* Buttons */
				

				/* Primary Button */
				.primary-light {
					background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
					color: white;
					box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
				}

				.primary-light::before {
					content: '';
					position: absolute;
					top: 0;
					left: -100%;
					width: 100%;
					height: 100%;
					background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
					transition: left 0.6s;
					z-index: -1;
				}

				.primary-light:hover::before {
					left: 100%;
				}

				.primary-light:hover {
					transform: translateY(-3px);
					box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
				}

				/* Outline Button */
				

				
				/* Responsive */
				@media (max-width: 1024px) {
					.light-cta-section .cta-wrapper {
						flex-direction: column;
						align-items: flex-start;
						gap: 40px;
					}

					.light-profile-card {
						max-width: 100%;
						width: 100%;
					}

					.light-cta-section .cta-left h2 {
						font-size: 36px;
					}

					.light-bubble {
						opacity: 0.5;
					}
				}

				@media (max-width: 768px) {
					.light-cta-section {
						padding: 60px 0;
					}

					.light-cta-section .cta-left h2 {
						font-size: 32px;
					}

					.light-cta-section .cta-actions {
						flex-direction: column;
					}

					.light-cta-btn {
						width: 100%;
						justify-content: center;
					}
				}

				@media (max-width: 480px) {
					.light-cta-section .cta-left h2 {
						font-size: 28px;
					}

					.light-profile-info h4 {
						font-size: 20px;
					}

					.light-profile-info p {
						font-size: 14px;
					}
				}

				/* ENHANCED BUTTON HOVER EFFECTS */
				
			
				/* Responsive Adjustments */
				@media (max-width: 768px) {
					.outline-light:hover {
						transform: translateY(-2px);
						box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
					}

					.outline-light:hover svg {
						transform: scale(1.1);
					}
				}

				.utility-link i {
					transform: scaleX(-1);
				}

                .challenge-section.light-version .challenge-btn:hover {
					background-color: #17479e;
					color: #fff;
				}

                body {
					user-select: none;
					-webkit-user-select: none;
					-ms-user-select: none;
				}

				.heading-gradient {
					background: linear-gradient(135deg, #17479e, #e11b22);
					-webkit-background-clip: text;
					background-clip: text;
					-webkit-text-fill-color: transparent;
					color: transparent;
					display: inline-block;
					position: relative;
				}


                /* PRODUCT REALIZATION FRAMEWORK - UNIQUE LIGHT BACKGROUND STYLES */
    /* All selectors are prefixed with 'pf-' to avoid affecting other sections */

    /* main section container */
    .pf-framework-section {
        padding: 3rem 0;
        background: linear-gradient(145deg, #f8faff 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        font-family: 'Inter', sans-serif;
    }

    .pf-framework-section .pf-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 10;
    }

    /* LIGHT BACKGROUND EFFECTS - unique to this section */
    .pf-light-grid {
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(rgba(23,71,158,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(23,71,158,0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 1;
    }

    .pf-glow-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        z-index: 1;
        pointer-events: none;
    }

    .pf-blob-1 {
        width: 400px;
        height: 400px;
        background: rgba(23,71,158,0.08);
        top: -150px;
        right: -50px;
        animation: pf-float 20s infinite alternate ease-in-out;
    }

    .pf-blob-2 {
        width: 350px;
        height: 350px;
        background: rgba(225,27,34,0.04);
        bottom: -100px;
        left: -30px;
        animation: pf-float-reverse 18s infinite alternate ease-in-out;
    }

    .pf-blob-3 {
        width: 250px;
        height: 250px;
        background: rgba(23,71,158,0.05);
        top: 40%;
        right: 15%;
        animation: pf-float-slow 25s infinite alternate ease-in-out;
    }

    .pf-sparkle {
        position: absolute;
        background: radial-gradient(circle, rgba(225,27,34,0.2) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }

    .pf-sparkle-1 {
        width: 8px;
        height: 8px;
        top: 20%;
        left: 15%;
        animation: pf-twinkle 4s infinite;
    }

    .pf-sparkle-2 {
        width: 12px;
        height: 12px;
        bottom: 25%;
        right: 20%;
        animation: pf-twinkle 5s infinite 1s;
    }

    .pf-sparkle-3 {
        width: 6px;
        height: 6px;
        top: 60%;
        left: 30%;
        animation: pf-twinkle 3.5s infinite 0.5s;
    }

    /* floating animations */
    @keyframes pf-float {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(40px, -30px) scale(1.1); }
    }

    @keyframes pf-float-reverse {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(-30px, 40px) scale(1.15); }
    }

    @keyframes pf-float-slow {
        0% { transform: translate(0, 0) rotate(0deg); }
        100% { transform: translate(20px, 20px) rotate(5deg); }
    }

    @keyframes pf-twinkle {
        0%, 100% { opacity: 0.1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(1.5); }
    }

    /* header styles */
    .pf-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        z-index: 15;
    }

    .pf-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(23,71,158,0.05);
        padding: 0.6rem 1.8rem;
        border-radius: 40px;
        border: 1px solid rgba(23,71,158,0.15);
        margin-bottom: 1.5rem;
        color: #17479e;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        backdrop-filter: blur(4px);
    }

    .pf-eyebrow i {
        color: #e11b22;
        font-size: 1rem;
    }

    .pf-title {
        font-size: clamp(2.2rem, 6vw, 3.8rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: #0b1a33;
    }

    .pf-title span {
        background: linear-gradient(135deg, #17479e, #2d4f8a);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .pf-title-accent {
        background: linear-gradient(135deg, #e11b22, #b0121a) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        margin-left: 0.5rem;
    }

    .pf-subhead {
        font-size: 1.25rem;
        color: #4a5b72;
        max-width: 650px;
        margin: 1.5rem auto 0;
        border-bottom: 2px solid rgba(23,71,158,0.1);
        padding-bottom: 1.5rem;
    }

    /* desktop timeline */
    .pf-timeline {
        margin: 4rem 0 5rem;
        position: relative;
        z-index: 20;
        display: block;
    }

    .pf-progress-line {
        width: 100%;
        height: 3px;
        background: rgba(23,71,158,0.15);
        border-radius: 3px;
        position: relative;
        margin-bottom: 2rem;
    }

    .pf-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #e11b22, #17479e);
        border-radius: 3px;
        transition: width 0.3s ease;
        width: 0%;
        position: relative;
        box-shadow: 0 0 15px rgba(225,27,34,0.3);
    }

    .pf-milestones {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .pf-milestone {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pf-marker {
        width: 60px;
        height: 60px;
        background: white;
        border: 2px solid rgba(23,71,158,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px -10px rgba(0,0,0,0.1);
    }

    .pf-marker-number {
        font-weight: 700;
        font-size: 1.2rem;
        color: #17479e;
        z-index: 5;
    }

    .pf-pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #e11b22;
        opacity: 0;
        transform: scale(1);
        transition: all 0.3s ease;
    }

    .pf-milestone:hover .pf-marker {
        border-color: #e11b22;
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(225,27,34,0.1);
    }

    .pf-milestone:hover .pf-pulse {
        animation: pf-pulse-glow 1.5s infinite;
    }

    .pf-milestone.active .pf-marker {
        border-color: #e11b22;
        background: linear-gradient(145deg, #fff, #fef0f0);
        box-shadow: 0 0 0 6px rgba(225,27,34,0.15);
    }

    .pf-milestone.active .pf-marker-number {
        color: #e11b22;
        font-weight: 800;
    }

    .pf-milestone-label {
        font-weight: 500;
        font-size: 0.9rem;
        text-align: center;
        color: #4a5b72;
        max-width: 120px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .pf-milestone:hover .pf-milestone-label,
    .pf-milestone.active .pf-milestone-label {
        color: #17479e;
        font-weight: 600;
    }

    /* phase cards grid */
    .pf-cards-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        margin: 3rem 0 2rem;
        position: relative;
        z-index: 25;
    }


      .pf-cards-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr)!important;
        gap: 1.5rem;
        margin: 3rem 0 2rem;
        position: relative;
        z-index: 25;
    }

    .pf-card {
        background: white;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(23,71,158,0.12);
        border-radius: 2rem;
        padding: 1.8rem 1.2rem;
        transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
        box-shadow: 0 15px 30px -15px rgba(23,71,158,0.15);
        position: relative;
        overflow: hidden;
    }

    .pf-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #e11b22, #17479e);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .pf-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(225,27,34,0.3);
        box-shadow: 0 25px 40px -20px rgba(23,71,158,0.3);
    }

    .pf-card:hover::before {
        opacity: 1;
    }

    .pf-card-header {
        margin-bottom: 1.5rem;
    }

    .pf-card-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(145deg, #f0f5ff, #ffffff);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        border: 1px solid rgba(23,71,158,0.2);
        color: #e11b22;
        font-size: 1.6rem;
        transition: all 0.3s ease;
    }

    .pf-card:hover .pf-card-icon {
        background: linear-gradient(145deg, #ffffff, #f0f5ff);
        border-color: #e11b22;
        transform: scale(1.05);
    }

    .pf-phase-tag {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        color: #17479e;
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.3rem;
    }

    .pf-phase-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #0b1a33;
        line-height: 1.3;
        margin: 0;
    }

    .pf-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        flex: 1;
    }

    .pf-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        font-size: 0.85rem;
        color: #2c3b4f;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .pf-list li i {
        color: #17479e;
        font-size: 0.9rem;
        margin-top: 0.15rem;
        min-width: 18px;
    }

    .pf-card-footer {
        margin-top: auto;
        border-top: 1px solid rgba(23,71,158,0.1);
        padding-top: 1rem;
    }

    .pf-card-link {
        color: #4a5b72;
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .pf-card-link i {
        transition: transform 0.3s ease;
    }

    .pf-card:hover .pf-card-link {
        color: #e11b22;
    }

    .pf-card:hover .pf-card-link i {
        transform: translateX(5px);
    }

    /* mobile timeline */
    .pf-mobile-timeline {
        display: none;
        margin: 3rem 0;
        background: white;
        border-radius: 2rem;
        padding: 1.5rem;
        border: 1px solid rgba(23,71,158,0.15);
        box-shadow: 0 15px 30px -15px rgba(23,71,158,0.2);
    }

    .pf-mobile-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(23,71,158,0.1);
    }

    .pf-mobile-item:last-child {
        border-bottom: none;
    }

    .pf-mobile-marker {
        width: 36px;
        height: 36px;
        background: linear-gradient(145deg, #f0f5ff, #ffffff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        color: #e11b22;
        border: 1px solid rgba(225,27,34,0.2);
    }

    .pf-mobile-content {
        font-weight: 500;
        color: #0b1a33;
    }

    /* outro */
    .pf-outro {
        text-align: center;
        margin-top: 4rem;
        font-size: 1rem;
        color: #4a5b72;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .pf-outro i {
        font-size: 1.2rem;
        color: #e11b22;
    }

    /* pulse animation */
    @keyframes pf-pulse-glow {
        0% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 0.1; transform: scale(1.8); }
        100% { opacity: 0; transform: scale(2.2); }
    }

    /* responsive breakpoints */
    @media (max-width: 1100px) {
        .pf-cards-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .pf-timeline {
            display: none;
        }
        
        .pf-mobile-timeline {
            display: none;
        }
        
        .pf-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .pf-cards-grid {
            grid-template-columns: 1fr;
        }
        
        .pf-framework-section {
            padding: 4rem 0;
        }
        
        .pf-framework-section .pf-container {
            padding: 0 1.5rem;
        }
        
        .pf-title {
            font-size: 2.2rem;
        }
        
        .pf-blob-1, .pf-blob-2, .pf-blob-3 {
            opacity: 0.4;
        }
    }