/* GetFabricated - Partners Page Specific Styles */
/* =========================================== */

/* Header */
.partners-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,107,53,0.2);
    z-index: 100;
    padding: 1rem 0;
}

.partners-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--accent);
}

.cta-button-small {
    background: var(--accent);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

/* Partners Hero */
.partners-hero {
    padding: 8rem 2rem 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    width: 100%;
}

.partners-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    margin: 0 auto 3rem;
    max-width: 800px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 3rem;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.indicator {
    display: flex;
    flex-direction: column;
}

.indicator-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.indicator-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-risk {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pain Section */
.pain-section {
    padding: 5rem 2rem;
    background: rgba(255,255,255,0.02);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,53,0.3);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.pain-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 5rem 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.criteria-list {
    max-width: 800px;
    margin: 0 auto;
}

.criteria-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    background: rgba(255,255,255,0.04);
    transform: translateX(10px);
}

.check-icon {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.criteria-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.criteria-item p {
    color: var(--text-light);
}

/* Sample Lead Section */
.sample-lead-section {
    padding: 5rem 2rem;
    background: rgba(255,107,53,0.05);
}

.sample-lead-card {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255,107,53,0.3);
}

.lead-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255,107,53,0.1);
    border-bottom: 1px solid rgba(255,107,53,0.3);
}

.lead-badge {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.lead-value {
    font-weight: 700;
    color: white;
}

.lead-details {
    padding: 2rem;
}

.lead-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.lead-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.spec-item strong {
    color: white;
}

.lead-attachments {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.attachment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.lead-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sample-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-light);
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 2rem;
    background: rgba(255,255,255,0.02);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
    background: rgba(255,255,255,0.05);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(255,107,53,0.1);
    color: white;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,53,0.3);
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: white;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--accent);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, transparent 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,53,0.5);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: rgba(255,107,53,0.1);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.price-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: var(--accent);
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,107,53,0.3);
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(255,107,53,0.1) 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 3rem;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.cta-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}

.guarantee {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Footer */
.partners-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.partners-footer p {
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: space-around;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section spacing consistency */
section {
    position: relative;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}