/* ZEWNĘTRZNE PUDEŁKO: Tło na 100% szerokości */
.hero-section-wrapper {
    background-color: #f6f7f9;
    width: 100%;
    /* Dodane właściwości tła (laptopa) */
    background-repeat: no-repeat;
    background-position: right center;
    /* Ustawia laptopa po prawej i na środku góra-dół */
    background-size: auto 90%;
    /* Zrób np. 'contain' lub podaj konkretne \%, żeby laptop nie był za duży na wielkich monitorach */
}

/* WEWNĘTRZNE PUDEŁKO: Ograniczenie treści do max 1400px */
.tomsky-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    /* Wyśrodkowanie */
    padding: 60px 40px;
    font-family: sans-serif;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.15;
    color: #333;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-title .main-heading {
    color: #ff6b00;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    color: #555;
    font-size: 1.1rem;
}

.hero-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.hero-list li::before {
    content: '🏢';
    position: absolute;
    left: 0;
    top: 0;
}

.hero-btn-wrap {
    margin-bottom: 15px;
}

.hero-button {
    display: inline-block;
    background-color: #ff6b00;
    color: #fff;
    padding: 18px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.hero-guarantee {
    color: #777;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-icon {
    color: #ff6b00;
    font-weight: bold;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    position: relative;
    min-height: 500px;
}

.hero-right img {
    max-width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    bottom: 10%;
    right: 0;
    background-color: #ff6b00;
    color: #fff;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    white-space: pre-line;
}

/* --- SEKCJA STATYSTYK --- */
.stats-section-wrapper {
    background-color: #ffffff;
    /* Białe tło na pełną szerokość */
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    /* Delikatna linia oddzielająca, opcjonalna */
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 40px 0;
    gap: 20px;
}

.stat-column {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    margin-bottom: 15px;
    height: 60px;
    /* Stała wysokość dla ikon, żeby wszystko było w jednej linii */
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    max-height: 100%;
    width: auto;
}

.stat-value {
    color: #ff6b00;
    /* Pomarańczowy kolor z projektu */
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.stat-desc {
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: pre-line;
    /* Pozwala na entery w tekście */
}

/* --- BLOK 3: CENNIK (PRICING) --- */
.pricing-section-wrapper {
    background-color: #f6f7f9;
    width: 100%;
    padding: 80px 0 60px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.pricing-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0 auto 20px auto;
}

.pricing-header p {
    color: #666;
    font-size: 1.1rem;
    white-space: pre-line;
    margin: 0 auto;
    max-width: 800px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 32%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.pricing-card img {
    width: 100%;
    border-radius: 12px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 800;
}

.pricing-discount {
    font-size: 0.9rem;
    color: #666;
    white-space: pre-line;
    line-height: 1.4;
    margin-bottom: 5px;
}

.pricing-price {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price-old {
    color: #a0a0a0;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-new {
    color: #ff6b00;
    font-size: 1.8rem;
    font-weight: 900;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f14e21 0%, #f78a1e 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    width: 80%;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 4px 15px rgba(241, 78, 33, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pricing-guarantee {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* --- Stopka sekcji --- */
.pricing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-texts h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 800;
}

.footer-texts p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.footer-btn {
    background: #ff6b00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.envelope-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.guarantee-icon-img {
    width: 20px !important;
    height: auto !important;
    flex-shrink: 0;
}

/* --- BLOK 4: CTA PDF --- */
.cta-pdf-wrapper {
    /* Kolor tła pod zdjęciem (kremowy) - warto go dodać, by krawędź płynnie się zlewała ze zdjęciem, jeśli to nie jest pełny prostokąt */
    background-color: #f4efea;
    width: 100%;
    padding: 100px 0;
    /* Ustawienia tła domku */
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.cta-pdf-content {
    max-width: 650px;
    /* Ograniczamy szerokość treści, żeby nie wchodziła na domek */
    background: transparent;
}

.cta-pdf-content h2 {
    font-size: 2.8rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: sans-serif;
    line-height: 1.2;
    white-space: pre-line;
}

.cta-separator {
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
    margin-bottom: 25px;
}

.cta-pdf-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    white-space: pre-line;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pdf-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #f14e21 0%, #f78a1e 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(241, 78, 33, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pdf-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.pdf-icon-img {
    width: 20px;
    height: auto;
    margin-right: 12px;
    flex-shrink: 0;
}

/* --- BLOK 5: 3 KROKI --- */
.steps-section-wrapper {
    background-color: #ffffff;
    /* Białe tło */
    width: 100%;
    padding: 80px 0;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.steps-header h2 {
    font-size: 2.5rem;
    color: #444;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.steps-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0 auto;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Trzyma równe poziomy od góry */
    width: 100%;
}

.step-column {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-icon {
    margin-bottom: 25px;
    min-height: 80px;
    /* Stała wysokość na ikony, żeby zachować równą linię */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.step-icon img {
    max-width: 100px;
    /* Ograniczenie wielkości ikony */
    height: auto;
}

.step-title {
    color: #ff6b00;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    white-space: pre-line;
}

.step-desc {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-line;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    /* Obniżenie strzałki, żeby była na wysokości ikon */
    flex-shrink: 0;
}

.step-arrow img {
    width: 30px;
    /* Wielkość pomarańczowej strzałki */
    height: auto;
}

/* --- BLOK 6: DLACZEGO WARTO --- */
.features-section-wrapper {
    background-color: #f6f7f9;
    width: 100%;
    padding: 100px 0;
    overflow: visible;
    /* Pozwala zdjęciom lekko wystawać, jeśli kontener na to pozwala */
}

.features-grid {
    display: flex;
    gap: 60px;
    width: 100%;
}

.features-col-left,
.features-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features-main-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    white-space: pre-line;
    font-family: sans-serif;
}

.features-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin-bottom: 40px;
}

/* Pojedynczy element listy z ptaszkiem */
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    /* Wyrównanie ikony z pierwszą linią tekstu */
}

.feature-title {
    font-size: 1.1rem;
    color: #333;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.feature-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
}

/* Wyróżnione zdjęcia i asymetria */
.features-img-top {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin: -200px 0 50px auto;
    /* Ujemny margines wypycha zdjęcie do góry */
    object-fit: cover;
}

.features-img-bottom {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin: auto auto -140px 0;
    /* Ujemny margines wypycha zdjęcie w dół */
    object-fit: cover;
}

/* --- BLOK 7: OPINIE --- */
.reviews-section-wrapper {
    background-color: #ffffff;
    width: 100%;
    padding: 80px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
    margin: auto;
    margin-bottom: auto;
    margin-bottom: 58px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.reviews-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0 auto 30px auto;
}

.reviews-rating-text {
    font-size: 1.1rem;
    color: #555;
    font-weight: 800;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.reviews-global-stars {
    color: #fbbc04;
    /* Złoty kolor gwiazdek Google */
    font-size: 1.5rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.reviews-count {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

/* Układ karuzeli / siatki */
.reviews-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* Strzałki przewijania */
.review-arrow {
    background-color: #ff6b00;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    transition: transform 0.2s;
}

.review-arrow:hover {
    transform: scale(1.1);
}

/* Pojedyncza karta opinii */
.review-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px 25px;
    flex: 1;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 800;
    color: #333;
    font-size: 0.95rem;
}

.review-date {
    color: #a0a0a0;
    font-size: 0.8rem;
}

.review-stars-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-google-logo {
    width: 18px;
    height: 18px;
}

.review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.review-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
}

/* --- BLOK 8: KADRA --- */
.team-section-wrapper {
    background-color: #f3efeb;
    /* Jasny beżowy pasek */
    width: 100%;
    padding: 60px 0;
    margin: 100px 0;
    /* Górny i dolny margines całej sekcji robi miejsce na wystające zdjęcie */
}

.team-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.team-col-left {
    flex: 1;
    padding-right: 40px;
}

.team-heading {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.team-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin-bottom: 30px;
}

.team-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

.team-col-right {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Wyśrodkowuje zdjęcie w prawej kolumnie */
}

.team-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    /* To wyciąga zdjęcie poza tło: */
    margin-top: -100px;
    margin-bottom: -100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* --- BLOK 9: QUIZ CTA --- */
.quiz-section-wrapper {
    background-color: #f6f7f9;
    /* Jasny szary kolor tła */
    width: 100%;
    padding: 80px 0 0 0;
    /* Brak dolnego paddingu, żeby zdjęcie mogło wystawać */
    margin-bottom: 80px;
    /* Dolny margines całej sekcji robi miejsce na wystające zdjęcie */
}

.quiz-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.quiz-col-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.quiz-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 16px;
    margin-bottom: -60px;
    /* Ujemny margines wyciąga zdjęcie w dół poza tło */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.quiz-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Wyrównanie elementów do prawej */
    text-align: right;
    /* Wyrównanie tekstu do prawej */
    padding-bottom: 60px;
    /* Wewnętrzny padding zastępujący ten usunięty z wrappera */
}

.quiz-heading {
    font-size: 2.2rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: sans-serif;
    line-height: 1.3;
    white-space: pre-line;
}

.quiz-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin-bottom: 20px;
}

.quiz-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    white-space: pre-line;
    max-width: 500px;
}

/* Przycisk z gradientem, taki sam jak w cenniku */
.quiz-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f14e21 0%, #f78a1e 100%);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(241, 78, 33, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.quiz-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- BLOK 10: FAQ --- */
.faq-section-wrapper {
    background-color: #ffffff;
    width: 100%;
}

.faq-header {
    text-align: center;
    margin: auto;
    padding-bottom: 56px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.faq-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0 auto;
}

.faq-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-list {
    column-count: 2;
    /* Automatyczny podział na 2 kolumny! */
    column-gap: 60px;
    /* Odstęp między kolumnami */
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    position: relative;
    padding-left: 35px;
    /* Miejsce na ikonkę strzałki */
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    /* Zapobiega łamaniu pytania w połowie przy przejściu do nowej kolumny */
    break-inside: avoid;
    page-break-inside: avoid;
}

/* Magia: Wstrzykujemy ikonkę strzałki jako tło ::before dla każdego <li> */
.faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    /* Pamiętaj żeby nazwa pliku na serwerze się zgadzała! */
    background-image: url('img/faq-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- BLOK 11: OFERTY (LISTA W PIONIE) --- */
.offers-section-wrapper {
    background-color: #ffffff;
    width: 100%;
    padding: 60px 0;
}

.offer-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #eaeaea;
    margin: auto;
    width: 100%;
    max-width: 1200px;
}

/* Ostatni wiersz nie ma dolnej ramki */
.offer-row:last-child {
    border-bottom: none;
}

.offer-left {
    flex: 1;
    padding-right: 40px;
}

.offer-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: sans-serif;
    white-space: pre-line;
}

.offer-title-orange {
    color: #ff6b00;
}

.offer-separator {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin-bottom: 30px;
}

.offer-price-wrap {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: #666;
}

.offer-price-old {
    text-decoration: line-through;
    color: #a0a0a0;
    margin: 0 5px;
    font-weight: 700;
}

.offer-price-new {
    color: #ff6b00;
    font-size: 1.6rem;
    font-weight: 900;
}

/* Stylizacja listy z pomarańczowymi ptaszkami */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.offer-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.offer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('img/check-orange.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Przycisk */
.offer-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f14e21 0%, #f78a1e 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(241, 78, 33, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.offer-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Prawa kolumna */
.offer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    object-fit: cover;
    max-height: 350px;
}

/* Oceny pod obrazkiem */
.offer-google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 2px;
}

.offer-google-logo {
    height: 16px;
    width: auto;
}

/* Responsywność */
@media (max-width: 992px) {
    .offer-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0;
        padding-top: 0px;
        padding-top: 30px;
    }

    .offer-left {
        padding-right: 0;
    }

    .offer-separator {
        margin: 0 auto 30px auto;
    }

    .offer-list li {
        text-align: left;
        /* Zostawiamy listę czytelną do lewej, mimo wyśrodkowania reszty */
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsywność */
@media (max-width: 992px) {
    .faq-list {
        column-gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-list {
        column-count: 1;
        /* Na telefonach wracamy do 1 kolumny */
    }

    .offers-section-wrapper {
        padding: 0;
    }
}

/* Responsywność */
@media (max-width: 992px) {
    .quiz-grid {
        flex-direction: column-reverse;
        /* Na mobile tekst ląduje nad zdjęciem */
        text-align: center;
        gap: 30px;
    }

    .quiz-col-right {
        align-items: center;
        /* Zmiana wyrównania na środek dla mobile */
        text-align: center;
        padding-bottom: 0;
        padding-top: 40px;
    }

    .quiz-img {
        margin-bottom: -40px;
    }

    .quiz-section-wrapper {
        padding-top: 20px;
        margin-bottom: 60px;
    }
}


@media (max-width: 992px) {
    .team-grid {
        flex-direction: column;
        text-align: center;
    }

    .team-col-left {
        padding-right: 0;
    }

    .team-separator {
        margin: 0 auto 30px auto;
    }

    .team-img {
        margin-top: 20px;
        margin-bottom: -100px;
    }

    .team-section-wrapper {
        margin-bottom: 13px;
    }

    .team-section-wrapper {
        padding: 20px 0;
    }
}

@media (max-width: 992px) {
    .reviews-carousel {
        flex-wrap: wrap;
    }

    .review-card {
        min-width: 280px;
    }

    .review-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
        gap: 40px;
    }

    .features-img-top {
        margin: 0 auto 40px auto;
    }

    .features-img-bottom {
        margin: 40px auto 0 auto;
    }

    .features-main-title {
        text-align: center;
    }

    .features-separator {
        margin: 0 auto 40px auto;
    }
}

/* Responsywność */
@media (max-width: 992px) {
    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-button {
        font-size: 16px;
    }

    .step-column {
        margin-bottom: 40px;
        max-width: 500px;
    }

    .step-arrow {
        display: none;
        /* Ukrywamy strzałki w widoku mobilnym */
    }
}

/* Responsywność */
@media (max-width: 992px) {
    .cta-pdf-wrapper {
        background-position: center;
        background-blend-mode: overlay;
        /* Delikatnie zaciemni tło na mniejszych ekranach, by tekst był czytelny */
        background-color: rgba(244, 239, 234, 0.85);
    }

    .cta-pdf-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-separator {
        margin: 0 auto 25px auto;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pdf-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsywność */
@media (max-width: 992px) {
    .pricing-card {
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        max-width: 100%;
    }

    .pricing-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 992px) {
    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-column {
        min-width: 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .stat-column {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .tomsky-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        text-align: center;
        padding-right: 0;
        min-height: auto;
    }

    .hero-list li {
        text-align: left;
    }

    .hero-badge {
        position: static;
        margin: auto;
        margin-top: auto;
        margin-top: 41px;
        width: 200px;
        height: 200px;
        font-size: 14px;
    }

    .hero-section-wrapper {
        background-color: #f6f7f9;
        width: 100%;
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: auto 81%;
    }

    h2 {
        font-size: 27px !important;
    }
}