/*! CSS Reset & Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    line-height: 1.5;
    background-color: #101a23;
    color: #eaf8ff;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg,#163C53 0%, #1B867F 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: #69ffd9;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #ff35b5;
}
ul, ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #FBFBFA;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}
h1 {
    font-size: 2.5rem;
    color: #48fff6;
    margin-bottom: 12px;
    text-shadow: 0 4px 32px #16e3a8,0 1px 4px #03254d;
}
h2 {
    font-size: 2rem;
    color: #12ffa7;
    margin-bottom: 12px;
    text-shadow: 0 2px 14px #163C53;
}
h3 {
    font-size: 1.25rem;
    color: #09b5c9;
    margin-bottom: 10px;
}
.subheadline {
    font-size: 1.156rem;
    font-weight: 500;
    color: #d4fff1;
    margin-bottom: 22px;
}
p {
    color: #eaf8ff;
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.65;
}
strong {
    color: #ffffff;
}

/* Container & Layouts */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.text-section {
    background: rgba(22,60,83,0.2);
    border-radius: 16px;
    padding: 32px 20px;
    box-shadow: 0 4px 36px #01263f3d;
    margin-bottom: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #162C47;
    border-radius: 18px;
    box-shadow: 0 6px 24px #1B867F44;
    margin-bottom: 20px;
    position: relative;
    padding: 24px 20px;
    color: #FBFBFA;
    transition: box-shadow 0.24s, transform 0.24s;
}
.card:hover, .card:focus {
    box-shadow: 0 10px 40px #00e7f777, 0 3px 10px #13375788;
    transform: translateY(-4px) scale(1.01);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #163C53;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 18px #163C5340;
    min-width: 260px;
    max-width: 560px;
}
.testimonial-card strong {
    color: #1B867F;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Hero section styling */
.hero {
    background: #101a23 linear-gradient(105deg, #184660 30%, #1B867F 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 40px #00e7f733;
    padding: 60px 0 56px;
    margin-bottom: 48px;
}
.hero .container {
    flex-direction: column;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 18px;
}

/* Newsletter / CTA */
.newsletter-cta {
    background: #143044;
    border-radius: 22px;
    margin-bottom: 56px;
    box-shadow: 0 2px 24px #1B867F99;
    padding-top: 36px;
    padding-bottom: 36px;
}
.newsletter-cta .btn-primary {
    margin-top: 16px;
    margin-bottom: 14px;
}
.newsletter-cta div a img {
    filter: drop-shadow(0 0 4px #12ffa7) brightness(1.2);
    margin-right: 10px;
    width: 28px;
    height: 28px;
    transition: filter 0.18s;
}
.newsletter-cta div a:hover img {
    filter: drop-shadow(0 0 8px #00e7f7) brightness(2.2);
}

/* Service order/cta */
.service-order {
    background: #122535;
    border-radius: 20px;
    margin-bottom: 56px;
    box-shadow: 0 2px 20px #1B867F88;
    padding: 36px 20px;
}
.service-order table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
    background: #101a23;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px #1B867F44;
}
.service-order th, .service-order td {
    padding: 10px 14px;
    border-bottom: 1px solid #183a54;
    color: #F3FFD7;
    text-align: left;
}
.service-order th {
    background-color: #1B867F;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.service-order tr:last-child td {
    border-bottom: none;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,#0ee9e0 0%,#1B867F 100%);
    color: #101a23;
    border: none;
    border-radius: 44px;
    padding: 14px 38px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.13rem;
    margin-top: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 16px #04ffd7ab;
    text-shadow: 0 1px 3px #fff,0 1px 30px #0ee9e0b2;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s,transform 0.18s,box-shadow 0.2s,color 0.2s;
    position: relative;
    z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
    background: #1B867F;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px #16e3a8cc, 0 2px 12px #092633;
}

/* Main Navigation (Desktop) */
header {
    background: rgba(16,26,35,0.96);
    border-bottom: 2px solid #12ffa7;
    box-shadow: 0 4px 20px #12ffa733;
    position: sticky;
    top: 0;
    z-index: 50;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}
header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}
header nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    padding: 8px 10px;
    border-radius: 9px;
    transition: color 0.2s, background 0.18s;
    position: relative;
}
header nav a:hover, header nav a:focus {
    background: #00e7f7;
    color: #101a23;
    text-shadow: 0 1px 3px #fff;
}
header img {
    height: 48px;
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0 0 12px #1B867F77);
}

/* Mobile menu (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    font-size: 2.1rem;
    line-height: 1;
    background: none;
    border: none;
    color: #13ffe0;
    cursor: pointer;
    z-index: 101;
    transition: color 0.18s, transform 0.2s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid #1B867F;
    color: #ff35b5;
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(21,36,42,0.96);
    box-shadow: 0 0 80px #00e7f799;
    backdrop-filter: blur(18px);
    transform: translateX(-100vw);
    transition: transform 0.36s cubic-bezier(0.7,0,0.2,1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
}
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: #48fff6;
    cursor: pointer;
    z-index: 200;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 80px 38px 30px 38px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    color: #fbfbfa;
    font-weight: 600;
    padding: 14px 0;
    border-radius: 8px;
    width: 100%;
    transition: color 0.18s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #163C53;
    color: #12ffa7;
}

/* Footer */
footer {
    background: #0c1c29;
    padding-top: 34px;
    margin-top: 70px;
    box-shadow: 0 -2px 28px #1B867F22;
}
footer .container {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
}
footer nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
footer nav a {
    color: #12ffa7;
    font-weight: 600;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    padding: 4px 2px;
    transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
    color: #ff35b5;
}
.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.98rem;
    color: #f4f7fa;
}
.contact-footer img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px #1B867F99);
}
.copyright {
    text-align: center;
    padding: 16px 0 8px;
    font-size: 0.92rem;
    color: #7beee8;
    letter-spacing: 0.01em;
}

/* Testimonial section */
.testimonials {
    margin-bottom: 80px;
}
.testimonials .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.testimonials h2 {
    color: #12ffa7;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px #163C53;
}

/* Specific content elements */
.summary-highlights, .comparison-boxes, .expert-insight-boxes, .statistical-graphs {
    background: #163C53;
    border-radius: 13px;
    padding: 18px 18px 9px 18px;
    margin-top: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 12px #09fffa38;
}
.summary-highlights h3, .comparison-boxes h3, .expert-insight-boxes h3, .statistical-graphs h3 {
    color: #1B867F;
    margin-bottom: 10px;
}
.security-evaluations {
    background: #122535;
    border-radius: 10px;
    padding: 13px 13px 6px 13px;
    margin-top: 14px;
    box-shadow: 0 1px 9px #1B867F44;
}
.address-section, .business-hours, .map, .quick-links {
    background: #143044;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 1px 7px #0ee9e033;
}
.quick-links a {
    color: #12ffa7;
    font-weight: 600;
}
.quick-links a:hover,
.quick-links a:focus {
    color: #ff35b5;
    text-decoration: underline;
}

.cta {
    background: #1B867F12;
    border-radius: 13px;
    margin-bottom: 42px;
    box-shadow: 0 1px 12px #1B867F28;
    padding: 24px 14px;
}
.confirmation-success {
    padding: 80px 24px;
    text-align: center;
}
.confirmation-success .btn-primary {
    margin-top: 24px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: rgba(16,26,35,0.97);
    border-top: 3px solid #0ee9e0;
    color: #eaf8ff;
    z-index: 4000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    box-shadow: 0 -2px 30px #1B867F44;
    font-size: 1rem;
    animation: slideUpIn 0.5s cubic-bezier(0.6,0,0.3,1);
    gap: 18px;
}
@keyframes slideUpIn {
  0% { transform: translateY(60px); opacity:0; }
  100% { transform: none; opacity:1; }
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
}
.cookie-banner .btn-cookie {
    background: #0ee9e0;
    color: #101a23;
    border: none;
    border-radius: 7px;
    padding: 7px 19px;
    font-weight: 600;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin-right: 3px;
    box-shadow: 0 2px 9px #04ffd752;
    cursor: pointer;
    transition: background 0.17s, color 0.15s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
    background: #1B867F;
    color: #fff;
}
.cookie-banner .btn-cookie-settings {
    background: none;
    color: #48fff6;
    border: 1.6px solid #0ee9e0;
    padding: 7px 11px;
    border-radius: 7px;
    transition: border-color 0.15s, color 0.15s,background 0.13s;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
    background: #121b29ee;
    color: #fff;
    border-color: #ff35b5;
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(11,22,22,0.93);
    z-index: 4100;
    display: flex; align-items: center; justify-content: center;
    pointer-events: auto;
    opacity: 1;
    animation: fadeIn 0.32s cubic-bezier(0.5,0,0.5,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
    background: #143044;
    border-radius: 19px;
    max-width: 490px;
    width: 92vw;
    color: #eaf8ff;
    box-shadow: 0 12px 48px #1B867F66;
    padding: 32px 22px 26px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: slideInY 0.35s cubic-bezier(0.6,0,0.3,1);
}
@keyframes slideInY {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #0ee9e0;
    cursor: pointer;
    z-index: 10;
}
.cookie-modal h2 {
    color: #12ffa7;
    margin-bottom: 10px;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid #1B867F;
}
.cookie-category:last-child {
    border-bottom: none;
}
.cookie-category label {
    font-weight: 600;
    color: #ffffff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
    margin-left: 10px;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 18px;
}
.cookie-modal-actions button {
    background: #0ee9e0;
    color: #101a23;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 600;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.14s, color 0.13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
    background: #1B867F;
    color: #fff;
}


/* --- Responsive Design --- */
@media (max-width: 990px) {
    .container {
        max-width: 960px;
        padding: 0 10px;
    }
    footer .container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .container {
        padding-left: 9px;
        padding-right: 9px;
    }
    .hero {
        padding: 40px 0 30px;
        min-height: 210px;
        margin-bottom: 26px;
    }
    .newsletter-cta,
    .service-order,
    .cta,
    .confirmation-success {
        padding: 22px 8px;
    }
    .card-container,
    .content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .section {
        margin-bottom: 32px;
        padding: 24px 5px;
    }
    .testimonial-card {
        min-width: unset;
        max-width: 100%;
        margin-right: 0;
    }
    .text-section,
    .summary-highlights,
    .comparison-boxes,
    .expert-insight-boxes,
    .statistical-graphs,
    .security-evaluations {
        padding: 14px 8px;
    }
    .content-wrapper {
        gap: 11px;
    }
    .contact-footer {
        font-size: 0.93rem;
    }
    .mobile-menu-toggle {
        display: block;
        margin-left: 10px;
    }
    header nav {
        display: none;
    }
    footer .container {
        flex-direction: column;
        gap: 10px;
    }
    .card {
        padding: 14px 10px;
    }
    .testimonial-card {
        padding: 14px 12px;
    }
    .quick-links {
        font-size: 1rem;
        gap: 6px;
    }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 1.52rem; }
    .hero .subheadline { font-size: 0.98rem; }
    h2, .testimonials h2 { font-size: 1.11rem; }
}
@media (max-width: 482px) {
    html { font-size: 13.2px; }
    .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 8px; }
    .cookie-modal {
        padding: 16px 5px 16px 12px;
    }
    .cookie-modal-close {
        top: 8px; right: 10px; font-size: 1.5rem;
    }
}

/* --- Utilities & Misc --- */
::-webkit-scrollbar {
    width: 10px;
    background: #0e1d25;
}
::-webkit-scrollbar-thumb {
    background: #1B867F;
    border-radius: 7px;
}
/* Micro-interactions: links, cards, nav */
a, .btn-primary, .btn-cookie, .btn-cookie-settings, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
    transition: background 0.18s, color 0.18s, box-shadow 0.26s, transform 0.18s;
}
input, button, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* Hide mobile menu by default, show with .open class */
.mobile-menu {
    display: flex;
}
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
    header nav {
        display: flex !important;
    }
}

/* Icon styles */
img[alt^="IncrAAustr Recenzje"], img[alt^="icon-"], img[alt="Adres"], img[alt="Telefon"], img[alt="Email"] {
    user-select: none;
    pointer-events: none;
}

/******** END OF style.css ********/
