/* Style specyficzne dla B2B z liquid glass */
.b2b-hero {
    background: linear-gradient(135deg, rgba(232, 5, 76, 0.05) 0%, rgba(232, 169, 5, 0.05) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Hero 7/5 split — własne CSS Grid (niezależne od landing-bootstrap-grid.css,
   które jest scope-owane do `.lp-grid` od 2026-05-06).
   Lewa kolumna (treść) 58%, prawa (zdjęcie) 42%. Mobile: 1 kolumna full-width. */
.b2b-hero > .container > .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin: 0;
}
@media (min-width: 992px) {
    .b2b-hero > .container > .row {
        grid-template-columns: 7fr 5fr;
        gap: 48px;
    }
}
.b2b-hero .col-lg-7,
.b2b-hero .col-lg-5 {
    width: 100%;
    min-width: 0;
}
.b2b-hero .col-lg-5 img {
    width: 100%;
    height: auto;
    max-width: 560px;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

.b2b-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glass) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatLarge 20s ease-in-out infinite;
    z-index: -1;
}

.b2b-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-glass) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatLarge 15s ease-in-out infinite reverse;
    z-index: -1;
}

.partners-section {
    background: var(--card-bg);
    position: relative;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .partner-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 4px 20px rgba(255, 255, 255, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 50px rgba(232, 5, 76, 0.3),
        inset 0 4px 30px rgba(255, 255, 255, 0.4);
}

.partner-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefits-section {
    background: var(--card-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: start;
}

[data-theme="dark"] .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 40px rgba(232, 5, 76, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 20px rgba(232, 5, 76, 0.3);
}

.configurator-section {
    background: var(--light-gray);
    position: relative;
}

.configurator-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.conf-feature {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .conf-feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.conf-feature:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(31, 38, 135, 0.2),
        inset 0 4px 30px rgba(255, 255, 255, 0.4);
}

.conf-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-gradient);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(232, 169, 5, 0.3);
}

.montage-section {
    background: linear-gradient(135deg, rgba(232, 5, 76, 0.05) 0%, rgba(232, 169, 5, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.montage-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.montage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.montage-item:hover .montage-icon {
    transform: scale(1.1);
    background: var(--primary-gradient);
    color: white;
}

.process-timeline {
    background: var(--light-gray);
    position: relative;
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

/* Usunięto timeline-horizontal::before — kreska przechodziła przez kafelki */

.timeline-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0 10px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .timeline-step {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-step:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 50px rgba(31, 38, 135, 0.2),
        inset 0 4px 30px rgba(255, 255, 255, 0.4);
}

.timeline-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(232, 5, 76, 0.3);
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.offer-list {
    list-style: none;
    padding-left: 0;
}

.offer-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.offer-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
    height: 100%;
    transition: all 0.3s ease;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(31, 38, 135, 0.2),
        inset 0 4px 30px rgba(255, 255, 255, 0.4);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--dark-gray);
}

.stars {
    color: var(--secondary-color);
    font-size: 18px;
}

.trust-section {
    background: var(--card-bg);
    position: relative;
}

.faq-section {
    background: var(--light-gray);
    position: relative;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(31, 38, 135, 0.2),
        inset 0 4px 30px rgba(255, 255, 255, 0.4);
}

.faq-question {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
    }
    
    .timeline-horizontal::before {
        width: 4px;
        height: 100%;
        top: 0;
        left: 50%;
    }
    
    .timeline-step {
        margin: 20px 0;
    }
}

/* Glass orbs animation */
@keyframes floatOrb {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(20px) translateX(-20px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-20px) translateX(30px) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes floatLarge {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}
