/* ==========================================
   PARTNERS HERO SHELL
========================================== */

.ptn-hero-shell {
    padding: 24px var(--page-padding) 90px;
}

.ptn-hero-card {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;

    background: linear-gradient(
        160deg,
        #3D1E78 0%,
        #6B39BD 45%,
        #8A5BDB 75%,
        #A872FF 100%
    );

    box-shadow:
        0 30px 70px -24px rgba(107, 57, 189, 0.45);
}

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

.ptn-hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;

    padding: 56px 48px 32px 56px;
}

.ptn-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px 40px;
}

.ptn-hero-illustration {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.ptn-hero-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

.ptn-hero-eyebrow {
    display: inline-block;

    color: rgba(255, 255, 255, 0.65);

    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ptn-hero-title {
    color: var(--white);

    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;

    margin: 0;
}

.ptn-hero-subtitle {
    color: rgba(255, 255, 255, 0.78);

    font-size: 1rem;
    line-height: 1.7;

    max-width: 460px;

    margin: 0;
}

/* CTA — attached to bottom of hero card */

.ptn-hero-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 32px 56px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ptn-hero-cta-text {
    flex-shrink: 0;
    max-width: 420px;
}

.ptn-hero-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}

.ptn-hero-cta-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ptn-hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;

    padding: 14px 26px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);

    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;

    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;

    transition: opacity 0.18s ease, transform 0.18s ease;
}

.ptn-hero-cta-button:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}