/* --- Zmienne Globalne --- */
:root {
    --primary: #00AEEF;
    --primary-dark: #008AC0;
    --dark: #111111;
    --gray: #f4f7f9;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn, .nav-link { font-family: var(--font-heading); }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.full-width { width: 100%; }
.text-primary { color: var(--primary); }
.sub-title { display: block; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-size: 0.9rem; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; display: inline-block; } /* Większy odstęp dla przycisku */

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex; align-items: center;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 45px; width: auto; }

.nav-menu { display: flex; gap: 20px; align-items: center; } /* Zmniejszony gap */
.nav-link { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.nav-link:hover { color: var(--primary); }

.btn-cta {
    background: var(--primary); color: var(--white) !important;
    padding: 10px 20px; border-radius: 50px; font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 140px 0 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

.badge {
    background: rgba(0, 174, 239, 0.1); color: var(--primary);
    padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.85rem;
}

/* POPRAWKA H1 - Lepsze łamanie linii */
.hero-text h1 { 
    font-size: 2.8rem; /* Nieco mniejszy font na start */
    line-height: 1.2; 
    margin: 20px 0; 
    color: var(--dark); 
}
.contact-section--white {
    background: #ffffff;
}

@media (min-width: 1200px) {
    .hero-text h1 { 
        font-size:2.6rem; 
        width: 130%; /* Rozszerza kontener tekstu, żeby zmieścił długie wyrazy */
        max-width: 700px;
    }
}

.highlight { color: var(--primary); position: relative; display: inline-block; }
.hero-text p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 30px; max-width: 500px; }

.hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.btn { padding: 15px 35px; border-radius: 8px; font-weight: 700; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(0, 174, 239, 0.25); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; border: 2px solid #ddd; color: var(--dark); }
.btn-outline:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }

.trusted-by p { font-size: 0.9rem; margin-bottom: 10px; font-weight: 700; color: #999; }
.logos-grid { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0.6; font-weight: 700; font-family: var(--font-heading); color: #555; text-transform: uppercase; font-size: 0.9rem; }

/* Hero Image & Floating */
.hero-image-wrapper { position: relative; }
.main-img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.image-bg-blob {
    position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
    background: var(--primary); border-radius: 20px; opacity: 0.1; z-index: 1;
}

.floating-stat {
    position: absolute; bottom: 30px; left: -30px;
    background: var(--white); padding: 15px 25px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 3;
    display: flex; align-items: center; gap: 15px;
    animation: float 5s ease-in-out infinite;
}
.floating-stat i { font-size: 2rem; color: var(--primary); }
.floating-stat strong { display: block; font-size: 1rem; color: var(--dark); }
.floating-stat span { font-size: 0.8rem; color: #777; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- Shape Divider --- */
.custom-shape-divider-bottom {
    position: absolute; bottom: -1px; left: 0; width: 100%;
    overflow: hidden; line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; fill: #ffffff; }

/* --- About Section --- */
.about-section { padding: 80px 0; }
.row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 15px; box-shadow: var(--shadow); }
.experience-badge {
    position: absolute; bottom: -20px; right: 20px;
    background: var(--primary); color: var(--white);
    padding: 20px; border-radius: 10px; text-align: center;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.4);
}
.experience-badge .count { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.check-list li { margin: 10px 0; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--primary); }

/* --- Stats --- */
.stats-section { padding: 60px 0; background: #f9f9f9; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }
.stat-item p { font-weight: 700; color: var(--dark); }

/* --- Services --- */
.services-section { padding: 100px 0; background: var(--white); }
.section-header { margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; color: var(--dark); margin: 10px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-box {
    background: var(--white); padding: 40px 30px; border-radius: 15px;
    border: 1px solid #eee; transition: 0.3s;
}
.service-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); transform: translateY(-10px); border-color: transparent;
}
.service-box .icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-box h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark); }
.service-box p { color: var(--text-light); font-size: 0.95rem; }
.service-box .btn { margin-top: 15px; }
.service-box .service-link { color: inherit; }
.service-box .service-link:hover { color: var(--primary); }

/* --- Process --- */
.process-section { padding: 100px 0; background: linear-gradient(180deg, #fff 0%, #f4f7f9 100%); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step { text-align: center; padding: 20px; position: relative; }
.step-number {
    font-size: 4rem; font-weight: 900; color: rgba(0,0,0,0.05);
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%); z-index: 0;
}
.step h4 { font-size: 1.5rem; margin-bottom: 15px; position: relative; z-index: 1; }
.step p { position: relative; z-index: 1; }

/* --- FAQ & Testimonials --- */
.faq-testimonials-section { padding: 100px 0; }
.split-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }

.accordion-item { border-bottom: 1px solid #eee; margin-bottom: 15px; }
.accordion-header {
    width: 100%; text-align: left; background: none; border: none;
    padding: 15px 0; font-size: 1.1rem; font-weight: 700; color: var(--dark);
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.accordion-body { max-height: 0; overflow: hidden; transition: 0.3s ease; color: var(--text-light); }
.accordion-item.active .accordion-body { max-height: 150px; padding-bottom: 15px; }
.accordion-item.active .accordion-header i { transform: rotate(45deg); color: var(--primary); }

.testimonial-card {
    background: #f9f9f9; padding: 30px; border-radius: 15px; position: relative;
}
.testimonial-card .stars { color: #f1c40f; margin-bottom: 15px; }
.author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.author .avatar {
    width: 40px; height: 40px; background: #ddd; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.author span { font-size: 0.8rem; color: #888; }

/* --- Contact (ZMIANA NA JASNY) --- */
.contact-section { 
    padding: 100px 0; 
    background: #eef2f5; /* Jasne tło zamiast czarnego */
    color: var(--dark); 
}
.contact-section.contact-section--white {
    background: #ffffff !important;
}
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--dark); }
.contact-details li { margin: 15px 0; font-size: 1.1rem; display: flex; align-items: flex-start; gap: 15px; color: var(--text-light); }
.contact-details i { color: var(--primary); font-size: 1.3rem; margin-top: 5px; }
.contact-details strong { color: var(--dark); }

/* Formularz w jasnej sekcji */
.light-theme-form {
    background: #ffffff; /* Czysta biel */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Mocniejszy cień dla głębi */
    padding: 40px; border-radius: 20px; border: 1px solid #fff;
}
.light-theme-form h3 { color: var(--dark); margin-bottom: 20px; }
.light-theme-form input, .light-theme-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px;
    background: #f8f9fa; border: 1px solid #eee; border-radius: 8px; font-family: inherit;
    color: var(--dark);
}
.light-theme-form input:focus, .light-theme-form textarea:focus {
    outline: none; border-color: var(--primary); background: #fff;
}
.gdpr-note { font-size: 0.75rem; color: #999; margin-top: 15px; text-align: center; }

/* Dane Rejestrowe */
.company-details { margin-top: 40px; padding-top: 30px; border-top: 1px solid #ddd; font-size: 0.9rem; color: #666; }
.company-details h5 { color: var(--dark); margin-bottom: 10px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* --- Footer --- */
footer { background: #0b0b0b; color: #888; padding: 60px 0 20px 0; font-size: 0.9rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 35px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary); }
.social-icons a { font-size: 1.2rem; margin-right: 15px; transition: 0.3s; }
.social-icons a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid #222; }
.pixelshark a { color: #fff; font-weight: 700; text-decoration: none; }
.pixelshark a:hover { color: var(--primary); }

/* --- Responsywność --- */
@media (max-width: 992px) {
    .hero-content, .row-grid, .contact-container, .split-layout { grid-template-columns: 1fr; }
    .hero-image-wrapper { order: -1; margin-bottom: 30px; }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; }
    .floating-stat { display: none; }
    .stats-grid, .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .hero-text h1 { width: 100%; font-size: 2.5rem; }
    
    .menu-toggle { display: block; cursor: pointer; }
    .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background: var(--dark); transition: 0.3s; }
    .nav-menu {
        position: fixed; left: -100%; top: 80px; width: 100%; background: #fff;
        flex-direction: column; padding: 30px; box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
    }
    .nav-menu.active { left: 0; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.2rem; }
}

/* --- STYLE PODSTRONY CENNIK --- */

/* Header podstrony */
.page-header {
    padding: 160px 0 140px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center; /* Wymuszenie wyśrodkowania */
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark);
    margin: 20px 0;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px auto; /* Margin bottom na przyciski */
}

/* Nowe przyciski w nagłówku */
.header-scroll-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn-white {
    background: #fff;
    color: var(--dark);
    border: 2px solid #fff;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.btn-white:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

/* Sekcja Na Żądanie (Teraz biała - bo fala jest biała) */
.on-demand-section {
    padding: 80px 0;
    background: #ffffff; 
}

.on-demand-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff; /* Jeśli sekcja jest biała, to wrapper dajemy np. z cieniem */
    padding: 50px;
    border-radius: 20px;
    /* Dajemy delikatne tło wrapperowi żeby się odcinał od białej sekcji, lub obrys */
    background: linear-gradient(to right, #ffffff, #f9fbfd);
    border: 1px solid #eee;
    box-shadow: var(--shadow);
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.payment-methods {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-methods p {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.payment-methods .icons {
    display: flex;
    gap: 20px;
}

.payment-methods .icons span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.costs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cost-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.cost-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.1);
}

.cost-item .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px auto;
}

.cost-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.cost-price { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }

/* Sekcja Abonamenty (Teraz Szara - dla kontrastu) */
.pricing-section {
    padding: 100px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }

.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; padding: 5px 20px;
    border-radius: 20px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
}

.card-header h3 { font-size: 1.8rem; margin-bottom: 5px; color: var(--dark); }
.card-header p { color: var(--text-light); font-size: 0.9rem; }

.price { margin: 30px 0; color: var(--dark); }
.price .currency { font-size: 1.2rem; vertical-align: top; font-weight: 600; }
.price .amount { font-size: 3.5rem; font-weight: 700; line-height: 1; color: var(--primary); }
.price .period { font-size: 1rem; color: #999; }

.features { margin-bottom: 30px; text-align: left; }
.features li {
    padding: 10px 0; border-bottom: 1px solid #f5f5f5; color: var(--text);
    display: flex; align-items: center; gap: 10px;
}
.features li:last-child { border-bottom: none; }
.features i { color: var(--primary); width: 20px; text-align: center; }
.pricing-note { margin-top: 40px; color: #888; }

/* Responsywność Cennika */
@media (max-width: 992px) {
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-10px); }
    .on-demand-wrapper { grid-template-columns: 1fr; padding: 30px; text-align: center; }
    .features { text-align: left; }
    .payment-methods .icons { justify-content: center; }
    .header-scroll-buttons { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 576px) {
    .costs-grid { grid-template-columns: 1fr; }
    .price .amount { font-size: 2.8rem; }
}
/* --- STYLE PODSTRON USŁUGOWYCH --- */

/* Modyfikacja Header dla usług (wyrównanie do lewej) */
.service-header {
    text-align: left;
    padding: 180px 0 140px 0;
}
.service-header h1 { margin-top: 10px; }
.service-header p { margin: 0; max-width: 700px; }

/* Breadcrumbs (Ścieżka powrotu) */
.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs i { font-size: 0.7rem; margin: 0 10px; color: #ccc; }
.breadcrumbs .current { color: var(--primary); }

/* Układ Content + Sidebar */
.service-details-section {
    padding: 80px 0;
    background: #fff;
}

.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 dla treści, 1/3 dla sidebara */
    gap: 60px;
}

/* Wygląd treści głównej */
.service-content h2 { font-size: 2rem; color: var(--dark); margin-bottom: 20px; }
.service-content h3 { font-size: 1.5rem; color: var(--dark); margin: 30px 0 15px 0; }
.service-content p { margin-bottom: 20px; color: var(--text-light); }

.service-main-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

/* Grid korzyści w treści */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.benefit-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}
.benefit-item i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.benefit-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
.benefit-item p { font-size: 0.85rem; margin: 0; }

/* Lista szczegółowa */
.detailed-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}
.detailed-list i {
    color: var(--primary);
    background: rgba(0, 174, 239, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* Call to Action w treści */
.content-cta {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.2);
}
.content-cta h3 { color: #fff; margin-top: 0; }
.content-cta p { color: rgba(255,255,255,0.9); margin-bottom: 25px; }

/* --- SIDEBAR STYLES --- */
.sidebar {
    position: sticky;
    top: 100px; /* Przykleja się przy scrollowaniu */
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--dark);
}

/* Nawigacja w sidebarze */
.services-nav ul li { margin-bottom: 10px; }
.services-nav a {
    display: block;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
    display: flex; align-items: center; justify-content: space-between;
}
.services-nav a i { font-size: 0.8rem; }

.services-nav a:hover, .services-nav a.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.2);
}

/* Widget Kontaktowy */
.contact-widget { background: #fff; box-shadow: var(--shadow); border: none; }
.contact-widget .btn { margin-top: 20px; }
.contact-data .item {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 15px; font-weight: 600;
}
.contact-data i {
    width: 40px; height: 40px;
    background: rgba(0, 174, 239, 0.1); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Widget Pobierania */
.download-widget {
    text-align: center;
    border: 2px dashed #ddd;
    background: transparent;
}
.download-widget i { font-size: 3rem; color: #ccc; margin-bottom: 15px; display: block; }
.download-widget a {
    color: var(--primary); font-weight: 700; text-decoration: underline;
}

/* Responsywność Podstron */
@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr; /* Sidebar spada pod spód */
    }
    .sidebar { position: static; }
    .benefits-grid { grid-template-columns: 1fr; }
    .service-header { text-align: center; }
    .breadcrumbs { justify-content: center; display: flex; }
    .service-header p { margin: 0 auto; }
}
/* Dodatek dla stron z dużą ilością tekstu */
.service-content.text-heavy p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-content.text-heavy h2 {
    margin-top: 40px;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
}
