/* ==========================================================================
   ZIO TECH LIMITED — Partners Page
   Same brand tokens as events.css / recognition.css. Class names prefixed
   "zpt-" so nothing collides with other pages.
   ========================================================================== */

.zpt-page { overflow-x: hidden; }

.zpt-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.zpt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #7dd3fc;
    background: rgba(6, 182, 212, 0.14);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* ---------------- HERO ---------------- */
.zpt-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0b1622 0%, #132338 60%, #16304a 100%);
    text-align: center;
}

.zpt-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}
.zpt-hero__blob--1 { width: 420px; height: 420px; background: #4dc9a0; top: -180px; right: -120px; }
.zpt-hero__blob--2 { width: 380px; height: 380px; background: #06b6d4; bottom: -180px; left: -100px; }

.zpt-hero .zpt-container { position: relative; z-index: 1; }

.zpt-hero__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.15;
    color: #ffffff;
    max-width: 780px;
    margin: 0 auto 18px;
}

.zpt-hero__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #b6c3d6;
    max-width: 620px;
    margin: 0 auto;
}

/* ---------------- SECTION SHELL ---------------- */
.zpt-section { padding: 60px 0; }
.zpt-section:nth-of-type(even) { background: #f8fafc; }

.zpt-section__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.6vw, 26px);
    color: #132338;
    margin: 0 0 30px;
    text-align: center;
}

/* ---------------- LOGO GRID ---------------- */
.zpt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}

.zpt-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 14px rgba(19, 35, 56, 0.04);
}
.zpt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(19, 35, 56, 0.09); border-color: #0587ca; }

.zpt-card__logo-wrap {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zpt-card__logo { max-width: 100%; max-height: 100%; object-fit: contain; }

.zpt-card__name { font-size: 14.5px; font-weight: 700; color: #132338; }
.zpt-card__desc { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }

.zpt-empty { text-align: center; color: #94a3b8; font-size: 15px; padding: 40px 0; }

/* ---------------- CTA ---------------- */
.zpt-cta {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(135deg, #0587ca 0%, #06b6d4 100%);
}
.zpt-cta__title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 30px); color: #fff; margin: 0 0 14px; }
.zpt-cta__desc { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 26px; font-size: 15.5px; }
.zpt-cta__btn {
    display: inline-block;
    background: #fff;
    color: #0587ca;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.zpt-cta__btn:hover { transform: translateY(-3px); }

@media (max-width: 640px) {
    .zpt-hero { padding: 80px 0 60px; }
    .zpt-section { padding: 44px 0; }
    .zpt-grid { grid-template-columns: repeat(2, 1fr); }
}
