/* ═══════════════════════════════════════════════════════
   STRATEGIC PARTNERS — Page Styles
   Prefix: sp-   (no conflicts with other pages)
   Target: Institutional B2B Partner Program
   ═══════════════════════════════════════════════════════ */

.sp-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 28%, black 18%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 28%, black 18%, transparent 100%);
}

.sp-section {
    position: relative;
    z-index: 10;
    padding: 88px 24px;
    scroll-margin-top: 96px;
}

.sp-container {
    max-width: 1160px;
    margin: 0 auto;
}

.sp-section--alt {
    background: rgba(139, 92, 246, 0.018);
}

.sp-section--dark {
    background: rgba(0, 243, 255, 0.012);
}

.sp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.sp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.16);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.sp-section-label-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan-neon);
    box-shadow: 0 0 8px var(--cyan-neon);
    animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.65); }
}

.sp-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.sp-section-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: rgba(255, 255, 255, 0.45);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.sp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin: 0 auto;
    max-width: 1160px;
    position: relative;
    z-index: 10;
}

.sp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ HERO ═══════════ */
.sp-hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.sp-hero::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 780px;
    height: 560px;
    background: radial-gradient(ellipse, rgba(0, 243, 255, 0.055) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.sp-hero::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 55%;
    width: 420px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.sp-hero__inner {
    position: relative;
    max-width: 880px;
    animation: spFadeUp 1s ease-out both;
}

@keyframes spFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 36px;
}

.sp-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success-neon);
    box-shadow: 0 0 10px var(--success-neon);
    animation: spPulse 2s ease-in-out infinite;
}

.sp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 243, 255, 0.9) 55%, rgba(139, 92, 246, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-hero__subtitle {
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 40px;
}

.sp-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.sp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(0, 243, 255, 0.08));
    color: var(--cyan-neon);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 16px 34px;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sp-btn-primary:hover::before { left: 100%; }
.sp-btn-primary:hover {
    border-color: rgba(0, 243, 255, 0.55);
    background: rgba(0, 243, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.12);
}

.sp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 34px;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.sp-hero__trust {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.sp-hero__diagram {
    margin-top: 64px;
    position: relative;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.sp-arch-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.sp-arch-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
}

.sp-arch-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sp-arch-node:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.15);
}

.sp-arch-node__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 243, 255, 0.07);
    border: 1px solid rgba(0, 243, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-neon);
}

.sp-arch-node__icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.7;
}

.sp-arch-node__label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
}

/* ═══════════ POSITIONING ═══════════ */
.sp-pos__text {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.sp-pos__text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.8;
    margin-bottom: 14px;
}

.sp-pos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sp-pos-card {
    padding: 28px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.sp-pos-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-pos-card:hover::before { opacity: 1; }
.sp-pos-card:hover {
    background: rgba(0, 243, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.14);
    transform: translateY(-4px);
}

.sp-pos-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.07);
    border: 1px solid rgba(0, 243, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-neon);
    margin-bottom: 16px;
}

.sp-pos-card__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.sp-pos-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.sp-pos-card__desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ═══════════ OPPORTUNITY CARDS ═══════════ */
.sp-opp__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sp-opp-card {
    padding: 32px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sp-opp-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.sp-opp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 28px; right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-opp-card:hover::before { opacity: 1; }
.sp-opp-card:hover {
    background: rgba(139, 92, 246, 0.045);
    border-color: rgba(139, 92, 246, 0.18);
    transform: translateY(-4px);
}

.sp-opp-card__num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(139, 92, 246, 0.55);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.sp-opp-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.sp-opp-card__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.sp-opp-card__comm {
    font-size: 0.8rem;
    color: rgba(0, 243, 255, 0.75);
    line-height: 1.65;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.04);
    border: 1px solid rgba(0, 243, 255, 0.1);
    font-family: var(--font-body);
}

/* ═══════════ WHO GRID ═══════════ */
.sp-who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sp-who-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sp-who-card:hover {
    background: rgba(0, 243, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.14);
    transform: translateY(-2px);
}

.sp-who-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-neon);
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
    flex-shrink: 0;
}

.sp-who-card__text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

/* ═══════════ PROCESS TIMELINE ═══════════ */
.sp-process__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.sp-process__list::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 27px;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 243, 255, 0.35), rgba(139, 92, 246, 0.2), transparent);
}

.sp-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 18px 0;
    position: relative;
}

.sp-step__number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan-neon);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(0, 243, 255, 0.06);
}

.sp-step__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.sp-step__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
}

/* ═══════════ COMMISSION TABLE ═══════════ */
.sp-table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}

.sp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.sp-table th {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 243, 255, 0.75);
    text-align: left;
    padding: 18px 22px;
    background: rgba(0, 243, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sp-table td {
    padding: 18px 22px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: top;
}

.sp-table tr:last-child td {
    border-bottom: none;
}

.sp-table td:first-child {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.sp-table td:nth-child(2) {
    color: rgba(0, 243, 255, 0.8);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.sp-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.sp-comm__note {
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 76, 107, 0.04);
    border: 1px solid rgba(255, 76, 107, 0.12);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ═══════════ STATUS FLOW ═══════════ */
.sp-status__flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sp-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.25s ease;
}

.sp-status-chip:hover {
    border-color: rgba(0, 243, 255, 0.2);
    color: rgba(0, 243, 255, 0.85);
    background: rgba(0, 243, 255, 0.05);
}

.sp-status-chip__n {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.sp-status__note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════ CHECKLIST / STANDARDS ═══════════ */
.sp-check__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sp-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.sp-check-item:hover {
    background: rgba(0, 243, 255, 0.035);
    border-color: rgba(0, 243, 255, 0.1);
}

.sp-check-item__icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.sp-check-item__icon svg {
    width: 10px;
    height: 10px;
    stroke-width: 2.5;
}

.sp-check-item__text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.sp-standards .sp-check-item__icon {
    background: rgba(255, 76, 107, 0.1);
    color: #FF4C6B;
}

.sp-standards .sp-check-item:hover {
    background: rgba(255, 76, 107, 0.035);
    border-color: rgba(255, 76, 107, 0.12);
}

.sp-notdo .sp-check-item__icon {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════ APPLICATION FORM ═══════════ */
.sp-form {
    max-width: 820px;
    margin: 48px auto 0;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(0, 243, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 28%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(0, 243, 255, 0.14);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(0, 243, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.sp-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.55), rgba(139, 92, 246, 0.35), transparent);
}

.sp-form::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 220px;
    background: radial-gradient(ellipse, rgba(0, 243, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sp-form__header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 36px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(0, 243, 255, 0.03) 0%, transparent 100%);
}

.sp-form__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.16);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.sp-form__eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--success-neon);
    box-shadow: 0 0 8px var(--success-neon);
    animation: spPulse 2s ease-in-out infinite;
}

.sp-form__title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 12px;
}

.sp-form__desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 18px;
}

.sp-form__mailchip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(0, 243, 255, 0.9);
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.18);
    padding: 9px 16px;
    border-radius: 100px;
    text-decoration: none;
    pointer-events: none;
}

.sp-honey {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.sp-form__submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.sp-form__status {
    width: 100%;
    max-width: 520px;
    margin-top: 4px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
    text-align: center;
}

.sp-form__status--pending {
    color: rgba(0, 243, 255, 0.9);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.16);
}

.sp-form__status--success {
    color: rgba(0, 255, 157, 0.95);
    background: rgba(0, 255, 157, 0.06);
    border: 1px solid rgba(0, 255, 157, 0.18);
}

.sp-form__status--error {
    color: rgba(255, 120, 140, 0.95);
    background: rgba(255, 76, 107, 0.06);
    border: 1px solid rgba(255, 76, 107, 0.18);
}

.sp-form__body {
    position: relative;
    z-index: 1;
    padding: 28px 36px 36px;
}

.sp-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sp-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-form__field--full {
    grid-column: 1 / -1;
}

.sp-form__field label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.sp-req {
    color: #FF6B7A;
    font-weight: 700;
    letter-spacing: 0;
    margin-inline-start: 2px;
}

.sp-form__required-hint {
    margin: 18px 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-form__field input:required:invalid:not(:placeholder-shown),
.sp-form__field textarea:required:invalid:not(:placeholder-shown),
.sp-form__field.is-invalid input,
.sp-form__field.is-invalid textarea {
    border-color: rgba(255, 76, 107, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 76, 107, 0.08);
}

.sp-form__field input:required:focus:invalid,
.sp-form__field textarea:required:focus:invalid {
    border-color: rgba(255, 76, 107, 0.55);
}

.sp-form__field input,
.sp-form__field textarea {
    background: rgba(2, 2, 4, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.sp-form__field textarea {
    min-height: 118px;
    resize: vertical;
    line-height: 1.6;
}

.sp-form__field input:hover,
.sp-form__field textarea:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.sp-form__field input:focus,
.sp-form__field textarea:focus {
    border-color: rgba(0, 243, 255, 0.42);
    background: rgba(0, 243, 255, 0.035);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.08);
}

.sp-form__field input::placeholder,
.sp-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.sp-form__actions {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.sp-form__submit {
    min-width: 280px;
    justify-content: center;
    padding: 16px 32px;
}

.sp-form__note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    line-height: 1.65;
    max-width: 480px;
}

@media (max-width: 768px) {
    .sp-form__header { padding: 32px 20px 24px; }
    .sp-form__body { padding: 22px 20px 28px; }
    .sp-form__submit { min-width: 0; width: 100%; }
}

/* ═══════════ SCOPE / FIT GRIDS ═══════════ */
.sp-scope__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sp-scope-card {
    padding: 20px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.sp-scope-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.16);
    transform: translateY(-3px);
}

.sp-scope-card__text {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.sp-fit__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sp-fit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px;
    border-radius: 14px;
    background: rgba(0, 255, 157, 0.025);
    border: 1px solid rgba(0, 255, 157, 0.08);
    transition: all 0.3s ease;
}

.sp-fit-card:hover {
    background: rgba(0, 255, 157, 0.045);
    border-color: rgba(0, 255, 157, 0.18);
    transform: translateY(-2px);
}

.sp-fit-card__n {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0, 255, 157, 0.55);
    flex-shrink: 0;
    margin-top: 2px;
}

.sp-fit-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ═══════════ FAQ ═══════════ */
.sp-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-faq-item {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sp-faq-item.open {
    border-color: rgba(0, 243, 255, 0.18);
    background: rgba(0, 243, 255, 0.03);
}

.sp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

.sp-faq-question__text {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.sp-faq-question__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.sp-faq-question__icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.sp-faq-item.open .sp-faq-question__icon {
    transform: rotate(45deg);
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-neon);
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.sp-faq-item.open .sp-faq-answer {
    max-height: 280px;
    padding: 0 22px 20px;
}

.sp-faq-answer__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* ═══════════ FINAL CTA ═══════════ */
.sp-cta {
    position: relative;
    z-index: 10;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
}

.sp-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 243, 255, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.sp-cta__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.sp-cta__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    margin-bottom: 20px;
}

.sp-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
}

.sp-cta__desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 32px;
}

.sp-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(139, 92, 246, 0.15));
    color: #fff;
    border: 1px solid rgba(0, 243, 255, 0.35);
    padding: 18px 40px;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.55);
}

.sp-cta__note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.sp-disclaimer {
    position: relative;
    z-index: 10;
    padding: 0 24px 64px;
}

.sp-disclaimer__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    text-align: center;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .sp-pos__grid { grid-template-columns: repeat(2, 1fr); }
    .sp-who__grid { grid-template-columns: repeat(2, 1fr); }
    .sp-scope__grid { grid-template-columns: repeat(3, 1fr); }
    .sp-arch-preview { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .sp-section { padding: 64px 20px; }
    .sp-hero { padding: 120px 20px 64px; min-height: auto; }
    .sp-opp__grid { grid-template-columns: 1fr; }
    .sp-opp-card:nth-child(5) { max-width: none; }
    .sp-who__grid { grid-template-columns: 1fr; }
    .sp-check__grid { grid-template-columns: 1fr; }
    .sp-fit__grid { grid-template-columns: 1fr; }
    .sp-scope__grid { grid-template-columns: repeat(2, 1fr); }
    .sp-form__grid { grid-template-columns: 1fr; }
    .sp-arch-preview { grid-template-columns: repeat(2, 1fr); }
    .sp-process__list::before { left: 23px; }
    .sp-step { grid-template-columns: 48px 1fr; gap: 14px; }
    .sp-step__number { width: 48px; height: 48px; border-radius: 14px; font-size: 0.7rem; }
    .sp-hero__actions { flex-direction: column; align-items: center; }
    .sp-btn-primary, .sp-btn-secondary { width: 100%; max-width: 360px; justify-content: center; }
}

@media (max-width: 480px) {
    .sp-scope__grid { grid-template-columns: 1fr; }
    .sp-arch-preview { grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 14px; }
    .sp-pos__grid { grid-template-columns: 1fr; }
}

/* Persian / Arabic typography for Strategic Partners page */
[lang="fa"] .sp-hero__title,
[lang="fa"] .sp-section-title,
[lang="fa"] .sp-form__title,
[lang="fa"] .sp-cta__title,
[lang="ar"] .sp-hero__title,
[lang="ar"] .sp-section-title,
[lang="ar"] .sp-form__title,
[lang="ar"] .sp-cta__title {
    font-family: var(--font-rtl);
}

[dir="rtl"] .sp-section-desc,
[dir="rtl"] .sp-hero__subtitle,
[dir="rtl"] .sp-form__desc,
[dir="rtl"] .sp-opp-card__desc,
[dir="rtl"] .sp-step__desc,
[dir="rtl"] .sp-faq-answer__text {
    font-family: var(--font-rtl);
}
[dir="rtl"] .sp-table th,
[dir="rtl"] .sp-table td { text-align: right; }
[dir="rtl"] .sp-process__list::before { left: auto; right: 27px; }
[dir="rtl"] .sp-step { direction: rtl; }
@media (max-width: 768px) {
    [dir="rtl"] .sp-process__list::before { right: 23px; }
}
