/*@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;
}

/* 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;
}

.btn-small {
    font-size: 0.9rem;
    padding: 8px 18px;
}

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

.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 .naglowek {
    font-weight: 600;
    color: #f37021;
    font-size: 14px;
}

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

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

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

/* =========================
   Menu boczne – wyrównanie punktów i odstępy sekcji (JEDNA wersja)
   ========================= */

#menu_boczne ul,
#menu_boczne .side-list {
    margin: 0 0 12px;
    padding: 0;
    list-style-type: square;
    list-style-position: inside;  /* kwadrat w tej samej kolumnie co tekst */
}

#menu_boczne li {
    margin: 6px 0;
    padding-left: 0;
}

#menu_boczne li::marker {
    color: #f37021;
}

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

#menu_boczne .data {
    display: block;
    font-size: 11px;
    color: #999999;
    margin-top: 12px;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* dla pierwszego bloku zostaw mniej odstępu */
#menu_boczne p:first-child .data {
    margin-top: 6px;
}

/* 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;
}

/* Przywrócone odstępy akapitów (to naprawia „sklejanie” w cenniku i wielu podstronach) */
#tresc_strony p {
    text-align: justify;
    margin: 0 0 0.85rem;
}
#tresc_strony p:last-child { margin-bottom: 0; }

/* 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;
    list-style-type: square;
    list-style-position: inside;
}

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

#tresc_strony ul li::marker {
    color: #f37021;
}

/* Teksty na stronach "Jak działa" – 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;
}

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

.help-topics-list li::marker {
    color: #f37021;
}

.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;
}

.help-topics-list h3 {
    display: inline;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.back-to-top {
    margin-top: 0.8rem;
}

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

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

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

.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);
}

.numbers-form-submit { margin-top: 0.9rem; }
.numbers-form-back-btn { margin-top: 0.6rem; }

/* Lista numerów */
.device-page ul.numbers-list,
.device-page ul.numbers-list li {
    list-style: 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;
    gap: 12px;
    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;
}

.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;
}

@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;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .intro-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .intro-cta .btn-primary,
    .intro-cta .btn-secondary {
        width: 100%;
        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 – nowy layout 2025
   ========================= */

#stopka {
    margin-top: 40px;
    background-color: #0f172a;
    color: #e5e7eb;
}

#stopka_pasek_pomaranczowy {
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ff9b4d);
}

#stopka_tresc {
    padding: 18px 16px 24px;
}

.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;
}

.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;
}

.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;
}

.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);
}

@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) {
    .menu-toggle { display: flex; }

    .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;
    }

    .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); }
}

@media (max-width: 600px) {
    .logo-text { font-size: 18px; }
    .logo-img { max-height: 36px; }
    #tresc_strony { padding: 16px 14px; }
    #menu_boczne { padding: 12px 14px; }
}

/* Ukrywanie sidebaru na telefonach (Twoje założenie) */
@media (max-width: 768px) {
    #menu_boczne { display: none; }
    #pasek_glowny { display: block; }
    #tresc_strony { width: 100%; }
}

/* =========================
   Cennik – dopalony wygląd (JEDNA wersja)
   ========================= */

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

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

.pricing-page {
    font-size: 0.95rem;
    line-height: 1.6;
    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-header-link a {
    font-weight: 600;
    text-decoration: none;
}
.pricing-header-link a:hover { text-decoration: underline; }

.pricing-subnav {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666666;
}

.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;
}

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

/* Karty pakietów */
.pricing-packages { margin-bottom: 3rem; }

.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;
    padding-top: 2.2rem;
}

.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-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;
}

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

.pricing-card-features li { margin-bottom: 0.25rem; }
.pricing-card-features li::marker { color: #f37021; font-weight: 700; }

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

/* To naprawia „sklejanie” pod kartami */
.pricing-addons {
    margin-top: 1.4rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: #555555;
}
.pricing-addons p { margin: 0; text-align: left; }

.pricing-which {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    color: #555555;
    text-align: left;
}

/* Porównanie pakietów */
.pricing-compare { margin-bottom: 3rem; }
.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;
    font-weight: 600;
}

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

/* Listy tekstowe cennika */
.pricing-included-list {
    padding-left: 1.2rem;
}
.pricing-included-list li { margin-bottom: 0.25rem; }

/* Aktywacja – kolumny */
.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);
}

@media (max-width: 768px) {
    .pricing-activation-columns { grid-template-columns: 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; }

.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; }

/* Końcowe CTA */
.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; text-align: center; }

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

/* =========================
   Strony urządzeń / “Jak działa”
   ========================= */

.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; }

.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; text-align: left; }

.device-section { margin-bottom: 2rem; }

.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));
    }
}

.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 figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.device-card {
    background: #fafbff;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.device-list {
    margin: 0.4rem 0 0.8rem;
    padding-left: 1.2rem;
}
.device-list li { margin-bottom: 0.25rem; }

.device-steps {
    margin: 0.6rem 0 1rem 1.2rem;
    padding-left: 0;
}
.device-steps li { margin-bottom: 0.3rem; }

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

.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; }

/* 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: 0 auto 0.6rem;
    display: block;
}

.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 “Więcej informacji” */
.info-links a { white-space: nowrap; }
.info-links p { margin-bottom: 0.35rem; text-align: left; }
.info-links p strong { margin-right: 0.35rem; }
.info-links p a + a::before { content: "·"; margin: 0 0.35rem; color: #999999; }

.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; }

@media (min-width: 768px) {
    .more-links-items a { white-space: nowrap; }
}

@media (max-width: 600px) {
    .more-links-row { flex-direction: column; align-items: flex-start; }
    .more-links-label { width: auto; }
}

.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; }
.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;
}

.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; }

.contact-numbers-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.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; }

.contact-form-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 6px 0 0;
    flex: 0 0 170px;
}

.contact-form .required { color: #ef4444; }
.contact-form-field { flex: 1 1 0; }

.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-note { font-size: 0.8rem; color: #6b7280; }

.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-label-spacer { flex: 0 0 170px; }

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

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

@media (max-width: 520px) {
    .contact-form-row { flex-direction: column; }
    .contact-form label,
    .contact-form-label-spacer { flex: 0 0 auto; margin: 0 0 0.25rem; }
}

/* Komunikaty */
.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;
}

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

/* Strony rejestracji / kontaktu – centrowanie */
.registration-page{
    max-width: 760px;
    margin: 0 auto 32px;
    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;
    margin: 0 auto 32px;
}

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

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