/* ==========================================================================
   ZIO TECH LIMITED — Recognitions Page
   Built on the site's existing brand tokens (deep navy #132338, brand blue
   #0587ca, teal accent #4dc9a0, electric-cyan #06b6d4 — see home.css /
   style.css). Poppins for display type, Inter for body copy — both already
   loaded globally via style.css. Class names prefixed "zrp-" so nothing
   collides with other pages. Testimonial cards reuse .ztq-card /
   .ztq-grid from client-cards.css rather than duplicating that styling.
   ========================================================================== */

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

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

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

.zrp-eyebrow--dark { color: #0f766e; background: rgba(15, 118, 110, 0.08); border-color: rgba(15, 118, 110, 0.2); }

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

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

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

.zrp-hero .zrp-eyebrow { color: #7dd3fc; background: rgba(6, 182, 212, 0.14); border-color: rgba(6, 182, 212, 0.3); }

.zrp-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: 820px;
    margin: 0 auto 18px;
}

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

.zrp-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
}

.zrp-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 22px 30px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zrp-stat__value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 34px;
    background: linear-gradient(90deg, #4dc9a0, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zrp-stat__label {
    font-size: 13px;
    color: #b6c3d6;
    font-weight: 500;
}

/* ==========================================================================
   SECTION SHELLS
   ========================================================================== */
.zrp-section { padding: 84px 0; background: #ffffff; }
.zrp-section--alt { background: #f7f9fb; }

.zrp-section__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }

.zrp-section__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 34px);
    color: #132338;
    margin: 0 0 10px;
}

.zrp-section__subtitle { color: #5b6b81; font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ==========================================================================
   2. CERTIFICATIONS
   ========================================================================== */
.zrp-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
}

.zrp-cert-card {
    background: #fff;
    border: 1px solid #e7ecf1;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.zrp-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(19, 35, 56, 0.08);
    border-color: rgba(77, 201, 160, 0.4);
}

.zrp-cert-card__badge {
    height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 16px;
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.3s ease;
}

.zrp-cert-card:hover .zrp-cert-card__badge { filter: grayscale(0) opacity(1); }

.zrp-cert-card__title { font-size: 15.5px; font-weight: 700; color: #132338; margin: 0 0 4px; }
.zrp-cert-card__subtitle { font-size: 13px; color: #0f766e; font-weight: 600; margin: 0 0 8px; }
.zrp-cert-card__desc { font-size: 13.5px; color: #5b6b81; line-height: 1.5; margin: 0; }

/* ==========================================================================
   3. AWARDS
   ========================================================================== */
.zrp-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.zrp-filters__group { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.zrp-filter-chip {
    background: #fff;
    border: 1px solid #dfe6ed;
    color: #5b6b81;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zrp-filter-chip:hover { border-color: #4dc9a0; color: #0f766e; }
.zrp-filter-chip.active { background: #132338; border-color: #132338; color: #fff; }

.zrp-award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.zrp-award-card {
    background: #fff;
    border: 1px solid #e7ecf1;
    border-radius: 18px;
    padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zrp-award-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(19, 35, 56, 0.1); }

.zrp-award-card.zrp-filtered-out { display: none; }

.zrp-award-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }

.zrp-award-card__logo { height: 44px; width: auto; max-width: 60%; object-fit: contain; }

.zrp-award-card__year {
    font-size: 12px;
    font-weight: 700;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
}

.zrp-award-card__title { font-size: 16.5px; font-weight: 700; color: #132338; margin: 0 0 4px; }
.zrp-award-card__issuer { font-size: 13px; color: #0587ca; font-weight: 600; margin: 0 0 10px; }
.zrp-award-card__desc { font-size: 14px; color: #5b6b81; line-height: 1.6; margin: 0 0 12px; }
.zrp-award-card__cta { font-size: 13px; font-weight: 700; color: #0891a8; text-decoration: none; }
.zrp-award-card__cta:hover { text-decoration: underline; }

.zrp-no-results { text-align: center; color: #94a3b8; margin: 30px 0 0; }

/* ==========================================================================
   4. PRESS & MEDIA
   ========================================================================== */
.zrp-logo-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-bottom: 54px;
}

.zrp-logo-bar__item { display: block; opacity: 0.85; }

.zrp-logo-bar__item img {
    height: 30px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.zrp-logo-bar__item:hover img { filter: grayscale(0) opacity(1); transform: translateY(-2px); }

.zrp-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.zrp-press-card {
    background: #f7f9fb;
    border-left: 3px solid #4dc9a0;
    border-radius: 4px 14px 14px 4px;
    padding: 24px 26px;
}

.zrp-press-card__quote { font-size: 15px; color: #132338; line-height: 1.65; margin: 0 0 14px; font-style: italic; }

.zrp-press-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.zrp-press-card__source { font-size: 13px; font-weight: 700; color: #5b6b81; }
.zrp-press-card__footer a { font-size: 13px; font-weight: 700; color: #0891a8; text-decoration: none; }
.zrp-press-card__footer a:hover { text-decoration: underline; }

/* ==========================================================================
   5. RATINGS
   ========================================================================== */
.zrp-rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.zrp-rating-card {
    background: #fff;
    border: 1px solid #e7ecf1;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.zrp-rating-card__logo { height: 34px; width: auto; max-width: 80px; object-fit: contain; flex-shrink: 0; }

.zrp-rating-card__score { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #132338; font-size: 15px; }
.zrp-rating-card__stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.zrp-rating-card__label { font-size: 12.5px; color: #5b6b81; margin: 2px 0 0; }
.zrp-rating-card__link { margin-left: auto; font-size: 12.5px; font-weight: 700; color: #0891a8; text-decoration: none; white-space: nowrap; }
.zrp-rating-card__link:hover { text-decoration: underline; }

/* ==========================================================================
   6. CLOSING CTA
   ========================================================================== */
.zrp-cta {
    background: linear-gradient(120deg, #132338 0%, #0f766e 100%);
    padding: 80px 0;
    text-align: center;
}

.zrp-cta__inner h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 36px);
    color: #fff;
    margin: 0 0 10px;
}

.zrp-cta__inner p { color: #cbe3dc; font-size: 16px; margin: 0 0 28px; }

.zrp-cta__btn {
    display: inline-block;
    background: #ffffff;
    color: #132338;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zrp-cta__btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); }

/* ==========================================================================
   SCROLL-REVEAL (see recognition.js)
   ========================================================================== */
.zrp-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.zrp-reveal.zrp-inview { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .zrp-hero { padding: 70px 0 60px; }
    .zrp-section { padding: 60px 0; }
    .zrp-stat { min-width: 130px; padding: 18px 20px; }
    .zrp-stat__value { font-size: 26px; }
    .zrp-logo-bar { gap: 26px; }
}
