/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize font loading for better LCP */
@font-face {
    font-family: 'Roboto';
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-display: swap;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: #001f5d;
    background-color: #ffffff;
    /* Optimize rendering */
    text-rendering: optimizeSpeed;
}

/* Reduce CLS - reserve space for images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize layout stability */
.hero-image,
.features-image,
.migration-image {
    contain: layout;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'TT Norms Pro', 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #001f5d;
    margin-bottom: 24px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #001f5d;
    text-align: center;
    margin-bottom: 24px;
}

.section-tagline {
    font-size: 16px;
    font-weight: 700;
    color: #001a5d;
    text-align: center;
    display: block;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #3f68ba;
    color: white;
    border: 1px solid #3f68ba;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1958ee;
    border-color: #1958ee;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: white;
    color: #1e507a;
    border: 1px solid #f9faff;
}

.btn-secondary:hover {
    background-color: #f9faff;
}

.btn-outline {
    background-color: transparent;
    color: #3f68ba;
    border: 2px solid #3f68ba;
}

.btn-outline:hover {
    background-color: #3f68ba;
    color: white;
}

.btn-yellow {
    background-color: #fdc110;
    color: #a25206;
    border: 1px solid #fdc110;
    text-decoration: none;
    display: inline-block;
}

.btn-yellow:hover {
    background-color: #e6b000;
    color: #a25206;
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-newsletter {
    background-color: #f9faff;
    color: #3f68ba;
    border: 1px solid #1958ee;
    padding: 16px 32px;
}

/* Navigation */
.navbar {
    background-color: #e6eefe;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 113px;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #121212;
    letter-spacing: 1.02px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-link img {
    height: 40px;
    width: 40px;
}

.logo-link:hover,
.logo-link:active,
.logo-link:focus {
    text-decoration: none;
    color: inherit;
    transform: none;
    opacity: 1;
}

.logo-blue {
    color: #4d77ff;
}

.logo-white {
    color: white;
}

.footer .logo-blue {
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #001f5d;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3f68ba;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions .btn {
    padding: 14px 24px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    background-color: #e6eefe;
    padding: 62px 0 54px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 92px;
    max-width: 1358px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 598px;
}

.hero-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #001f5d;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    max-width: 684px;
}

.hero-img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    border-radius: 0 141px 0 217px;
}

/* Features Section */
.features-section {
    background-color: white;
    padding: 80px 0;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 92px;
    max-width: 1358px;
    margin: 0 auto;
}

.features-image {
    flex: 1;
    max-width: 684px;
    order: 1;
}

.features-text {
    flex: 1;
    max-width: 598px;
    order: 2;
}

.section-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 24px 0;
}

.section-title {
    text-align: left;
    margin-bottom: 24px;
}

.section-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #001f5d;
    text-align: center;
}

.features-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0 0 0 0;
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(415px, 1fr));
    gap: 44px 44px;
    margin-bottom: 80px;
}

.service-card {
    background-color: white;
    padding: 32px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.service-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.28;
    color: #001f5d;
    margin-bottom: 14px;
}

.service-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    color: #001f5d;
    margin-bottom: 32px;
    flex: 1;
}

.service-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3f68ba;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1958ee;
}

.services-cta {
    text-align: center;
}

/* y Section */
.migration-section {
    background-color: white;
    padding: 80px 0;
}

.migration-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1359px;
    margin: 0 auto;
}

.migration-text {
    flex: 1;
    max-width: 548px;
}

.migration-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.migration-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: white;
    margin-bottom: 32px;
}

.migration-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.migration-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.migration-link:hover {
    color: #f9faff;
}

.migration-image {
    flex: 1;
    max-width: 720px;
}

.migration-img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
}

.migration-text {
    background-color: #3f68ba;
    padding: 52px;
    border-radius: 24px;
    position: relative;
}

/* Pricing Section */
.pricing-section {
    background-color: #f9faff;
    padding: 67px 0 63px;
}

.pricing-section .section-title {
    text-align: center;
}

.pricing-section .section-header {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border: 1px solid #f9faff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #001f5d;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #001f5d;
    margin-bottom: 8px;
}

.pricing-badge {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #001f5d;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #001f5d;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Contact Section */
.contact-section {
    background-color: #f9faff;
    padding: 80px 0 80px;
    text-align: center;
}

.contact-section .section-title {
    text-align: center;
}

.contact-section .section-description {
    text-align: center;
}

.contact-section .section-header {
    text-align: center;
}

.contact-actions {
    text-align: center;
    margin-bottom: 64px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.contact-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #001f5d;
    margin-bottom: 24px;
}

.contact-link {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3f68ba;
}

/* Footer */
.footer {
    background-color: #3f68ba;
    padding: 80px 0;
}

.footer-content {
    display: flex;
    gap: 128px;
    margin-bottom: 80px;
}

.footer-newsletter {
    max-width: 500px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #f9faff;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    height: 56px;
    padding: 12px;
    border: 1px solid #1958ee;
    border-radius: 5px;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.newsletter-disclaimer {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #f9faff;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex: 1;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f9faff;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f9faff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.contact-details p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #f9faff;
    margin-bottom: 8px;
}

.contact-details a {
    color: #f9faff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 32px;
}

.footer-divider {
    height: 1px;
    background-color: #f9faff;
    margin-bottom: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f9faff;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f9faff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-credit {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #8a9cc5;
}

.footer-credit a {
    color: #f9faff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #3f68ba;
}

.legal-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .nav-content {
        padding: 0 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-actions .btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .hero-content {
        gap: 60px;
    }

    .migration-content {
        gap: 60px;
    }

    .footer-content {
        gap: 80px;
    }
}

@media (max-width: 992px) {
    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        height: auto;
        padding: 16px 20px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .features-image {
        order: 1;
    }
    
    .features-text {
        order: 2;
        max-width: 100%;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-description {
        text-align: center;
    }
    
    .migration-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        height: auto;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .pricing-title {
        font-size: 18px;
    }
    
    .pricing-price {
        font-size: 40px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-link {
        font-size: 16px;
    }
}

/* Funkcje Page Specific Styles */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-item .check-icon {
    flex-shrink: 0;
}

.feature-item-highlighted {
    background: linear-gradient(135deg, #e6eefe 0%, #f0f5ff 100%);
    border: 1px solid #3f68ba;
    border-radius: 10px;
    padding: 10px 16px;
    margin-left: -16px;
    margin-right: -16px;
}

.feature-item-highlighted strong {
    color: #3f68ba;
}

.feature-item span {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.92;
    color: #001f5d;
}

.feature-section {
    padding: 80px 0;
    background-color: white;
}

.feature-section-alt {
    background-color: #f9faff;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1336px;
    margin: 0 auto;
}

.feature-image {
    flex: 1;
    max-width: 684px;
}

.feature-img {
    width: 100%;
    height: 409px;
    object-fit: cover;
}

/* Feature Slideshow */
.feature-slideshow {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f5ff;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 409px;
    cursor: pointer;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 16px;
}

.slideshow-img.active {
    opacity: 1;
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
}

.slideshow-btn {
    background: none;
    border: 2px solid #3f68ba;
    color: #3f68ba;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.slideshow-btn:hover {
    background: #3f68ba;
    color: white;
}

.slideshow-dots {
    display: flex;
    gap: 8px;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #3f68ba;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.slideshow-dot.active {
    background: #3f68ba;
}

.slideshow-hint {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    padding: 0 0 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.lightbox-content {
    flex-direction: column;
    position: relative;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 20px;
    max-width: 90vw;
    margin-top: 8px;
}

.lightbox-caption.caption-left {
    text-align: left;
}

.lightbox-caption.caption-right {
    text-align: right;
}

@media (max-width: 768px) {
    .slideshow-wrapper {
        height: 250px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-caption {
        font-size: 13px;
        padding: 8px 12px;
    }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 36px;
    }
}

.feature-text {
    flex: 1;
    max-width: 546px;
}

.feature-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #001f5d;
    margin-bottom: 24px;
}

.feature-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #1e507a;
}

.feature-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.nav-link.active {
    color: #3f68ba;
    font-weight: 700;
}

/* Responsive for funkcje page */
@media (max-width: 992px) {
    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .feature-text {
        max-width: 100%;
    }
    
    .features-list {
        align-items: flex-start;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .features-list {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .feature-item span {
        font-size: 20px;
    }
}

/* Feature Placeholder (Coming Soon) */
.feature-placeholder {
    flex: 1;
    max-width: 684px;
    height: 409px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e6eefe 0%, #f0f5ff 50%, #e6eefe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    border: 2px dashed #3f68ba33;
    padding: 20px;
    box-sizing: border-box;
}

.feature-placeholder .placeholder-icon svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.feature-placeholder .placeholder-badge {
    font-family: 'TT Norms Pro', 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #3f68ba;
    background: white;
    padding: 8px 24px;
    border-radius: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(63, 104, 186, 0.15);
}

@media (max-width: 992px) {
    .feature-placeholder {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .feature-placeholder {
        height: 250px;
    }

    .feature-placeholder .placeholder-icon svg {
        width: 56px;
        height: 56px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.contact-link:focus,
.social-link:focus,
.legal-link:focus {
    outline: 2px solid #3f68ba;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Cennik Page Specific Styles */
.pricing-section {
    background-color: #f9faff;
    padding: 80px 0 112px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #f9faff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 900px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-subtitle {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #001f5d;
    margin-bottom: 24px;
    line-height: 1.5;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-price {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-badge {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #001f5d;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

.migration-process-section {
    background-color: #e6eefe;
    padding: 80px 0;
}

.migration-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.migration-text {
    flex: 1;
    max-width: 556px;
}

.migration-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.2;
    margin-bottom: 24px;
}

.migration-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1e507a;
    line-height: 1.5;
    margin-bottom: 24px;
}

.migration-steps {
    margin-top: 24px;
}

.migration-steps-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.3;
    margin-bottom: 16px;
}

.steps-list {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.3;
    margin: 0;
    padding-left: 48px;
}

.step-highlight {
    color: #3f68ba;
}

.migration-image {
    flex: 1;
    max-width: 558px;
}

.migration-img {
    width: 100%;
    height: 513px;
    object-fit: cover;
    border-radius: 0 200px 0 200px;
}

.support-section {
    background-color: #e6eefe;
    padding: 80px 0;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-image {
    flex: 1;
    max-width: 558px;
    order: 1;
}

.support-img {
    width: 100%;
    height: 513px;
    object-fit: cover;
    border-radius: 0 200px 0 200px;
}

.support-text {
    flex: 1;
    max-width: 556px;
    order: 2;
}

.support-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.2;
    margin-bottom: 24px;
}

.support-description {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1e507a;
    line-height: 1.5;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-yellow {
    background-color: #fdc110;
    color: #a25206;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-yellow:hover {
    background-color: #e6b00f;
    color: #a25206;
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Responsive Design for Cennik Page */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        height: auto;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .migration-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .migration-text {
        max-width: 100%;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .support-image {
        order: 1;
    }
    
    .support-text {
        order: 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-subtitle {
        font-size: 18px;
        height: auto;
    }
    
    .pricing-price {
        font-size: 40px;
    }
    
    .migration-title {
        font-size: 32px;
    }
    
    .migration-steps-title {
        font-size: 28px;
    }
    
    .steps-list {
        font-size: 28px;
        padding-left: 32px;
    }
    
    .support-title {
        font-size: 32px;
    }
}

/* Unique Migration Text Styles for Cennik Page */
.migration-text-pricing {
    flex: 1;
    max-width: 556px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 284px;
    justify-content: center;
}

.migration-title-pricing {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.2;
    margin: 0;
    width: 556px;
}

.migration-description-pricing {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1e507a;
    line-height: 1.5;
    margin: 0;
    width: 516px;
}

.migration-steps-pricing {
    margin: 0;
    padding: 0;
}

.migration-steps-title-pricing {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    line-height: 1.3;
    margin: 0 0 0 0;
    width: 556px;
}

.steps-list-pricing {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #3f68ba;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 556px;
}

.steps-list-pricing li {
    margin: 0;
    padding-left: 0;
}

.step-highlight-pricing {
    color: #3f68ba;
    font-weight: 700;
}

/* Responsive Design for Pricing Migration Text */
@media (max-width: 992px) {
    .migration-text-pricing {
        max-width: 100%;
        height: auto;
        gap: 20px;
    }
    
    .migration-title-pricing {
        font-size: 36px;
        width: 100%;
    }
    
    .migration-description-pricing {
        font-size: 18px;
        width: 100%;
    }
    
    .migration-steps-title-pricing {
        font-size: 28px;
        width: 100%;
    }
    
    .steps-list-pricing {
        font-size: 28px;
        width: 100%;
    }
    
    .steps-list-pricing li {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .migration-text-pricing {
        gap: 16px;
    }
    
    .migration-title-pricing {
        font-size: 32px;
    }
    
    .migration-description-pricing {
        font-size: 16px;
    }
    
    .migration-steps-title-pricing {
        font-size: 24px;
    }
    
    .steps-list-pricing {
        font-size: 24px;
    }
    
    .steps-list-pricing li {
        padding-left: 0;
    }
}

/* Specific height for pricing cards on index.html only */
body:not(.cennik-page):not(.booking-page):not(.landing-page) .pricing-card {
    height: 600px;
}

/* Pricing cards on booking page — auto height to fit varying content */
body.booking-page .pricing-card {
    height: auto;
}

/* Pricing cards on landing pages — auto height to fit full feature list */
body.landing-page .pricing-card {
    height: auto;
}

/* Specific height for pricing cards on cennik.html only */
body.cennik-page .pricing-card {
    height: auto;
    min-height: 950px;
}

/* Specific height for pricing subtitle on cennik.html only */
body.cennik-page .pricing-subtitle {
    height: 70px;
}

/* Specific text color for migration-text on index.html only */
body:not(.cennik-page) .migration-text {
    color: #f9faff;
}

/* Specific text colors for migration title and description on index.html only */
body:not(.cennik-page) .migration-title {
    color: white;
}

body:not(.cennik-page) .migration-description {
    color: white;
}

/* Specific line-height for feature-item span on funkcje.html only */
body:not(.cennik-page) .feature-item span {
    line-height: 1.2;
}

/* Specific text alignment for section-description on index.html only */
body:not(.cennik-page) .section-description {
    text-align: left;
}

/* Override for contact section description to remain centered */
.contact-section .section-description {
    text-align: center !important;
}

/* Kontakt Page Specific Styles */
.contact-page-section {
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
    padding: 100px 0 80px;
    min-height: 840px;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-page-title {
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #001f5d;
    margin: 0 0 12px;
}

.contact-page-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #475569;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-section {
    min-width: 0;
}

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

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 36px rgba(0, 0, 0, 0.05);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: #e6eefe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon-yellow {
    background: #fef3c7;
}

.contact-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #001f5d;
    margin: 0;
}

.contact-card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.5;
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.contact-input-group label {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-input {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    height: auto;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1e293b;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #3f68ba;
    box-shadow: 0 0 0 3px rgba(63, 104, 186, 0.12);
    background: #ffffff;
}

.contact-input::placeholder {
    color: #94a3b8;
}

.contact-textarea {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1e293b;
    width: 100%;
    min-height: 130px;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-textarea:focus {
    outline: none;
    border-color: #3f68ba;
    box-shadow: 0 0 0 3px rgba(63, 104, 186, 0.12);
    background: #ffffff;
}

.contact-textarea::placeholder {
    color: #94a3b8;
}

.contact-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 4px;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: #3f68ba;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-contact-submit:hover {
    background: #2d51a0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(63, 104, 186, 0.3);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.btn-schedule-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: #fdc110;
    color: #001f5d;
    border: none;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-schedule-submit:hover {
    background: #e6b00f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 193, 16, 0.35);
}

.btn-schedule-submit:active {
    transform: translateY(0);
}

.support-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.support-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.03);
}

.support-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.support-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #001f5d;
    margin: 0 0 8px;
}

.support-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px;
}

.support-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.support-contact-item:hover {
    background: #e6eefe;
    border-color: #3f68ba;
}

.support-contact-icon {
    width: 44px;
    height: 44px;
    background: #e6eefe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-contact-text {
    display: flex;
    flex-direction: column;
}

.support-contact-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.support-contact-value {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #001f5d;
}

.company-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.03);
}

.company-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #001f5d;
    margin: 0 0 18px;
}

.company-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.company-card-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-card-label {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-card-value {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
}

/* Responsive Design for Kontakt Page */
@media (max-width: 992px) {
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-info-section {
        position: static;
    }

    .contact-page-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 60px 0 40px;
    }

    .contact-page-header {
        margin-bottom: 36px;
    }

    .contact-page-title {
        font-size: 28px;
    }

    .contact-page-subtitle {
        font-size: 16px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .support-card {
        padding: 24px;
    }

    .company-card {
        padding: 20px 24px;
    }

    .company-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Cennik Dodatki Page Styles */
.addon-header-section {
    background-color: #f9faff;
    padding: 80px 0 40px;
    text-align: center;
}

.addon-header-section .section-title {
    text-align: center;
}

.addon-header-section .section-description {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.addon-back-link {
    margin-top: 24px;
    text-align: center;
}

.addon-section {
    padding: 60px 0;
    background: white;
}

.addon-section-alt {
    background: #f9faff;
}

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

.addon-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #001f5d;
    margin: 0 0 12px;
    line-height: 1.3;
}

.addon-section-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Addon Card - horizontal layout */
.addon-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
}

.addon-card:hover {
    box-shadow: 0 4px 20px rgba(63, 104, 186, 0.1);
}

.addon-card-highlight {
    border: 2px solid #3f68ba;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    max-width: 900px;
    margin: 0 auto;
}

.addon-card-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #e6eefe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-card-content {
    flex: 1;
    min-width: 0;
}

.addon-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #001f5d;
    margin: 0 0 8px;
    line-height: 1.3;
}

.addon-card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.addon-card-price-box {
    flex-shrink: 0;
    text-align: center;
    min-width: 200px;
}

.addon-price {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #001f5d;
    line-height: 1.1;
}

.addon-price-currency {
    font-size: 28px;
    font-weight: 700;
}

.addon-price-period {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.4;
}

.addon-price-individual {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
}

.btn-addon {
    font-size: 14px;
    padding: 10px 20px;
    white-space: nowrap;
}

/* Addon Pricing Grid - 3 columns */
.addon-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.addon-pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.addon-pricing-card .btn-full {
    text-align: center;
    margin-top: auto;
}

.addon-pricing-card:hover {
    box-shadow: 0 4px 20px rgba(63, 104, 186, 0.1);
}

.addon-pricing-card-popular {
    border: 2px solid #3f68ba;
    box-shadow: 0 4px 24px rgba(63, 104, 186, 0.15);
}

.addon-pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #3f68ba;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.addon-pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.addon-pricing-name {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #001f5d;
    margin: 0 0 16px;
}

.addon-pricing-price {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #001f5d;
    line-height: 1.1;
}

.addon-pricing-currency {
    font-size: 26px;
    font-weight: 700;
}

.addon-pricing-period {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.addon-pricing-extra {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #3f68ba;
    font-weight: 500;
    margin-top: 4px;
}

.addon-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.addon-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 14px;
}

.addon-pricing-features li.addon-feature-highlighted {
    background: linear-gradient(135deg, #e6eefe 0%, #f0f5ff 100%);
    border: 1px solid #3f68ba;
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: -12px;
    margin-right: -12px;
}

.addon-pricing-features li.addon-feature-highlighted strong {
    color: #3f68ba;
}

.addon-pricing-features li a {
    color: #3f68ba;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(63, 104, 186, 0.3);
    transition: border-color 0.2s ease;
    display: inline;
}

.addon-pricing-features li a:visited {
    color: #3f68ba;
}

.addon-pricing-features li a:hover {
    border-bottom-color: #3f68ba;
}

.addon-pricing-features li .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Discount Banner */
.addon-discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #e6eefe 0%, #f0f5ff 100%);
    border: 1px solid #3f68ba;
    border-radius: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.addon-discount-badge {
    flex-shrink: 0;
    background: #3f68ba;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-discount-text {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #001f5d;
    margin: 0;
    line-height: 1.5;
}

/* Services grid for one-time services */
.addon-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsive - Cennik Dodatki */
@media (max-width: 992px) {
    .addon-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 28px;
    }

    .addon-card-price-box {
        min-width: auto;
    }

    .addon-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .addon-pricing-card-popular {
        order: -1;
    }

    .addon-services-grid {
        grid-template-columns: 1fr;
    }

    .addon-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .addon-header-section {
        padding: 60px 0 30px;
    }

    .addon-section {
        padding: 40px 0;
    }

    .addon-price {
        font-size: 40px;
    }

    .addon-pricing-price {
        font-size: 40px;
    }

    .addon-card {
        padding: 24px 20px;
        gap: 20px;
    }

    .addon-discount-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* Polityka Page Specific Styles */
.privacy-policy-section {
    background-color: white;
    padding: 80px 0;
    min-height: 100vh;
}

.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-policy-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #001f5d;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.privacy-policy-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1e507a;
    line-height: 1.6;
}

.privacy-policy-text h2 {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.privacy-policy-text h3 {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #001f5d;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.privacy-policy-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-policy-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-policy-text li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.privacy-policy-text strong {
    font-weight: 700;
    color: #001f5d;
}

.privacy-policy-text a {
    color: #3f68ba;
    text-decoration: underline;
}

.privacy-policy-text a:hover {
    color: #2c4a8a;
}

/* Responsive Design for Polityka Page */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0;
    }
    
    .privacy-policy-content {
        padding: 0 15px;
    }
    
    .privacy-policy-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .privacy-policy-text h2 {
        font-size: 28px;
        margin: 30px 0 15px 0;
    }
    
    .privacy-policy-text h3 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }
    
    .privacy-policy-text {
        font-size: 14px;
    }
    
    .privacy-policy-text ul {
        padding-left: 20px;
    }
}

/* Regulamin Page Specific Styles */
.terms-section {
    background-color: white;
    padding: 80px 0;
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-title {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #001f5d;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.terms-update-date {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1e507a;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.terms-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1e507a;
    line-height: 1.6;
}

.terms-text h2 {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.terms-text h3 {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #001f5d;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.terms-text h4 {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #001f5d;
    margin: 25px 0 12px 0;
    line-height: 1.4;
}

.terms-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.terms-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-text li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.terms-text strong {
    font-weight: 700;
    color: #001f5d;
}

.terms-text a {
    color: #3f68ba;
    text-decoration: underline;
}

.terms-text a:hover {
    color: #2c4a8a;
}

/* Responsive Design for Regulamin Page */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-content {
        padding: 0 15px;
    }
    
    .terms-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .terms-update-date {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .terms-text h2 {
        font-size: 28px;
        margin: 30px 0 15px 0;
    }
    
    .terms-text h3 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }
    
    .terms-text h4 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
    
    .terms-text {
        font-size: 14px;
    }
    
    .terms-text ul {
        padding-left: 20px;
    }
}

/* FAQ Page Specific Styles */
.faq-hero {
    background-color: #e6eefe;
    padding: 67px 0 63px;
}

.faq-hero .section-header {
    text-align: center;
}

.faq-hero .section-title {
    text-align: center;
}

.faq-hero .section-description {
    text-align: center !important;
}

.faq-section {
    background-color: #f9faff;
    padding: 80px 0;
}

.faq-section .section-header {
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e6eefe;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-family: 'TT Norms Pro', 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #001f5d;
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 700;
    color: #3f68ba;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: #3f68ba;
}

.faq-answer {
    padding: 0 32px 24px;
}

.faq-answer p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e507a;
    margin: 0;
}

.faq-answer a {
    color: #3f68ba;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #2c4a8a;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 0;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 24px;
    }

    .faq-answer {
        padding: 0 24px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq-answer {
        padding: 0 20px 16px;
    }
}

/* =============================================
   NEW SECTIONS: AI Visibility / GEO Optimization
   ============================================= */

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #f9faff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.step-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #3f68ba;
    color: white;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
}

.step-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* For Whom Section */
.for-whom-section {
    padding: 80px 0;
    background-color: white;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.for-whom-card {
    background-color: #f9faff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e6eefe;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.for-whom-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
}

.for-whom-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* Case Study Section */
.case-study-section {
    padding: 80px 0;
    background-color: #e6eefe;
}

.case-study-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.case-study-problem,
.case-study-solution,
.case-study-results {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.case-study-problem h3,
.case-study-solution h3,
.case-study-results h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
}

.case-study-problem p,
.case-study-solution p,
.case-study-results p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.case-study-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-results li {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.case-study-results li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3f68ba;
    font-weight: 700;
}

/* Feature Summary (funkcje.html bold answer blocks) */
.feature-summary {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #001f5d;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 16px 20px;
    background-color: #f9faff;
    border-left: 4px solid #3f68ba;
    border-radius: 0 8px 8px 0;
}

/* Error/404 Section */
.error-section {
    padding: 120px 0;
    text-align: center;
    background-color: #f9faff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-title {
    font-family: 'Manrope', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #3f68ba;
    line-height: 1;
    margin-bottom: 16px;
}

.error-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 16px;
}

.error-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Steps (landing page) */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.booking-steps .step-card {
    padding: 24px;
}

.booking-steps .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

/* Pricing grid with 3 columns (booking page) */
.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Pricing grid with 1 column (single card centered) */
.pricing-grid-1 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

.pricing-extra {
    font-size: 15px;
    color: #3f68ba;
    font-weight: 500;
    margin-top: 4px;
}

.pricing-card-popular {
    border: 2px solid #3f68ba;
    position: relative;
}

.pricing-discount-note {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    margin-top: 24px;
}

/* Company About Card (kontakt.html) */
.company-about-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.company-about-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.steps-cta,
.faq-cta {
    text-align: center;
    margin-top: 48px;
}

/* Scale Badge */
.scale-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.scale-badge-blue {
    background-color: #3f68ba;
}

.scale-badge-yellow {
    background-color: #d4a500;
}

.scale-badge-navy {
    background-color: #001f5d;
}

/* Scale Card with colored border-top */
.for-whom-card.scale-card-blue {
    border-top: 4px solid #3f68ba;
}

.for-whom-card.scale-card-yellow {
    border-top: 4px solid #fdc110;
}

.for-whom-card.scale-card-navy {
    border-top: 4px solid #001f5d;
}

/* Scale Card Feature List */
.scale-card-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.scale-card-features li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    padding: 4px 0 4px 28px;
    position: relative;
}

.scale-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background-image: url('images/icon-check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.scale-card-link {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #3f68ba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scale-card-link:hover {
    color: #001f5d;
}

/* Team Features Section */
.team-features-section {
    padding: 80px 0;
    background-color: #e6eefe;
}

/* Pricing Addon Callout */
.pricing-addon-callout {
    background-color: #f9faff;
    border-left: 4px solid #fdc110;
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-addon-callout h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
}

.pricing-addon-callout p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
}

.pricing-addon-callout .pricing-example {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #001f5d;
    background-color: #e6eefe;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.pricing-addon-callout .btn {
    margin-top: 8px;
}

/* Pricing Enterprise Card */
.pricing-enterprise-card {
    background-color: #001f5d;
    color: white;
    padding: 32px;
    border-radius: 12px;
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-enterprise-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.pricing-enterprise-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pricing-enterprise-card .btn {
    margin-top: 8px;
}

/* Landing Page Problems Section */
.problems-section {
    padding: 80px 0;
    background-color: #f9faff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e6eefe;
}

.problem-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 12px;
}

.problem-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* Landing Page Cross-links */
.cross-links-section {
    padding: 60px 0;
    background-color: white;
}

.cross-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.cross-link-card {
    background-color: #f9faff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e6eefe;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

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

.cross-link-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #001f5d;
    margin-bottom: 8px;
}

.cross-link-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

/* =============================================
   RESPONSIVE: New Sections
   ============================================= */

@media (max-width: 1200px) {
    .booking-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .for-whom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-card {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-section,
    .for-whom-section,
    .case-study-section {
        padding: 60px 0;
    }

    .steps-grid,
    .for-whom-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }

    .error-title {
        font-size: 80px;
    }

    .error-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .step-card,
    .for-whom-card {
        padding: 24px;
    }

    .case-study-problem,
    .case-study-solution,
    .case-study-results {
        padding: 24px;
    }

    .error-title {
        font-size: 60px;
    }

    .error-actions {
        flex-direction: column;
    }
}

/* =============================================
   RESPONSIVE: Scale/Team/Pricing/Landing Sections
   ============================================= */

@media (max-width: 992px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cross-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-features-section,
    .problems-section,
    .cross-links-section {
        padding: 60px 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-addon-callout,
    .pricing-enterprise-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .problem-card {
        padding: 24px;
    }

    .pricing-addon-callout,
    .pricing-enterprise-card {
        padding: 20px;
    }

    .scale-card-features li {
        font-size: 13px;
    }
}
