* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1e293b;
    background: #fff;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo-img {
    height: 48px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
}
.nav-links a:hover { color: #2b7e6b; }
.lang-switch {
    display: flex;
    gap: 8px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 40px;
}
.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
}
.lang-btn.active {
    background: #2b7e6b;
    color: white;
}
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #2b7e6b;
}
/* Hero */
.hero {
    padding: 120px 0 80px;
    color: white;
    background-size: cover;
    background-position: center;
}
.hero-text {
    max-width: 700px;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 0;
}
/* Sekcje ogólne */
section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.1rem;
    color: #475569;
}
/* Feature grid */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}
.feature-item {
    padding: 24px;
    background: #f9fafb;
    border-radius: 28px;
    transition: 0.2s;
}
.feature-item:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.feature-item i {
    font-size: 2.8rem;
    color: #2b7e6b;
    margin-bottom: 16px;
}
.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.feature-item p {
    color: #475569;
}
/* Solutions grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 32px;
}
.solution-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.solution-card i {
    font-size: 2.5rem;
    color: #2b7e6b;
    margin-bottom: 20px;
}
.solution-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.solution-card p { margin-bottom: 12px; }
/* Video */
.video-section {
    background: #f8fafc;
}
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
}
.video-wrapper video {
    width: 100%;
    display: block;
}
/* Pricing */
.pricing {
    background: #ffffff;
}
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}
.pricing-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    min-width: 200px;
    max-width: 260px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.featured {
    border: 2px solid #2b7e6b;
    background: #ffffff;
    transform: scale(1.02);
}
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.price {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 8px 0 4px;
}
.price-eur {
    font-size: 2rem;
    font-weight: 800;
    color: #2b7e6b;
}
.price-pln {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
}
.one-time-banner {
    text-align: center;
    background: #e6f7f0;
    color: #1f5f50;
    padding: 12px 20px;
    border-radius: 60px;
    width: fit-content;
    margin: 0 auto 40px auto;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.one-time-banner i {
    font-size: 1.2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: #2b7e6b;
    color: white;
}
.btn-primary:hover {
    background: #1f5f50;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid #2b7e6b;
    color: #2b7e6b;
    padding: 10px 20px;
}
.btn-outline:hover {
    background: #2b7e6b;
    color: white;
}
.store-link {
    text-align: center;
    margin-top: 20px;
}
.store-link a {
    color: #2b7e6b;
    font-weight: 600;
    text-decoration: none;
}
/* Quote / Contact section */
.quote-section {
    background: #f8fafc;
}
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 28px;
    font-family: inherit;
    font-size: 1rem;
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.info-item i { width: 32px; color: #2b7e6b; }
.form-note {
    font-size: 0.8rem;
    color: #64748b;
}
/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 32px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.social-links a {
    color: #cbd5e1;
    margin-left: 20px;
    transition: 0.2s;
}
.social-links a:hover { color: #2b7e6b; }
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.modal-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 28px;
    width: 80%;
    max-width: 800px;
}
.close-modal {
    float: right;
    font-size: 28px;
    cursor: pointer;
}
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}
/* Wyszarzony pakiet – działa na wszystkich ekranach */
.pricing-card.disabled {
    opacity: 0.6;
    filter: grayscale(0.2);
    pointer-events: none; /* blokuje kliknięcie na cały kafelek */
    user-select: none;
}
.store-link {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.store-link-text {
    color: #2b7e6b;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.store-link-text:hover {
    color: #1f5f50;
    text-decoration: underline;
}

.shop-bag-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.2s;
}

.store-link:hover .shop-bag-icon {
    transform: scale(1.1);
}
/* Opcjonalnie: jeśli chcesz również wyszarzyć przycisk w środku */
/*.pricing-card.disabled .btn.disabled {
    opacity: 0.5;
    background-color: #94a3b8;
    border-color: #94a3b8;
    cursor: not-allowed;
    pointer-events: none;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        padding-top: 24px;
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero-text h1 { font-size: 2rem; }
    .contact-wrapper { padding: 24px; flex-direction: column; }
    .footer-content { flex-direction: column; }
    .pricing-card { min-width: 180px; }
    .one-time-banner { font-size: 0.9rem; }
	/* ← tutaj wklej nowy kod */
    .logo-svg {
        height: 36px !important;
    }

}