        :root {
            --primary: #0f4c5c;
            --primary-dark: #0a323d;
            --accent: #2ec4b6;
            --cta-green: #25d366;
            --bg-light: #f8fafc;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --telegram-blue: #0088cc;      
 }

        * { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--text-dark); 
    background: #f2f8f7;     
    line-height: 1.7; 
}


.section h2 { 
    color: var(--primary-dark) !important; 
}

.section p { 
    color: var(--text-dark); 
}
        /* Navigation */
       header { 
            background: #f2f8f7 !important; 
            position: relative; 
            top: 0; 
            z-index: 1000; 
            border-bottom: none !important; 
            box-shadow: none !important; 
        }
        .container { width: 90%; max-width: 1150px; margin: 0 auto; padding: 0 15px; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo { font-size: 1.4rem; font-weight: 700; color: var(--primary-dark); text-decoration: none; }
        .logo span { color: var(--accent); }
        nav ul { display: flex; list-style: none; gap: 20px; align-items: center; }
        nav a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
        nav a:hover, nav a.active { color: var(--primary); font-weight: 700; }

        /* Dropdown Menu */
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content { display: none; position: absolute; top: 100%; left: 0; background-color: #1a232a; min-width: 290px; box-shadow: 0px 8px 20px rgba(0,0,0,0.25); border-radius: 6px; overflow: hidden; z-index: 1000; text-align: left; }
        .dropdown-content a { color: #e2e8f0 !important; padding: 13px 18px; text-decoration: none; display: block; font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
        .dropdown-content a:hover { background-color: var(--primary); color: #ffffff !important; }
        .dropdown:hover .dropdown-content { display: block; }

        /* Hero Section */
        .hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; padding: 70px 0; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .hero-badge { background: rgba(46, 196, 182, 0.2); color: var(--accent); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 15px; border: 1px solid var(--accent); }
        .hero h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 15px; }
        .hero p { font-size: 1.05rem; margin-bottom: 25px; color: #cbd5e1; }
        .hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
        .btn-primary { 
    background: var(--accent); 
    color: var(--primary-dark) !important; 
    padding: 14px 28px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    border: 2px solid var(--accent); 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.3);
}

.btn-primary:hover {
    background: #38e0d0; 
    border-color: #38e0d0;
    transform: translateY(-2px);   
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.5);
}

.btn-outline { 
    background: transparent; 
    color: var(--primary-dark) !important; 
    padding: 12px 26px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    border: 2px solid var(--accent); 
    transition: all 0.3s ease; 
}

.btn-outline:hover {
    background: var(--accent); 
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.2);
}

        /* Image Styling */
        .img-container { text-align: center; position: relative; }
        .img-container img { width: 100%; max-width: 580px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
        .image-caption { font-size: 0.8rem; color: #94a3b8; margin-top: 8px; font-style: italic; }

        /* Content Sections */
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
        .section-header h2 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 10px; }
        .section-header p { color: var(--text-muted); }

/* Highlights & Checklists */
        .highlight-list { list-style: none; margin-top: 15px; }
.highlight-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 0.96rem; color: var(--text-dark); }
        .highlight-list i { color: var(--accent); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

/* Tables */
        .comp-table { width: 100%; border-collapse: collapse; margin-top: 25px; font-size: 0.92rem; }
        .comp-table th, .comp-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
        .comp-table th { background: var(--primary-dark); color: white; }
        .comp-table tr:nth-child(even) { background: var(--bg-light); }
        .check-green { color: var(--cta-green); font-weight: 700; }
        .cross-red { color: #e63946; font-weight: 700; }

/* Content Card Blocks */
        .card-block { background: white; border-radius: 14px; border: 1px solid var(--border); padding: 40px; margin-bottom: 35px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); color: var(--text-dark); }
        .card-block h2 { color: var(--primary-dark); font-size: 1.7rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; font-weight: 700; }
        .card-block h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
        .card-block p { color: var(--text-dark); font-size: 0.98rem; margin-bottom: 16px; }

/* Media & Text Split */
        
        .content-image-box { 
    text-align: center; 
    background: transparent; 
    padding: 0; 
    border: none; 
}
.content-image-box img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
}
        .image-caption { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; font-style: italic; }

/* Timeline / Synergy section */
        .synergy-box { background: linear-gradient(to right, #fdfbfb, #ebedee); border-left: 5px solid var(--accent); padding: 25px; border-radius: 8px; margin-top: 20px; }
        .synergy-step { margin-bottom: 15px; }
        .synergy-step:last-child { margin-bottom: 0; }
        .synergy-step h4 { color: var(--primary-dark); font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }

/* Grid Cards */
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 25px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        
        
        .feature-icon { width: 50px; height: 50px; background: rgba(231, 111, 81, 0.12); color: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 15px; }
        .feature-box h3 { color: var(--primary-dark); font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
        .feature-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
       
/* Dosage Grid */
        .dosage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
        .dosage-card { background: #f1f5f9; border-left: 4px solid var(--accent); padding: 20px; border-radius: 0 10px 10px 0; }
        .dosage-card h4 { color: var(--primary-dark); font-size: 1.05rem; margin-bottom: 8px; }

 /* Features Grid */
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 15px; }
        .card h3 { color: var(--primary-dark); font-size: 1.2rem; margin-bottom: 10px; }
        .card p { color: var(--text-muted); font-size: 0.95rem; }

        /* Detailed Banner */
        .banner-detail { background: white; border-radius: 16px; border: 1px solid var(--border); padding: 40px; margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

        /* FAQ Styling */
        .faq-item { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 15px; }
        .faq-item h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
        .faq-item p { color: var(--text-muted); font-size: 0.95rem; }

/* FAQ Section */
        .faq-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: 10px; padding: 22px; margin-bottom: 15px; }
        .faq-box h3 { font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 8px; font-weight: 600; }
        .faq-box p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
       
 /* Pricing Cards */
        .pricing-card.popular { border: 2px solid var(--accent); box-shadow: 0 8px 20px rgba(46, 196, 182, 0.15); }
        .popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 0.75rem; font-weight: 700; padding: 4px 15px; border-radius: 12px; text-transform: uppercase; }
        .price { font-size: 2.2rem; font-weight: 700; color: var(--primary-dark); margin: 15px 0; }

        /* Bottom Call to Action */
        .cta-bottom { background: linear-gradient(135deg, var(--primary-dark), #1d3557); color: white; border-radius: 14px; padding: 45px 30px; text-align: center; margin-top: 40px; }
        .cta-bottom h2 { font-size: 2rem; margin-bottom: 15px; font-weight: 700; }
        .cta-bottom p { color: #cbd5e1; max-width: 700px; margin: 0 auto 30px; font-size: 1.05rem; }

        footer { 
    background: var(--primary-dark); 
    color: #94a3b8; 
    padding: 50px 0 25px;
    padding-top: 25px !important; 
    font-size: 0.85rem; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    margin-bottom: 40px; 
    align-items: start;
}

.footer-col h4 { 
    color: white; 
    margin-bottom: 15px; 
    font-size: 1rem; 
    line-height: 1.3;
}

.footer-col ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.footer-col p { 
    margin: 0 0 8px 0; 
    line-height: 1.6; 
    color: #94a3b8;
}

.footer-col a { 
    color: #94a3b8; 
    text-decoration: none; 
    display: block; 
    margin-bottom: 8px; 
    line-height: 1.6;
    transition: color 0.2s; 
}

.footer-col a:hover { 
    color: white; 
}

        @media (max-width: 868px) {
            .hero-grid { 
        display: grid !important;
        grid-template-columns: 1fr !important; 
    }
		.hero .img-container {
        display: block !important;
        margin-top: 20px !important;
        text-align: center;
}
	    .product-grid-hero, .content-with-image { grid-template-columns: 1fr; }
            .hero-product h1 { font-size: 1.8rem; }
            .card-block { padding: 25px; }
        }

nav a {
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after, 
nav a.active::after {
    width: 100%;
}

.btn-primary, .btn-outline { 
    background: var(--accent) !important; 
    color: var(--primary-dark) !important; 
    padding: 14px 28px !important; 
    border-radius: 8px !important; 
    text-decoration: none !important; 
    font-weight: 700 !important; 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    gap: 10px !important; 
    border: 2px solid var(--accent) !important; 
    transition: all 0.3s ease !important; 
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.3) !important;
}

.btn-primary:hover, .btn-outline:hover {
    background: #38e0d0 !important; 
    border-color: #38e0d0 !important;
    color: var(--primary-dark) !important; 
    transform: translateY(-2px) !important;   
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.85), 0 0 10px rgba(56, 224, 208, 0.6) !important;
}
.card, .pricing-card, .feature-box, .pillar-card, .product-card, .price-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 2px solid var(--border);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .pricing-card:hover, .feature-box:hover, .pillar-card:hover, .product-card:hover, .price-card:hover {
    border-color: var(--accent); /* Zmienia się tylko kolor */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 196, 182, 0.2);
}

.pricing-card h3 {
    color: #0f4c5c !important;
}

/* 2. Opisy w kartach cenowych */
.pricing-card p {
    color: #334155 !important;
}


.banner-detail ul li {
    color: #1e293b !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}


@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 576px) {
    .btn-primary, .btn-outline { width: 100% !important; }

    body, .container, .section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
    }

    h1 { font-size: 1.75rem !important; line-height: 1.2; }
    h2 { font-size: 1.35rem !important; line-height: 1.3; }
    h3 { font-size: 1.15rem !important; }

    nav ul { flex-direction: column !important; gap: 12px !important; }
    .grid-4 { grid-template-columns: 1fr !important; }
}

.card-icon, .pillar-card .card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    height: 80px;
    width: 100%;
    overflow: hidden !important;
}

.cert-img {
    max-width: 95px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
    transform: scale(var(--scale-base, 1));
}


.cert-img[src*="GMP"] { --scale-base: 1.3; }
.cert-img[src*="HACCP"] { --scale-base: 1.8; }
.cert-img[src*="Food"] { --scale-base: 1.35; }
.cert-img[src*="Halal"] { --scale-base: 1.15; }
.cert-img[src*="Kosher"] { --scale-base: 1.1; }
.cert-img[src*="non gmo"] { --scale-base: 1.65; }
.cert-img[src*="Pesticides"] { --scale-base: 2.3; }
.cert-img[src*="BSE"] { --scale-base: 2.3; }
.cert-img[src*="pure"] { --scale-base: 2.1; }
.cert-img[src*="badania"] { --scale-base: 0.95; }
.cert-img[src*="GLP-1"] { --scale-base: 1.4; }
.cert-img[src*="GLP-2"] { --scale-base: 1.4; }
.cert-img[src*="GIP"] { --scale-base: 1.4; }
.cert-img[src*="energia ATP"] { --scale-base: 0.8; }
.cert-img[src*="termogeneza"] { --scale-base: 1.2; }
.cert-img[src*="ochrona masy miesniowej"] { --scale-base: 1.2; }
.cert-img[src*="odbudowa-i-regeneracja"] { --scale-base: 1.2; }
.cert-img[src*="norweski losos"] { --scale-base: 1.75; }
.cert-img[src*="woda dejonizowana"] { --scale-base: 1.55; }
.cert-img[src*="cytryna"] { --scale-base: 1.05; }
.cert-img[src*="imbir"] { --scale-base: 1.35; }
.cert-img[src*="hbc"] { --scale-base: 1.9; }
.cert-img[src*="proszek z buraka"] { --scale-base: 1.4; }
.cert-img[src*="kwas cytrynowy"] { --scale-base: 1.5; }
.cert-img[src*="cranapple"] { --scale-base: 2.7; }
.cert-img[src*="rebaudiozyd a"] { --scale-base: 1.6; }

.card:hover .cert-img,
.pillar-card:hover .cert-img {
    transform: scale(calc(var(--scale-base, 1) * 1.06)) !important;
}

.quality-pillars-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}


.pillar-card i {
    font-size: 2.2rem;
    color: #0d9488;
    margin-bottom: 15px;
}

.pillar-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.25rem;
}

.pillar-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pillar-card p, .card p {
    text-align: center;
}

.products-showcase {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}


.product-badge {
    align-self: flex-start;
    background-color: #e6f7f5;
    color: #0d9488;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-tagline {
    color: #0d9488;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.product-desc {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.product-features i {
    color: #10b981;
}



.cta-banner-section {
    margin: 60px 0;
}

.cta-banner-content {
    background: linear-gradient(135deg, #0f766e, #115e59);
    color: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

.cta-banner-content h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-banner-content p {
    color: #e2e8f0;
    max-width: 650px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.support-section {
    padding-bottom: 60px;
}

.support-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.support-text h3 {
    margin-bottom: 8px;
    color: #0f172a;
}

.support-text p {
    color: #475569;
    margin: 0;
}


.faq-section {
    padding: 60px 0;
    background-color: transparent;
}

.faq-accordion {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	padding: 16px 20px;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(46, 196, 182, 0.15);
    transform: translateY(-2px);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.12);
    transform: none;	
}

.faq-question {
	padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; 
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none; 
}

.faq-icon {
    color: #0d9488;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
	padding: 0 24px 20px 24px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}


.faq-footer-support {
    text-align: center;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px dashed #cbd5e1;
}

.faq-footer-support p {
    color: #64748b;
    font-size: 0.98rem;
    margin-bottom: 12px;
}

.btn-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 10px;
    background-color: #e6f7f5;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-support-link:hover {
    background-color: #0d9488;
    color: #ffffff;
}



.pillar-card .card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin-bottom: 15px;
    width: 100%;
}

.pillar-card .card-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.pillar-card:hover .card-icon i,
.pillar-card:hover .card-icon img {
    transform: scale(1.12);
}

.pillar-card .card-icon img {
    transition: transform 0.3s ease;
}

.pillar-card:hover .cert-img {
    transform: scale(calc(var(--scale-base, 1) * 1.08));
}
.cta-banner-content h2 {
    color: #ffffff !important;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner-content p {
    color: #f1f5f9 !important;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

html {
    scroll-behavior: smooth;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin: 0 auto 30px auto;
    color: var(--text-dark, #334155);
    font-size: 1.05rem;
    max-width: 800px;
    line-height: 1.6;
}

main.container {
    padding-top: 40px;
    padding-bottom: 60px;
}

main.container > section {
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}
.page-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto;
}

/* Nagłówki Sekcji na Podstronie */
.section-title {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Bloki Kroków i Kart Informacyjnych */
.card-box-step {
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 5px solid var(--accent);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.card-box-step h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
}
.card-box-step h3 i {
    color: var(--accent);
}
.card-box-step ol {
    padding-left: 20px;
}
.card-box-step li {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Sekcja Metod Płatności */
.payment-img-wrapper {
    text-align: center;
    margin: 25px 0 30px 0;
    width: 100%;
}
.payment-img-wrapper img {
    max-width: 480px;
    width: 100%;
    height: auto;
    display: inline-block;
    mix-blend-mode: multiply;
    clip-path: inset(3px 0px 3px 0px);
    filter: brightness(108%) contrast(120%);
}

/* Cennik / Pakiety */
.pricing-section-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 35px 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.price-card {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid var(--border, #e2e8f0); /* Zmiana z 1px na 2px */
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--accent, #2ec4b6);
    transform: translateY(-5px);
    
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.contact-wrapper { 
    max-width: 580px; 
    margin: 0 auto; 
}

.channel-list { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 25px; 
}

.channel-item { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 16px 20px; 
    border-radius: 10px; 
    border: 1px solid var(--border, #e2e8f0); 
    border-left: 5px solid transparent; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    background: #ffffff; 
}

.channel-item.phone { border-left-color: var(--primary, #0f4c5c); }
.channel-item.whatsapp { border-left-color: var(--cta-green); }
.channel-item.telegram { border-left-color: var(--telegram-blue); }

.channel-item:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(15, 76, 92, 0.12); 
}

.channel-item.phone:hover .action-arrow { color: var(--primary, #0f4c5c); }
.channel-item.whatsapp:hover .action-arrow { color: var(--cta-green); }
.channel-item.telegram:hover .action-arrow { color: var(--telegram-blue); }

.channel-left { display: flex; align-items: center; gap: 15px; }

.channel-icon { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.3rem; 
    color: white; 
}

.channel-icon.phone { background: var(--primary, #0f4c5c); }
.channel-icon.whatsapp { background: var(--cta-green); }
.channel-icon.telegram { background: var(--telegram-blue); }

.channel-info strong { display: block; color: var(--text-dark, #1e293b); font-size: 0.95rem; }
.channel-info span { font-size: 0.85rem; color: var(--text-muted, #64748b); }

.action-arrow { color: var(--text-muted, #64748b); font-size: 0.9rem; }

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.price-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 15px;
}
.price-card h4 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.price-card .desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 15px;
    min-height: 40px;
}
.price-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Uwaga dot. waluty i przyciski CTA */
.currency-note {
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-top: 25px;
    font-style: italic;
}
.cta-wrapper {
    text-align: center;
    margin: 40px 0;
}
.btn-cta {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.3);
}
.btn-cta:hover {
    background: #38e0d0;
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.85), 0 0 10px rgba(56, 224, 208, 0.6);
    transform: translateY(-2px);
}

.prep-list li {
    margin-bottom: 16px;
}

.prep-info {
    margin-top: 16px;
    margin-bottom: 16px;
}


.section {
    padding: 30px 0 !important;
}

.section-header {
    margin-bottom: 15px !important;
}


.section-header h2 {
    margin-bottom: 8px !important;
}


.pillar-card p, 
.card p, 
.feature-box p, 
.product-desc, 
.faq-box p, 
.faq-answer, 
.faq-answer p, 
.faq-footer-support p, 
.price-card .desc, 
.section-header p {
    color: var(--text-dark) !important;
}

p {
    margin-bottom: 1rem !important; 
    line-height: 1.6;               
}


p:last-child {
    margin-bottom: 0 !important;
}


img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; 
}



.pln-price {
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.feature-icon-wrapper {
    height: 55px;               
    display: flex;
    align-items: center;        
    justify-content: center;     
    margin-bottom: 15px;
}


.feature-icon-img {
    max-height: 48px;
    max-width: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.feature-icon-img.icon-wide {
    max-width: 95px;            
    max-height: 40px;
}

.nav-chevron {
    font-size: 0.75rem;
}

.contact-header {
    margin-bottom: 30px;
}

.content-with-image {
    display: grid;
    grid-template-columns: auto 1fr; 
    gap: 30px;
    align-items: center !important;
}


.content-with-image p {
    margin-bottom: 0.8rem !important; 
}


@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr; 
    }
}

.logo img {
    width: 130px !important; 
    height: auto !important;
}

.footer-grid > div:first-child,
div.footer-tiktok-icon {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

div.footer-tiktok-icon span.tiktok-text {
    display: block !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
}

div.footer-tiktok-icon a.tiktok-link-wrapper {
    display: inline-block !important;
    text-decoration: none !important;
    margin: 0 auto !important;
}

div.footer-tiktok-icon img.footer-logo-img {
    display: block !important;
    width: 46px !important;
    max-width: 46px !important;
    height: auto !important;
    margin: 0 auto !important;
    transition: transform 0.2s ease;
}

div.footer-tiktok-icon a.tiktok-link-wrapper:hover img.footer-logo-img {
    transform: scale(1.1);
}

.footer-social-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-tiktok-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-tiktok-icon a.tiktok-link-wrapper {
    display: inline-block;
    text-decoration: none;
}

.footer-tiktok-icon img.footer-logo-img {
    display: block;
    width: 36px;
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.footer-tiktok-icon a.tiktok-link-wrapper:hover img.footer-logo-img {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-tiktok-icon {
        align-items: center;
    }
    .footer-social-col {
        text-align: center;
    }
}

.footer-col p .footer-inline-link {
    display: inline !important;
    margin-bottom: 0 !important;
}

.footer-col p {
    margin-bottom: 10px !important;
}

img, svg, video {
    max-width: 100%;
    height: auto !important;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.comp-table { 
    width: 100%; 
    min-width: 650px; 
    border-collapse: collapse; 
    font-size: 0.92rem; 
}

@media (max-width: 768px) {
    .nav-wrapper { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    }

    nav ul { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 12px; 
    }

    .dropdown-content { 
        position: static; 
        box-shadow: none; 
        min-width: 100%; 
        background: rgba(15, 76, 92, 0.08); 
        border-radius: 8px; 
        margin-top: 8px; 
    }

    .dropdown-content a { 
        color: var(--primary-dark) !important; 
        padding: 10px 14px; 
        border-bottom: 1px solid rgba(0,0,0,0.05); 
    }

    .hero-grid { 
        grid-template-columns: 1fr !important; 
        text-align: center; 
    }

    .hero-btns { 
        justify-content: center; 
    }

    .hero h1 { 
        font-size: 1.8rem; 
    }
}

@media (max-width: 576px) {
    .container { 
        width: 100%; 
        padding-left: 16px; 
        padding-right: 16px; 
    }

    .grid-4 { 
        grid-template-columns: 1fr; 
    }

    .btn-primary, .btn-outline { 
        width: 100% !important; 
    }

    .section-header h2 { 
        font-size: 1.4rem; 
    }
}

.img-about-orygn {
    max-width: 600px;
    width: 100%;
    max-height: 320px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    border-radius: 12px;
}


.img-feature-ignyt {
    max-width: 380px;
    width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.content-image-box img {
	max-width: 450px;
    width: 100%;      
    height: auto;     
    display: block;
    margin: 0 auto;
}

.icon-img, .cert-img {
    width: auto;
    max-height: 60px; 
    object-fit: contain;
    display: block;
    margin: 0 auto; 
	}
.banner-img {
    width: 100%;
    max-height: 400px; 
    object-fit: cover;
    border-radius: 12px;
}

.img-for-who {
    max-width: 290px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}

.ingredient-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.img sklad-ignyt {
    width: 380px;	
    height: auto; 
    display: block;
    margin: 0 auto;
