body, html {
    font-size: 17px;
    line-height: 29px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    padding-top: 130px;
    --txt-color: #000;
    --color-main: #eaeaea;
    --font-main: 'Poppins', sans-serif;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-big {
    padding-left: 12vw;
    padding-right: 12vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.bottom-links a {
    margin: 10px;
    min-width: 160px;
}

.slick-dots {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slick-dots li {
    margin: 3px;
}
.slick-dots li button {
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--color-main);
    padding: 0;
    margin: 0;
    width: 12px;
    height: 12px;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: var(--txt-color);
}

.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    z-index: 4;
}
.slick-lightbox .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 20px;
}
.slick-lightbox .slick-next {
    right: 20px;
}
.slick-lightbox-slick-caption {
    margin-top: 10px;
    display: inline-block;
}

.searchside form {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.searchside form input {
    flex: 1;
    height: 50px;
    font-size: .9rem;
    padding: 20px;
    border: 1px solid #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--txt-color);
}
.searchside form input::placeholder {
    color: var(--txt-color);
}
.searchside form button {
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    border: none;
    background-color: var(--txt-color);
    cursor: pointer;
    transition: .3s;
}
.searchside form button:hover {
    background-color: #707070;
}
.searchside form button svg {
    filter: brightness(0) invert(1);
    width: 17px;
    height: auto;
}

.play-cbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    font-size: 0;
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    z-index: 9;
    width: 100px;
    height: 100px;
    padding: 0;
    box-shadow: 0px 3px 10px -6px rgba(66, 68, 90, 1);
    transition: .3s;
}
.play-cbtn.loaded {
    transform: translate(-50%, -50%) scale(1);
}
.play-cbtn span {
    background-color: rgba(143, 176, 176, .6);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    transition: .3s;
}
.play-cbtn:hover span {
    background-color: #363636;
}
.play-cbtn svg {
    width: 55%;
    height: auto;
}
.play-btn:not(.paused) {
    opacity: 0;
}
.play-btn.paused {
    opacity: 1;
}

.video-embed video {
    padding: 60px;
    max-height: 100%;
    max-width: 90%;
}
.video-embed {
    z-index: 99999;
    background-color:rgba(143, 176, 176, .53);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-spinner,
.video-spinner:after {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.video-spinner {
  display: block;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(59, 49, 39, 0.5);
  border-right: 1.1em solid rgba(59, 49, 39, 0.5);
  border-bottom: 1.1em solid rgba(59, 49, 39, 0.5);
  border-left: 1.1em solid rgba(37, 30, 24, .5);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.video-embed.open {
    display: flex;
}
.video-embed__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.video-embed iframe {
    max-width: 100%;
    width: 1100px;
    height: 500px;
}
.video-close {
    position: absolute;
    top: 100px;
    right: 60px;
    border: none;
    background-color: transparent;
    font-size: 42px;
    font-weight: 600;
    z-index: 9;
    color: var(--color-main);
    cursor: pointer;
}

.posrel {
    position: relative;
    z-index: 4;
}
.section-heading {
    font-size: 29px;
    line-height: 140%;
    font-weight: 400;
    color: var(--txt-color);
    margin-bottom: 30px;
}
.page-heading {
    font-size: 42px;
    line-height: 140%;
    font-weight: 500;
    color: var(--txt-color);
    margin-bottom: 30px;
}

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

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cbtn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #000;
    transition: .3s;
    cursor: pointer;
    border-radius: 0;
}
.cbtn:hover {
    color: #fff;
    background-color: var(--txt-color);
}

/* @ @ SEARCH POP START @ @ */
.pop-search {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    display: none;
    background-color: rgba(255,255,255, .95);
    padding: 20px;
}
.pop-search>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pop-search form {
    display: flex;
    align-items: center;
}
.pop-search form input {
    width: 400px;
    background-color: transparent;
    font-size: 1.4rem;
    padding: 20px 15px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-bottom: 1px solid var(--txt-color);
    color: var(--txt-color);
    max-width: calc(100% - 45px);
}
.pop-search form input::placeholder {
    color: var(--txt-color);
    font-weight: 300;
}
.pop-search button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 15px;
    width: 30px;
    height: 30px;
}
.pop-search__close {
    position: absolute;
    top: 120px;
    right: 120px;
    font-weight: 300;
    font-size: 42px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.search-results__item {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 125%;
}
.search-results__title {
    font-weight: 500;
}
.search-results__link {
    font-size: .8rem;
}
/* @ @ SEARCH POP END @ @ */
/* @ @ BANER START @ @ */

/* @ @ BANER END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */


/* @ @ MEDIA START @ @  */
@media(min-width: 2400px) {
    .wrap {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
 
}
@media(max-width: 992px) {
    body, html {
        font-size: 16px;
        line-height: 27px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-embed iframe {
        height: 400px;
    }

}
@media(max-width: 767px) {
    body, html {
        font-size: 15px;
        line-height: 24px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }

    .video-close {
        right: 0;
    }
    .video-embed__item {
        padding: 20px 40px;
    }
    .video-embed iframe {
        height: 300px;
    }


  }

/* ==============================================
   MARU — Design tokens (fancy dark-tech theme)
   ============================================== */
:root {
    --bg-base:        #131f38;
    --bg-surface:     #1a2744;
    --bg-elevated:    #223258;
    --border-subtle:  #2a3a60;
    --border-strong:  #3b4e7a;
    --text-primary:   #eaf0fb;
    --text-secondary: #b4c0d9;
    --text-muted:     #8b98b6;
    --accent-1:       #00d9a6;
    --accent-2:       #00a8ff;
    --accent-gradient: linear-gradient(135deg, #00d9a6 0%, #00a8ff 100%);
    --accent-glow:    0 0 40px rgba(0, 217, 166, 0.28);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --header-h: 130px;
    --header-h-mobile: 80px;
    --topbar-h: 40px;
    --topbar-h-mobile: 0px;
}

/* Body override — dark base + jasny tekst */
body {
    background: var(--bg-base);
    color: var(--text-primary);
    padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(0, 168, 255, 0.12), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(0, 217, 166, 0.10), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
main {
    position: relative;
    z-index: 1;
}

a { color: inherit; }

/* === Globalne — nadpisania cbtn i section-heading pod dark theme === */
.cbtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    overflow: hidden;
}
.cbtn::after {
    content: "→";
    font-size: 15px;
    line-height: 1;
    transition: transform .25s ease;
}
.cbtn:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
    border-color: transparent;
    background: linear-gradient(135deg, rgba(0,217,166,0.15), rgba(0,168,255,0.15));
    box-shadow: var(--accent-glow);
}
.cbtn:hover::after { transform: translateX(4px); }

.cbtn--accent {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #06121f;
    font-weight: 600;
}
.cbtn--accent:hover {
    color: #06121f;
    background: var(--accent-gradient);
    filter: brightness(1.08);
    box-shadow: 0 12px 40px rgba(0, 217, 166, 0.45);
}
.cbtn--ghost {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text-primary);
}
.cbtn--ghost:hover {
    border-color: var(--accent-1);
    background: rgba(0, 217, 166, 0.06);
    box-shadow: none;
}

.section-heading {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-heading .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-heading {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}

/* ==============================================
   Header
   ============================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(19, 31, 56, 0.75);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border-subtle);
}

/* Top bar */
.site-header__topbar {
    height: var(--topbar-h);
    background: linear-gradient(90deg, rgba(0,217,166,0.06), rgba(0,168,255,0.06));
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 13px;
}
.site-header__topbar-inner {
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.topbar-contact li { position: relative; }
.topbar-contact li + li::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: var(--border-strong);
    transform: translateY(-50%);
}
.topbar-contact a {
    color: var(--text-secondary);
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar-contact a:hover { color: var(--accent-1); }
.topbar-contact li:first-child a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.15);
    animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.15); }
    50%      { box-shadow: 0 0 0 7px rgba(0, 217, 166, 0.05); }
}
.topbar-hours {
    margin: 0;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Main header */
.site-header__main {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(var(--header-h) - var(--topbar-h));
}
.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}
.site-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: #06121f;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 217, 166, 0.35);
    letter-spacing: -0.02em;
}
.site-logo__wrap {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
}
.site-logo__text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}
.site-logo__sub {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.site-logo:hover .site-logo__sub {
    color: var(--accent-1);
    transition: color .3s;
}

/* Nav */
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav__link {
    position: relative;
    display: inline-block;
    padding: 10px 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color .2s;
}
.site-nav__link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
}
.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text-primary);
}
.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.site-header__cta { flex-shrink: 0; }

/* Hamburger (.nav-icon toggluje body.menuopened w scripts.js) */
.nav-icon {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    transition: border-color .2s, background .2s;
}
.nav-icon:hover { border-color: var(--accent-1); background: rgba(0, 217, 166, 0.06); }
.nav-icon span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-icon span:nth-child(1) { top: 15px; }
.nav-icon span:nth-child(2) { top: 21px; }
.nav-icon span:nth-child(3) { top: 27px; }
.nav-icon.open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav-icon.open span:nth-child(2) { opacity: 0; }
.nav-icon.open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* Overlay przyciemnienie tła gdy menu otwarte */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 24, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 90;
}
body.menuopened .mobile-menu-overlay { opacity: 1; visibility: visible; }
body.menuopened { overflow: hidden; }

/* ==============================================
   Footer
   ============================================== */
.site-footer {
    position: relative;
    margin-top: 120px;
    background: linear-gradient(180deg, var(--bg-base) 0%, #060a15 100%);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.6;
}
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180, 192, 217, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 192, 217, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: -1px -1px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
    pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

.site-footer__top {
    padding: 80px 0 40px;
}
.site-footer__col { margin-bottom: 30px; }
.site-logo--footer { margin-bottom: 20px; }
.site-footer__desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 380px;
}
.site-footer__heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}
.site-footer__heading::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-gradient);
}
.site-footer__menu,
.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__menu a,
.site-footer__contact a {
    color: var(--text-secondary);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, transform .2s;
}
.site-footer__menu a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--accent-1);
    transition: width .25s ease;
}
.site-footer__menu a:hover {
    color: var(--accent-1);
}
.site-footer__menu a:hover::before {
    width: 12px;
}
.site-footer__contact li { font-size: 15px; }
.site-footer__contact a:hover { color: var(--accent-1); }
.site-footer__area {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}
.site-footer__copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
}

/* ==============================================
   Responsive — tablet / mobile
   ============================================== */

/* Tablet / mniejszy desktop — chowamy nav i CTA, pokazujemy hamburger */
@media (max-width: 1199px) {
    :root {
        --header-h: var(--header-h-mobile);
        --topbar-h: var(--topbar-h-mobile);
    }
    body { padding-top: var(--header-h-mobile); }

    .site-header__topbar { display: none; }
    .site-header__main { height: var(--header-h-mobile); }

    .site-header__cta { display: none; }
    .nav-icon { display: inline-block; }

    /* Nav → panel wysuwany z prawej */
    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 88vw);
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-subtle);
        padding: calc(var(--header-h-mobile) + 20px) 24px 40px;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        z-index: 100;
        overflow-y: auto;
        box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    }
    body.menuopened .site-nav { transform: translateX(0); }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .site-nav__link {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 17px;
        color: var(--text-primary);
        border: 1px solid transparent;
        transition: background .2s, border-color .2s, transform .2s;
    }
    .site-nav__link::after { display: none; }
    .site-nav__link:hover,
    .site-nav__link.is-active {
        background: rgba(0, 217, 166, 0.06);
        border-color: var(--border-subtle);
    }
    .site-nav__link.is-active {
        background: linear-gradient(135deg, rgba(0,217,166,0.12), rgba(0,168,255,0.12));
        border-color: transparent;
    }

    /* Dopisz CTA na dole panelu mobilnego (dubluje ukryty site-header__cta) */
    .site-nav::after {
        content: "Umów konsultację";
        display: block;
        margin: 24px 4px 0;
        padding: 14px 24px;
        background: var(--accent-gradient);
        color: #06121f;
        font-weight: 600;
        text-align: center;
        border-radius: 999px;
        letter-spacing: 0.02em;
    }
}

/* Mobile — footer stackowany */
@media (max-width: 767px) {
    .page-heading { font-size: 34px; }
    .section-heading { font-size: 26px; }

    .site-header__inner { gap: 12px; }
    .site-logo__text { font-size: 18px; }
    .site-logo__mark { width: 38px; height: 38px; font-size: 18px; }

    .site-footer__top { padding: 60px 0 20px; }
    .site-footer__col { margin-bottom: 32px; }
    .site-footer__desc { max-width: 100%; }
}

/* ==============================================
   FRONT PAGE — sekcje
   ============================================== */

/* --- Sections general --- */
.section {
    position: relative;
    padding: 110px 0;
}
.section--alt {
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 50%, var(--bg-base) 100%);
}
.section__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}
.section__head .section-heading { margin-bottom: 16px; }

.section-lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
}

/* --- Eyebrow (mała etykieta nad nagłówkiem) --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 12px;
    background: rgba(0, 217, 166, 0.08);
    border: 1px solid rgba(0, 217, 166, 0.25);
    border-radius: 999px;
    color: var(--accent-1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.15);
    animation: pulse-dot 2.2s ease-in-out infinite;
}
.eyebrow--dark {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}

.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    isolation: isolate;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180, 192, 217, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 192, 217, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}
.hero__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}
.hero__bg-glow--1 {
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, #00d9a6 0%, transparent 70%);
}
.hero__bg-glow--2 {
    top: 100px;
    right: -200px;
    background: radial-gradient(circle, #00a8ff 0%, transparent 70%);
}

.hero__row { align-items: center; }
.hero__title {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--text-primary);
}
.hero__lead {
    font-size: 16px;
    color: var(--accent-1);
    font-weight: 500;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}
.hero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 28px;
    max-width: 620px;
}
.hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 24px;
    max-width: 620px;
}
.hero__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}
.hero__bullets .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 217, 166, 0.15);
    border: 1px solid rgba(0, 217, 166, 0.4);
    border-radius: 6px;
    color: var(--accent-1);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.hero__area-note {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0,168,255,0.06);
    border: 1px solid rgba(0,168,255,0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0 0 32px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__col--visual { position: relative; }

/* Status card (dekoracja hero) */
.status-card {
    position: relative;
    background: linear-gradient(180deg, rgba(23, 33, 60, 0.9), rgba(17, 26, 46, 0.9));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 460px;
    margin-left: auto;
}
.status-card::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.status-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 13px;
}
.status-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.18);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
.status-card__label { color: var(--text-primary); font-weight: 600; }
.status-card__meta { margin-left: auto; color: var(--text-muted); font-size: 12px; }

.status-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.status-card__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(11, 18, 32, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: transform .25s, border-color .25s, background .25s;
}
.status-card__list li:hover {
    transform: translateX(4px);
    border-color: var(--accent-1);
    background: rgba(0, 217, 166, 0.05);
}
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 166, 0.1);
    border: 1px solid rgba(0, 217, 166, 0.25);
    border-radius: 10px;
    color: var(--accent-1);
    flex-shrink: 0;
}
.status-icon svg { width: 20px; height: 20px; }
.status-name { color: var(--text-primary); font-weight: 500; font-size: 14px; flex: 1; }
.status-tag {
    padding: 3px 10px;
    background: rgba(0,168,255,0.1);
    border: 1px solid rgba(0,168,255,0.25);
    border-radius: 999px;
    color: #7bdcff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.status-card__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 12px;
}
.signal-bars { display: inline-flex; align-items: flex-end; gap: 3px; }
.signal-bars i {
    display: inline-block;
    width: 3px;
    background: var(--accent-1);
    border-radius: 2px;
    animation: bars 1.4s ease-in-out infinite;
}
.signal-bars i:nth-child(1) { height: 6px; animation-delay: 0s; }
.signal-bars i:nth-child(2) { height: 10px; animation-delay: 0.15s; }
.signal-bars i:nth-child(3) { height: 14px; animation-delay: 0.3s; }
.signal-bars i:nth-child(4) { height: 18px; animation-delay: 0.45s; }
@keyframes bars {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}

/* ============================================
   O NAS W SKRÓCIE
   ============================================ */
.about-mini__row { align-items: center; gap: 40px 0; }
.about-mini p { color: var(--text-secondary); line-height: 1.75; margin: 0 0 16px; }
.about-mini .cbtn { margin-top: 16px; }

.about-mini__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.principle-card {
    padding: 24px 26px;
    background: linear-gradient(180deg, rgba(23,33,60,0.7), rgba(17,26,46,0.7));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform .3s, border-color .3s;
}
.principle-card:hover { transform: translateY(-3px); border-color: var(--accent-1); }
.principle-card--offset { margin-left: 40px; }
.principle-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,217,166,0.1);
    border: 1px solid rgba(0,217,166,0.25);
    border-radius: 10px;
    color: var(--accent-1);
}
.principle-card__icon svg { width: 22px; height: 22px; }
.principle-card h3 { font-size: 17px; margin: 0 0 6px; color: var(--text-primary); font-weight: 600; }
.principle-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ============================================
   USŁUGI
   ============================================ */
.services__grid { margin-top: 0; }
.services__grid > [class^="c-"] { margin-bottom: 30px; display: flex; }

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(23,33,60,0.6), rgba(17,26,46,0.6));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    overflow: hidden;
    width: 100%;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity .35s;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,217,166,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    background: var(--accent-gradient);
    color: #06121f;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 217, 166, 0.3);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary);
}
.service-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 20px;
}
.service-card__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.service-card__bullets li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}
.service-card__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 2px;
    background: var(--accent-1);
    border-radius: 2px;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-1);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    transition: gap .25s;
}
.service-card:hover .service-card__link { gap: 10px; }
.service-card__link .arrow { transition: transform .25s; }
.service-card:hover .service-card__link .arrow { transform: translateX(2px); }

/* Karta stonowana — Strony internetowe */
.service-card--muted { opacity: 0.85; }
.service-card--muted .service-card__icon {
    background: rgba(180, 192, 217, 0.08);
    color: var(--text-secondary);
    box-shadow: none;
    border: 1px solid var(--border-subtle);
}
.service-card--muted .service-card__link { color: var(--text-secondary); }
.service-card--muted:hover { opacity: 1; }
.service-card--muted:hover .service-card__link { color: var(--accent-1); }

/* ============================================
   TRUST — filary
   ============================================ */
.trust__grid > [class^="c-"] { margin-bottom: 30px; display: flex; }
.trust-card {
    position: relative;
    width: 100%;
    padding: 34px 28px 28px;
    background: rgba(17, 26, 46, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: transform .3s, border-color .3s, background .3s;
}
.trust-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-1);
    background: rgba(17, 26, 46, 0.85);
}
.trust-card__num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
}
.trust-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0,217,166,0.08);
    border: 1px solid rgba(0,217,166,0.25);
    border-radius: 12px;
    color: var(--accent-1);
    margin-bottom: 20px;
}
.trust-card__icon svg { width: 24px; height: 24px; }
.trust-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary);
}
.trust-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   PROCESS — 5 kroków
   ============================================ */
.process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}
.process__steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.process-step__num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: var(--bg-surface);
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-1);
    letter-spacing: -0.02em;
    transition: border-color .3s, background .3s, transform .3s;
}
.process-step:hover .process-step__num {
    transform: scale(1.05);
    border-color: var(--accent-1);
    background: linear-gradient(135deg, rgba(0,217,166,0.15), rgba(0,168,255,0.15));
    box-shadow: var(--accent-glow);
}
.process-step__title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary);
}
.process-step__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    padding: 0 8px;
}

/* ============================================
   AREA — obszar działania
   ============================================ */
.area__row { align-items: center; gap: 30px 0; }
.area__cities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.area__cities li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(17, 26, 46, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: transform .25s, border-color .25s, background .25s;
}
.area__cities li:hover {
    transform: translateY(-2px);
    border-color: var(--accent-1);
    background: rgba(0, 217, 166, 0.05);
}
.area-city__pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0,217,166,0.1);
    border: 1px solid rgba(0,217,166,0.25);
    border-radius: 10px;
    color: var(--accent-1);
    flex-shrink: 0;
}
.area-city__pin svg { width: 18px; height: 18px; }

/* ============================================
   FAQ
   ============================================ */
.faq__wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    background: rgba(17, 26, 46, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s, background .3s;
}
.faq-item[open] {
    border-color: var(--accent-1);
    background: rgba(17, 26, 46, 0.9);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-1); }
.faq-item__ico {
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 217, 166, 0.1);
    border: 1px solid rgba(0, 217, 166, 0.3);
    transition: transform .35s, background .3s;
}
.faq-item__ico::before,
.faq-item__ico::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--accent-1);
    border-radius: 2px;
    transition: transform .3s;
}
.faq-item__ico::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-item__ico::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-item__ico { transform: rotate(90deg); }
.faq-item[open] .faq-item__ico::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-item__body {
    padding: 0 26px 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}
.faq-item__body p { margin: 0; }

.faq__more {
    text-align: center;
    margin: 30px 0 0;
}

/* ============================================
   CTA końcowe
   ============================================ */
.cta-section { padding: 60px 0 120px; }
.cta-banner {
    position: relative;
    padding: 70px 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #071528 0%, #0d2140 50%, #0a1830 100%);
    z-index: -2;
}
.cta-banner__bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 166, 0.4) 0%, transparent 60%);
    filter: blur(60px);
}
.cta-banner__bg::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.35) 0%, transparent 60%);
    filter: blur(60px);
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}
.cta-banner__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner__title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 0 20px;
}
.cta-banner__text {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    margin: 0 0 32px;
}
.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.cbtn--ghost-light {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}
.cbtn--ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    box-shadow: none;
    color: #fff;
}

/* ============================================
   Responsive — front page
   ============================================ */
@media (max-width: 1199px) {
    .principle-card--offset { margin-left: 20px; }
}

@media (max-width: 991px) {
    .section { padding: 80px 0; }
    .section__head { margin-bottom: 40px; }
    .hero { padding: 60px 0 80px; }
    .hero__col--visual { margin-top: 50px; }
    .status-card { margin: 0 auto; max-width: 500px; }
    .principle-card--offset { margin-left: 0; }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .process__steps::before { display: none; }
}

@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .cta-section { padding: 40px 0 70px; }
    .cta-banner { padding: 50px 26px; }
    .hero { padding: 40px 0 60px; }
    .hero__title { font-size: 36px; }
    .hero__lead { font-size: 14px; }
    .hero__bullets { grid-template-columns: 1fr; gap: 10px; }
    .hero__actions .cbtn { width: 100%; justify-content: center; }
    .cta-banner__actions .cbtn { width: 100%; justify-content: center; }
    .status-card { padding: 22px; }

    .process__steps { grid-template-columns: 1fr; gap: 30px; }
    .area__cities { grid-template-columns: 1fr; }

    .service-card { padding: 26px 22px; }
    .trust-card { padding: 28px 22px 22px; }
    .trust-card__num { font-size: 34px; top: 14px; right: 18px; }

    .faq-item summary { padding: 18px 20px; font-size: 15px; gap: 14px; }
    .faq-item__body { padding: 0 20px 18px; font-size: 14px; }
}

/* @ @ MEDIA END @ @  */

/* ==============================================
   PAGE HERO (subpage hero — wspólny)
   ============================================== */
.page-hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--border-subtle);
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.page-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180, 192, 217, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 192, 217, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 70% at 30% 50%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 50%, #000 30%, transparent 100%);
}
.page-hero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.3;
}
.page-hero__glow--1 {
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, #00d9a6 0%, transparent 70%);
}
.page-hero__glow--2 {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, #00a8ff 0%, transparent 70%);
}
.page-hero__inner .eyebrow { margin-top: 20px; }
.page-hero .page-heading { margin: 8px 0 22px; }
.page-hero__lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 32px;
    max-width: 720px;
}
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.breadcrumbs a {
    color: var(--text-muted);
    transition: color .2s;
}
.breadcrumbs a:hover { color: var(--accent-1); }
.breadcrumbs__sep { color: var(--border-strong); }

/* ==============================================
   ABOUT — sekcje podstrony O nas
   ============================================== */

/* --- Intro + stats --- */
.about-intro__row { align-items: center; gap: 40px 0; }
.about-intro p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 16px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.stat-card {
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(23,33,60,0.7), rgba(17,26,46,0.7));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gradient);
}
.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-1);
}
.stat-card__num {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.stat-card__unit {
    font-size: 22px;
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--accent-1);
    margin-left: 2px;
}
.stat-card__label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Approach cards (3 kolumny) --- */
.approach__grid > [class^="c-"] { margin-bottom: 24px; display: flex; }
.approach-card {
    width: 100%;
    padding: 32px 28px;
    background: rgba(17,26,46,0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: transform .3s, border-color .3s, background .3s;
}
.approach-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-1);
    background: rgba(17,26,46,0.85);
}
.approach-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0,217,166,0.1);
    border: 1px solid rgba(0,217,166,0.25);
    border-radius: 12px;
    color: var(--accent-1);
    margin-bottom: 20px;
}
.approach-card__icon svg { width: 24px; height: 24px; }
.approach-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px;
}
.approach-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Security section --- */
.security__row { align-items: center; gap: 40px 0; }
.security p { color: var(--text-secondary); line-height: 1.75; margin: 0 0 16px; }

.security-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 20px;
}
.security-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}
.security-list .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 217, 166, 0.15);
    border: 1px solid rgba(0, 217, 166, 0.4);
    border-radius: 6px;
    color: var(--accent-1);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.security__visual {
    display: flex;
    justify-content: center;
}
.security-badge {
    position: relative;
    width: 320px;
    height: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 166, 0.12), transparent 65%),
                linear-gradient(180deg, rgba(23,33,60,0.7), rgba(17,26,46,0.7));
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 0 40px rgba(0, 217, 166, 0.08);
}
.security-badge__ring {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 217, 166, 0.35);
    animation: rotate 40s linear infinite;
}
.security-badge__ring::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 12px var(--accent-1);
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.security-badge__icon {
    width: 96px;
    height: 96px;
    color: var(--accent-1);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 24px rgba(0, 217, 166, 0.4));
}
.security-badge__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.security-badge__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}
.security-badge__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Offer list (co możemy dla Ciebie zrobić) --- */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.offer-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(17,26,46,0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    transition: transform .25s, border-color .25s, background .25s;
}
.offer-list li:hover {
    transform: translateX(4px);
    border-color: var(--accent-1);
    background: rgba(0, 217, 166, 0.05);
}
.offer-list__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    color: #06121f;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,217,166,0.25);
}
.offer-list__ico svg { width: 18px; height: 18px; }
.offer-list__ico--soon {
    background: rgba(180,192,217,0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    box-shadow: none;
}
.offer-list em {
    color: var(--text-muted);
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-left: 4px;
}

/* --- Mission block --- */
.mission__wrap {
    margin-left: auto;
    margin-right: auto;
}
.mission-block {
    position: relative;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(0, 217, 166, 0.06) 0%, rgba(0, 168, 255, 0.06) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}
.mission-block::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
}
.mission-block__quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: #06121f;
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px rgba(0, 217, 166, 0.35);
}
.mission-block__quote svg { width: 30px; height: 30px; }
.mission-block__title {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
    margin: 12px 0 20px;
    letter-spacing: -0.01em;
}
.mission-block__text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================================
   Responsive — o-nas
   ============================================== */
@media (max-width: 991px) {
    .page-hero { padding: 60px 0 70px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .security-list { grid-template-columns: 1fr; }
    .security-badge { width: 260px; height: 260px; }
    .security-badge__icon { width: 76px; height: 76px; }
    .mission-block { padding: 50px 32px; }
}

@media (max-width: 767px) {
    .page-hero { padding: 40px 0 50px; }
    .page-hero__lead { font-size: 16px; }
    .page-hero__actions .cbtn { width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 22px 20px; }
    .stat-card__num { font-size: 28px; }

    .approach-card { padding: 26px 22px; }
    .security-badge { width: 220px; height: 220px; }
    .security-badge__icon { width: 60px; height: 60px; }
    .security-badge__ring { inset: 14px; }

    .offer-list li { padding: 14px 16px; font-size: 14px; gap: 12px; }
    .mission-block { padding: 40px 22px; }
    .mission-block__quote { width: 50px; height: 50px; margin-bottom: 18px; }
    .mission-block__text { font-size: 15px; }
}

/* ==============================================
   KONTAKT — podstrona
   ============================================== */
.contact-main__row { align-items: flex-start; gap: 40px 0; }

/* --- Karta z danymi kontaktowymi --- */
.contact-card {
    position: relative;
    padding: 32px 30px;
    background: linear-gradient(180deg, rgba(23,33,60,0.9), rgba(17,26,46,0.9));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}
.contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
}
.contact-card__head { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border-subtle); }
.contact-card__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 12px;
    background: rgba(0, 217, 166, 0.08);
    border: 1px solid rgba(0, 217, 166, 0.25);
    border-radius: 999px;
    color: var(--accent-1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}
.contact-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.15);
    animation: pulse-dot 2.2s ease-in-out infinite;
}
.contact-card__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.contact-card__lead {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}
.contact-card__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 13px;
}

.contact-methods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(11, 18, 32, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    transition: transform .25s, border-color .25s, background .25s;
}
a.contact-method:hover {
    transform: translateX(4px);
    border-color: var(--accent-1);
    background: rgba(0, 217, 166, 0.05);
}
.contact-method__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0,217,166,0.1);
    border: 1px solid rgba(0,217,166,0.25);
    border-radius: 10px;
    color: var(--accent-1);
    flex-shrink: 0;
    transition: background .25s;
}
.contact-method__ico svg { width: 20px; height: 20px; }
a.contact-method:hover .contact-method__ico { background: rgba(0, 217, 166, 0.18); }
.contact-method__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.contact-method__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-weight: 600;
}
.contact-method__value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contact-method__arrow {
    color: var(--text-muted);
    font-size: 18px;
    transition: transform .25s, color .25s;
    flex-shrink: 0;
}
a.contact-method:hover .contact-method__arrow {
    color: var(--accent-1);
    transform: translateX(4px);
}
.contact-method--static { cursor: default; }

/* --- Formularz --- */
.contact-form-wrap__head { margin-bottom: 32px; }
.contact-form-wrap__head .eyebrow { margin-bottom: 18px; }
.contact-form-wrap__head .section-heading { margin-bottom: 12px; font-size: 30px; }
.contact-form-wrap__head .section-lead { margin: 0; font-size: 16px; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.req { color: var(--accent-1); }

.form-field input,
.form-field textarea,
.form-select select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(11, 18, 32, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color .25s, background .25s, box-shadow .25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}
.form-field input:hover,
.form-field textarea:hover,
.form-select select:hover {
    border-color: var(--border-strong);
}
.form-field input:focus,
.form-field textarea:focus,
.form-select select:focus {
    border-color: var(--accent-1);
    background: rgba(11, 18, 32, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.12);
}
.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

/* Select z custom strzałką */
.form-select { position: relative; }
.form-select select {
    padding-right: 44px;
    cursor: pointer;
}
.form-select__arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-1);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s;
}
.form-select__arrow svg { width: 18px; height: 18px; }
.form-select select:focus + .form-select__arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Custom checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.form-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form-check__box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border-strong);
    background: rgba(11, 18, 32, 0.6);
    border-radius: 6px;
    position: relative;
    margin-top: 1px;
    transition: border-color .2s, background .2s;
}
.form-check__box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 11px;
    border: solid #06121f;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
    transition: transform .2s ease;
}
.form-check:hover .form-check__box { border-color: var(--accent-1); }
.form-check input:checked + .form-check__box {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 217, 166, 0.3);
}
.form-check input:checked + .form-check__box::after {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
}
.form-check input:focus-visible + .form-check__box {
    box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.15);
}
.form-check__text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Form actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.form-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Mapa --- */
.map-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: var(--bg-surface);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    aspect-ratio: 21 / 9;
}
.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.15) invert(0.85) hue-rotate(180deg) contrast(0.9) brightness(0.9);
    transition: filter .35s;
}
.map-frame:hover iframe {
    filter: grayscale(0) invert(0.85) hue-rotate(180deg) contrast(0.9) brightness(0.95);
}

/* ==============================================
   Responsive — kontakt
   ============================================== */
@media (max-width: 1199px) {
    .contact-main__info { margin-bottom: 30px; }
}
@media (max-width: 991px) {
    .contact-card { padding: 28px 24px; }
    .contact-form-wrap__head .section-heading { font-size: 26px; }
    .map-frame { aspect-ratio: 16 / 10; }
}
@media (max-width: 767px) {
    .contact-card { padding: 24px 20px; }
    .contact-method { padding: 14px 14px; gap: 12px; }
    .contact-method__ico { width: 40px; height: 40px; }
    .contact-method__value { font-size: 14px; }

    .form-row { grid-template-columns: 1fr; gap: 22px; }
    .form-field input, .form-field textarea, .form-select select { padding: 13px 14px; font-size: 14px; }
    .form-actions .cbtn { width: 100%; justify-content: center; }
    .form-note { text-align: center; width: 100%; }

    .map-frame { aspect-ratio: 4 / 3; }
}

/* ==============================================
   SECTION --light — jasny wariant sekcji (przełam ciemny motyw)
   ============================================== */
.section--light {
    background: linear-gradient(180deg, #f6fafd 0%, #eaf2fb 100%);
    color: #0d1a33;
    position: relative;
    overflow: hidden;
}
.section--light::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 26, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}
.section--light > .container { position: relative; z-index: 1; }

/* Nagłówki i tekst na jasnym tle */
.section--light .section-heading,
.section--light .contact-card__title,
.section--light .approach-card__title,
.section--light .trust-card__title,
.section--light .service-card__title,
.section--light .principle-card h3 {
    color: #0d1a33;
}
.section--light .section-lead,
.section--light p {
    color: #4a5878;
}
.section--light .approach-card__desc,
.section--light .trust-card__desc,
.section--light .service-card__desc,
.section--light .principle-card p {
    color: #4a5878;
}

/* Eyebrow — nadpisanie na jasnym tle */
.section--light .eyebrow {
    background: rgba(0, 217, 166, 0.12);
    border-color: rgba(0, 180, 135, 0.4);
    color: #008466;
}
.section--light .eyebrow__dot {
    background: #00b487;
    box-shadow: 0 0 0 4px rgba(0, 180, 135, 0.18);
}

/* Karty na jasnym tle — białe z subtelnym cieniem */
.section--light .approach-card,
.section--light .principle-card,
.section--light .stat-card,
.section--light .trust-card,
.section--light .service-card {
    background: #ffffff;
    border-color: #e0e7f2;
    box-shadow: 0 4px 20px rgba(13, 26, 51, 0.05);
}
.section--light .approach-card:hover,
.section--light .principle-card:hover,
.section--light .stat-card:hover,
.section--light .trust-card:hover {
    background: #ffffff;
    border-color: #00b487;
    box-shadow: 0 20px 40px rgba(0, 180, 135, 0.12);
}
.section--light .service-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(13, 26, 51, 0.1), 0 0 0 1px #00b487;
}

/* Karty numery / gradient — więcej kontrastu */
.section--light .trust-card__num,
.section--light .stat-card__num {
    background: linear-gradient(135deg, #00a781 0%, #0088d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 1;
}

/* Ikony w kartach — z jasnym akcentowym tłem */
.section--light .approach-card__icon,
.section--light .principle-card__icon,
.section--light .trust-card__icon {
    background: rgba(0, 217, 166, 0.12);
    border-color: rgba(0, 180, 135, 0.35);
    color: #008466;
}

/* Service card icon (gradient) i muted variant */
.section--light .service-card__icon {
    /* zostaje gradient — dobrze wygląda na białym */
}
.section--light .service-card--muted .service-card__icon {
    background: #eef2f8;
    border-color: #d5dde9;
    color: #7a86a4;
}
.section--light .service-card__link {
    color: #008466;
}
.section--light .service-card__bullets li {
    color: #4a5878;
}
.section--light .service-card__bullets li::before {
    background: #00b487;
}

/* Hero bullets check na jasnym tle */
.section--light .hero__bullets .check,
.section--light .security-list .check {
    background: rgba(0, 217, 166, 0.15);
    border-color: rgba(0, 180, 135, 0.45);
    color: #008466;
}

/* Cbtn ghost na jasnym tle */
.section--light .cbtn--ghost {
    background: #ffffff;
    border-color: #cfd7e6;
    color: #0d1a33;
}
.section--light .cbtn--ghost:hover {
    border-color: #00b487;
    background: #f2fbf7;
    color: #0d1a33;
}

/* Accent tekstowy — ciemniejsza wersja gradientu (lepszy kontrast na białym) */
.section--light .accent {
    background: linear-gradient(135deg, #00a781 0%, #0088d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Overrides dla konkretnych sekcji */

/* about-mini na jasnym tle */
.section--light.about-mini {
    /* akapity + section-lead już objęte wyżej */
}
.section--light .principle-card {
    background: #ffffff;
    border-color: #e0e7f2;
}

/* approach cards */
.section--light .approach-card {
    background: #ffffff;
}

/* Process steps na jasnym tle */
.section--light .process-step__num {
    background: #ffffff;
    border-color: #d5dee9;
    color: #008466;
    box-shadow: 0 4px 16px rgba(13, 26, 51, 0.06);
}
.section--light .process-step:hover .process-step__num {
    border-color: #00b487;
    background: linear-gradient(135deg, rgba(0, 217, 166, 0.15), rgba(0, 168, 255, 0.15));
    box-shadow: 0 10px 30px rgba(0, 180, 135, 0.25);
}
.section--light .process-step__title { color: #0d1a33; }
.section--light .process-step__desc { color: #4a5878; }
.section--light .process__steps::before {
    background: linear-gradient(90deg, transparent, #cfd7e6 15%, #cfd7e6 85%, transparent);
}

/* FAQ na jasnym tle */
.section--light .faq-item {
    background: #ffffff;
    border-color: #e0e7f2;
    box-shadow: 0 2px 12px rgba(13, 26, 51, 0.04);
}
.section--light .faq-item[open] {
    background: #ffffff;
    border-color: #00b487;
    box-shadow: 0 10px 30px rgba(0, 180, 135, 0.1);
}
.section--light .faq-item summary { color: #0d1a33; }
.section--light .faq-item summary:hover { color: #008466; }
.section--light .faq-item__ico {
    background: rgba(0, 217, 166, 0.12);
    border-color: rgba(0, 180, 135, 0.35);
}
.section--light .faq-item__ico::before,
.section--light .faq-item__ico::after {
    background: #008466;
}
.section--light .faq-item__body { color: #4a5878; }

/* Offer list na jasnym tle */
.section--light .offer-list li {
    background: #ffffff;
    border-color: #e0e7f2;
    color: #0d1a33;
    box-shadow: 0 2px 12px rgba(13, 26, 51, 0.04);
}
.section--light .offer-list li:hover {
    background: #f2fbf7;
    border-color: #00b487;
}
.section--light .offer-list em { color: #7a86a4; }
.section--light .offer-list__ico--soon {
    background: #eef2f8;
    border-color: #d5dee9;
    color: #7a86a4;
}

/* Area cities na jasnym tle */
.section--light .area__cities li {
    background: #ffffff;
    border-color: #e0e7f2;
    color: #0d1a33;
    box-shadow: 0 2px 12px rgba(13, 26, 51, 0.04);
}
.section--light .area__cities li:hover {
    background: #f2fbf7;
    border-color: #00b487;
}
.section--light .area-city__pin {
    background: rgba(0, 217, 166, 0.12);
    border-color: rgba(0, 180, 135, 0.35);
    color: #008466;
}

/* === Monitoring — usecase (dom / firma) === */
.usecase__row { align-items: stretch; gap: 30px 0; }
.usecase__row > [class^="c-"] { display: flex; }

.usecase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.usecase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: var(--accent-gradient);
    opacity: 0;
    z-index: 0;
    transition: opacity .25s ease;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.usecase-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 20px 40px -20px rgba(0, 217, 166, 0.28);
}
.usecase-card:hover::before { opacity: 1; }

.usecase-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.usecase-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 217, 166, 0.12);
    color: var(--accent-1);
    flex-shrink: 0;
}
.usecase-card__icon svg { width: 26px; height: 26px; }

.usecase-card__title {
    font-size: 20px;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}
.usecase-card__desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.usecase-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 16px;
    position: relative;
    z-index: 1;
}
.usecase-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}
.usecase-card__list .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(0, 217, 166, 0.15);
    border: 1px solid rgba(0, 217, 166, 0.4);
    border-radius: 6px;
    color: var(--accent-1);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .usecase-card { padding: 24px; }
    .usecase-card__list { grid-template-columns: 1fr; }
}

/* === Sieci — intro dwukolumnowy tekst === */
.intro-split__row { align-items: flex-start; gap: 30px 0; }
.intro-split__heading { font-size: 32px; line-height: 1.25; color: var(--text-primary); margin: 12px 0 0; font-weight: 500; }
.intro-split__heading .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.intro-split__body p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 18px;
}
.intro-split__body p:last-child { margin-bottom: 0; }

/* === Sieci — feature rows (alternujące) === */
.feature-rows { display: flex; flex-direction: column; gap: 40px; }
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: border-color .3s ease, transform .3s ease;
}
.feature-row:hover { border-color: var(--border-strong); }
.feature-row--flip .feature-row__visual { order: 2; }
.feature-row__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    background:
        radial-gradient(circle at 25% 30%, rgba(0,217,166,.18), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(0,168,255,.14), transparent 55%),
        linear-gradient(180deg, #16223c 0%, #101a30 100%);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.feature-row__mark {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 3px;
    font-weight: 600;
}
.feature-row__ico {
    width: 132px;
    height: 132px;
    color: var(--accent-1);
    filter: drop-shadow(0 8px 24px rgba(0,217,166,.35));
}
.feature-row__ico svg { width: 100%; height: 100%; }
.feature-row__text .eyebrow { margin-bottom: 12px; }
.feature-row__title {
    font-size: 24px;
    color: var(--text-primary);
    margin: 0 0 14px;
    font-weight: 600;
    line-height: 1.3;
}
.feature-row__lead {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 18px;
}
.feature-row__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px 20px;
}
.feature-row__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 14px;
}
.feature-row__list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gradient);
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .feature-row { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
    .feature-row--flip .feature-row__visual { order: 0; }
    .feature-row__ico { width: 96px; height: 96px; }
    .feature-row__list { grid-template-columns: 1fr; }
}

/* === Sieci — tabela porównawcza dom vs firma === */
.compare-wrap {
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-surface);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
}
.compare-table thead th {
    background: var(--bg-elevated);
    padding: 20px 24px;
    text-align: left;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--border-strong);
}
.compare-table thead th:first-child { color: var(--text-muted); }
.compare-table thead th.is-featured {
    color: var(--accent-1);
    background:
        linear-gradient(180deg, rgba(0,217,166,.08), transparent),
        var(--bg-elevated);
}
.compare-table tbody th {
    text-align: left;
    padding: 18px 24px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    background: rgba(255,255,255,.015);
    border-bottom: 1px solid var(--border-subtle);
    width: 30%;
    vertical-align: top;
}
.compare-table tbody td {
    padding: 18px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: top;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th { background: rgba(0,217,166,.03); }
@media (max-width: 767px) {
    .compare-table thead th,
    .compare-table tbody th,
    .compare-table tbody td { padding: 14px 16px; font-size: 14px; }
    .compare-table tbody th { width: 40%; }
}

/* === Sieci — benefit tiles (icon grid) === */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}
.benefit-tile {
    padding: 28px 22px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.benefit-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent-1);
    box-shadow: 0 18px 36px -22px rgba(0,217,166,.4);
}
.benefit-tile__ico {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--accent-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -10px rgba(0,168,255,.5);
}
.benefit-tile__ico svg { width: 28px; height: 28px; }
.benefit-tile__label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.45;
}
@media (max-width: 991px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .benefit-grid { grid-template-columns: 1fr; } }

/* === Sieci — pionowy timeline procesu === */
.timeline-v {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.timeline-v::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    opacity: .35;
}
.timeline-v__item {
    position: relative;
    padding: 4px 0 32px 76px;
}
.timeline-v__item:last-child { padding-bottom: 0; }
.timeline-v__num {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 0 0 6px var(--bg-base);
    z-index: 1;
}
.timeline-v__title {
    color: var(--text-primary);
    font-size: 18px;
    margin: 6px 0 6px;
    font-weight: 600;
}
.timeline-v__desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* === FAQ dwukolumnowe (wspólne dla podstron) === */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
@media (max-width: 767px) { .faq-grid { grid-template-columns: 1fr; } }

/* === Monitoring — horizontal stats strip === */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
}
.stats-strip__item {
    padding: 26px 22px;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    transition: background .25s ease;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__item:hover { background: rgba(0, 217, 166, .04); }
.stats-strip__num {
    display: block;
    font-size: 30px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    line-height: 1;
}
.stats-strip__label {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: .5px;
}
@media (max-width: 767px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stats-strip__item { border-right: none; border-bottom: 1px solid var(--border-subtle); }
    .stats-strip__item:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
    .stats-strip__item:nth-last-child(-n+2) { border-bottom: none; }
}

/* === Monitoring — numbered cards (huge bg number) === */
.numbered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.numbered-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}
.numbered-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-1);
}
.numbered-card__num {
    position: absolute;
    right: -10px;
    top: -30px;
    font-size: 140px;
    line-height: 1;
    font-weight: 800;
    color: rgba(255, 255, 255, .035);
    letter-spacing: -6px;
    pointer-events: none;
    z-index: 0;
}
.numbered-card__ico {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 217, 166, .12);
    color: var(--accent-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    z-index: 1;
}
.numbered-card__ico svg { width: 24px; height: 24px; }
.numbered-card__title {
    position: relative;
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 10px;
    font-weight: 600;
    z-index: 1;
}
.numbered-card__desc {
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    z-index: 1;
}
@media (max-width: 991px) { .numbered-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .numbered-grid { grid-template-columns: 1fr; } }

/* === Monitoring — split panels z cover-band === */
.split-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.split-panel {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.split-panel:hover {
    transform: translateY(-4px);
    border-color: var(--accent-1);
    box-shadow: 0 20px 40px -20px rgba(0, 217, 166, .3);
}
.split-panel__band {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: linear-gradient(90deg, rgba(0, 217, 166, .12), rgba(0, 168, 255, .06));
    border-bottom: 1px solid var(--border-subtle);
}
.split-panel__band-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.split-panel__band-ico svg { width: 22px; height: 22px; }
.split-panel__title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.split-panel__body { padding: 24px 28px; }
.split-panel__desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 18px;
}
.split-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.split-panel__chips li {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
}
@media (max-width: 767px) { .split-panels { grid-template-columns: 1fr; } }

/* === Monitoring — spec list (kompaktowa lista funkcji) === */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
}
.spec-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
}
.spec-list li:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
.spec-list li:nth-last-child(-n+2) { border-bottom: none; }
.spec-list__ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0, 217, 166, .15);
    color: var(--accent-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.spec-list__ico svg { width: 16px; height: 16px; }
@media (max-width: 575px) {
    .spec-list { grid-template-columns: 1fr; }
    .spec-list li { border-right: none; }
    .spec-list li:not(:last-child) { border-bottom: 1px solid var(--border-subtle); }
}

/* === Smart Home — Intro + Hub visual === */
.sh-intro__row { align-items: center; gap: 40px 0; }
.sh-intro__text .section-heading { margin-top: 12px; }
.sh-intro__note {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 20px 0 0;
    padding-left: 16px;
    border-left: 2px solid var(--accent-1);
}
.sh-intro__visual { display: flex; justify-content: center; align-items: center; }

.sh-hub {
    position: relative;
    max-width: 100%;
    width: 420px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sh-hub__ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px dashed var(--border-strong);
    transform: translate(-50%, -50%);
}
.sh-hub__ring--outer { width: 100%; height: 100%; }
.sh-hub__ring--inner { width: 62%; height: 62%; border-style: solid; border-color: rgba(0, 217, 166, .18); }
.sh-hub__core {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    box-shadow: var(--accent-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--accent-1);
}
.sh-hub__core svg { width: 34px; height: 34px; }
.sh-hub__core-label {
    color: var(--text-primary);
    font-size: 1.2rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}
.sh-hub__chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}
.sh-hub__chip svg { width: 16px; height: 16px; color: var(--accent-1); }
.sh-hub__chip--n  { top: 0;     left: 50%; transform: translate(-50%, -50%); }
.sh-hub__chip--e  { top: 50%;   right: 0;  transform: translate(50%, -50%); }
.sh-hub__chip--s  { bottom: 0;  left: 50%; transform: translate(-50%, 50%); }
.sh-hub__chip--w  { top: 50%;   left: 0;   transform: translate(-50%, -50%); }
.sh-hub__chip--ne { top: 12%;   right: 8%; transform: translate(30%, -30%); }
.sh-hub__chip--sw { bottom: 12%; left: 8%; transform: translate(-30%, 30%); }

@media (max-width: 991px) {
    .sh-intro__visual { margin-top: 30px; }
    .sh-hub { width: 360px; }
}
@media (max-width: 575px) {
    .sh-hub { width: 300px; }
    .sh-hub__core { width: 100px; height: 100px; }
    .sh-hub__core svg { width: 26px; height: 26px; }
    .sh-hub__core-label { font-size: 1.05rem; }
    .sh-hub__chip { font-size: 1.15rem; padding: 6px 10px; }
    .sh-hub__chip svg { width: 14px; height: 14px; }
}

/* === Smart Home — Bento grid (Co oferujemy) === */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.bento__tile {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease;
}
.bento__tile:hover { border-color: var(--accent-1); transform: translateY(-4px); }
.bento__tile--lg { grid-column: span 4; }
.bento__tile--md { grid-column: span 2; }
.bento__tile--dark {
    background: linear-gradient(135deg, #1a2744 0%, #0f1a33 100%);
    border-color: var(--border-strong);
}
.bento__mark {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-1);
    font-weight: 600;
}
.bento__mark--light { color: var(--accent-1); opacity: .9; }
.bento__ico {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    opacity: .55;
}
.bento__ico svg { width: 100%; height: 100%; }
.bento__title {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-primary);
    max-width: 80%;
}
.bento__desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
.bento__list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}
.bento__tile--md .bento__list { grid-template-columns: 1fr; }
.bento__list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 1.4rem;
    line-height: 1.6;
}
.bento__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--accent-gradient);
}
@media (max-width: 991px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento__tile--lg, .bento__tile--md { grid-column: span 2; }
    .bento__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .bento { grid-template-columns: 1fr; gap: 16px; }
    .bento__tile--lg, .bento__tile--md { grid-column: span 1; }
    .bento__tile { padding: 24px; }
    .bento__title { font-size: 1.7rem; max-width: 70%; }
    .bento__list { grid-template-columns: 1fr; }
    .bento__ico { width: 36px; height: 36px; top: 20px; right: 20px; }
}

/* === Smart Home — Scene grid (Scenariusze) === */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.scene-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .25s ease, transform .25s ease;
}
.scene-card:hover { border-color: var(--accent-1); transform: translateY(-4px); }
.scene-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}
.scene-card__ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 217, 166, .12);
    color: var(--accent-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scene-card__ico svg { width: 22px; height: 22px; }
.scene-card__title {
    font-size: 1.9rem;
    color: var(--text-primary);
    margin: 0;
}
.scene-card__desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
.scene-card__flow {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 12px 14px;
    align-items: start;
    padding: 18px;
    background: var(--bg-base);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
}
.scene-card__trigger {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 999px;
    white-space: nowrap;
}
.scene-card__arrow {
    color: var(--accent-1);
    font-size: 1.7rem;
    line-height: 1;
    align-self: center;
}
.scene-card__actions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
}
.scene-card__actions li {
    padding: 5px 10px;
    background: rgba(0, 217, 166, .1);
    color: var(--accent-1);
    font-size: 1.2rem;
    border-radius: 6px;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .scene-grid { grid-template-columns: 1fr; gap: 18px; }
    .scene-card { padding: 24px; }
    .scene-card__flow { grid-template-columns: 1fr; }
    .scene-card__arrow { transform: rotate(90deg); justify-self: start; }
}

/* === Smart Home — Pillar row (Dlaczego warto) === */
.pillar-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}
.pillar {
    position: relative;
    padding: 28px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-subtle);
}
.pillar:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    width: 1px;
    height: 32px;
    background: var(--border-subtle);
}
.pillar__num {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.02em;
}
.pillar__title {
    font-size: 1.7rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.pillar__desc {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}
@media (max-width: 1199px) {
    .pillar-row { grid-template-columns: repeat(3, 1fr); }
    .pillar:nth-child(3n)::after { display: none; }
}
@media (max-width: 767px) {
    .pillar-row { grid-template-columns: repeat(2, 1fr); }
    .pillar:not(:last-child)::after { display: none; }
    .pillar:nth-child(2n)::after { display: none; }
}
@media (max-width: 480px) {
    .pillar-row { grid-template-columns: 1fr; gap: 20px; }
    .pillar__num { font-size: 3rem; }
}

/* === Smart Home — Safety strip (Bezpieczeństwo) === */
.sh-safety {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sh-safety__item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s ease;
}
.sh-safety__item:hover { border-color: var(--accent-1); }
.sh-safety__ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: var(--bg-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sh-safety__ico svg { width: 22px; height: 22px; }
.sh-safety__title {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.sh-safety__desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}
@media (max-width: 991px) { .sh-safety { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sh-safety { grid-template-columns: 1fr; } }

/* === Smart Home — Stairs (Realizacja) === */
.stairs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stairs__step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    max-width: 720px;
    transition: border-color .25s ease;
}
.stairs__step:hover { border-color: var(--accent-1); }
.stairs__step:nth-child(1) { margin-left: 0; }
.stairs__step:nth-child(2) { margin-left: 8%; }
.stairs__step:nth-child(3) { margin-left: 16%; }
.stairs__step:nth-child(4) { margin-left: 24%; }
.stairs__step:nth-child(5) { margin-left: 32%; }
.stairs__num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-gradient);
    color: var(--bg-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.stairs__body { display: flex; flex-direction: column; gap: 4px; }
.stairs__title {
    font-size: 1.7rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.stairs__desc {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1.1rem;
    margin: 0;
}
@media (max-width: 991px) {
    .stairs__step:nth-child(1) { margin-left: 0; }
    .stairs__step:nth-child(2) { margin-left: 4%; }
    .stairs__step:nth-child(3) { margin-left: 8%; }
    .stairs__step:nth-child(4) { margin-left: 12%; }
    .stairs__step:nth-child(5) { margin-left: 16%; }
}
@media (max-width: 575px) {
    .stairs__step,
    .stairs__step:nth-child(n) { margin-left: 0; padding: 18px 20px; gap: 16px; }
    .stairs__num { width: 46px; height: 46px; font-size: 1.5rem; }
}


/* === FAQ — Contact methods inline (kontakty w rzędzie) === */
.contact-methods--inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .contact-methods--inline { grid-template-columns: 1fr; }
}

/* === Global smooth scroll dla anchor linków === */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 24px; }

/* === Contact methods — wariant na jasnym tle (section--light) === */
.contact-methods--onlight .contact-method {
    background: #fff;
    border: 1px solid rgba(13, 26, 51, 0.08);
    color: #0d1a33;
    box-shadow: 0 6px 18px rgba(13, 26, 51, 0.04);
}
.contact-methods--onlight a.contact-method:hover {
    border-color: #00a884;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 168, 132, 0.12);
}
.contact-methods--onlight .contact-method__ico {
    background: rgba(0, 168, 132, 0.08);
    border-color: rgba(0, 168, 132, 0.2);
    color: #00a884;
}
.contact-methods--onlight a.contact-method:hover .contact-method__ico {
    background: rgba(0, 168, 132, 0.16);
}
.contact-methods--onlight .contact-method__label { color: #6b7a99; }
.contact-methods--onlight .contact-method__value { color: #0d1a33; }
.contact-methods--onlight .contact-method__arrow { color: #6b7a99; }
.contact-methods--onlight a.contact-method:hover .contact-method__arrow { color: #00a884; }


