        /* ===== SECTION 1: PARTNERS INTRO (white — matches home "Our Business") ===== */
        .partners-intro {
            padding: 100px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        .partners-intro::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(var(--primary-rgb),0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .pi-lead {
            font-size: 17px;
            color: #333;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .pi-lead strong { color: var(--primary); }
        .pi-text {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 10px;
        }

        /* ===== PARTNER DOMAIN SECTIONS ===== */
        /* Enterprise = dark gradient (matches home VMV) */
        .partner-domain {
            position: relative;
            overflow: hidden;
        }
        .partner-domain.domain-enterprise {
            background: linear-gradient(180deg, #f4f5f6 0%, #fff 100%);
        }
        /* Aviation = light gradient (matches home "Why Choose Us") */
        .partner-domain.domain-aviation {
            background: linear-gradient(180deg, #f4f5f6 0%, #fff 100%);
        }

        /* Domain header strip — matches home CTA strip style */
        .pd-strip {
            padding: 50px 0;
            position: relative;
            z-index: 1;
        }
        .pd-strip-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .pd-strip-text {
            font-size: 17px;
            line-height: 1.8;
            margin: 0;
            max-width: 700px;
        }
        .domain-enterprise .pd-strip-text { color: #666; }
        .domain-aviation .pd-strip-text { color: #666; }
        .pd-strip-tag {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .domain-enterprise .pd-strip-tag { color: var(--primary); }
        .domain-aviation .pd-strip-tag { color: var(--primary); }

        /* Domain divider line — matches home VMV divider */
        .pd-divider {
            height: 2px;
            border-radius: 2px;
            opacity: 0.4;
        }
        .domain-enterprise .pd-divider {
            background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
        }
        .domain-aviation .pd-divider {
            background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
        }

        /* Cards area */
        .pd-cards {
            padding: 0 0 80px;
            position: relative;
            z-index: 1;
        }

        /* ===== PARTNER CARDS ===== */
        .partner-card {
            border-radius: 14px;
            padding: 0;
            height: 100%;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        /* Bottom accent bar on hover — matches home value-card */
        .partner-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            transform: scaleX(0);
            transition: transform 0.4s var(--transition);
            transform-origin: left;
        }
        .partner-card:hover::before { transform: scaleX(1); }
        .domain-enterprise .partner-card::before { background: var(--accent); }
        .domain-aviation .partner-card::before { background: var(--accent); }

        /* Enterprise cards — matches home VMV cards */
        .domain-enterprise .partner-card {
            background: #f4f5f6;
            border: 1px solid rgba(var(--primary-rgb),0.08);
        }
        .domain-enterprise .partner-card:hover {
            background: #fff;
            box-shadow: 0 8px 25px rgba(var(--primary-rgb),0.1);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        /* Aviation cards — matches home highlight-item style */
        .domain-aviation .partner-card {
            background: #f4f5f6;
            border: 1px solid rgba(var(--primary-rgb),0.08);
        }
        .domain-aviation .partner-card:hover {
            background: #fff;
            box-shadow: 0 8px 25px rgba(var(--primary-rgb),0.1);
            border-color: rgba(var(--primary-rgb),0.15);
            transform: translateY(-3px);
        }

        /* Logo area */
        .pc-logo-area {
            padding: 35px 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 110px;
            position: relative;
        }
        .domain-enterprise .pc-logo-area {
            border-bottom: 1px solid rgba(var(--primary-rgb),0.06);
        }
        .domain-aviation .pc-logo-area {
            border-bottom: 1px solid rgba(var(--primary-rgb),0.06);
        }
        .pc-logo-area img {
            max-height: 38px;
            max-width: 160px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .partner-card:hover .pc-logo-area img {
            transform: scale(1.08);
        }
        .domain-enterprise .pc-logo-area img {
            opacity: 0.8;
        }
        .domain-enterprise .partner-card:hover .pc-logo-area img {
            opacity: 1;
        }

        /* Text logo fallback */
        .pc-text-logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            transition: transform 0.4s ease;
        }
        .partner-card:hover .pc-text-logo { transform: scale(1.08); }
        .domain-enterprise .pc-text-logo { color: var(--dark); }
        .domain-enterprise .partner-card:hover .pc-text-logo { color: var(--dark); }
        .pc-text-logo.oracle { color: #C74634; }
        .pc-text-logo.indra { color: #0066CC; }
        .pc-text-logo.rohde { color: #E3001B; font-size: 1.15rem; }

        /* Card body */
        .pc-body {
            padding: 28px;
            flex: 1;
        }
        .pc-name {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .domain-enterprise .pc-name { color: var(--dark); }
        .domain-aviation .pc-name { color: var(--dark); }

        .pc-category {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
            display: block;
        }
        .domain-enterprise .pc-category { color: #888; }
        .domain-aviation .pc-category { color: #888; }

        .pc-desc {
            font-size: 14.5px;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }
        .domain-enterprise .pc-desc { color: #666; }
        .domain-aviation .pc-desc { color: #666; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .partners-intro { padding: 70px 0; }
            .pd-strip-inner { flex-direction: column; align-items: flex-start; }
        }
        @media (max-width: 768px) {
            .pd-strip-text { font-size: 15px; }
        }
