

/* ── Custom scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #1e3370; }

/* ── Base page ───────────────────────────────────────────────
   Body set on <body> tag; page background and font            */
.ptnr-page {
    background-color: #f8fafc;
    color: #334155;
    overflow-x: hidden;
}

/* ── Color palette helpers ───────────────────────────────── */
.ptnr-primary        { color: #1e3370; }
.ptnr-secondary      { color: #0891B2; }
.ptnr-purple         { color: #9333EA; }
.ptnr-accent         { color: #059669; }
.ptnr-dark           { color: #0F172A; }
.ptnr-muted          { color: #475569; }

/* ── Gradient text ────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(to right, #263C84, #1C75BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Glass card / panel ───────────────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.02);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.glass-card:hover {
    border-color: rgba(79, 70, 229, 0.25);
    box-shadow: 0 12px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(79, 70, 229, 0.08);
}

/* ── Glowing radial BG blobs ──────────────────────────────── */
.ptnr-glow {
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.06) 0%, rgba(248, 250, 252, 0) 70%);
    pointer-events: none;
}

/* ── No-scrollbar utility ─────────────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* =============================================================
   HERO SECTION
   ============================================================= */
.ptnr-hero {
    position: relative;
    min-height: 90vh;
    padding: 5rem 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#infinityCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    pointer-events: auto;
    z-index: 0;
}

.ptnr-hero-glow-1 {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,0.06), rgba(147,51,234,0.04), transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}
.ptnr-hero-glow-2 {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8,145,178,0.06), transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.ptnr-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Animated badge pill */
.ptnr-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e3370;
}

.ptnr-ping-dot {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}
.ptnr-ping-dot .ping-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #0891B2;
    opacity: 0.75;
    animation: ping 2s ease-in-out infinite;
}
.ptnr-ping-dot .ping-core {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0891B2;
}
@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(2); opacity: 0; }
}

.ptnr-hero-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ptnr-hero-sub {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    max-width: 560px;
}

/* CTA Buttons */
.ptnr-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #263C84, #1C75BC);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 8px 20px rgba(79,70,229,0.2);
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
}
.ptnr-btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #fff !important;
}

.ptnr-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #fff;
    color: #0F172A !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    border: 1px solid #E2E8F0;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ptnr-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    color: #0F172A !important;
}

/* Trust metrics strip */
.ptnr-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    max-width: 400px;
}
.ptnr-trust-num {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #0F172A;
    margin-bottom: 0.15rem;
}
.ptnr-trust-label {
    font-size: 0.72rem;
    color: #475569;
}

/* Hero image side */
.ptnr-hero-img-wrap {
    position: relative;
}
.ptnr-hero-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(147,51,234,0.04), transparent);
    filter: blur(40px);
    border-radius: 1rem;
    pointer-events: none;
}
.ptnr-hero-img-wrap img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* =============================================================
   SOLUTIONS / TAB SECTION
   ============================================================= */
.ptnr-section-white {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
}

.ptnr-section-slate {
    padding: 6rem 0;
    background: #f8fafc;
    border-top: 1px solid #E2E8F0;
}

.ptnr-section-tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ptnr-tag-purple { background: rgba(147,51,234,0.08); color: #9333EA; border: 1px solid rgba(147,51,234,0.2); }
.ptnr-tag-cyan   { background: rgba(8,145,178,0.08);  color: #0891B2; border: 1px solid rgba(8,145,178,0.2);  }
.ptnr-tag-indigo { background: rgba(79,70,229,0.08);  color: #1e3370; border: 1px solid rgba(79,70,229,0.2);  }

.ptnr-section-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #0F172A;
}

/* Tab switcher pill */
.ptnr-tab-switcher {
    display: inline-flex;
    padding: 0.25rem;
    background: #f1f5f9;
    border: 1px solid #E2E8F0;
    border-radius: 0.875rem;
    gap: 0;
}
.ptnr-tab-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s;
}
.ptnr-tab-btn.active {
    background: #fff;
    color: #1e3370;
    border-color: #E2E8F0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Product / service cards */
.ptnr-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    height: 100%;
}
.ptnr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(79,70,229,0.08);
}
.ptnr-card:hover .ptnr-card-icon {
    transform: scale(1.12);
}

.ptnr-card-hover-indigo:hover { border-color: rgba(79,70,229,0.35); }
.ptnr-card-hover-cyan:hover   { border-color: rgba(8,145,178,0.35);  }
.ptnr-card-hover-purple:hover { border-color: rgba(147,51,234,0.35); }

.ptnr-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.ptnr-icon-indigo { background: #eef2ff; color: #1e3370; }
.ptnr-icon-cyan   { background: #ecfeff; color: #0891B2; }
.ptnr-icon-purple { background: #f5f3ff; color: #9333EA; }
.ptnr-icon-green  { background: #f0fdf4; color: #059669; }

.ptnr-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #0F172A;
    text-transform: uppercase;
}
.ptnr-card-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}
.ptnr-badge-indigo { background: #eef2ff; color: #1e3370; }
.ptnr-badge-cyan   { background: #ecfeff; color: #0891B2; }
.ptnr-badge-purple { background: #f5f3ff; color: #9333EA; }

.ptnr-card-body { font-size: 0.85rem; color: #475569; }

.ptnr-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #E2E8F0;
    padding-top: 0.75rem;
}
.ptnr-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #475569;
    margin-bottom: 0.65rem;
}
.ptnr-feature-list li:last-child { margin-bottom: 0; }
.ptnr-feature-list li i { color: #059669; font-size: 0.85rem; flex-shrink: 0; }

.ptnr-card-footer {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ptnr-card-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s, transform 0.2s;
}
.ptnr-card-cta:hover { color: #1e3370; transform: translateX(3px); }

/* Track panel toggle */
.ptnr-track-panel { transition: opacity 0.3s; }
.ptnr-track-panel.d-none { display: none !important; }

/* =============================================================
   BENEFITS SECTION
   ============================================================= */
.ptnr-benefits-left-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(8,145,178,0.08);
    color: #0891B2;
    border: 1px solid rgba(8,145,178,0.2);
    display: inline-block;
}
.ptnr-benefits-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: #0F172A;
    line-height: 1.2;
}
.ptnr-benefits-body {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.75;
}
.ptnr-benefits-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e3370;
    text-decoration: none;
    transition: color 0.2s;
}
.ptnr-benefits-link:hover { color: #0891B2; }
.ptnr-benefits-link i { transition: transform 0.2s; }
.ptnr-benefits-link:hover i { transform: translateX(3px); }

.ptnr-benefit-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: box-shadow 0.25s;
    height: 100%;
}
.ptnr-benefit-card:hover {
    box-shadow: 0 12px 30px rgba(79,70,229,0.06);
}
.ptnr-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.ptnr-benefit-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0F172A;
    margin-bottom: 0.5rem;
}
.ptnr-benefit-body {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.7;
}

/* =============================================================
   TESTIMONIALS SECTION
   ============================================================= */
.ptnr-testi-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    height: 100%;
}
.ptnr-stars { color: #f59e0b; font-size: 0.8rem; }
.ptnr-testi-quote {
    font-size: 0.85rem;
    color: #475569;
    font-style: italic;
    line-height: 1.7;
}
.ptnr-testi-footer {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ptnr-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.ptnr-testi-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.1rem;
}
.ptnr-testi-role {
    font-size: 0.68rem;
    color: #64748b;
}

/* =============================================================
   FAQ SECTION
   ============================================================= */
.ptnr-faq-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.ptnr-faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}
.ptnr-faq-trigger:hover { background: #f8fafc; }
.ptnr-faq-question {
    font-weight: 700;
    font-size: 0.92rem;
    color: #0F172A;
    flex: 1;
    padding-right: 1rem;
}
.ptnr-faq-icon {
    color: #64748b;
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.ptnr-faq-trigger[aria-expanded="true"] .ptnr-faq-icon {
    transform: rotate(180deg);
    color: #0891B2;
}
.ptnr-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.ptnr-faq-body.open { max-height: 400px; }
.ptnr-faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.75;
    border-top: 1px solid #E2E8F0;
    padding-top: 1rem;
}

/* =============================================================
   SUCCESS MODAL
   ============================================================= */
.ptnr-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.ptnr-modal-backdrop.show { display: flex; }

.ptnr-modal-box {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.ptnr-modal-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #10b981, #0d9488);
}
.ptnr-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0.5rem auto 1.5rem;
}
.ptnr-modal-title {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0F172A;
}
.ptnr-modal-sub {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.65;
}
.ptnr-modal-steps {
    background: #f8fafc;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1rem;
    text-align: left;
}
.ptnr-modal-steps-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0F172A;
    margin-bottom: 0.5rem;
}
.ptnr-modal-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #475569;
    margin-bottom: 0.4rem;
}
.ptnr-modal-step:last-child { margin-bottom: 0; }
.ptnr-modal-step-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.65rem;
    flex-shrink: 0;
}
.ptnr-modal-close-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #1e3370, #0891B2);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.ptnr-modal-close-btn:hover { opacity: 0.9; }

/* =============================================================
   RESPONSIVE TWEAKS
   ============================================================= */
@media (max-width: 991.98px) {
    .ptnr-hero { padding: 6rem 0 4rem; min-height: auto; }
    .ptnr-hero-img-wrap { margin-top: 2.5rem; }
    .ptnr-trust-grid { max-width: 100%; }
    .ptnr-section-white,
    .ptnr-section-slate { padding: 4rem 0; }
}

@media (max-width: 767.98px) {
    .ptnr-hero-title { text-align: center; }
    .ptnr-hero-sub   { margin-left: auto; margin-right: auto; text-align: center; }
    .ptnr-trust-grid { margin-left: auto; margin-right: auto; text-align: center; }
    .ptnr-cta-row    { justify-content: center; }
    .ptnr-badge-pill-wrap { text-align: center; }
    .ptnr-tab-btn    { padding: 0.55rem 1rem; font-size: 0.78rem; }
}

@media (max-width: 575.98px) {
    .ptnr-card { padding: 1.5rem; }
    .ptnr-testi-card { padding: 1.5rem; }
    .ptnr-hero { padding: 5rem 0 3rem; }
}
