/* ===========================================
   PARTNERS PAGE - INVESTMENT FOCUS
   Zero Latency Inspired Design
   =========================================== */

/* Partners Hero */
.partners-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 212, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content-wrapper {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(255, 212, 0, 0.4);
}

.hero-title-large {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle-large {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
}

/* Waarom Section */
.waarom-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
    padding: 120px 40px;
}

.waarom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.waarom-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.waarom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 212, 0, 0.2);
    border-color: var(--yellow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 212, 0, 0.3);
}

.waarom-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.waarom-card p {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Modellen Section */
.modellen-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 50%, var(--white) 100%);
    padding: 120px 40px;
    position: relative;
}

.modellen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.modellen-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.model-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.model-card.featured {
    border-color: var(--yellow);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 212, 0, 0.4);
}

.model-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black);
    color: var(--yellow);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
}

.model-header {
    text-align: center;
    margin-bottom: 30px;
}

.model-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.model-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.model-subtitle {
    font-size: 15px;
    color: var(--gray-medium);
}

.model-investment {
    text-align: center;
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--white) 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.investment-label {
    font-size: 13px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.investment-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 5px;
}

.investment-period {
    font-size: 14px;
    color: var(--gray-medium);
}

.model-features {
    list-style: none;
    margin-bottom: 30px;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--gray-dark);
}

.model-features i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.model-features .fa-check {
    background: var(--green);
    color: var(--white);
}

.model-features .fa-times {
    background: #EF4444;
    color: var(--white);
}

.model-roi {
    text-align: center;
    padding: 15px;
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 15px;
    color: var(--gray-dark);
}

/* Cijfers Section */
.cijfers-section {
    background: var(--white);
    padding: 120px 40px;
}

.cijfers-content {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.cijfer-block {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 50px;
    border: 2px solid var(--yellow);
}

.cijfer-block h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.perf-item {
    text-align: center;
}

.perf-label {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.perf-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--black);
}

.roi-visual {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.roi-visual h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.roi-chart {
    margin-bottom: 25px;
}

.roi-bar {
    background: #E5E5E5;
    height: 60px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.roi-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
    display: flex;
    align-items: center;
    padding-left: 25px;
    border-radius: 30px;
    transition: width 2s ease-out;
}

.roi-bar.success .roi-bar-fill {
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-light) 100%);
}

.roi-bar-fill span {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.roi-bar.success .roi-bar-fill span {
    color: var(--black);
}

.roi-note {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    text-align: center;
}

.cost-breakdown {
    max-width: 800px;
    margin: 0 auto;
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
}

.cost-breakdown h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.breakdown-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    font-size: 16px;
}

.breakdown-item.total {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    font-size: 18px;
    margin-top: 10px;
}

/* Success Stories */
.success-section {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 120px 40px;
}

.success-section .section-title {
    color: var(--white);
}

.success-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-quote {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.success-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.success-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--yellow);
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.author-stats {
    font-size: 13px;
    color: var(--yellow);
    font-weight: 600;
}

/* Timeline */
.timeline-section {
    background: var(--white);
    padding: 120px 40px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: linear-gradient(to bottom, var(--yellow) 0%, var(--yellow-light) 100%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 212, 0, 0.4);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--off-white);
    padding: 30px;
    border-radius: 16px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-dark);
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 900;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.7;
}

.cta-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.partner-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.contact-option i {
    font-size: 32px;
    color: var(--yellow);
}

.contact-option strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-option p {
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .waarom-grid,
    .modellen-grid,
    .modellen-grid-two,
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .partners-hero {
        padding: 100px 20px 60px;
    }
    
    .waarom-section,
    .modellen-section,
    .cijfers-section,
    .success-section,
    .timeline-section,
    .cta-section {
        padding: 80px 20px;
    }
    
    .cta-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 30px;
    }
}

/* Extra compact pass */
.partners-hero {
    padding: 86px 36px 42px;
}

.hero-content-wrapper {
    max-width: 820px;
}

.hero-badge {
    padding: 7px 16px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero-title-large {
    font-size: clamp(30px, 3.7vw, 44px);
}

.hero-subtitle-large {
    font-size: clamp(15px, 1.8vw, 18px);
    margin-bottom: 24px;
}

.hero-stats {
    gap: 24px;
    margin-bottom: 26px;
}

.stat-value {
    font-size: 30px;
}

.stat-label {
    font-size: 12px;
}

.waarom-section,
.modellen-section,
.cijfers-section,
.success-section,
.timeline-section,
.cta-section {
    padding: 48px 36px;
}

.waarom-grid,
.modellen-grid,
.modellen-grid-two,
.success-grid {
    gap: 18px;
}

.waarom-card,
.model-card,
.success-card,
.timeline-content,
.cta-form-wrapper {
    padding: 22px;
}

.card-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 12px;
}

.waarom-card h3 {
    font-size: 18px;
}

.waarom-card p {
    font-size: 14px;
}

.cta-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
}

.partner-form .form-row {
    gap: 12px;
    margin-bottom: 10px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    padding: 10px 12px;
    font-size: 14px;
}

@media (max-width: 640px) {
    .partners-hero {
        padding: 74px 16px 30px;
    }

    .waarom-section,
    .modellen-section,
    .cijfers-section,
    .success-section,
    .timeline-section,
    .cta-section {
        padding: 34px 16px;
    }
}

/* Compact live layout */
.partners-hero {
    min-height: auto;
    padding: 105px 40px 58px;
}

.hero-content-wrapper {
    max-width: 920px;
}

.hero-badge {
    padding: 8px 18px;
    margin-bottom: 20px;
}

.hero-title-large {
    font-size: clamp(34px, 4.5vw, 52px);
    margin-bottom: 16px;
}

.hero-subtitle-large {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-stats {
    gap: 32px;
    margin-bottom: 34px;
}

.stat-value {
    font-size: 36px;
}

.waarom-section,
.modellen-section,
.cijfers-section,
.success-section,
.timeline-section,
.cta-section {
    padding: 70px 40px;
}

.waarom-grid,
.modellen-grid,
.modellen-grid-two,
.success-grid {
    gap: 24px;
}

.waarom-card,
.model-card,
.success-card,
.timeline-content {
    padding: 28px;
    border-radius: 12px;
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 26px;
    margin-bottom: 16px;
}

.waarom-card h3 {
    font-size: 20px;
}

.waarom-card p {
    font-size: 15px;
    line-height: 1.6;
}

.cta-subtitle {
    font-size: 17px;
    margin-bottom: 32px;
}

.cta-form-wrapper {
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 34px;
}

.partner-form .form-row {
    gap: 14px;
    margin-bottom: 14px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
}

@media (max-width: 640px) {
    .partners-hero {
        padding: 84px 18px 40px;
    }

    .waarom-section,
    .modellen-section,
    .cijfers-section,
    .success-section,
    .timeline-section,
    .cta-section {
        padding: 44px 18px;
    }

    .hero-stats {
        gap: 18px;
    }

    .cta-form-wrapper,
    .waarom-card,
    .model-card,
    .success-card,
    .timeline-content {
        padding: 22px;
    }
}

/* Ultra compact overrides, kept last */
.partners-hero {
    min-height: auto;
    padding: 78px 32px 34px;
}

.hero-content-wrapper {
    max-width: 760px;
}

.hero-title-large {
    font-size: clamp(28px, 3.2vw, 38px);
    margin-bottom: 12px;
}

.hero-subtitle-large {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 20px;
}

.hero-badge {
    padding: 6px 14px;
    font-size: 12px;
    margin-bottom: 12px;
}

.hero-stats {
    gap: 20px;
    margin-bottom: 22px;
}

.stat-value {
    font-size: 26px;
}

.stat-label {
    font-size: 11px;
}

.waarom-section,
.modellen-section,
.cijfers-section,
.success-section,
.timeline-section,
.cta-section {
    padding: 38px 32px;
}

.waarom-grid,
.modellen-grid,
.modellen-grid-two,
.success-grid,
.performance-grid {
    gap: 16px;
}

.waarom-card,
.model-card,
.success-card,
.timeline-content,
.cta-form-wrapper,
.cost-card,
.performance-card {
    padding: 18px;
    border-radius: 10px;
}

.card-icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.waarom-card h3,
.model-card h3,
.success-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.waarom-card p,
.model-card p,
.success-card p,
.timeline-content p {
    font-size: 13px;
    line-height: 1.45;
}

.model-price,
.performance-value,
.cost-value {
    font-size: 28px;
    line-height: 1;
}

.cta-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    padding: 8px 11px;
    font-size: 13px;
}

.contact-options {
    gap: 24px;
}

@media (max-width: 640px) {
    .partners-hero {
        padding: 72px 16px 30px;
    }

    .waarom-section,
    .modellen-section,
    .cijfers-section,
    .success-section,
    .timeline-section,
    .cta-section {
        padding: 32px 16px;
    }
}
