/* ================= PARTNERS PAGE ================= */

/* ===== HERO ===== */
.partner-hero {
    padding: 160px 0 100px;
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

.partner-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.partner-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 6px 14px;
    margin-bottom: 28px;
    border-radius: 0;
}

.partner-hero-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #d4af37, #f0d060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 20px;
}

/* ===== SHARED SECTION ELEMENTS ===== */
.partner-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.partner-section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.partner-section-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== PARTNER TYPES ===== */
.partner-types-section {
    padding: 100px 0;
    background: #0b0b0b;
    border-top: 1px solid #1a1a1a;
}

.partner-type-card {
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    border-radius: 0;
    padding: 44px 32px 40px;
    height: 100%;
    position: relative;
}

.partner-type-card:hover {
    border-color: rgba(212,175,55,0.35);
}

.partner-type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #1e1e1e;
}

.partner-type-card:hover::before {
    background: var(--gold);
}

.ptc-featured {
    background: #121212;
    border-color: rgba(212,175,55,0.4);
}

.ptc-featured::before {
    background: var(--gold);
}

.ptc-featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0b0b0b;
    background: var(--gold);
    padding: 5px 12px;
    border-radius: 0;
}

.ptc-number {
    font-size: 12px;
    font-weight: 800;
    color: rgba(212,175,55,0.4);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.partner-type-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.3;
}

.partner-type-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.ptc-fit {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #1e1e1e;
}

.ptc-fit-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.ptc-fit ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ptc-fit ul li {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.ptc-fit ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgba(212,175,55,0.5);
    font-size: 12px;
    font-weight: 700;
}

/* ===== BENEFITS SECTION ===== */
.partner-benefits-section {
    padding: 100px 0;
    background: #080808;
    border-top: 1px solid #1a1a1a;
}

.benefit-card {
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    border-radius: 0;
    padding: 32px;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-3px);
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 14px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.partner-note {
    margin-top: 48px;
    padding: 22px 28px;
    border: 1px solid #1e1e1e;
    background: #0d0d0d;
    border-radius: 0;
    border-left: 3px solid rgba(212,175,55,0.4);
}

.partner-note p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.partner-process-section {
    padding: 100px 0;
    background: #0b0b0b;
    border-top: 1px solid #1a1a1a;
}

.partner-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
    flex-wrap: wrap;
}

.partner-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.ps-num {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.ps-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.ps-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.ps-connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,175,55,0.4), rgba(212,175,55,0.1));
    margin-top: 24px;
    flex-shrink: 0;
}

/* ===== APPLICATION SECTION ===== */
.partner-apply-section {
    padding: 100px 0;
    background: #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.apply-intro {
    padding-top: 6px;
}

.apply-intro p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.apply-requirements {
    margin-top: 32px;
    padding: 20px 0 20px 20px;
    border-left: 2px solid rgba(212,175,55,0.35);
    background: none;
}

.apply-requirements h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.apply-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apply-requirements ul li {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.55;
    padding-left: 0;
    position: relative;
}

.apply-requirements ul li::before {
    display: none;
}

/* ===== PARTNER FORM ===== */
.partner-form {
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pform-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pform-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pform-group input,
.pform-group select,
.pform-group textarea {
    background: #0b0b0b;
    border: 1px solid #2a2a2a;
    border-radius: 0;
    color: var(--text-light);
    padding: 13px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.pform-group input:focus,
.pform-group select:focus,
.pform-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(212,175,55,0.2);
}

.pform-group input::placeholder,
.pform-group textarea::placeholder {
    color: #444;
}

.pform-group select {
    cursor: pointer;
    color: var(--text-light);
}

.pform-group select option {
    background: #111;
    color: var(--text-light);
}

.pform-group textarea {
    min-height: 140px;
    resize: vertical;
}

.pform-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.pform-success {
    padding: 16px 20px;
    background: rgba(81,207,102,0.08);
    border: 1px solid rgba(81,207,102,0.3);
    color: #51cf66;
    font-size: 15px;
    margin-bottom: 20px;
    border-radius: 0;
}

.pform-error {
    padding: 16px 20px;
    background: rgba(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.3);
    color: #ff6b6b;
    font-size: 15px;
    margin-bottom: 20px;
    border-radius: 0;
}

.pform-error a {
    color: #ff9999;
}

/* ===== BUTTON ===== */
.btn-gold-filled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--gold);
    color: #0b0b0b;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-gold-filled:hover {
    background: #c09a28;
    transform: translateY(-1px);
    color: #0b0b0b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .partner-hero-title { font-size: 38px; }

    .partner-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .partner-step {
        width: 100%;
        max-width: 480px;
    }

    .ps-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(212,175,55,0.4), rgba(212,175,55,0.1));
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .partner-hero { padding: 120px 0 70px; }
    .partner-hero-title { font-size: 30px; }
    .partner-hero-sub { font-size: 16px; }
    .partner-section-title { font-size: 26px; }
    .partner-form { padding: 24px 20px; }
    .partner-type-card { padding: 28px 20px; }
}
