/* ==========================================================================
   ERINITE SOLUTIONS - PORTFOLIO PAGE STYLESHEET
   Section 01: Hero Showcase & Parallax Interactions
   ========================================================================== */

:root {
    --pf-primary-blue: #0066FF;
    --pf-primary-dark-blue: #0052CC;
    --pf-accent-cyan: #00D4FF;
    --pf-text-dark: #0A1128;
    --pf-text-body: #475467;
    --pf-text-muted: #667085;
    --pf-card-shadow: 0 20px 40px -10px rgba(10, 25, 60, 0.12), 0 8px 16px -6px rgba(10, 25, 60, 0.08);
    --pf-card-shadow-hover: 0 30px 65px -10px rgba(0, 102, 255, 0.35), 0 14px 28px -8px rgba(0, 102, 255, 0.22);
    --pf-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --pf-font-heading: 'Poppins', 'Inter', sans-serif;
}

body.portfolio-page {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: var(--pf-text-dark);
    font-family: var(--pf-font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==========================================================================
   SECTION 01: HERO STYLES
   ========================================================================== */

.portfolio-hero {
    position: relative;
    width: 100%;
    min-height: clamp(620px, 85vh, 740px);
    padding: 80px 0 40px 0;
    background: #FFFFFF;
    background-image: 
        radial-gradient(circle at 80% 25%, rgba(190, 225, 255, 0.7) 0%, rgba(220, 240, 255, 0.25) 45%, transparent 70%),
        radial-gradient(circle at 95% 75%, rgba(180, 220, 255, 0.6) 0%, rgba(210, 235, 255, 0.2) 40%, transparent 65%),
        radial-gradient(circle at 15% 15%, rgba(215, 238, 255, 0.5) 0%, transparent 45%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Ambient Background Silk Wave Effect */
.portfolio-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pf-bg-glow-right {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 65vw;
    height: 65vw;
    max-width: 850px;
    max-height: 850px;
    background: radial-gradient(circle, rgba(180, 220, 255, 0.5) 0%, rgba(210, 235, 255, 0.25) 50%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
}

/* Container */
.portfolio-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Main Grid */
.portfolio-hero-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 32px;
    align-items: center;
}

/* Left Column */
.portfolio-hero-content {
    max-width: 520px;
}

.pf-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pf-eyebrow-text {
    font-family: var(--pf-font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--pf-primary-blue);
}

.pf-eyebrow-line {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--pf-primary-blue), rgba(0, 102, 255, 0.2));
    border-radius: 2px;
}

.portfolio-hero-title {
    font-family: var(--pf-font-heading);
    font-size: 52px;
    line-height: 1.14;
    font-weight: 800;
    color: var(--pf-text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -1.2px;
}

.portfolio-hero-title .text-blue {
    color: var(--pf-primary-blue);
    background: linear-gradient(135deg, #0066FF 0%, #0099FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.portfolio-hero-desc {
    font-size: 17px;
    line-height: 1.62;
    color: var(--pf-text-body);
    margin: 0 0 32px 0;
    font-weight: 400;
}

.portfolio-hero-cta-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.pf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 24px -6px rgba(0, 102, 255, 0.42);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.pf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -6px rgba(0, 102, 255, 0.55);
    background: linear-gradient(135deg, #0070FF 0%, #005BEA 100%);
}

.pf-btn-primary .btn-arrow {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.pf-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.pf-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    color: var(--pf-text-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px 13px 18px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(0, 102, 255, 0.18);
    box-shadow: 0 6px 18px rgba(10, 25, 60, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.pf-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.15);
    color: var(--pf-primary-blue);
}

.pf-play-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    color: var(--pf-primary-blue);
    transition: all 0.25s ease;
}

.pf-play-icon-wrap svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    margin-left: 2px;
}

.pf-btn-secondary:hover .pf-play-icon-wrap {
    background: var(--pf-primary-blue);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* Badges Row */
.portfolio-hero-badges {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 32px;
    margin-top: 36px;
    border-top: 1px solid rgba(0, 102, 255, 0.12);
    width: 100%;
}

.pf-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-right: 1px solid rgba(0, 102, 255, 0.12);
    flex: 1;
}

.pf-badge-item:first-child {
    padding-left: 0;
}

.pf-badge-item:last-child {
    border-right: none;
    padding-right: 0;
}

.pf-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--pf-primary-blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pf-badge-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--pf-primary-blue);
    stroke-width: 2;
    fill: none;
}

.pf-badge-item:hover .pf-badge-icon {
    background: transparent;
    color: var(--pf-primary-blue);
    transform: translateY(-2px) scale(1.08);
    box-shadow: none;
}

.pf-badge-content {
    display: flex;
    flex-direction: column;
}

.pf-badge-title {
    font-family: var(--pf-font-primary);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--pf-text-dark);
    margin: 0 0 2px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.pf-badge-sub {
    font-family: var(--pf-font-primary);
    font-size: 11px;
    color: var(--pf-text-muted);
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
}

/* ==========================================================================
   RIGHT COLUMN: 5 FLOATING VISUALS (Z-INDEX FIXED HIERARCHY)
   ========================================================================== */

.portfolio-hero-showcase {
    position: relative;
    width: 100%;
    height: 510px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: -24px;
}

.pf-showcase-stage {
    position: relative;
    width: 640px;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
}

.pf-visual-card {
    position: absolute;
    border-radius: 18px;
    overflow: visible;
    background: #FFFFFF;
    box-shadow: var(--pf-card-shadow);
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    will-change: transform;
}

.pf-visual-card:focus-visible {
    outline: 2px solid var(--pf-primary-blue);
    outline-offset: 4px;
}

.pf-card-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    border-radius: inherit;
}

.pf-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Blue Category Pill Badge */
.pf-card-pill {
    position: absolute;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.45);
    letter-spacing: 0.3px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Universal Hover Effects */
.pf-visual-card:hover {
    box-shadow: var(--pf-card-shadow-hover);
    z-index: 25;
}

.pf-visual-card:hover .pf-card-img-wrap img {
    transform: scale(1.04);
}

.pf-visual-card:hover .pf-card-pill {
    background: linear-gradient(135deg, #0075FF 0%, #005CE6 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.65);
    transform: translateY(-2px) scale(1.05);
}

/* --------------------------------------------------------------------------
   STRICT Z-INDEX & POSITIONING HIERARCHY (100% REFERENCE MATCH)
   -------------------------------------------------------------------------- */

/* 1. Laptop Mockup (Center / Top-Left) */
.card-laptop {
    top: 8px;
    left: 42px;
    width: 360px;
    height: 248px;
    z-index: 4;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.card-laptop:hover {
    background: transparent !important;
    box-shadow: none !important;
    z-index: 8;
}

.card-laptop .pf-card-img-wrap {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.card-laptop .pf-card-img-wrap img {
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(10, 25, 60, 0.14));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.card-laptop:hover .pf-card-img-wrap img {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 24px 38px rgba(0, 102, 255, 0.24));
}

/* 1b. Overlapping Mini eCommerce Card (Larger Size with Luxury Perfume) */
.card-ecom-mini {
    top: 96px;
    left: 16px;
    width: 112px;
    height: 112px;
    z-index: 15;
    border-radius: 18px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 16px 32px rgba(10, 25, 60, 0.2);
    overflow: visible !important;
    background: #FFFFFF;
}

.card-ecom-mini .pf-card-img-wrap {
    border-radius: 15px;
    overflow: hidden;
}

.card-ecom-mini:hover {
    z-index: 30;
    box-shadow: 0 22px 44px rgba(0, 102, 255, 0.32);
}

.card-ecom-mini .pf-card-pill {
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    white-space: nowrap;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.45);
    z-index: 25;
}

.card-ecom-mini:hover .pf-card-pill {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
}

/* 2. Analytics Tablet (Bottom-Left) */
.card-analytics {
    top: 236px;
    left: 34px;
    width: 300px;
    height: 215px;
    z-index: 6;
    border-radius: 18px;
    background: #0A0F1D;
    border: 1px solid rgba(0, 102, 255, 0.25);
    box-shadow: 0 22px 48px -8px rgba(10, 20, 50, 0.4);
    overflow: visible !important;
}

.card-analytics .pf-card-img-wrap {
    border-radius: 17px;
    overflow: hidden;
}

.card-analytics:hover {
    z-index: 25;
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.35);
}

.card-analytics .pf-card-pill {
    bottom: 12px;
    right: 14px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.5);
    z-index: 10;
}

/* 3. Interior Design Card (Top-Right) */
.card-interior {
    top: 10px;
    right: 8px;
    width: 270px;
    height: 175px;
    z-index: 3;
    border-radius: 18px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 16px 36px rgba(10, 25, 60, 0.18);
    overflow: visible !important;
}

.card-interior .pf-card-img-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.card-interior:hover {
    z-index: 25;
    box-shadow: 0 24px 50px rgba(0, 102, 255, 0.3);
}

.card-interior .pf-card-pill {
    bottom: 12px;
    right: 14px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.5);
    z-index: 10;
}

/* 4. 3D Sneaker Card (Mid / Bottom-Right) */
.card-sneaker {
    top: 206px;
    left: 350px;
    width: 155px;
    height: 182px;
    z-index: 5;
    border-radius: 18px;
    background: #050B18;
    border: 2px solid #FFFFFF;
    box-shadow: 0 18px 42px rgba(0, 50, 150, 0.28);
    overflow: visible !important;
}

.card-sneaker .pf-card-img-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.card-sneaker:hover {
    z-index: 25;
    box-shadow: 0 26px 55px rgba(0, 102, 255, 0.35);
}

.card-sneaker .pf-card-pill {
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    white-space: nowrap;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.45);
    z-index: 20;
}

.card-sneaker:hover .pf-card-pill {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
}

/* 5. Creative Ads Phone (Far Bottom-Right) */
.card-phone {
    top: 226px;
    right: 8px;
    width: 120px;
    height: 236px;
    z-index: 7;
    border-radius: 22px;
    background: #000000;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 50px rgba(10, 25, 60, 0.35);
    overflow: visible !important;
}

.card-phone .pf-card-img-wrap {
    border-radius: 20px;
    overflow: hidden;
}

.card-phone:hover {
    z-index: 25;
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.4);
}

.card-phone .pf-card-pill {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 12px;
    white-space: nowrap;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.45);
    z-index: 20;
}

.card-phone:hover .pf-card-pill {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
}

/* Video Modal */
.pf-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 12, 28, 0.75);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.pf-video-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.pf-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #0A1128;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.3);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-video-modal.is-active .pf-modal-dialog {
    transform: scale(1) translateY(0);
}

.pf-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.25s ease;
}

.pf-modal-close:hover {
    background: var(--pf-primary-blue);
    transform: rotate(90deg) scale(1.1);
}

.pf-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000000;
}

.pf-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-hero-grid {
        grid-template-columns: 46% 54%;
        gap: 16px;
    }

    .portfolio-hero-title {
        font-size: 44px;
    }

    .portfolio-hero-showcase {
        height: 480px;
    }

    .card-laptop {
        width: 320px;
        height: 220px;
        left: 20px;
    }

    .card-analytics {
        width: 300px;
        height: 205px;
    }

    .card-interior {
        width: 250px;
        height: 160px;
    }

    .card-sneaker {
        width: 140px;
        height: 150px;
        right: 120px;
    }

    .card-phone {
        width: 110px;
        height: 205px;
    }

    .portfolio-hero-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pf-badge-item {
        border-right: none;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .portfolio-hero {
        padding: 60px 0 40px 0;
    }

    .portfolio-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .pf-eyebrow-wrap {
        justify-content: center;
    }

    .portfolio-hero-cta-wrap {
        justify-content: center;
    }

    .portfolio-hero-showcase {
        height: 450px;
        max-width: 650px;
        margin: 0 auto;
    }

    .portfolio-hero-badges {
        grid-template-columns: repeat(2, 1fr);
        max-width: 650px;
        margin: 30px auto 0 auto;
    }
}

@media (max-width: 640px) {
    .portfolio-hero-title {
        font-size: 34px;
    }

    .portfolio-hero-desc {
        font-size: 15px;
    }

    .portfolio-hero-showcase {
        height: 380px;
    }

    .card-laptop {
        width: 240px;
        height: 165px;
        left: 0;
    }

    .card-ecom-mini {
        width: 75px;
        height: 75px;
        top: 80px;
    }

    .card-analytics {
        width: 220px;
        height: 150px;
        left: 0;
        bottom: 5px;
    }

    .card-interior {
        width: 180px;
        height: 120px;
        right: 0;
    }

    .card-sneaker {
        width: 105px;
        height: 115px;
        right: 85px;
        bottom: 25px;
    }

    .card-phone {
        width: 80px;
        height: 155px;
        right: 0;
    }

    .portfolio-hero-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   SECTION 02: FILTER + FEATURED CASE STUDY + PROJECTS GRID
   ========================================================================== */

.pf-projects-section {
    position: relative;
    width: 100%;
    padding: 10px 0 50px 0;
    background: #FFFFFF;
}

.pf-projects-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

/* --------------------------------------------------------------------------
   1. FEATURED CASE STUDY CARD (INDEPENDENT)
   -------------------------------------------------------------------------- */
.pf-featured-card-wrap {
    margin-top: 0;
    margin-bottom: 38px;
}

/* --------------------------------------------------------------------------
   CATEGORY FILTER TABS (BELOW FEATURED SECTION)
   -------------------------------------------------------------------------- */
.pf-filter-bar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.pf-filter-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.pf-filter-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #475467;
    font-family: var(--pf-font-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    outline: none;
}

.pf-filter-btn:hover {
    color: #0A1128;
    background: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 25, 60, 0.05);
}

.pf-filter-btn.active {
    background: #0A1128;
    color: #FFFFFF;
    border-color: #0A1128;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(10, 17, 40, 0.22);
}

.pf-featured-card {
    position: relative;
    background: linear-gradient(135deg, #071328 0%, #0A1E3F 55%, #061124 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    box-shadow: 0 20px 54px -10px rgba(2, 6, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pf-featured-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 24px 64px -8px rgba(0, 102, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Ambient Ambient Glow */
.pf-featured-glow-top {
    position: absolute;
    top: -80px;
    left: 20%;
    right: 20%;
    height: 180px;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.3) 0%, rgba(0, 212, 255, 0.08) 50%, transparent 80%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.pf-featured-inner {
    position: relative;
    z-index: 2;
    padding: 24px 38px;
    display: grid;
    grid-template-columns: 1.15fr 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

/* Left Content */
.pf-featured-content {
    display: flex;
    flex-direction: column;
}

.pf-featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #60A5FA;
    margin-bottom: 8px;
}

.pf-featured-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3B82F6;
    box-shadow: 0 0 10px #3B82F6;
}

.pf-featured-title {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.22;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    font-family: var(--pf-font-heading);
}

.pf-title-gradient {
    background: linear-gradient(90deg, #60A5FA 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-featured-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #94A3B8;
    margin: 0 0 16px 0;
}

.pf-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.pf-feat-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    font-size: 11.5px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.pf-featured-actions {
    display: flex;
    align-items: center;
}

.pf-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0066FF;
    color: #FFFFFF;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-featured-cta:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 102, 255, 0.5);
}

.pf-featured-cta .pf-cta-arrow {
    transition: transform 0.3s ease;
}

.pf-featured-cta:hover .pf-cta-arrow {
    transform: translateX(4px);
}

/* Center Laptop Visual */
.pf-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-featured-laptop-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.pf-featured-laptop-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.pf-featured-card:hover .pf-featured-laptop-img {
    transform: scale(1.04) translateY(-3px);
    filter: drop-shadow(0 18px 30px rgba(0, 102, 255, 0.35));
}

/* Right Metric Cards */
.pf-featured-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pf-metric-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    padding: 12px 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.pf-metric-card:hover {
    background: rgba(0, 102, 255, 0.14);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 8px 20px -4px rgba(0, 102, 255, 0.25);
    transform: translateX(3px);
}

.pf-metric-value {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: var(--pf-font-heading);
    line-height: 1.1;
}

.pf-metric-label {
    font-size: 12px;
    font-weight: 500;
    color: #94A3B8;
    margin-top: 3px;
}

/* --------------------------------------------------------------------------
   3. OUR LATEST WORK SECTION HEADER
   -------------------------------------------------------------------------- */
.pf-grid-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
}

.pf-grid-header-left {
    display: flex;
    flex-direction: column;
}

.pf-grid-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0066FF;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.pf-grid-title {
    font-size: 32px;
    font-weight: 800;
    color: #0A1128;
    font-family: var(--pf-font-heading);
    margin: 0;
}

.pf-grid-header-right {
    display: flex;
    align-items: center;
}

.pf-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-sort-label {
    font-size: 13.5px;
    font-weight: 500;
    color: #667085;
}

.pf-sort-select {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 8px 34px 8px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0A1128;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475467' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.2s ease;
}

.pf-sort-select:hover,
.pf-sort-select:focus {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* --------------------------------------------------------------------------
   4. PROJECTS GRID & CARDS
   -------------------------------------------------------------------------- */
.pf-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.pf-project-card {
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.pf-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px -6px rgba(10, 25, 60, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 102, 255, 0.3);
}

/* Thumbnail Holder */
.pf-card-img-holder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.6;
    overflow: hidden;
    background: #F2F4F7;
}

.pf-card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-project-card:hover .pf-card-thumb-img {
    transform: scale(1.04);
}

/* Top Right Category Badge */
.pf-card-category-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 17, 40, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
    transition: all 0.3s ease;
}

.pf-project-card:hover .pf-card-category-badge {
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.45);
    border-color: rgba(96, 165, 250, 0.5);
}

/* Bottom Left Brand Logo Pill */
.pf-card-brand-logo {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 6px;
}

.pf-card-brand-logo svg,
.pf-card-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Image Center Hover Overlay ("View Case Study") */
.pf-card-hover-banner {
    position: absolute;
    inset: 0;
    background: rgba(7, 19, 40, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.pf-project-card:hover .pf-card-hover-banner {
    opacity: 1;
}

.pf-hover-badge-pill {
    background: #FFFFFF;
    color: #0A1128;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(6px);
    transition: transform 0.3s ease;
}

.pf-project-card:hover .pf-hover-badge-pill {
    transform: translateY(0);
}

/* Card Body */
.pf-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pf-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0A1128;
    line-height: 1.35;
    margin: 0 0 8px 0;
    font-family: var(--pf-font-heading);
}

.pf-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #475467;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pf-card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

.pf-card-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pf-card-tag {
    font-size: 11.5px;
    font-weight: 500;
    color: #0066FF;
    background: #EFF8FF;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.pf-card-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EFF8FF;
    border: 1px solid rgba(0, 102, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-card-arrow-svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-project-card:hover .pf-card-arrow-btn {
    background: #0066FF;
    border-color: #0066FF;
    color: #FFFFFF;
}

.pf-project-card:hover .pf-card-arrow-svg {
    transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. LOAD MORE & FOOTER
   -------------------------------------------------------------------------- */
.pf-grid-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.pf-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1.5px solid #D0D5DD;
    color: #0A1128;
    font-family: var(--pf-font-primary);
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(10, 25, 60, 0.04);
}

.pf-loadmore-btn:hover {
    background: #F8FAFC;
    border-color: #0066FF;
    color: #0066FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.12);
}

.pf-loadmore-arrow {
    transition: transform 0.25s ease;
}

.pf-loadmore-btn:hover .pf-loadmore-arrow {
    transform: translateY(2px);
}

.pf-grid-counter {
    font-size: 13.5px;
    color: #667085;
    font-weight: 500;
    margin: 0;
}

/* Hidden & Animation States */
.pf-project-card.is-hidden {
    display: none !important;
}

@keyframes pfCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-project-card.pf-animate-in {
    animation: pfCardFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (SECTION 02)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .pf-featured-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 36px 32px;
    }

    .pf-featured-metrics {
        grid-column: span 2;
        flex-direction: row;
        gap: 16px;
    }

    .pf-metric-card {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .pf-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .pf-featured-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .pf-featured-laptop-wrap {
        max-width: 380px;
        margin: 0 auto;
    }

    .pf-featured-metrics {
        grid-column: span 1;
        flex-direction: row;
    }
}

@media (max-width: 680px) {
    .pf-filter-bar-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .pf-filter-bar-wrap::-webkit-scrollbar {
        display: none;
    }

    .pf-filter-nav {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .pf-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .pf-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pf-featured-card {
        border-radius: 18px;
    }

    .pf-featured-inner {
        padding: 28px 20px;
        gap: 24px;
    }

    .pf-featured-title {
        font-size: 24px;
    }

    .pf-featured-metrics {
        flex-direction: column;
        gap: 10px;
    }

    .pf-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .pf-grid-title {
        font-size: 26px;
    }
}




/* ==========================================================================
   SECTION 03A: OUR IMPACT (CAPABILITIES BAR)
   ========================================================================== */

.pf-impact-section {
    position: relative;
    width: 100%;
    padding: 50px 0 40px 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

.pf-impact-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pf-impact-header {
    max-width: 460px;
    flex-shrink: 0;
}

.pf-impact-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pf-impact-eyebrow {
    font-family: var(--pf-font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pf-primary-blue);
}

.pf-impact-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--pf-primary-blue), rgba(0, 102, 255, 0.2));
    border-radius: 2px;
}

.pf-impact-title {
    font-family: var(--pf-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--pf-text-dark);
    margin: 0 0 10px 0;
    line-height: 1.18;
    letter-spacing: -0.6px;
}

.pf-impact-desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--pf-text-body);
    margin: 0;
}

.pf-impact-grid {
    display: flex;
    align-items: center;
    gap: 0;
    background: #FFFFFF;
}

.pf-impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px;
    transition: transform 0.3s ease;
}

.pf-impact-item:hover {
    transform: translateY(-3px);
}

.pf-impact-icon {
    width: 36px;
    height: 36px;
    color: var(--pf-primary-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pf-impact-icon svg {
    width: 100%;
    height: 100%;
}

.pf-impact-item:hover .pf-impact-icon {
    transform: scale(1.12);
    color: var(--pf-primary-dark-blue);
}

.pf-impact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pf-impact-bold {
    font-family: var(--pf-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--pf-text-dark);
    line-height: 1.25;
}

.pf-impact-sub {
    font-size: 12.5px;
    color: var(--pf-text-muted);
    line-height: 1.25;
}

.pf-impact-divider {
    width: 1px;
    height: 52px;
    background: rgba(0, 102, 255, 0.14);
    flex-shrink: 0;
}


/* ==========================================================================
   SECTION 03B: CLIENTS & PARTNERS
   ========================================================================== */

.pf-clients-section {
    position: relative;
    width: 100%;
    padding: 35px 0 45px 0;
    background: #FFFFFF;
}

.pf-clients-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
}

.pf-clients-header {
    margin-bottom: 34px;
}

.pf-clients-eyebrow {
    display: block;
    font-family: var(--pf-font-primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pf-primary-blue);
    margin-bottom: 8px;
}

.pf-clients-title {
    font-family: var(--pf-font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--pf-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pf-clients-desc {
    font-size: 15px;
    color: var(--pf-text-body);
    margin: 0;
}

.pf-clients-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.pf-client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.52;
    color: #4A5568;
    cursor: default;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.pf-client-logo-item:hover {
    opacity: 1;
    transform: scale(1.06);
    color: var(--pf-primary-blue);
    filter: drop-shadow(0 4px 14px rgba(0, 102, 255, 0.28));
}

.pf-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.pf-logo-wrap .logo-mark {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* Specific Logo Typography Styles */
.lumiere-logo {
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.lumiere-logo .logo-text-serif {
    font-family: 'Times New Roman', Times, serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
}

.lumiere-logo .logo-sub-serif {
    font-family: var(--pf-font-primary);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.8px;
    opacity: 0.85;
}

.purebliss-logo .logo-text-sans,
.trendora-logo .logo-text-sans,
.fitlife-logo .logo-text-sans {
    font-family: var(--pf-font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.shopzone-logo .logo-text-sans-bold,
.nextgen-logo .logo-text-sans-bold {
    font-family: var(--pf-font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.8px;
}


/* ==========================================================================
   SECTION 03C: BOTTOM CTA CARD
   ========================================================================== */

.pf-cta-section {
    position: relative;
    width: 100%;
    padding: 15px 0 80px 0;
    background: #FFFFFF;
}

.pf-cta-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
}

.pf-cta-banner {
    position: relative;
    border-radius: 26px;
    background: radial-gradient(circle at 75% 30%, #072658 0%, #020F2B 55%, #010A1E 100%);
    border: 1.5px solid rgba(0, 163, 255, 0.28);
    box-shadow: 0 25px 65px -12px rgba(1, 10, 30, 0.55), 0 0 35px rgba(0, 102, 255, 0.15);
    padding: 50px 52px;
    overflow: hidden;
}

/* Ambient Blue Wave Background Curves */
.pf-cta-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.pf-cta-wave-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
}

.pf-wave-1 {
    top: -30%;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.5) 0%, rgba(0, 102, 255, 0.2) 60%, transparent 80%);
}

.pf-wave-2 {
    bottom: -40%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%);
}

/* Grid Layout inside Banner */
.pf-cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 370px 1fr 140px;
    gap: 32px;
    align-items: center;
}

/* Left Content Column */
.pf-cta-content {
    max-width: 370px;
}

.pf-cta-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.pf-cta-dash {
    color: var(--pf-accent-cyan);
    font-size: 13px;
}

.pf-cta-eyebrow {
    font-family: var(--pf-font-primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pf-accent-cyan);
}

.pf-cta-title {
    font-family: var(--pf-font-heading);
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.18;
    margin: 0 0 14px 0;
    letter-spacing: -0.6px;
}

.pf-cta-title-light {
    color: #FFFFFF;
}

.pf-cta-desc {
    font-size: 14.5px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.76);
    margin: 0 0 28px 0;
}

.pf-cta-btn-wrap {
    display: flex;
    align-items: center;
}

.pf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    font-family: var(--pf-font-primary);
    font-size: 14.5px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px -4px rgba(0, 102, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-cta-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0075FF 0%, #005BEA 100%);
    box-shadow: 0 14px 32px -4px rgba(0, 102, 255, 0.7);
}

.pf-cta-btn .cta-arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.pf-cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* Middle Visual Cluster (4 Cards with Parallax) */
.pf-cta-visuals {
    position: relative;
    height: 230px;
    width: 100%;
}

.pf-cta-card {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    background: #020919;
    border: 1.5px solid rgba(0, 195, 255, 0.42);
    box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.65), 0 0 22px rgba(0, 130, 255, 0.22);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

.pf-cta-card:hover {
    border-color: rgba(0, 220, 255, 0.8);
    box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.75), 0 0 32px rgba(0, 170, 255, 0.45);
    z-index: 10 !important;
}

.pf-cta-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.pf-cta-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pf-cta-card:hover .pf-cta-img-wrap img {
    transform: scale(1.05);
}

/* 4 Individual Cards Coordinates inside Middle Showcase */
.card-laptop-glow {
    bottom: 0;
    left: 10px;
    width: 215px;
    height: 145px;
    z-index: 2;
}

.card-perfume-glow {
    top: 5px;
    left: 175px;
    width: 135px;
    height: 135px;
    z-index: 4;
}

.card-analytics-glow {
    top: 10px;
    right: 35px;
    width: 175px;
    height: 110px;
    z-index: 1;
}

.card-interior-glow {
    bottom: 0;
    right: 0;
    width: 240px;
    height: 140px;
    z-index: 3;
}

/* Right Column: Stylized Creative Text */
.pf-cta-right-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.pf-creative-words {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #38BDF8;
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.8px;
    text-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}

.pf-curved-arrow {
    margin-top: 12px;
    color: #38BDF8;
    width: 48px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.pf-curved-arrow svg {
    width: 100%;
    height: 100%;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR SECTION 3
   ========================================================================== */

@media (max-width: 1100px) {
    .pf-impact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .pf-impact-grid {
        width: 100%;
        justify-content: space-between;
    }

    .pf-impact-item {
        padding: 0 14px;
    }

    .pf-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pf-cta-content {
        max-width: 100%;
    }

    .pf-cta-visuals {
        max-width: 550px;
        margin: 0 auto;
    }

    .pf-cta-right-tag {
        display: none;
    }
}

@media (max-width: 768px) {
    .pf-impact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pf-impact-divider {
        display: none;
    }

    .pf-clients-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .pf-cta-banner {
        padding: 36px 24px;
    }

    .pf-cta-title {
        font-size: 28px;
    }

    .pf-cta-visuals {
        height: 200px;
    }

    .card-laptop-glow { width: 170px; height: 115px; }
    .card-perfume-glow { width: 110px; height: 110px; left: 130px; }
    .card-analytics-glow { width: 140px; height: 90px; }
    .card-interior-glow { width: 180px; height: 105px; }
}

@media (max-width: 480px) {
    .pf-clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-cta-visuals {
        display: none;
    }
}


/* Refined CTA Visual Cluster Alignment */
.pf-cta-grid {
    grid-template-columns: 360px 1fr 130px;
    gap: 28px;
}

.pf-cta-visuals {
    height: 235px;
    perspective: 800px;
}

.card-laptop-glow {
    bottom: 5px;
    left: 10px;
    width: 220px;
    height: 145px;
    z-index: 2;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 195, 255, 0.5);
    box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.7), 0 0 24px rgba(0, 140, 255, 0.3);
}

.card-perfume-glow {
    top: 5px;
    left: 165px;
    width: 140px;
    height: 135px;
    z-index: 4;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 212, 255, 0.55);
    box-shadow: 0 18px 40px -8px rgba(0, 0, 0, 0.75), 0 0 26px rgba(0, 170, 255, 0.35);
}

.card-analytics-glow {
    top: 8px;
    right: 25px;
    width: 180px;
    height: 115px;
    z-index: 1;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 195, 255, 0.45);
    box-shadow: 0 14px 32px -8px rgba(0, 0, 0, 0.65), 0 0 20px rgba(0, 120, 255, 0.25);
}

.card-interior-glow {
    bottom: 5px;
    right: 0px;
    width: 245px;
    height: 140px;
    z-index: 3;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 212, 255, 0.55);
    box-shadow: 0 18px 40px -8px rgba(0, 0, 0, 0.75), 0 0 26px rgba(0, 160, 255, 0.3);
}
