.elementor-5407 .elementor-element.elementor-element-017677d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-5407 .elementor-element.elementor-element-97a2133{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5407 .elementor-element.elementor-element-d0301e3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5407 .elementor-element.elementor-element-e957252{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for text-editor, class: .elementor-element-edeba2b *//* === SEKCJA HERO — WIĘKSZY OBRAZ === */

.access-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: #eef3ff;
    flex-wrap: wrap;
    gap: 40px;
}

/* TEKST */
.access-hero-content {
    flex: 1 1 550px;
}

.access-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #002b5c;
    line-height: 1.2;
}

.access-hero-content h1 span {
    color: #0051ff;
}

.access-hero-content p {
    font-size: 20px;
    color: #444;
    margin-top: 20px;
    line-height: 1.7;
}

/* OBRAZ – WIĘKSZY + RESPONSYWNY */
.access-hero-img {
    flex: 1 1 600px;
    text-align: center;
}

.access-hero-img img {
    width: 100%;
    max-width: 650px;     /* 🔥 DUŻY obraz na desktopie */
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
    display: block;
    margin: 0 auto;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
    .access-hero-img img {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .access-hero-img img {
        max-width: 100%;
    }

    .access-hero-content h1 {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-cfeb68e */.access-features {
    padding: 70px 20px;
    background: #f5f9ff;
    text-align: center;
}

.access-features h2 {
    font-size: 30px;
    font-weight: 800;
    color: #002b5c;
    margin-bottom: 40px;
}

/* --- NOWY POPRAWNY GRID --- */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ustaw 4. box WYŚRODKOWANY – poniżej kolumny środkowej */
.access-box:nth-child(4) {
    grid-column: 2 / 3; /* środkowa kolumna */
}

/* Responsywność – na tabletach 2 kolumny */
@media (max-width: 900px) {
    .access-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .access-box:nth-child(4) {
        grid-column: span 2; /* na środku */
    }
}

/* Responsywność — na telefonach 1 kolumna */
@media (max-width: 600px) {
    .access-grid {
        grid-template-columns: 1fr;
    }

    .access-box:nth-child(4) {
        grid-column: auto;
    }
}

/* BOX */
.access-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    transition: .25s;
}

.access-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.access-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 10px;
}

.access-box p {
    line-height: 1.7;
    color: #444;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-26834da */.access-integration {
    padding: 70px 20px;
    background: white;
    text-align: center;
}

.access-integration h2 {
    font-size: 30px;
    font-weight: 800;
    color: #002b5c;
    margin-bottom: 35px;
}

.integration-list {
    max-width: 900px;
    margin: auto;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin: 14px 0;
    justify-content: center;
}

.integration-item span {
    font-size: 26px;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-f46f2ac */.access-cta {
    padding: 60px 20px;
    background: #f5f9ff;
    text-align: center;
}

.access-cta h2 {
    font-size: 26px;
    font-weight: bold;
    color: #002b5c;
    margin-bottom: 20px;
}

.access-cta-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.access-cta-btn {
    padding: 14px 32px;
    background: #002b5c;
    color: #fff !important;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.access-cta-btn:hover {
    background: #013a73;
    transform: translateY(-3px);
}

.access-cta-btn.purple {
    background: #6f42c1;
}

.access-cta-btn.purple:hover {
    background: #522b99;
}/* End custom CSS */