/* Partners Page Styles */

/* Hero Section */
.partners-hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.partners-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partners-hero-content {
    max-width: 600px;
}

.partners-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-subtitle strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Income Card Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.income-card {
    background: linear-gradient(135deg, rgba(255, 127, 31, 0.15), rgba(243, 21, 63, 0.15));
    border: 1px solid rgba(255, 127, 31, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.income-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.income-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.income-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.income-currency {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.income-amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff7f1f, #f3153f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.income-period {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.income-growth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #4ade80;
}

.income-growth svg {
    stroke: #4ade80;
}

/* Hero Background Decorations */
.hero-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-decor .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-bg-decor .circle-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 127, 31, 0.15);
    top: -200px;
    right: -100px;
}

.hero-bg-decor .circle-2 {
    width: 400px;
    height: 400px;
    background: rgba(243, 21, 63, 0.1);
    bottom: -100px;
    left: -100px;
}

.hero-bg-decor .circle-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 178, 30, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Stats Section */
.partners-stats {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Unbounded', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* How it Works */
.partners-how-it-works {
    padding: 6rem 0;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7f1f, #f3153f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.step-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(255, 127, 31, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff7f1f;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ff7f1f, #f3153f);
    margin-top: 32px;
    opacity: 0.3;
}

/* Calculator */
.partners-calculator {
    padding: 6rem 0;
    background: rgba(255, 127, 31, 0.03);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7f1f, #f3153f);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 127, 31, 0.4);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7f1f, #f3153f);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 127, 31, 0.4);
}

.slider-value {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff7f1f;
}

.tariff-buttons {
    display: flex;
    gap: 0.75rem;
}

.tariff-btn {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tariff-btn small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.tariff-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.tariff-btn.active {
    background: rgba(255, 127, 31, 0.15);
    border-color: #ff7f1f;
    color: #fff;
}

.tariff-btn.active small {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
    margin-bottom: 1rem;
}

.result-item.result-total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.result-value.highlight {
    font-size: 1.75rem;
    color: #ff7f1f;
}

.result-value.gradient-text {
    font-size: 2rem;
}

/* Chart */
.calculator-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.chart-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-legend i {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-clients i {
    background: #f3153f;
}

.legend-income i {
    background: #ff7f1f;
}

.chart-container {
    flex: 1;
    min-height: 280px;
    position: relative;
}

.chart-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.chart-note strong {
    color: #ff7f1f;
}

/* Benefits */
.partners-benefits {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 127, 31, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 127, 31, 0.15), rgba(243, 21, 63, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff7f1f;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Audience */
.partners-audience {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.audience-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.audience-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ */
.partners-faq {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 200px;
}

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

/* CTA Section */
.partners-cta {
    padding: 6rem 0;
}

.partners-cta .cta-box {
    background: linear-gradient(135deg, rgba(255, 127, 31, 0.15), rgba(243, 21, 63, 0.15));
    border: 1px solid rgba(255, 127, 31, 0.3);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-cta .cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 127, 31, 0.2), transparent 50%);
    pointer-events: none;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.partners-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.partners-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(255, 127, 31, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(255, 127, 31, 0.6);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-note a {
    color: #ff7f1f;
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Animation */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calculator-chart {
        min-height: 400px;
    }
    
    .chart-container {
        min-height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 6rem 0 4rem;
    }
    
    .partners-hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .income-amount {
        font-size: 3rem;
    }
    
    .partners-cta .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .partners-cta h2 {
        font-size: 1.75rem;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .chart-legend {
        gap: 1rem;
    }
    
    .calculator-card,
    .calculator-chart {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tariff-buttons {
        flex-direction: column;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
