﻿/* ================================================================
   partnerships.css — Partnerships page styles
   ================================================================ */

/* ----------------------------------------------------------------
   "Why Partner" panel — Glossy 3D liquid glass effect
   (safe override: this file is only loaded on the partnerships page)
   ---------------------------------------------------------------- */

/* Hero Banner Layout Tweaks */
.partnerships-hero {
    padding: 2rem 0 !important;
    min-height: auto !important;
}

/* Center the button inside the text container */
.partnerships-hero .hero-cta-buttons {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}

/* Increase the dimensions of the photo */
.partnerships-hero .mockup-3d-wrapper {
    transform: scale(1.15);
    transform-origin: center left;
    margin-left: 2rem;
}

/* Reset for mobile view so it doesn't break out of the screen */
@media (max-width: 992px) {
    .partnerships-hero .mockup-3d-wrapper {
        transform: scale(1);
        margin-left: 0;
        margin-top: 2rem;
    }
}

.green-panel {
    background: linear-gradient(135deg, rgba(14, 65, 91, 0.95), rgba(10, 53, 71, 0.85)) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -8px 15px rgba(0, 0, 0, 0.6),
        inset 0 10px 20px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
    position: relative;
    overflow: hidden;
}

.green-panel::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 5%;
    right: 5%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 10;
    border-radius: 20px 20px 50% 50%;
}

.green-panel .green-panel-title,
.green-panel .green-panel-text {
    position: relative;
    z-index: 11;
}

/* ----------------------------------------------------------------
   Core Partnership Solutions — White background + Deep Blue Glass Cards
   ---------------------------------------------------------------- */
/* Core Partnership Solutions - Inheriting from ecosystem.css */
.ecosystem-section {
    background: #ffffff !important;
    padding: 6rem 0 !important;
}


/* ----------------------------------------------------------------
   ROOT / SHARED
   ---------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================================================
   RED BUTTON — now inherits from global liquid glass styles in main.css
   Add class "btn btn-primary-dark" in HTML for liquid glass effect
   ================================================================ */
.btn-hero-primary,
.btn-hero-ghost,
.cta-btn-primary,
.cta-btn-ghost,
.btn-partner-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover,
.btn-hero-ghost:hover,
.cta-btn-primary:hover,
.cta-btn-ghost:hover,
.btn-partner-red:hover {
    transform: translateY(-2px);
}

/* Arrow inside buttons */
.btn-hero-primary svg,
.btn-hero-ghost svg,
.cta-btn-primary svg,
.cta-btn-ghost svg,
.btn-partner-red svg,
.btn-hero-primary i,
.btn-hero-ghost i,
.cta-btn-primary i,
.cta-btn-ghost i,
.btn-partner-red i,
.btn-tab-primary svg,
.btn-tab-primary i,
.btn-cta-primary svg,
.btn-cta-primary i {
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover svg,
.btn-hero-ghost:hover svg,
.cta-btn-primary:hover svg,
.cta-btn-ghost:hover svg,
.btn-partner-red:hover svg,
.btn-hero-primary:hover i,
.btn-hero-ghost:hover i,
.cta-btn-primary:hover i,
.cta-btn-ghost:hover i,
.btn-partner-red:hover i,
.btn-tab-primary:hover svg,
.btn-tab-primary:hover i,
.btn-cta-primary:hover svg,
.btn-cta-primary:hover i {
    transform: translateX(4px);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.partnerships-hero {
    position: relative;
    background: linear-gradient(135deg, #0e415b 0%, #1a6a8a 60%, #0e415b 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
    color: #fff;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: #fff;
    pointer-events: none;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-accent {
    color: #f9c74f;
}

.hero-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(14, 65, 91, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.7rem 1.1rem 0.7rem 0.7rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-icon-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: linear-gradient(135deg, rgba(235, 75, 70, 0.9), rgba(190, 30, 25, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 10px -2px rgba(225, 55, 50, 0.4),
        inset 0 2px 3px rgba(255, 255, 255, 0.5),
        inset 0 -2px 3px rgba(120, 10, 10, 0.3);
}

.badge-top {
    top: 1rem;
    left: 1rem;
}

.badge-bottom {
    bottom: 1rem;
    right: 1rem;
}

@media (max-width: 768px) {
    .badge-top {
        top: 0.5rem;
        left: 0.5rem;
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    .badge-bottom {
        bottom: 0.5rem;
        right: 0.5rem;
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}

.hero-float-badge i {
    color: #0e415b;
}

/* Stats bar */
.hero-stats-bar {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.stat-pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    gap: 0.25rem;
}

.stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
    margin: 0.75rem 0;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-col {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    /* Ensure floating badges don't cause horizontal scrolling on mobile */
    .hero-float-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        gap: 0.4rem;
    }

    .badge-icon-circle {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.7rem;
    }
}

/* ================================================================
   WHY PARTNER SECTION
   ================================================================ */
.why-partner {
    padding: 5rem 0 4rem;
    background: #f8f9fa;
}

/* Top row: collage left, header text right */
.why-partner-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}



.partner-img-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 0.75rem;
    border-radius: 20px;
    overflow: visible;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.collage-img-1 {
    grid-column: 1;
    grid-row: 1;
}

.collage-img-2 {
    grid-column: 2;
    grid-row: 1;
}

.collage-img-3 {
    grid-column: 1;
    grid-row: 2;
}

.collage-img-4 {
    grid-column: 2;
    grid-row: 2;
}

.collage-accent-pill {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e13732;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* Full-width label above cards */
.benefits-label-full {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 1.25rem;
}

/* 3-column horizontal benefit cards */
.benefit-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 18px;
    padding: 2rem 1.75rem 2.25rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border-top: 4px solid #0e415b;
}

.benefit-card:hover {
    box-shadow: 0 12px 36px rgba(14, 65, 91, 0.12);
    transform: translateY(-4px);
}

.benefit-card-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: #f0f6f9;
    /* Soft blue background matching primary blue */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e415b;
    /* Primary Blue instead of Red */
    font-size: 1.9rem;
}

.benefit-card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
}

.benefit-card-desc {
    margin: 0;
    font-size: 0.97rem;
    color: #555;
    line-height: 1.75;
}

@media (max-width: 1000px) {
    .why-partner-top {
        grid-template-columns: 1fr;
    }

    .partner-img-collage {
        display: none;
    }

    .benefit-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1001px) and (max-width: 1200px) {
    .benefit-cards-grid {
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1.25rem 1.75rem;
    }
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e13732;
    display: block;
    margin-bottom: 0.75rem;
}

.section-h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefits-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 0.75rem;
}

/* ================================================================
   CORE SOLUTIONS
   ================================================================ */
.core-solutions {
    padding: 5rem 0;
    background: #fff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.solution-card-new {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(14, 65, 91, 0.1);
}

.solution-image-wrapper {
    position: relative;
}

.solution-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.solution-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #e13732;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
}

.solution-info {
    padding: 1.25rem;
}

.solution-meta {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.solution-tag {
    font-size: 0.68rem;
    font-weight: 700;
    background: #f0f5f8;
    color: #0e415b;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.solution-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.solution-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e13732;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.solution-link:hover {
    gap: 0.7rem;
}

.solutions-footer-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.solutions-footer-note i {
    color: #0e415b;
}

@media (max-width: 1100px) {
    .solutions-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solutions-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   PARTNERSHIP MODELS
   ================================================================ */
.partnership-models-section {
    padding: 2rem 0 5rem;
}

.model-block-wrap {
    padding: 3.5rem 0;
}

.model-light {
    background: #f8f9fa;
}

.model-dark {
    background: #fff;
}

.model-accent {
    background: linear-gradient(135deg, #0e415b, #1a6a8a);
    color: #fff;
}

.model-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.model-block-grid.model-reverse {
    direction: rtl;
}

.model-block-grid.model-reverse>* {
    direction: ltr;
}

.model-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.model-img-col {
    position: relative;
}

.model-type-badge {
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e13732;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.model-h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: inherit;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.model-accent .model-h3 {
    color: #fff;
}

.model-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.model-accent .model-desc {
    color: rgba(255, 255, 255, 0.8);
}

.model-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.06em;
}

.model-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.model-table-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.83rem;
}

.model-accent .model-table-card {
    background: rgba(255, 255, 255, 0.1);
}

.mtc-header {
    background: #0e415b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.04em;
}

.model-accent .mtc-header {
    background: rgba(0, 0, 0, 0.2);
}

.mtc-list {
    margin: 0;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mtc-list li {
    color: #333;
    line-height: 1.5;
}

.model-accent .mtc-list li {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {

    .model-block-grid,
    .model-block-grid.model-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .model-photo {
        height: 240px;
    }

    .model-tables {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.partner-cta-section {
    position: relative;
    background: linear-gradient(135deg, #0e415b 0%, #1a6a8a 60%, #0e415b 100%);
    padding: 5rem 0 3rem;
    overflow: hidden;
    color: #fff;
}

.cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: #fff;
    pointer-events: none;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.cta-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -80px;
}

.partner-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.cta-big-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.cta-red {
    color: #f9c74f;
}

.cta-body-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Social proof */
.cta-social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.proof-avatars .proof-avatar:first-child {
    margin-left: 0;
}

.proof-avatar-count {
    background: #e13732;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

/* CTA Media */
.cta-media-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cta-media-img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.cta-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 65, 91, 0.5), transparent);
}

.cta-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e13732;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 10px 25px -4px rgba(0, 0, 0, 0.2),
        inset 0 3px 5px rgba(255, 255, 255, 0.9),
        inset 0 -4px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.cta-play-btn::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 18%;
    right: 18%;
    height: 38%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    border-radius: 50%;
    pointer-events: none;
}

.cta-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow:
        0 15px 35px -5px rgba(0, 0, 0, 0.25),
        inset 0 4px 6px rgba(255, 255, 255, 0.9),
        inset 0 -5px 10px rgba(0, 0, 0, 0.08);
}

.cta-play-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.cta-float-card {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.float-card-icon {
    color: #e13732;
    font-size: 1.2rem;
}

.float-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.float-card-sub {
    font-size: 0.7rem;
    color: #666;
}

/* Trust badges row */
.trust-badges-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge i {
    color: #f9c74f;
}

@media (max-width: 900px) {
    .partner-cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-media-col {
        display: none;
    }

    .cta-big-title {
        font-size: 1.75rem;
    }
}

/* Stats bar used only on partnerships hero */
.hero-stats-bar {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tabbed visual image */
.tab-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Ecosystem result text below grid */
.ecosystem-result-simple {
    text-align: center;
    color: var(--text-light, #666);
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Trust badges below CTA (academic integrity row) */
.cta-trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light, #666);
    padding: 0.4rem 0.8rem;
    background: #f4f4f4;
    border-radius: 20px;
}

.trust-badge-item i {
    color: var(--primary-color, #0e415b);
    font-size: 0.85rem;
}

/* ================================================================
   STICKY DEMO CTA — always visible, bottom-right corner
   ================================================================ */
.sticky-demo-cta {
    position: fixed;
    bottom: 2.25rem;
    right: 2.25rem;
    z-index: 9998;
    filter: drop-shadow(0 8px 24px rgba(225, 55, 50, 0.45));
}

.sticky-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #e13732;
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 1rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #e13732;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(225, 55, 50, 0.4);
}

.sticky-demo-btn:hover {
    background: #c42f2a;
    border-color: #c42f2a;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(225, 55, 50, 0.55);
    color: #fff !important;
}

.sticky-demo-btn i {
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .sticky-demo-cta {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .sticky-demo-btn span {
        display: none;
    }

    .sticky-demo-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}

/* ================================================================
   VERTICAL-AXIS ICON ROTATION OVERRIDE
   (overrides the circular rotate() in contact.css for this page)
   ================================================================ */
@keyframes iconSpinPopY {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    50% {
        transform: rotateY(540deg) scale(1.3);
    }

    100% {
        transform: rotateY(720deg) scale(1);
    }
}

/* Partnership list icons (.different-item section) */
.different-item:hover .different-icon i {
    animation: iconSpinPopY 0.5s linear forwards !important;
}

/* Tab navigation icons (.what-institutions-gain tabs) */
.tab-btn:hover .tab-icon i {
    animation: iconSpinPopY 0.5s linear forwards !important;
}