* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2ecc71;
    color: #ffffff;
}

.btn-primary:hover {
    background: #27ae60;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navigation {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-indicators {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.problem-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.inline-cta {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #667eea;
    padding-bottom: 2px;
    margin-top: 16px;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.split-reverse {
    flex-direction: row-reverse;
}

.services-pricing {
    padding: 80px 20px;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #667eea;
    border-width: 3px;
    position: relative;
}

.pricing-card.featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #ffffff;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: #95a5a6;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 28px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.testimonial-split {
    display: flex;
    align-items: stretch;
    min-height: 450px;
}

.testimonial-left {
    flex: 1;
    background: #2c3e50;
    color: #ffffff;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-right {
    flex: 1;
}

.testimonial-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.expertise-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.expertise-list {
    list-style: none;
    margin: 24px 0;
}

.expertise-list li {
    padding: 12px 0;
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.6;
}

.expertise-list strong {
    color: #2c3e50;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-left {
    flex: 1;
    padding: 60px;
    background: #2c3e50;
    color: #ffffff;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item svg {
    color: #2ecc71;
    flex-shrink: 0;
}

.form-right {
    flex: 1;
    padding: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    padding: 16px 32px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #764ba2;
}

.form-privacy {
    font-size: 13px;
    color: #95a5a6;
    text-align: center;
    margin-top: 8px;
}

.form-privacy a {
    color: #667eea;
    text-decoration: none;
}

.final-cta {
    padding: 80px 20px;
    background: #667eea;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-split,
    .problem-section,
    .testimonial-split,
    .expertise-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .testimonial-left,
    .form-left,
    .form-right {
        padding: 40px 30px;
    }

    .hero-right,
    .testimonial-right {
        min-height: 300px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .form-container-split {
        flex-direction: column;
        gap: 0;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .process-grid {
        flex-direction: column;
    }
}