/* Partners Page Styles */

/* Hero */
.partners-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.partners-hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.partners-hero h1 .highlight {
    color: var(--text-secondary);
}

.partners-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.partners-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.partners-hero .hero-cta:hover {
    opacity: 0.9;
}

/* Tier Overview Cards */
.tiers-overview {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.tiers-overview .section-heading {
    text-align: center;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tier-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.tier-card:hover {
    background: rgba(20, 20, 20, 0.98);
    transform: translateY(-2px);
}

.tier-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #fff;
}

.tier-badge.affiliate { background: #10B981; }
.tier-badge.reseller { background: #F59E0B; }
.tier-badge.agency { background: #5046E5; }
.tier-badge.white-label { background: #EF4444; }

.tier-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tier-card .tier-audience {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tier-card .tier-value {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Tier Detail Sections */
.tier-detail {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.tier-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tier-detail-header h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tier-detail .tier-for {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
}

.tier-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.tier-detail-left h3,
.tier-detail-right h3 {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.tier-detail-left ul,
.tier-detail-right ul {
    list-style: none;
    padding: 0;
}

.tier-detail-left ul li,
.tier-detail-right ul li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.tier-detail-left ul li::before,
.tier-detail-right ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* Pricing Tables */
.pricing-table-wrap {
    margin: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.pricing-table thead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--border);
}

.pricing-table tbody td {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table .plan-name {
    font-weight: 500;
    color: var(--text-primary);
}

.pricing-table .highlight-value {
    font-weight: 600;
    color: #fff;
}

/* Example Callout */
.example-callout {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.example-callout .example-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.625rem;
}

.example-callout p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Retail Pricing Reference */
.retail-reference {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.retail-reference h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.retail-reference > .container > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

/* How to Apply */
.how-to-apply {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.how-to-apply h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.apply-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.apply-table thead th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.apply-table tbody td {
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.apply-table tbody tr:last-child td {
    border-bottom: none;
}

.apply-table .tier-name {
    font-weight: 500;
    color: #fff;
}

/* FAQ Section */
.partners-faq {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.partners-faq h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.15s ease;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Final CTA */
.partners-cta {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.partners-cta h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.partners-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-white {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.cta-buttons .btn-white:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .tier-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-table,
    .apply-table {
        font-size: 0.8125rem;
    }

    .pricing-table thead th,
    .pricing-table tbody td,
    .apply-table thead th,
    .apply-table tbody td {
        padding: 0.625rem 0.5rem;
    }

    .partners-hero {
        padding: 7rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }
}
