 /* Partners page — same design system as contact.php / demorequest.php / overons.php */
    .contact-hero {
        position: relative;
        min-height: 340px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #0d1b2a;
    }
    .contact-hero-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: url('../../assets/img2/innofication_partners5235.jpg') center center / cover no-repeat;
        opacity: 0.3;
    }
    .contact-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        padding: 60px 20px 40px;
    }
    .contact-hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 12px;
        color: #fff;
    }
    .contact-hero-content p {
        font-size: 18px;
        color: rgba(255,255,255,0.8);
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.6;
    }
    .partners-section {
        background: #f7f8fa;
        padding: 60px 0 80px;
    }
    .content-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 32px rgba(0,0,0,0.08);
        padding: 36px 40px;
        margin-bottom: 28px;
    }
    .section-title {
        font-size: 22px;
        font-weight: 700;
        color: #1a1a2e;
        margin-top: 0;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .section-title i { color: #0da6e0; font-size: 20px; }
    .intro-text {
        color: #374151;
        font-size: 15.5px;
        line-height: 1.8;
    }
    .intro-pillars {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
        margin-top: 24px;
    }
    .intro-pillar {
        background: #f0f9ff;
        border-radius: 10px;
        padding: 16px 18px;
        border-left: 3px solid #0da6e0;
        font-size: 14.5px;
        color: #374151;
        line-height: 1.6;
    }
    .intro-pillar i {
        color: #0da6e0;
        margin-right: 6px;
    }
    /* Partner cards */
    .partner-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
        padding: 28px 28px 24px;
        margin-bottom: 20px;
        display: flex;
        gap: 26px;
        align-items: flex-start;
        transition: box-shadow 0.2s;
    }
    .partner-card:hover { box-shadow: 0 6px 28px rgba(13,166,224,0.13); }
    .partner-logo-wrap {
        flex-shrink: 0;
        width: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f7f8fa;
        border-radius: 10px;
        padding: 14px;
        min-height: 80px;
    }
    .partner-logo-wrap img {
        max-width: 80px;
        max-height: 70px;
        object-fit: contain;
    }
    .partner-info h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 6px;
    }
    .partner-info .partner-tag {
        display: inline-block;
        background: #e0f4fc;
        color: #0d7fc4;
        font-size: 12px;
        font-weight: 600;
        border-radius: 20px;
        padding: 3px 12px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }
    .partner-info p {
        font-size: 14.5px;
        color: #6b7280;
        line-height: 1.7;
        margin: 0;
    }
    .partner-info .partner-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
        font-size: 13.5px;
        font-weight: 600;
        color: #0da6e0;
        text-decoration: none;
    }
    .partner-info .partner-link:hover { color: #0d7fc4; text-decoration: underline; }
    /* Membership card */
    .membership-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 32px rgba(0,0,0,0.08);
        padding: 32px 40px;
        margin-bottom: 28px;
        display: flex;
        gap: 32px;
        align-items: center;
    }
    .membership-logo {
        flex-shrink: 0;
        background: #f7f8fa;
        border-radius: 12px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .membership-logo img { max-width: 120px; max-height: 80px; object-fit: contain; }
    .membership-text h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 10px;
    }
    .membership-text p {
        font-size: 14.5px;
        color: #6b7280;
        line-height: 1.7;
        margin: 0;
    }
    /* CTA */
    .cta-card {
        background: linear-gradient(135deg, #0da6e0 0%, #0d7fc4 100%);
        border-radius: 16px;
        padding: 36px 40px;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }
    .cta-card h3 { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 6px; }
    .cta-card p { color: rgba(255,255,255,0.88); font-size: 15px; margin: 0; }
    .cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-cta-white {
        background: #fff;
        color: #0d7fc4;
        border: none;
        border-radius: 10px;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: opacity 0.2s;
        white-space: nowrap;
    }
    .btn-cta-white:hover { opacity: 0.9; color: #0d7fc4; text-decoration: none; }
    .btn-cta-outline {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,0.6);
        border-radius: 10px;
        padding: 11px 24px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: border-color 0.2s, background 0.2s;
        white-space: nowrap;
    }
    .btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
    @media (max-width: 767px) {
        .partner-card { flex-direction: column; }
        .partner-logo-wrap { width: 100%; }
        .membership-card { flex-direction: column; }
        .contact-hero-content h1 { font-size: 32px; }
    }