.elementor-2469 .elementor-element.elementor-element-a5e5549{--display:flex;}.elementor-2469 .elementor-element.elementor-global-2007{margin:5px 5px calc(var(--kit-widget-spacing, 0px) + 5px) 5px;}.elementor-2469 .elementor-element.elementor-global-2443{padding:0px 0px 0px 0px;}.elementor-2469 .elementor-element.elementor-global-2004{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-2469 .elementor-element.elementor-global-2004.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for global, class: .elementor-global-2007 *//* --- ZMIENNE I PODSTAWY --- */
:root {
    --apple-blue: #0066cc;
    --apple-burgundy: #800020;
    --apple-text: #1d1d1f;
    --apple-border: rgba(0, 0, 0, 0.08);
    --apple-bg: rgba(255, 255, 255, 0.95);
}

.ipoint-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: var(--apple-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--apple-border);
    z-index: 9999;
    height: 80px;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img { height: 50px; width: auto; }

/* --- LINKI (DESKTOP) --- */
.nav-links { display: flex; gap: 35px; }
.nav-links a {
    text-decoration: none;
    color: var(--apple-text);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
}
.nav-links a:hover { color: var(--apple-blue); }

/* --- PRZYCISK TELEFONU --- */
.phone-btn {
    background: var(--apple-blue);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: var(--apple-burgundy);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
    transform: translateY(-2px);
}

/* --- HAMBURGER --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 10000;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--apple-text);
    transition: 0.3s;
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; order: 3; }
    
    .nav-cta { order: 2; margin-left: auto; margin-right: 20px; }
    .phone-btn span { display: none; }
    .phone-btn { padding: 10px; border-radius: 50%; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        max-height: 0; /* Ukryte przez wysokość */
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 0;
    }

    /* Klasa aktywna dla menu */
    .nav-links.active {
        max-height: 300px; /* Rozwinięcie menu */
        padding: 10px 0;
    }

    .nav-links a {
        padding: 20px;
        width: 100%;
        border-bottom: 1px solid var(--apple-border);
        font-size: 16px;
    }

    /* Animacja Hamburgera w X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-2443 *//* =========================================
   ARKUSZ STYLÓW (CSS)
   ========================================= */
.ipoint-web-wrapper, .ipoint-web-wrapper * {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

:root {
    --apple-blue: #0066cc;
    --apple-gray: #f5f5f7;
    --apple-text: #1d1d1f;
    --apple-sub: #86868b;
    --apple-border: #d2d2d7;
}

.ipoint-web-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 40px 20px;
    background: #fff;
    color: var(--apple-text);
}

/* OPTYMALIZACJA MOBILNA: Zmniejszenie marginesów kontenera */
@media (max-width: 480px) {
    .ipoint-web-wrapper {
        padding: 20px 5px; /* Prawie do krawędzi ekranu */
    }
}

/* --- NAGŁÓWKI --- */
.section-header { text-align: center; margin-bottom: 25px; }

.section-badge {
    color: var(--apple-blue); 
    border: 1.5px solid var(--apple-blue);
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 10px;
    font-weight: 700; 
    text-transform: uppercase; 
    display: inline-block; 
    margin-bottom: 15px; 
    margin-top: 5px;
    white-space: nowrap; 
    line-height: 1.2;
}

.section-header h2 { font-size: 28px; font-weight: 800; margin-bottom: 5px; }
.section-header p { color: var(--apple-sub); font-size: 14px; }

/* --- KAFELKI (GRID) --- */
.grid-container {
    max-width: 1100px; margin: 0 auto 30px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
@media (min-width: 768px) { .grid-container { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.service-tile {
    text-decoration: none !important; background: #fff; color: inherit;
    border: 1px solid var(--apple-border); border-radius: 18px;
    padding: 15px 10px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
    transition: transform 0.2s, border-color 0.2s;
}
.service-tile.active-tile {
    border: 2px solid var(--apple-blue); background: #f0f8ff;
}
.tile-image img { height: 70px; margin-bottom: 8px; object-fit: contain; }
@media (min-width: 768px) { .tile-image img { height: 100px; } }
.tile-content h3 { font-size: 15px; font-weight: 600; margin: 0; }
.tile-content p { font-size: 12px; color: var(--apple-sub); margin-top: 4px; display: none; }
@media (min-width: 600px) { .tile-content p { display: block; } }

/* --- GŁÓWNY MODUŁ CENNIKA --- */
.ipoint-pricing-wrapper {
    max-width: 800px; margin: 0 auto; padding: 20px 15px;
    background: #fff; border-radius: 24px; border: 1px solid var(--apple-border);
}

/* OPTYMALIZACJA MOBILNA: Mniejszy padding wewnątrz ramki cennika */
@media (max-width: 480px) {
    .ipoint-pricing-wrapper {
        padding: 15px 5px;
        border-radius: 16px;
    }
}

.pricing-header h3 { text-align: center; margin-bottom: 20px; font-size: 22px; }

/* SELEKTORY */
.selection-grid {
    display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px;
}
@media (min-width: 768px) { .selection-grid { grid-template-columns: 1fr 1fr 1fr; gap: 15px; } }

.input-box label { display: block; font-size: 12px; font-weight: 700; color: var(--apple-sub); margin-bottom: 5px; padding-left: 5px; }
.input-box select {
    width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--apple-border);
    background: var(--apple-gray); font-size: 14px; -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center; background-size: 14px;
}

/* --- WYNIKI (TABELA) --- */
.result-display {
    background: var(--apple-gray);
    border-radius: 20px;
    padding: 20px 15px;
}
/* Mniejszy padding na mobile */
@media (max-width: 480px) {
    .result-display { padding: 15px 5px; }
}

.variants-container {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
@media (max-width: 480px) {
    .variants-container { padding: 5px; }
}

/* STRUKTURA TABELI GRID */
.variants-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.v-row {
    display: grid;
    /* Domyślnie (Desktop): */
    grid-template-columns: 1fr minmax(80px, auto) minmax(80px, auto);
    gap: 10px;
    padding: 14px 10px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

/* --- KLUCZOWA POPRAWKA MOBILNA --- */
@media (max-width: 600px) {
    .v-row {
        /* Zmiana na mobile: Kolumny dopasowują się do treści, resztę zajmuje nazwa */
        grid-template-columns: 1fr auto auto;
        gap: 5px;
        padding: 10px 5px;
    }
}

.v-row:last-child { border-bottom: none; }

/* NAGŁÓWEK TABELI */
.v-header {
    border-bottom: 1px solid #e5e5e5;
    background-color: #fafafa;
    border-radius: 8px 8px 0 0;
    padding: 10px;
}

.v-header div {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--apple-sub);
    letter-spacing: 0.5px;
}
/* Zmniejszenie nagłówków na bardzo małych ekranach */
@media (max-width: 360px) {
    .v-header div { font-size: 9px; letter-spacing: 0; }
}

/* WYRÓWNANIE TEKSTU W KOLUMNACH */
.v-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-text);
    line-height: 1.3;
}
/* Zmniejszenie czcionki nazwy na mobile */
@media (max-width: 600px) {
    .v-name { font-size: 12px; }
}

.v-time {
    text-align: right;
    font-size: 13px;
    color: var(--apple-sub);
    white-space: nowrap; 
}
/* Zmniejszenie czcionki czasu na mobile */
@media (max-width: 600px) {
    .v-time { font-size: 11px; }
}

.v-price {
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: var(--apple-blue);
    white-space: nowrap; 
}
/* Zmniejszenie czcionki ceny na mobile */
@media (max-width: 600px) {
    .v-price { font-size: 12px; }
}

.v-header div:nth-child(2),
.v-header div:nth-child(3) {
    text-align: right;
}

/* Placeholder */
.placeholder-text {
    text-align: center; padding: 30px 10px; font-size: 13px; color: var(--apple-sub);
}

/* --- PRZYCISK --- */
.cta-button {
    width: 100%; background: var(--apple-blue); color: #fff;
    border: none; padding: 16px; border-radius: 12px;
    font-size: 16px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-button.disabled { opacity: 0.5; background: #999; pointer-events: none; }
#cta-note { text-align: center; font-size: 11px; color: var(--apple-sub); margin-top: 8px; }

/* --- MODAL --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(3px);
    z-index: 9999; display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: #fff; width: 100%; height: 100%;
    display: flex; flex-direction: column; position: relative;
}
@media (min-width: 768px) {
    .modal-content { width: 90%; max-width: 900px; height: 80vh; border-radius: 20px; overflow: hidden; }
}
.close-modal {
    position: absolute; top: 15px; right: 15px; background: #eee; border: none;
    width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer;
}
.modal-info-bar { padding: 60px 20px 15px; background: #f9f9f9; border-bottom: 1px solid #ddd; font-size: 14px; }
@media (min-width: 768px) { .modal-info-bar { padding: 20px; } }
.modal-body { flex: 1; width: 100%; height: 100%; }/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-2455 *//* --- KONFIGURACJA I ZMIENNE --- */
:root {
    --ap-blue: #0066cc;
    --ap-gray: #f5f5f7;
    --ap-dark: #1d1d1f;
    --ap-sub: #86868b;
}

.features-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.features-section * {
    box-sizing: border-box;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- SEKCJA PROCESU (GÓRA) --- */
.process-wrapper {
    text-align: center;
    width: 100%;
}

.ip-badge {
    color: var(--ap-blue);
    border: 1.5px solid var(--ap-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.process-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
    color: var(--ap-dark);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.process-line {
    position: absolute;
    top: 25px; /* Połowa wysokości kropki (50px/2) */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e2e7;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.step-dot {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid var(--ap-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ap-blue);
    transition: all 0.3s ease;
}

.step-item:hover .step-dot {
    background: var(--ap-blue);
    color: #ffffff;
    transform: scale(1.1);
}

.step-text h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 14px;
    color: var(--ap-sub);
    line-height: 1.4;
    padding: 0 10px;
}

/* --- ROZDZIELNIK (SEPARATOR) --- */
.workflow-separator {
    text-align: center;
    position: relative;
    margin: 80px 0;
}

.workflow-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e2e7;
    z-index: 1;
}

.workflow-separator span {
    background: #ffffff;
    padding: 0 25px;
    position: relative;
    z-index: 2;
    color: var(--ap-sub);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- KAFELKI CECH (DÓŁ) --- */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: #fbfbfd;
    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #e2e2e7;
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--ap-blue);
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0,102,204,0.1);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--ap-dark);
}

.feature-card p {
    color: var(--ap-sub);
    line-height: 1.6;
    font-size: 15px;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-line {
        display: none;
    }

    .step-item {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-dot {
        margin: 0;
        flex-shrink: 0;
    }

    .workflow-separator {
        margin: 60px 0;
    }
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-2004 *//* --- GŁÓWNA STRUKTURA STOPKI --- */
.ipoint-footer {
    background-color: #111112; /* Kolor stopki */
    color: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-top: 1px solid #2d2d2f;
    padding-top: 45px;
    width: 100%;
    position: relative;

    /* KLUCZOWA ZMIANA: 
       Cień rozciąga się na 1000px TYLKO W DÓŁ (trzecia wartość: 0).
       Zapewnia to czarne tło pod stopką, jeśli strona jest krótka.
    */
    box-shadow: 0 1000px 0 1000px #111112;

    /* Rozciągnięcie tła na całą szerokość ekranu */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* Zapobieganie powstawaniu paska przewijania przez ogromny cień */
body {
    overflow-x: hidden;
}

/* Kontener centrujący treść wewnątrz stopki */
.footer-center-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #2d2d2f;
}

/* --- KOLUMNY I TREŚĆ --- */
.footer-col {
    flex: 0 1 auto;
    min-width: 160px;
}

.brand-col { max-width: 250px; }
.footer-logo { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.brand-description { font-size: 13px; color: #86868b; line-height: 1.5; margin-bottom: 15px; }

/* Dane firmy */
.company-details {
    font-size: 12px;
    color: #6e6e73;
    line-height: 1.4;
    border-top: 1px solid #2d2d2f;
    padding-top: 12px;
    margin-top: 15px;
}
.company-details p { margin: 0 0 3px 0; }
.company-details strong { color: #f5f5f7; }

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #86868b;
    margin-bottom: 15px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col a, .contact-link {
    text-decoration: none;
    color: #a1a1a6;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col a:hover { color: #2997ff; }

.contact-link { display: block; margin-bottom: 6px; }
.contact-link i { color: #2997ff; margin-right: 8px; width: 12px; }

/* Regulaminy */
.legal-links-inline {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #2d2d2f;
    font-size: 11px;
    display: flex;
    gap: 8px;
}
.separator { color: #2d2d2f; }

/* Mapa */
.map-col { width: 220px; }
.footer-map-widget {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2d2d2f;
}
.footer-map-widget iframe { filter: grayscale(1) invert(0.9); border: none; }

/* Dolny pasek */
.footer-bottom {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
    color: #555555;
}

.social-links { display: flex; gap: 15px; }
.social-links a { font-size: 16px; color: #86868b; transition: 0.3s; }
.social-links a:hover { color: #fff; }

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-col { width: 100%; }
    .legal-links-inline { justify-content: center; border-top: none; }
    .footer-bottom { flex-direction: column; gap: 10px; padding: 20px 0; }
}/* End custom CSS */