:root {
    --primary-color: #4f46e5;
    --primary-color-dark: #4338ca;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-color-light: #6b7280;
    --background-color: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 0.375rem;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
 
    margin: 1rem 0;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color-dark);
}

ul {
    list-style: none;
}

/* Stylowanie list tylko dla polityki prywatności */
.privacy-policy ul, .privacy-policy ol {
    margin: 1.25em 0 1.25em 2em;
    padding-left: 1.5em;
    font-size: 1.05em;
    color: var(--text-color);
}
.privacy-policy ul {
    list-style: disc inside;
}
.privacy-policy ol {
    list-style: decimal inside;
}
.privacy-policy li {
    margin-bottom: 0.6em;
    line-height: 1.7;
    padding-left: 0.2em;
    position: relative;
}
.privacy-policy ul li::marker {
    color: var(--primary-color);
    font-size: 1em;
}
.privacy-policy ol li::marker {
    color: var(--primary-color-dark);
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
}

.btn--primary:hover {
    background-color: var(--primary-color-dark);
    color: white;
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn--secondary:hover {
    background-color: #0da271;
    color: white;
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.header__logo span {
    color: var(--primary-color);
}

.header__nav ul {
    display: flex;
}

.header__nav li {
    margin-left: 2rem;
}

.header__nav a {
    color: var(--text-color);
    font-weight: 500;
}

.header__nav a:hover {
    color: var(--primary-color);
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f7ff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero__content p {
    font-size: 1.125rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.hero__counter {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    display: inline-block;
}

.hero__counter p {
    margin-bottom: 0;
    font-weight: 500;
}

.hero__counter span {
    color: var(--primary-color);
    font-weight: 700;
}

.hero__form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.hero__form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

#form-response {
    display: none;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 1em;
    border-radius: 5px;
    margin-top: 10px;
    overflow: auto;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--text-color-light);
}

.privacy-link {
    text-decoration: underline;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.form-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.success-message .details {
    font-size: 0.875rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* How it works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step__icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step__icon i {
    font-size: 2rem;
}

.step h3 {
    margin-bottom: 1rem;
}

/* Benefits */
.benefits {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit__icon i {
    font-size: 1.5rem;
}

/* Demo */
.demo {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.demo__video {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-placeholder {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button i {
    color: white;
    font-size: 2rem;
}

.play-button:hover {
    background-color: var(--primary-color-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/* For whom */
.for-whom {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience__item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.audience__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience__icon {
    width: 70px;
    height: 70px;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience__icon i {
    font-size: 1.75rem;
}

/* Integrations */
.integrations {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.integrations__subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--text-color-light);
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.logo {
    flex: 0 0 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.testimonials__slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial__content {
    position: relative;
    padding: 1.5rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.testimonial__content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--background-alt);
    transform: rotate(45deg);
}

.testimonial__content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial__author {
    display: flex;
    align-items: center;
}

.testimonial__author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial__author-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial__author-info p {
    color: var(--text-color-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.faq__items {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    background-color: var(--background-alt);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq__question h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.faq__toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.active .faq__answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq__item.active .faq__toggle i {
    transform: rotate(45deg);
}

/* CTA */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--primary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn--primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: #1f2937;
    color: white;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo h2 {
    font-size: 1.75rem;
}

.footer__logo span {
    color: var(--primary-color);
}

.footer__links h3, .footer__contact h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__links h3::after, .footer__contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer__links ul li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: #d1d5db;
    transition: var(--transition);
}

.footer__links a:hover {
    color: white;
}

.footer__contact a {
    color: var(--primary-color);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social {
    display: flex;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    transition: var(--transition);
}

.footer__social a:hover {
    background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__content h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: var(--shadow);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        pointer-events: none;
        z-index: 999;
    }
    
    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .header__nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
    }
    
    .header__nav li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .header__nav a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
    }
    
    .header__nav a:hover {
        background-color: var(--background-alt);
    }
    
    .header__cta {
        display: none !important; /* Hide CTA in mobile nav as it's not needed */
    }
    
    .header__mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .header__mobile-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }
    
    .header__mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .header__mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero__content h1 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.875rem;
    }
    
    /* Add overlay when mobile menu is open */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .hero__content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__social {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .footer__social a:first-child {
        margin-left: 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

/* Strona kontaktowa */
.contact-page {
    padding: 8rem 0 5rem;
    background-color: var(--background-alt);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-info h3::after, .contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-item p {
    margin-bottom: 0.25rem;
    color: var(--text-color-light);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.social-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--background-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Dodatkowe style dla formularza */
.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-group.checkbox-group label {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--text-color-light);
    margin-bottom: 0;
}

/* Cennik - Pricing Page Styles */

/* Pricing Table Styles */
.pricing-table-wrapper {
    overflow-x: auto; 
    margin-top: 32px;
}

.pricing-table {
    width: 100%; 
    border-collapse: collapse; 
    background: #fff; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.pricing-table th, 
.pricing-table td {
    padding: 16px 10px; 
    text-align: center; 
    border: 1px solid #e3e3e3; 
    font-size: 1rem;
}

.pricing-table th {
    background: #f7f7fb; 
    font-weight: 600; 
    color: #222;
}

.pricing-table td.feature {
    font-weight: 500; 
    background: #f7f7fb; 
    text-align: left; 
    min-width: 150px;
}

.pricing-table .highlight, 
.pricing-table th.highlight {
    background: #e6f1fa; 
    color: #1577c3; 
    font-weight: 700; 
    position: relative;
}

.pricing-table .plan-tag {
    display: block; 
    font-size: 0.8em; 
    color: #fff; 
    background: #1577c3; 
    border-radius: 8px; 
    padding: 2px 8px; 
    margin: 4px auto 0; 
    width: max-content;
}

@media (max-width: 900px) {
    .pricing-table th, 
    .pricing-table td {
        padding: 10px 4px; 
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .pricing-table th, 
    .pricing-table td {
        padding: 7px 2px; 
        font-size: 0.9rem;
    }
    .pricing-table td.feature {
        min-width: 100px;
    }
}

/* Trial Notice Styles */
.trial-notice {
    background: linear-gradient(135deg, #e6f1fa 0%, #d1e7dd 100%);
    border-radius: 12px;
    padding: 16px 24px;
    margin-top: 24px;
    text-align: center;
    border: 2px solid #1577c3;
}

.trial-notice p {
    margin: 0;
    color: #1577c3;
    font-size: 1.1rem;
}

/* Additional Options Styles */
.additional-options {
    margin-top: 50px;
}

.additional-options h3 {
    text-align: center; 
    margin-bottom: 30px; 
    color: #1577c3;
}

/* Annual Plans Styles */
.annual-plans {
    margin-bottom: 40px;
}

.annual-grid {
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center;
}

.annual-card {
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    padding: 24px; 
    flex: 1; 
    min-width: 250px; 
    max-width: 320px; 
    border: 2px solid #e6f1fa; 
    position: relative;
}

.annual-card::before {
    content: "💰 OSZCZĘDZASZ"; 
    position: absolute; 
    top: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #28a745; 
    color: white; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 600;
}

.annual-card__header {
    text-align: center; 
    margin-bottom: 16px;
}

.annual-card__header h4 {
    margin-bottom: 8px; 
    color: #1577c3;
}

.annual-card__price {
    font-size: 1.4rem; 
    font-weight: 700; 
    color: #1577c3; 
    margin-bottom: 4px;
}

.annual-card__savings {
    color: #28a745; 
    font-weight: 600; 
    font-size: 0.9rem;
}

.annual-card__content {
    margin: 16px 0;
}

/* Addon Packs Styles */
.addon-packs {
    margin-bottom: 40px;
}

.addon-notice {
    background: #f8f9fa; 
    border-left: 4px solid #1577c3; 
    padding: 16px; 
    margin-bottom: 20px; 
    border-radius: 0 8px 8px 0;
}

.addon-grid {
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: center;
}

.addon-card {
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); 
    padding: 20px; 
    flex: 1; 
    min-width: 180px; 
    max-width: 250px; 
    border: 1px solid #e3e3e3;
}

.addon-card__header {
    text-align: center; 
    margin-bottom: 12px;
}

.addon-card__header h4 {
    margin-bottom: 4px; 
    font-size: 1rem;
}

.addon-card__price {
    font-size: 1.3rem; 
    font-weight: 700; 
    color: #1577c3;
}

.addon-card__content {
    text-align: center; 
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .annual-card, .addon-card {
        min-width: 150px;
    }
    .annual-card {
        padding: 16px;
    }
    .addon-card {
        padding: 16px;
    }
}

/* One-time Packages Styles */
.one-time-packages {
    margin-top: 40px;
}

.one-time-packages h3 {
    text-align: center; 
    margin-bottom: 20px;
}

.packages-grid {
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center; 
    margin-top: 20px;
}

.package-card {
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); 
    padding: 20px; 
    flex: 1; 
    min-width: 200px; 
    max-width: 300px;
}

.package-card__header {
    text-align: center; 
    margin-bottom: 15px;
}

.package-card__header h4 {
    margin-bottom: 5px;
}

.package-card__price {
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #1577c3;
}

.package-card__content {
    text-align: center; 
    margin-bottom: 20px;
}

.packages-note {
    text-align: center; 
    font-style: italic; 
    margin-top: 20px;
}

@media (max-width: 768px) {
    .package-card {
        min-width: 150px;
    }
}

/* Enterprise Block Styles */
.enterprise-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e3e3e3;
}

.enterprise-block ul {
    display: inline-block;
    text-align: left;
    margin: 20px auto;
}
