/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');*/

/* layout2025.css – nowoczesny, „premium”, responsywny */

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

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333333;
    background-color: #f5f5f7;
}


/* Linki */
a {
    text-decoration: none;
    color: #f37021;
    transition: color 0.25s ease;
}

a:hover {
    color: #ff8f42;
    text-decoration: underline;
}

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



/* Pomocnicze */
.max-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* STRUKTURA GŁÓWNA */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   TOPBAR / LOGO / MENU
   ========================= */

.topbar {
    background-color: #ffffff;
    color: #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.2s ease, border-bottom-color 0.2s ease;
    /* cień i linia pojawią się dopiero po scrollu (patrz .topbar--scrolled) */
}

/* Topbar po scrollu – wyraźniejsze odcięcie od treści */
.topbar--scrolled {
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.10);
    border-bottom-color: #e5e7eb;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

/* fallback tekstowy */
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.4px;
}

.logo-text span {
    color: #f37021;
    font-weight: 800;
}

/* grafika logo */
.logo-img {
    display: block;
    max-height: 42px;
    width: auto;
}

/* MENU GŁÓWNE – desktop */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu li {
    margin: 0;
}

.menu-link {
    display: inline-block;
    padding: 10px 4px;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.menu-link:hover {
    color: #f37021;
    border-bottom-color: rgba(243, 112, 33, 0.55);
    text-decoration: none;
}

.menu-link.active {
    color: #f37021;
    border-bottom-color: #f37021;
}

/* Call-to-action w menu */
.menu-cta .btn-small {
    font-size: 13px;
    padding: 8px 18px;
}

/* Hamburger (mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: 8px;
    border-radius: 12px;
    border: 2px solid #2f2f2f;
    background-color: #333333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #ffffff;
    border-radius: 999px;
}

/* =========================
   PRZYCISKI
   ========================= */

.btn-primary {
    display: inline-block;
    background-color: #f37021;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transition: background-color 0.2s ease, color 0.2s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background-color: #d9550f;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #f37021;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #f37021;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: background-color 0.2s ease, color 0.2s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-secondary:hover {
    background-color: #f37021;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
    transform: translateY(-1px);
    text-decoration: none;
}


/* =========================
   PEŁNOEKRANOWY HERO – TŁO OTOTELEFON
   ========================= */

.hero-ototelefon {
    position: relative;
    width: 100%;
    min-height: 380px;
    color: #ffffff;
    background-image: url("../images/background-hero-ototelefon-640.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.hero-ototelefon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-ototelefon-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 48px 0;
}

.hero-ototelefon-text {
    text-align: center;
}

.hero-ototelefon-text h1 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 700;
    color: #f37021;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-ototelefon-text p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
}

/* większe ekrany – wyższy hero */
@media (min-width: 768px) {
    .hero-ototelefon {
        min-height: 70vh;
    }

    .hero-ototelefon-text h1 {
        font-size: 38px;
    }

    .hero-ototelefon-text p {
        font-size: 20px;
    }
}

/* desktop – prawie pełne okno */
@media (min-width: 992px) {
    .hero-ototelefon {
        min-height: calc(100vh - 72px);
        background-image: url("../images/background-hero-ototelefon.jpg");
        background-position: bottom center;
    }

    .hero-ototelefon-text h1 {
        font-size: 46px;
    }

    .hero-ototelefon-text p {
        font-size: 22px;
    }
}

/* =========================
   GŁÓWNA ZAWARTOŚĆ
   ========================= */

.content {
    flex: 1;
    width: 100%;
    padding: 0 0 32px;
}

/* Pasek główny: lewa kolumna + prawa kolumna */
#pasek_glowny {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}

/* Lewa kolumna – menu boczne */
#menu_boczne {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    font-size: 14px;
}

#menu_boczne p {
    margin-top: 0;
    text-align: left;
}

#menu_boczne .naglowek {
    font-weight: 600;
    color: #f37021;
    font-size: 14px;
}

#menu_boczne .data {
    font-size: 11px;
    color: #999999;
}

#menu_boczne hr {
    border: 0;
    border-top: 1px solid #ededed;
    margin: 14px 0;
}

#menu_boczne li {
    list-style-image: url(../gfx/punkt3.gif);
    margin: 4px 0;
    padding-left: 2px;
}

#menu_boczne a {
    color: #444444;
}

#menu_boczne a:hover {
    color: #f37021;
}

#menu_boczne .menu-underline {
    display: block;
    height: 2px;
    margin: 4px 0 8px;
    border-radius: 999px;
    background: linear-gradient(to right, #f37021, rgba(243, 112, 33, 0));
}


/* Prawa kolumna – treść */
#tresc_strony {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    min-width: 0;
}

#tresc_strony p {
    text-align: justify;
}

/* Standardowe listy w treści – pomarańczowe kwadraty, bez "wysunięcia" w lewo */
#tresc_strony ul {
    margin: 0.4rem 0 0.9rem;
    padding-left: 0;              /* brak dodatkowego wcięcia */
    list-style-type: square;      /* kwadrat zamiast kółka */
    list-style-position: inside;  /* kwadracik na równi z tekstem, nie na marginesie */
}

#tresc_strony ul li {
    margin-bottom: 0.25rem;
}

/* kolor markera – pomarańczowy */
#tresc_strony ul li::marker {
    color: #f37021;
}


/* Teksty na stronach "Jak możesz dzwonić" – bez justowania */
#tresc_strony .device-page p {
    text-align: left;
}

/* =========================
   Dział "Pomoc" – listy tematów i pytań
   ========================= */

.help-topics-list,
.help-questions-list {
    margin: 0.4rem 0 0.8rem;
    padding-left: 0;
    list-style-type: square;
    list-style-position: inside;  /* kwadracik na równi z tekstem */
}

.help-topics-list li,
.help-questions-list li {
    margin: 0.15rem 0;
}

/* Główne tematy – pomarańczowe kwadraty */
.help-topics-list li::marker {
    color: #f37021;
}

/* Lista pytań – szare kwadraty, żeby odróżnić poziom niżej */
.help-questions-list li::marker {
    color: #9ca3af;
}

.help-topics-list a,
.help-questions-list a {
    text-decoration: none;
}

.help-topics-list a:hover,
.help-questions-list a:hover {
    text-decoration: underline;
    color: #f37021;
}

/* Pomoc – nagłówki tematów w li, żeby były w jednej linii z kwadracikiem */
.help-topics-list h3 {
    display: inline;     /* zamiast domyślnego block */
    margin: 0;           /* bez dodatkowych odstępów góra/dół */
    font-size: 16px;
    font-weight: 600;
}

/* Pomoc – link „powrót na górę” */
.back-to-top {
    margin-top: 0.8rem;   /* delikatny odstęp od poprzedniego akapitu */
}


/* =========================
   Formularz wyboru strefy numeracyjnej / lista numerów
   ========================= */

.device-form {
    margin: 0.75rem 0 1.6rem;
}

/* etykieta */
.device-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
}

/* rozwijana lista stref – pełna szerokość, osobna linia */
.device-form select {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font: inherit;
    color: #111827;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.device-form select:focus {
    border-color: #f37021;
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.18);
}

/* przycisk "Pokaż dostępne numery" */
.numbers-form-submit {
    margin-top: 0.9rem;
}

/* przycisk "← Wybierz inną strefę" */
.numbers-form-back-btn {
    margin-top: 0.6rem;
}

/* mniejszy wariant przycisków */
.btn-small {
    font-size: 0.9rem;
    padding: 8px 18px;
}

/* Lista numerów + link "Zamów ten numer" */

.device-page ul.numbers-list,
.device-page ul.numbers-list li {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
}

.numbers-list {
    margin-top: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fafafa;
}

.numbers-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* numer i przycisk obok siebie, nie na dwóch końcach */
    gap: 12px;                    /* delikatny odstęp pomiędzy numerem a przyciskiem */
    padding: 8px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.numbers-list-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.numbers-list-number {
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* mini‑przycisk przy numerze */
.numbers-list-order-link {
    display: inline-block;
    font-size: 0.82rem;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid #f37021;
    color: #f37021;
    background-color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.15s ease;
}

.numbers-list-order-link:hover {
    background-color: #f37021;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(243, 112, 33, 0.25);
    transform: translateY(-1px);
    text-decoration: none;
}

/* na węższych ekranach numer i przycisk pod sobą */
@media (max-width: 520px) {
    .numbers-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* CTA na stronie głównej – 2 przyciski */
.intro-cta {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;           /* odstęp między przyciskami na desktopie */
    flex-wrap: wrap;
}

/* Telefon – przyciski jeden pod drugim z odstępem */
@media (max-width: 600px) {
    .intro-cta {
        flex-direction: column;
        align-items: flex-start;   /* lub center, jeśli wolisz wycentrowane */
        gap: 10px;
    }

    .intro-cta .btn-primary,
    .intro-cta .btn-secondary {
        width: 100%;              /* ładne „tablety” na całą szerokość */
        text-align: center;
    }
}




/* Nagłówki w treści */
h1 {
    font-size: 26px;
    line-height: 1.3;
    color: #f37021;
    margin-top: 0;
    margin-bottom: 14px;
}

h2 {
    font-size: 20px;
    line-height: 1.3;
    color: #444444;
    margin-top: 18px;
    margin-bottom: 10px;
}

h3 {
    font-size: 16px;
    line-height: 1.2;
    color: #444444;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* Dodatkowe klasy kolorów (zgodność wsteczna) */
.czerwony { color: #ff0000; }
.color1   { color: #f37021; }
.color1_2 { color: #f37021; font-weight: bold; font-size: 16px; }
.color1_3 { color: #f37021; font-weight: bold; font-size: 20px; }
.color3_3 { color: #f37021; font-weight: bold; font-size: 20px; }

/* =========================
   STOPKA – używa istniejących ID
   ========================= */

/* =========================
   STOPKA – nowy layout 2025
   ========================= */

#stopka {
    margin-top: 40px;
    background-color: #0f172a;      /* ciemne tło na całą szerokość */
    color: #e5e7eb;
}

/* cienka pomarańczowa linia na górze stopki */
#stopka_pasek_pomaranczowy {
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ff9b4d);
}

/* główne tło pod treścią stopki */
#stopka_tresc {
    padding: 18px 16px 24px;
}

/* wewnętrzny kontener z max. szerokością jak reszta strony */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 32px;
    font-size: 13px;
}

/* kolumny */
.footer-col {
    flex: 1 1 220px;
}

.footer-col-brand {
    max-width: 320px;
}

.footer-brand {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-copy {
    color: #9ca3af;
    font-size: 12px;
}

/* prawa kolumna z linkami */
.footer-col-links {
    text-align: right;
}

.footer-label {
    font-weight: 500;
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    justify-content: flex-end;
}

/* „pigułki” z linkami */
.footer-links a {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    text-decoration: none;
    font-size: 12px;
    transition:
            background-color 0.2s ease,
            color 0.2s ease,
            transform 0.15s ease,
            box-shadow 0.2s ease;
}

.footer-links a:hover {
    background-color: #f37021;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.35);
    transform: translateY(-1px);
}

/* mobile – wszystko pod sobą */
@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-col-links {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* =========================
   RESPONSYWNOŚĆ
   ========================= */

@media (max-width: 1024px) {
    .topbar-inner {
        gap: 10px;
    }

    #pasek_glowny {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    /* Hamburger widoczny */
    .menu-toggle {
        display: flex;
    }

    /* MENU – panel wysuwany z LEWEJ strony, białe tło jak u EasyCall/Halonet */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: #ffffff;
        box-shadow: 4px 0 18px rgba(0,0,0,0.18);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1200;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav .menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 18px 24px;
        gap: 2px;
        width: 100%;
    }

    .menu li {
        width: 100%;
    }

    .menu-link,
    .menu-cta .btn-small {
        display: block;
        width: 100%;
        text-align: left;
        padding: 11px 4px;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        color: #24415a;
        background: transparent;
    }

    .menu-link:hover {
        background-color: rgba(243, 112, 33, 0.06);
        color: #f37021;
    }

    .menu-link.active {
        background-color: rgba(243, 112, 33, 0.12);
        color: #f37021;
        border-left: 4px solid #f37021;
        padding-left: 8px;
    }

    /* CTA na dole listy – szeroki przycisk */
    .menu-cta .btn-small {
        margin-top: 10px;
        border-radius: 999px;
        border: none;
        background-color: #f37021;
        color: #ffffff;
        text-align: center;
        padding: 12px 14px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    }

    .menu-cta .btn-small:hover {
        background-color: #d9550f;
        color: #ffffff;
    }

    .content {
        padding-top: 8px;
    }

    #pasek_glowny {
        grid-template-columns: minmax(0, 1fr);
    }

    #menu_boczne {
        order: 1;
        margin-top: 12px;
    }

    #tresc_strony {
        order: 2;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 18px;
    }

    .logo-img {
        max-height: 36px;
    }

    #tresc_strony {
        padding: 16px 14px;
    }

    #menu_boczne {
        padding: 12px 14px;
    }
}

/* -------------------------
   Cennik – ogólne
-------------------------- */

.pricing-page {
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-page h1,
.pricing-page h2,
.pricing-page h3 {
    margin-bottom: 0.6em;
}

/* Nagłówek cennika */
.pricing-header {
    margin-bottom: 1.4rem;
}

.pricing-header p {
    margin: 0.3em 0;
}

.pricing-header-link a {
    font-weight: 600;
    text-decoration: none;
}

.pricing-header-link a:hover {
    text-decoration: underline;
}

/* Subnawigacja w treści (linki pomocnicze) */
.pricing-subnav {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666666;
}

.pricing-subnav strong {
    margin-right: 0.5rem;
}

.pricing-subnav a {
    margin: 0 0.25rem;
    font-weight: 500;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid #ffd7b8;
    background-color: #fff7f2;
}

.pricing-subnav a:hover {
    background-color: #f37021;
    color: #ffffff;
    text-decoration: none;
    border-color: #f37021;
}


/* -------------------------
   Karty pakietów
-------------------------- */

.pricing-packages {
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.pricing-card {
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-highlight {
    border-color: #f37021;
    box-shadow: 0 14px 30px rgba(243, 112, 33, 0.18);
    position: relative;
    padding-top: 2.2rem;
}

.pricing-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #f37021;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}


/* Nagłówek karty */
.pricing-card-header {
    margin-bottom: 1rem;
}

.pricing-card-subtitle {
    margin: 0.2em 0 0.6em;
    font-size: 0.9rem;
    color: #666666;
}

.pricing-card-price {
    margin: 0;
}

.pricing-card-price-main {
    font-size: 1.6rem;
    font-weight: 700;
}

.pricing-card-price-meta {
    display: block;
    font-size: 0.85rem;
    color: #777777;
}

/* Lista cech pakietu */
.pricing-card-features {
    margin: 1rem 0 0.5rem;
    padding-left: 1.2rem;
}

.pricing-card-features li {
    margin-bottom: 0.3rem;
}

/* pomarańczowe „kropki” na listach w kartach */
.pricing-card-features li::marker {
    color: #f37021;
    font-weight: 700;
}

/* CTA zawsze na dole karty */
.pricing-card-cta {
    margin-top: auto;
    padding-top: 1rem;
}

/* Tekst „dodatki” i „co wybrać” pod kartami */
.pricing-addons,
.pricing-which {
    font-size: 0.9rem;
    color: #555555;
}

.pricing-addons {
    margin-top: 1.2rem;
}

.pricing-which {
    margin-top: 0.8rem;
}

/* -------------------------
   Tabela porównawcza
-------------------------- */

.pricing-compare {
    margin-bottom: 3rem;
}

.pricing-compare-scroll {
    overflow-x: auto;
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 0.9rem;
}

.pricing-compare-table th,
.pricing-compare-table td {
    border: 1px solid #e3e3e3;
    padding: 0.5rem 0.7rem;
    text-align: center;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
    text-align: left;
    font-weight: 600;
}

/* nagłówki + delikatne paskowanie */
.pricing-compare-table thead th {
    background-color: #f0f0f0;
}

.pricing-compare-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* -------------------------
   Sekcje tekstowe
-------------------------- */

.pricing-included,
.pricing-activation,
.pricing-calls,
.pricing-faq {
    margin-bottom: 2.5rem;
}

.pricing-final-cta {
    margin-top: 2.5rem;
    padding: 1.8rem 1.4rem;
    border-radius: 12px;
    background-color: #fff7f2;
    border: 1px solid #ffd7b8;
    text-align: center;
}

.pricing-final-cta h2 {
    margin-bottom: 0.5rem;
}

.pricing-final-cta p {
    margin: 0.3rem 0;
}

.pricing-final-cta .btn-primary,
.pricing-final-cta .btn-secondary {
    margin: 0.3rem 0.4rem 0;
}

/* =========================
   Dopalony wygląd cennika
   ========================= */

.page-no-sidebar {
    padding: 32px 0 48px;
}

.page-no-sidebar #tresc_strony {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.pricing-page {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 0px 32px 40px;
    position: relative;
}

.pricing-page::before {
    content: "";
    display: block;
    height: 3px;
    width: 80px;
    background: #ff7a1a;
    border-radius: 999px;
    margin-bottom: 24px;
}

.pricing-header {
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
    padding: 1.4rem 1.4rem 1.2rem;
    margin: -32px -32px 1.2rem;
}

.pricing-header h1 {
    margin-top: 0;
}

.pricing-page h2 {
    color: #ff7a1a;
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.pricing-included-list {
    padding-left: 1.2rem;
}

.pricing-included-list li {
    margin-bottom: 0.3rem;
}

.pricing-activation-columns {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 700px) {
    .pricing-activation-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pricing-faq details {
    margin-bottom: 0.5rem;
}

.pricing-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.pricing-faq summary::-webkit-details-marker {
    display: none;
}

.pricing-faq ul {
    list-style-type: disc;
    list-style-image: none;
    padding-left: 1.2rem;
    margin: 0.3rem 0 0.6rem;
}

.pricing-faq li {
    margin-bottom: 0.15rem;
}

/* Karty pakietów */

.pricing-packages h2 {
    margin-bottom: 0.6rem;
}

.pricing-grid {
    display: grid;
    gap: 1.4rem;
    margin-top: 1rem;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.pricing-card {
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 1.5rem 1.4rem 1.6rem;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card-highlight {
    border-color: #f37021;
    box-shadow: 0 14px 30px rgba(243, 112, 33, 0.18);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #f37021;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(243, 112, 33, 0.35);
}


.pricing-card-header {
    margin-bottom: 0.5rem;
}

.pricing-card-title {
    margin: 0;
    font-size: 1.05rem;
}

.pricing-card-subtitle {
    margin: 0.25rem 0 0.6rem;
    font-size: 0.9rem;
    color: #666;
    min-height: 2.8em;
}


.pricing-card-price {
    margin: 0;
}

.pricing-card-price-main {
    font-size: 1.6rem;
    font-weight: 700;
    margin-right: 4px;
}

.pricing-card-price-meta {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

/* Lista w kartach */

.pricing-card-features {
    margin: 0.8rem 0 0.8rem;
    padding-left: 1.2rem;
}

.pricing-card-features li {
    margin-bottom: 0.25rem;
}

.pricing-card-addons {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.pricing-card-cta {
    margin-top: auto;
}

.pricing-card-cta .btn-primary {
    text-decoration: none;
}

/* Notka pod kartami */

.pricing-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.8rem;
}

/* Tabele porównawcze */

.pricing-compare-scroll {
    overflow-x: auto;
}

.pricing-compare-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.pricing-compare-table th,
.pricing-compare-table td {
    border: 1px solid #e3e3e3;
    padding: 0.45rem 0.6rem;
    text-align: center;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
    text-align: left;
}

.pricing-compare-table thead th {
    background-color: #fafafa;
}

/* Listy tekstowe */

.pricing-included-list {
    padding-left: 1.2rem;
}

.pricing-included-list li {
    margin-bottom: 0.25rem;
}

/* Aktywacja – kolumny */

.pricing-activation-columns {
    display: grid;
    gap: 1.4rem;
}

@media (min-width: 700px) {
    .pricing-activation-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* FAQ */

.pricing-faq details {
    margin-bottom: 0.6rem;
}

.pricing-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.pricing-faq summary::-webkit-details-marker {
    display: none;
}

/* Dostosowanie #tresc_strony, gdy ma klasę .page-no-sidebar */
#tresc_strony.page-no-sidebar {
    padding: 32px 0 48px;
    background: transparent;
    box-shadow: none;
}

/* -------------------------
   Opłata startowa + multinumer – dwie karty
   -------------------------- */

.pricing-activation-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.pricing-activation-columns > div {
    background: #fafbff;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Mobile – kolumny jedna pod drugą */
@media (max-width: 768px) {
    .pricing-activation-columns {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Strony "Jak możesz dzwonić" – telefon biurowy
   ========================= */

.breadcrumbs {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #f37021;
    text-decoration: underline;
}

.breadcrumbs span {
    font-weight: 500;
}

/* Ogólne opakowanie strony urządzenia */
.device-page {
    font-size: 0.95rem;
    line-height: 1.6;
}

.device-header {
    margin-bottom: 1.8rem;
}

.device-header p {
    margin-top: 0.4rem;
    max-width: 620px;
}

/* Sekcje na stronie */
.device-section {
    margin-bottom: 2rem;
}

/* Siatki 2‑kolumnowe */
.device-layout-grid,
.device-grid-2 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .device-layout-grid,
    .device-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Ramki ze schematami */
.device-diagram {
    background-color: #fafafa;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.device-diagram figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Box z ceną i bonusami */
.device-card {
    background: #fafbff;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Listy punktowane w treści */
.device-list {
    margin: 0.4rem 0 0.8rem;
    padding-left: 1.2rem;
}

.device-list li {
    margin-bottom: 0.25rem;
}

/* Kroki zamawiania */
.device-steps {
    margin: 0.6rem 0 1rem 1.2rem;
    padding-left: 0;
}

.device-steps li {
    margin-bottom: 0.3rem;
}

.device-section .device-list {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}


/* Aplikacja mobilna – dodatkowe style */

.app-screenshot {
    text-align: center;
}

.app-screenshot img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.device-section-cta {
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    border-radius: 12px;
    background: #fff7f2;
    border: 1px solid #ffd7b8;
    text-align: center;
}

.device-section-cta .btn-primary {
    margin-top: 0.75rem;
}

.device-page p {
    text-align: left;
}

/* =========================
   Strona „Jak możesz dzwonić?” – kafelki
   ========================= */

.device-tiles {
    display: grid;
    gap: 1.4rem;
    margin-top: 0.9rem;
}

@media (min-width: 768px) {
    .device-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.device-tile {
    background-color: #fafafa;
    border-radius: 12px;
    padding: 1.2rem 1.3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 100%;
}

.device-tile a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.device-tile img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0.6rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.device-tile h3 {
    margin-bottom: 0.35rem;
    font-size: 16px;
    color: #444444;
}

.device-tile p {
    margin: 0;
    font-size: 0.9rem;
    color: #555555;
}

.device-tile a:hover h3 {
    color: #f37021;
}

/* Linki w sekcji "Więcej informacji" – nie łam tekstu w środku linku */
.info-links a {
    white-space: nowrap;
}


.info-links p {
    margin-bottom: 0.35rem;
}

.info-links p strong {
    margin-right: 0.35rem;
}

/* „Kropka” między linkami, z równym odstępem */
.info-links p a + a::before {
    content: "·";
    margin: 0 0.35rem;
    color: #999999;
}

/* =========================
   Jak możesz dzwonić – sekcja "Więcej informacji"
   ========================= */

.more-links-grid {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.more-links-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    column-gap: 0.75rem;
    row-gap: 0.15rem;
}

.more-links-label {
    flex: 0 0 auto;
    width: 210px;
    font-weight: 600;
}

.more-links-items {
    flex: 1 1 0;
    font-size: 0.95rem;
}

.more-links-items a {
    margin-right: 0.35rem;
}

/* Na większych ekranach linki nie łamią się w środku */
@media (min-width: 768px) {
    .more-links-items a {
        white-space: nowrap;
    }
}

/* Na bardzo wąskich ekranach etykieta nad linkami */
@media (max-width: 600px) {
    .more-links-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .more-links-label {
        width: auto;
    }
}

/* Numery wewnętrzne – delikatne podciągnięcie karty "W skrócie" */
.grid-numery-intro .device-card {
    padding-top: 1.1rem;
}

/* =========================
   Strona Kontakt
   ========================= */

.contact-page {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-page p {
    text-align: left; /* nadpisuje globalne justowanie */
}

.contact-page h1 {
    margin-bottom: 0.8rem;
}

.contact-layout-top {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

@media (min-width: 768px) {
    .contact-layout-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: flex-start;
    }
}


.contact-main-box,
.contact-before-form,
.contact-offices,
.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-main-box {
    position: relative;
}

.contact-main-box .data {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

/* Numery kontaktowe – tabela w kartce z poziomym scrollem na mobile */

.contact-offices {
    margin-top: 2rem;
}

.contact-offices h2 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.contact-offices p {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

/* wrapper jak w .pricing-compare-scroll – poziomy scroll na wąskich ekranach */
.contact-numbers-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* płynny scroll na iOS */
}


.contact-numbers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 560px;
}

.contact-numbers-table th,
.contact-numbers-table td {
    padding: 4px 8px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-numbers-table thead th {
    background-color: #f3f4f6;
    font-weight: 600;
    text-align: left;
}

.contact-numbers-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.contact-numbers-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.contact-numbers-table td:nth-child(2),
.contact-numbers-table td:nth-child(3) {
    text-align: center;
}

/* Formularz kontaktowy */

.contact-form-wrapper {
    margin-top: 2rem;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-form {
    max-width: 720px;
}

/* jeden wiersz: etykieta po lewej, pole po prawej */
.contact-form-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

/* lewa kolumna – etykieta */
.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 6px 0 0;
    flex: 0 0 170px;    /* szerokość kolumny z opisami pól */
}

/* gwiazdka wymaganych pól */
.contact-form .required {
    color: #ef4444;
}

/* prawa kolumna – pole formularza */
.contact-form-field {
    flex: 1 1 0;
}

/* tekst pod captcha itd. */
.contact-form-note {
    font-size: 0.8rem;
    color: #6b7280;
}

/* wiersz z captcha – zostawiamy inline w prawej kolumnie */
.contact-form-row-captcha .contact-form-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* pole captcha mniejsze */
.contact-form-row-captcha input[type="text"] {
    max-width: 120px;
}

/* wiersz z przyciskiem – label puste miejsce po lewej */
.contact-form-label-spacer {
    flex: 0 0 170px;
}

/* przycisk jak dotychczas, tylko wyrównany do pól */
.contact-form-submit {
    margin-top: 0.2rem;
    font-size: 0.95rem !important;
    padding: 8px 22px !important;
}

/* na wąskich ekranach – etykiety nad polami (jak do tej pory) */
@media (max-width: 520px) {
    .contact-form-row {
        flex-direction: column;
    }

    .contact-form label,
    .contact-form-label-spacer {
        flex: 0 0 auto;
    }
}

.contact-form-row-half {
    display: grid;
    gap: 0.8rem;
}

.contact-form-message {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.contact-form-message--error {
    border: 1px solid #fecaca;
    background-color: #fef2f2;
    color: #b91c1c;
}

.contact-form-message--success {
    border: 1px solid #bbf7d0;
    background-color: #ecfdf5;
    color: #166534;
}

@media (min-width: 640px) {
    .contact-form-row-half {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-form .required {
    color: #ef4444;
}

.contact-form input[type="text"],
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
    border-color: #f37021;
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.18);
}

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

.contact-form-row-captcha .contact-form-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-form-row-captcha input[type="text"] {
    max-width: 120px;
}

.contact-form-note {
    font-size: 0.8rem;
    color: #6b7280;
}

/* przycisk jak w liście numerów, ale trochę większy */

.contact-form-submit {
    margin-top: 0.2rem;
    font-size: 0.95rem !important;
    padding: 8px 22px !important;
}

.contact-form-row-submit {
    margin-top: 1.1rem;
}

/* Komunikaty po rejestracji (zamow.php) – czytelne akapity */
#tresc_strony .registration-info p {
    margin: 0 0 0.75rem;
    text-align: left;
}

#tresc_strony .registration-info p:last-child {
    margin-bottom: 0;
}


/* Strona rejestracji – węższa kolumna, żeby lepiej się czytało */
.registration-page{
    max-width: 760px;
    margin: 0 auto 32px;   /* wycentrowanie w #tresc_strony */
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 32px 32px 40px;
    position: relative;
}

.contact-form-page{
    max-width: 840px;      /* możesz zmienić np. na 720/800 w zależności od gustu */
    margin: 0 auto 32px;   /* wycentrowanie w #tresc_strony */
}


.contact-form-header{
    padding: 0px 32px 0px;
    position: relative;
}

.main-page{
    /*background: #ffffff;*/
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 32px 32px 40px;
    position: relative;
}

