    /* --- HEADER VISIBILITY FIX --- */
    .uc-navbar-main {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    }

    :root {
        /* PROD PALETTE (AiPSoft Brand) */
        --prod-primary: #2563EB; /* AiPSoft Blue */
        --prod-primary-dark: #1d4ed8;
        --prod-secondary: #0F172A; /* Slate 900 - Dark Navy */
        --prod-accent: #10B981; /* Emerald 500 */
        --prod-bg-light: #F8FAFC; /* Slate 50 */
        --prod-bg-white: #ffffff;
        --prod-text-gray: #475569; /* Slate 600 */
        --prod-border: #E2E8F0;
        --prod-gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    }

    /* Base Layout */
    .prod-wrapper {
        font-family: 'Lexend', sans-serif;
        color: var(--prod-secondary);
        background-color: var(--prod-bg-white);
        overflow-x: hidden;
        line-height: 1.6;
    }

    .prod-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 2;
    }

    /* Typography */
    .prod-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        color: var(--prod-secondary);
    }
    
    .prod-subtitle {
        font-size: 1.15rem;
        color: var(--prod-text-gray);
        max-width: 800px;
        margin: 0 auto 2.5rem;
    }
    
    .prod-section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--prod-secondary);
        text-align: center;
    }

    /* Breadcrumbs */
    .prod-breadcrumbs {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 30px;
        color: var(--prod-text-gray);
    }

    .prod-breadcrumbs a {
        color: var(--prod-primary);
        text-decoration: none;
        transition: color 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .prod-breadcrumbs a:hover {
        color: var(--prod-primary-dark);
        text-decoration: underline;
    }

    .prod-breadcrumbs .prod-separator {
        color: #94a3b8;
        font-size: 0.8rem;
    }

    .prod-breadcrumbs .prod-current {
        color: var(--prod-secondary);
    }

    /* Buttons */
    .prod-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.3s ease;
        gap: 10px;
        font-size: 1rem;
        cursor: pointer;
    }

    .prod-btn-primary {
        background: var(--prod-primary);
        color: white !important;
        box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
        border: none;
    }
    .prod-btn-primary:hover {
        background: var(--prod-primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
    }

    .prod-btn-outline {
        background: white;
        border: 1px solid var(--prod-border);
        color: var(--prod-secondary) !important;
    }
    .prod-btn-outline:hover {
        border-color: var(--prod-primary);
        color: var(--prod-primary) !important;
        background: #EFF6FF;
        transform: translateY(-3px);
    }

    .prod-btn-text {
        color: var(--prod-primary) !important;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s;
        margin-top: auto; /* Pushes button to bottom of flex container */
    }
    .prod-btn-text:hover {
        gap: 10px;
        color: var(--prod-primary-dark) !important;
    }

    /* White Buttons for CTA */
    .prod-btn-white {
        background: white;
        color: var(--prod-primary) !important;
        border: 1px solid white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .prod-btn-white:hover {
        background: #F8FAFC;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
    }

    /* SECTION: HERO */
    .prod-hero {
        padding: 160px 0 60px;
        text-align: center;
        background: radial-gradient(circle at 50% 0%, #eff6ff 0%, #ffffff 80%);
        position: relative;
    }

    .prod-hero-image {
        margin-top: 60px;
        position: relative;
        border-radius: 24px;
        box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.8);
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .prod-hero-image img {
        width: 100%;
        display: block;
    }

    /* SECTION: INTRO */
    .prod-intro {
        padding: 60px 0 80px;
        text-align: center;
    }
    .prod-intro p {
        font-size: 1.15rem;
        color: var(--prod-text-gray);
        max-width: 900px;
        margin: 0 auto 1.5rem;
    }

    /* SECTION: PRODUCTS GRID */
    .prod-grid-section {
        padding: 80px 0 100px;
        background-color: var(--prod-bg-light);
        border-top: 1px solid var(--prod-border);
    }

    .prod-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .prod-card {
        background: white;
        border-radius: 20px;
        border: 1px solid var(--prod-border);
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }
    .prod-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
        border-color: #cbd5e1;
    }

    .prod-card-img {
        width: 100%;
        aspect-ratio: 16/9;
        background: #e2e8f0;
        position: relative;
        overflow: hidden;
    }
    .prod-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .prod-card:hover .prod-card-img img {
        transform: scale(1.05);
    }

    .prod-card-body {
        padding: 30px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .prod-card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--prod-secondary);
        margin-bottom: 12px;
    }

    .prod-card-desc {
        color: var(--prod-text-gray);
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .prod-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }
    .prod-feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 0.95rem;
        color: var(--prod-secondary);
        font-weight: 500;
    }
    .prod-feature-list i {
        color: var(--prod-accent);
        font-size: 1rem;
    }

    /* SECTION: WHY CHOOSE */
    .prod-why-section {
        padding: 100px 0;
        background: white;
    }

    .prod-why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .prod-why-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        border-radius: 16px;
        background: var(--prod-bg-light);
    }
    .prod-why-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #EFF6FF;
        color: var(--prod-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .prod-why-text {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--prod-secondary);
        margin-top: 6px;
    }

    /* SECTION: FAQ */
    .prod-faq-section {
        padding: 80px 0 100px;
        background: var(--prod-bg-light);
        border-top: 1px solid var(--prod-border);
    }
    .prod-faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    .prod-faq-card {
        background: white;
        padding: 30px;
        border-radius: 16px;
        border: 1px solid var(--prod-border);
    }
    .prod-faq-question {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--prod-secondary);
        margin-bottom: 15px;
        display: flex;
        gap: 15px;
    }
    .prod-faq-question i {
        color: var(--prod-primary);
        margin-top: 4px;
    }
    .prod-faq-answer {
        color: var(--prod-text-gray);
        padding-left: 35px;
        margin: 0;
    }

    /* SECTION: CTA BANNERS */
    .prod-mid-cta {
        padding: 80px 0;
        background: var(--prod-gradient);
        text-align: center;
        color: white;
    }
    
    .prod-bottom-cta {
        margin: 60px auto 100px;
        max-width: 1200px;
        background: var(--prod-secondary);
        border-radius: 24px;
        padding: 80px 20px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .prod-title { font-size: 2.5rem; }
        .prod-section-title { font-size: 2rem; }
        .prod-grid { grid-template-columns: 1fr; }
        .prod-faq-grid { grid-template-columns: 1fr; }
        .prod-hero { padding-top: 130px; }
        .prod-btn { width: 100%; justify-content: center; margin-bottom: 10px; }
    }