
    /* ============ BECOME PARTNER PAGE ============ */

    /* ── HERO ── */
.partner-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-hero-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91,33,250,0.12), rgba(139,92,246,0.08));
    border: 1px solid rgba(91,33,250,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #5b21fa;
    font-size: 22px;
}

.partner-hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 18px;
}

.partner-hero p {
    font-size: 17px;
    color: #5a5a72;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── VISION SECTION ── */
.partner-vision {
    padding: 80px 0;
    position: relative;
}

.partner-vision-dots {
    position: absolute;
    right: 60px;
    top: 40px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 7px;
    pointer-events: none;
    opacity: 0.5;
}

.partner-vision-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5b21fa;
    opacity: 0.3;
    display: block;
}

.partner-vision-dots-bottom {
    position: absolute;
    right: 60px;
    bottom: 40px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 7px;
    pointer-events: none;
    opacity: 0.5;
}

.partner-vision-dots-bottom span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5b21fa;
    opacity: 0.3;
    display: block;
}

.partner-vision-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-vision-text .eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5b21fa;
    font-weight: 600;
    margin-bottom: 16px;
}

.partner-vision-text h2 {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.partner-vision-text p {
    font-size: 15px;
    color: #5a5a72;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.partner-vision-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-partner-primary {
    background: #5b21fa;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.22s;
    box-shadow: 0 8px 20px -6px rgba(91,33,250,0.4);
}

.btn-partner-primary:hover {
    background: #4318d4;
    transform: translateY(-2px);
    color: #fff;
}

.btn-partner-outline {
    background: transparent;
    color: #1a1a2e;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    transition: border-color 0.22s, color 0.22s, transform 0.22s;
}

.btn-partner-outline:hover {
    border-color: #5b21fa;
    color: #5b21fa;
    transform: translateY(-2px);
}

.partner-vision-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

/* ── WHY PARTNER ── */
.partner-why {
    padding: 80px 0;
    background: #f8f5ff;
}

.partner-why-head {
    text-align: center;
    margin-bottom: 48px;
}

.partner-why-head h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.025em;
    margin-bottom: 0;
}

.partner-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.partner-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(91,33,250,0.08);
    box-shadow: 0 4px 24px -8px rgba(91,33,250,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px -12px rgba(91,33,250,0.18);
}

.partner-why-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(91,33,250,0.1), rgba(139,92,246,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b21fa;
    font-size: 20px;
    margin-bottom: 18px;
}

.partner-why-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.partner-why-card p {
    font-size: 16px;
    color: #5a5a72;
    line-height: 1.65;
    margin: 0;
}

.partner-why-cta {
    text-align: center;
}

/* ── TEAM UP SECTION ── */
.partner-teamup {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-teamup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* floating avatars left */
.partner-avatars-left {
    position: relative;
    height: 440px;
}

.partner-avatar {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.partner-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.partner-avatar.lg { width: 56px; height: 56px; }
.partner-avatar.sm { width: 36px; height: 36px; }

/* avatar positions left side */
.pa-1  { top: 5%;  left: 5%; }
.pa-2  { top: 18%; left: 20%; }
.pa-3  { top: 32%; left: 8%; }
.pa-4  { top: 48%; left: 22%; }
.pa-5  { top: 62%; left: 6%; }
.pa-6  { top: 75%; left: 18%; }
.pa-7  { top: 88%; left: 10%; }

/* tech icons right side */
.partner-tech-icons {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.pti {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pti-1  { top: 2%;  left: 10%; }
.pti-2  { top: 14%; left: 40%; }
.pti-3  { top: 14%; left: 70%; }
.pti-4  { top: 28%; left: 20%; }
.pti-5  { top: 28%; left: 55%; }
.pti-6  { top: 42%; left: 10%; }
.pti-7  { top: 42%; left: 45%; }
.pti-8  { top: 42%; left: 75%; }
.pti-9  { top: 56%; left: 25%; }
.pti-10 { top: 56%; left: 60%; }
.pti-11 { top: 70%; left: 10%; }
.pti-12 { top: 70%; left: 45%; }
.pti-13 { top: 84%; left: 70%; }

.partner-teamup-text .eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5b21fa;
    font-weight: 600;
    margin-bottom: 16px;
}

.partner-teamup-text h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.partner-teamup-text p {
    font-size: 15px;
    color: #5a5a72;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

/* ── EXPECT SECTION ── */
.partner-expect {
    padding: 80px 0px 185px;
    background: #f8f5ff;
}

.partner-expect-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-expect-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.partner-expect-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.partner-expect-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91,33,250,0.08), transparent);
    border-radius: 20px;
}

.partner-expect-text .eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5b21fa;
    font-weight: 600;
    margin-bottom: 14px;
}

.partner-expect-text h2 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 28px;
}

.partner-expect-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.partner-expect-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-expect-item h5::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5b21fa;
    flex-shrink: 0;
}

.partner-expect-item p {
    font-size: 15px;
    color: #5a5a72;
    line-height: 1.6;
    margin: 0;
    padding-left: 16px;
}

.partner-expect-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .partner-vision-inner,
    .partner-teamup-inner,
    .partner-expect-inner { grid-template-columns: 1fr; gap: 40px; }
    .partner-why-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-avatars-left { display: none; }
    .partner-vision-dots,
    .partner-vision-dots-bottom { display: none; }
}

@media (max-width: 768px) {
    .partner-why-grid { grid-template-columns: 1fr; }
    .partner-expect-list { grid-template-columns: 1fr; }
    .partner-vision-img img,
    .partner-expect-img img { height: 260px; }
}

