*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:        #0B1C2D;
    --navy-mid:    #102340;
    --navy-light:  #153152;
    --slate:       #1E2A38;
    --slate-light: #2C3E50;
    --yellow:      #F5A623;
    --yellow-hot:  #E8960F;
    --warning:     #F5A623;
    --white:       #FFFFFF;
    --off-white:   #D8DFE8;
    --muted:       #7A8FA6;
    --border:      rgba(245, 166, 35, 0.25);

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   OPTIMIZATION: IMAGES
======================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
    font-style: italic; /* Style for missing alt text images */
}

.gallery-image,
.svc-card img,
.port-section__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-bottom 0.35s ease;
    border-bottom: 1px solid transparent;
}

.navbar--scrolled {
  background: rgba(5, 10, 20, 0.97) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.8) !important;
}

.navbar__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    transform: scale(1);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: var(--white);
    text-transform: uppercase;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar__link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--off-white);
    padding: 8px 14px;
    position: relative;
    transition: color 0.2s;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar__link:hover {
    color: var(--white);
}

.navbar__link:hover::after {
    transform: scaleX(1);
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar__cta:hover {
    background: var(--yellow-hot);
    color: var(--navy);
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.navbar__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s, opacity 0.25s;
}

.navbar__hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger--active span:nth-child(2) { opacity: 0; }
.navbar__hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('hero-port.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            105deg,
            rgba(11, 28, 45, 1.00)  0%,
            rgba(11, 28, 45, 0.92) 30%,
            rgba(11, 28, 45, 0.60) 58%,
            rgba(11, 28, 45, 0.18) 78%,
            rgba(11, 28, 45, 0.00) 100%
        ),
        linear-gradient(
            to top,
            rgba(11, 28, 45, 0.65) 0%,
            rgba(11, 28, 45, 0.00) 40%
        );
}

/* === TYPOGRAPHIC HERO (podstrony â€” bez zdjÄ™cia w tle) === */

.hero--typographic {
    height: auto;
    min-height: 0;
    padding: 160px 0 100px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

/* Ukryj div z bg-image â€” na podstronach nie chcemy zdjÄ™cia */
.hero--typographic .hero__bg {
    display: none;
}

/* Aktywuj overlay dla wideo tĹ‚a na podstronach */
.hero--typographic .hero__overlay {
    display: block;
    background: rgba(11, 20, 35, 0.88);
    z-index: 2;
}

/* Zdejmij domyĹ›lne Ĺ›ciemnianie z wideo, ĹĽeby uniknÄ…Ä‡ podwĂłjnego filtra */
.hero--typographic .hero-video-bg {
    filter: brightness(1);
}

/* Dekoracyjna ĹĽĂłĹ‚ta linia u doĹ‚u sekcji */
.hero--typographic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
    z-index: 3;
}

/* WYĹšRODKOWANIE ZAWARTOĹšCI (Cinematic Title Card) */
.hero--typographic .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
}

/* WyĹ›rodkowanie tagu */
.hero--typographic .hero__tag {
    justify-content: center;
}

/* Skalowanie typografii - mniejszy nagĹ‚Ăłwek dla ukĹ‚adu centralnego */
.hero--typographic .hero__title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1;
}

.hero--typographic .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* WyĹ›rodkowanie dzielnika (ĹĽĂłĹ‚tej kreski) */
.hero--typographic .hero__divider {
    transform: translateX(-10px); /* korekta na ::after aby caĹ‚oĹ›Ä‡ byĹ‚a idealnie na Ĺ›rodku */
}

/* WyĹ›rodkowanie statystyk */
.hero--typographic .hero__badges {
    justify-content: center;
    width: 100%;
}

/* WyĹ›rodkowanie przyciskĂłw */
.hero--typographic .hero__actions {
    justify-content: center;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 76px;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 28px;
}

.hero__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.6rem, 7.5vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero__divider {
    width: 60px;
    height: 3px;
    background: var(--yellow);
    margin-bottom: 36px;
    position: relative;
}

.hero__divider::after {
    content: '';
    position: absolute;
    left: 68px;
    top: 0;
    width: 12px;
    height: 3px;
    background: var(--yellow);
    opacity: 0.4;
}

.hero__badges {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
}

.hero__badge {
    display: flex;
    flex-direction: column;
    padding: 0 28px 0 0;
}

.hero__badge:first-child {
    padding-left: 0;
}

.hero__badge-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    margin-right: 28px;
}

.hero__badge-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--yellow);
    line-height: 1;
}

.hero__badge-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--yellow);
    color: var(--navy);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
}

.btn--primary:hover {
    background: var(--yellow-hot);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.35);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn--secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: heroFadeUp 1s 1.2s both;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50%       { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

.hero__scroll-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .navbar__nav {
        gap: 2px;
    }
    .navbar__link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}

/* ========================================
   MODAL MENU MOBILNE
======================================== */
.nav-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-end;
}

.nav-modal--open {
    visibility: visible;
    opacity: 1;
}

.nav-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(4px);
}

.nav-modal__content {
    position: relative;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #0a1425 0%, #050a14 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-modal--open .nav-modal__content {
    transform: translateX(0);
}

.nav-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-modal__close:hover {
    background: var(--yellow);
    color: var(--navy);
}

.nav-modal__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-modal__link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s;
}

.nav-modal__link:hover {
    color: var(--yellow);
}

.nav-modal__cta {
    margin-top: 30px;
    background: var(--yellow);
    color: var(--navy);
    text-decoration: none;
    text-align: center;
    padding: 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(245, 162, 0, 0.3);
    transition: all 0.3s;
}

.nav-modal__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 162, 0, 0.4);
}

@media (max-width: 768px) {
    .navbar__hamburger {
        display: flex;
    }

    .navbar__nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(11, 28, 45, 0.98);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0;
        gap: 0;
    }


    .navbar__link {
        padding: 14px 40px;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .navbar__link::after {
        display: none;
    }

    .hero__content {
        padding: 0 28px;
        padding-top: 76px;
    }

    .hero__badges {
        gap: 0;
    }

    .hero__badge {
        padding: 0 18px 0 0;
    }

    .hero__badge-sep {
        margin-right: 18px;
    }
}

@media (max-width: 520px) {
    .navbar__inner {
        padding: 0 20px;
    }

    .navbar__cta {
        display: none;
    }

    .hero__content {
        padding: 0 20px;
        padding-top: 76px;
    }

    .hero__badges {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero__badge-sep {
        display: none;
    }

    .hero__badge {
        padding: 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.services {
    background: var(--navy);
    padding: 100px 0 110px;
}

.services__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.services__header {
    max-width: 800px;
    margin-bottom: 64px;
}

.services__header-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 22px;
}

.services__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.services__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
}

.services__title-accent {
    color: var(--yellow);
    display: block;
}

.services__lead {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.svc-card {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
}

.svc-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 26, 51, 0.15) 0%,
        rgba(0, 26, 51, 0.50) 45%,
        rgba(0, 26, 51, 0.88) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.svc-card:hover .svc-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 26, 51, 0.10) 0%,
        rgba(0, 26, 51, 0.40) 40%,
        rgba(0, 26, 51, 0.82) 100%
    );
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.svc-card:hover::before {
    transform: scale(1.08);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.35);
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.svc-card:hover .video-background {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.svc-card__body {
    position: relative;
    z-index: 2;
    padding: 28px 28px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-card__index {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--yellow);
    opacity: 0.8;
}

.svc-card__content {
    flex: 1;
}

.svc-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    transition: color 0.25s;
}

.svc-card:hover .svc-card__title {
    color: var(--yellow);
}

.svc-card__desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.6;
    opacity: 0.85;
    max-width: 260px;
}

.svc-card__arrow {
    align-self: flex-end;
    color: var(--yellow);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.svc-card:hover .svc-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.svc-card__bar {
    position: relative;
    z-index: 2;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 24px;
    transition: background 0.3s ease;
}

.svc-card__bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--yellow);
    transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card:hover .svc-card__bar::after {
    width: 100%;
}

@media (max-width: 1100px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-card {
        height: 420px;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 72px 0 80px;
    }

    .services__inner {
        padding: 0 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .svc-card {
        height: 360px;
    }

    .svc-card__body {
        padding: 22px 22px 0 22px;
    }
}

.stats {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 12px;
    padding: 72px 0;
    margin: 60px auto;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.stats__divider {
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 24px;
    cursor: default;
}

.stats__num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.8rem, 7vw, 6.2rem);
    line-height: 1;
    color: var(--warning);
    letter-spacing: -0.02em;
    display: block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.stats__item:hover .stats__num {
    transform: scale(1.1);
}

.stats__label-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stats__label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.75;
    display: block;
}

.stats__underline {
    display: block;
    width: 0;
    height: 2px;
    background: var(--warning);
    transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats__item:hover .stats__underline {
    width: 48px;
}

@media (max-width: 720px) {
    .stats__inner {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .stats__divider {
        width: 120px;
        height: 1px;
        margin: 8px 0;
    }

    .stats__item {
        width: 100%;
        padding: 28px 20px;
    }
}

.fleet {
    background: var(--navy);
    padding: 110px 0 120px;
}

.fleet__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.fleet__header {
    max-width: 680px;
    margin-bottom: 80px;
}

.fleet__header-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 22px;
}

.fleet__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.fleet__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.fleet__title-accent {
    color: var(--yellow);
    display: block;
}

.fleet__lead {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
}

.fleet__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 48px;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.fleet-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-5px);
}

.fleet-card__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.fleet-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(60%) brightness(0.6);
    transition: all 0.4s ease;
    transform: scale(1.01);
}

.fleet-card:hover .fleet-card__img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.fleet-card__content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.fleet-card__header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fleet-card__num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    color: var(--yellow);
    opacity: 0.8;
}

.fleet-card__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
}

.fleet-card__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.7;
    opacity: 0.85;
}

.fleet__specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.fleet__specs li {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
    padding-left: 20px;
    position: relative;
}

.fleet__specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.fleet-card__footer {
    margin-top: auto;
    padding-top: 16px;
    width: 100%;
}

.fleet__cta {
    align-self: flex-start;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}

@media (max-width: 1000px) {
    .fleet__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fleet {
        padding: 72px 0 80px;
    }

    .fleet__inner {
        padding: 0 20px;
    }

    .fleet__header {
        margin-bottom: 48px;
    }

    .fleet__media {
        height: 240px;
    }

    .fleet__content {
        padding: 32px 24px;
        gap: 16px;
    }

    .fleet__cta {
        width: 100%;
        justify-content: center;
    }
}

.contact {
    background: var(--navy);
    padding: 110px 0 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 22px;
}

.contact__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.contact__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.contact__title-accent {
    color: var(--yellow);
    display: block;
}

.contact__intro {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 400px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-decoration: none;
    color: inherit;
}

.contact__item--phone {
    /* usuniÄ™to ĹĽĂłĹ‚ty lewy border ze wzglÄ™du na szklanÄ… ramkÄ™ */
}

.contact__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(252, 163, 17, 0.3);
}

.contact__item:hover .contact__item-value {
    color: var(--yellow);
}

.contact__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--yellow);
    flex-shrink: 0;
}

.contact__item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact__item-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact__item-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.contact__availability {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

.contact__avail-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    flex-shrink: 0;
    position: relative;
}

.contact__avail-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(46, 204, 113, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0; transform: scale(2); }
}

.contact__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    line-height: 1.25;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact__form-title-accent {
    color: var(--yellow);
}

.contact__ai-container {
    min-height: 500px;
    background: rgba(11, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact__ai-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    padding: 40px;
}

.contact__ai-bracket {
    position: absolute;
    width: 20px;
    height: 20px;
}

.contact__ai-bracket--tl {
    top: 16px;
    left: 16px;
    border-top: 2px solid var(--yellow);
    border-left: 2px solid var(--yellow);
}

.contact__ai-bracket--tr {
    top: 16px;
    right: 16px;
    border-top: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
}

.contact__ai-bracket--bl {
    bottom: 16px;
    left: 16px;
    border-bottom: 2px solid var(--yellow);
    border-left: 2px solid var(--yellow);
}

.contact__ai-bracket--br {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
}

.contact__ai-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.45;
    text-align: center;
}

@media (max-width: 768px) {
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 0 20px;
    }

    .contact {
        padding: 72px 0 80px;
    }
}

.footer {
    background-color: var(--navy);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner--nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer__nav-link {
    color: var(--off-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--yellow);
}

.chatbot {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: transparent;
}

.chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--slate);
    border-bottom: 2px solid var(--yellow);
    flex-shrink: 0;
}

.chatbot__header-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot__status-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    position: relative;
    flex-shrink: 0;
}

.chatbot__status-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: rgba(46, 204, 113, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

.chatbot__status-text {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--white);
}

.chatbot__header-tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.7;
}

.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--slate-light) transparent;
}

.chatbot__messages::-webkit-scrollbar { width: 4px; }
.chatbot__messages::-webkit-scrollbar-thumb { background: var(--slate-light); }

.chatbot__msg {
    display: flex;
    max-width: 88%;
}

.chatbot__msg--bot { align-self: flex-start; }
.chatbot__msg--user { align-self: flex-end; }

.chatbot__msg-body {
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.6;
}

.chatbot__msg--bot .chatbot__msg-body {
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
}

.chatbot__msg--user .chatbot__msg-body {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.chatbot__dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 0;
}

.chatbot__dots span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    opacity: 0.6;
    animation: dotBounce 1.2s ease-in-out infinite;
}

.chatbot__dots span:nth-child(2) { animation-delay: 0.2s; }
.chatbot__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40%            { transform: translateY(-6px); opacity: 1; }
}

.chatbot__quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.chatbot__quick-btn {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(252, 163, 17, 0.3);
    border-radius: 20px;
    color: var(--yellow);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    cursor: pointer;
}

.chatbot__quick-btn:hover {
    background: rgba(252, 163, 17, 0.1);
    border-color: var(--yellow);
}

.chatbot__form {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.chatbot__input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: var(--white);
}

.chatbot__input::placeholder { color: var(--muted); }

.chatbot__send {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border: none;
    cursor: pointer;
    color: var(--navy);
    flex-shrink: 0;
    transition: background 0.2s;
}

.chatbot__send:hover { background: var(--yellow-hot); }

.chatbot__cta-link {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 166, 35, 0.4);
    transition: border-color 0.2s;
}

.chatbot__cta-link:hover { border-bottom-color: var(--yellow); }

.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none !important;
}

.fab__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--yellow);
    color: var(--navy);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    text-decoration: none;
    pointer-events: all;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
}

.fab__btn:hover {
    background: var(--yellow-hot);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.55);
}

.fab__btn svg {
    flex-shrink: 0;
}

.fab__tooltip {
  position: relative;
    position: relative;
    background: var(--navy);
    border: 1px solid var(--yellow);
    padding: 10px 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    animation: fabTooltipIn 0.5s ease forwards;
    animation-delay: 10s;
    white-space: nowrap;
}

@keyframes fabTooltipIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fab__tooltip-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    display: block;
}

.fab__tooltip-arrow {
    position: absolute;
    bottom: -7px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: var(--navy);
    border-right: 1px solid var(--yellow);
    border-bottom: 1px solid var(--yellow);
    transform: rotate(45deg);
}

@media (max-width: 520px) {
    .fab {
        bottom: 20px;
        right: 16px;
    }

    .fab__btn {
        width: 50px;
        height: 50px;
    }
}

.bot-highlight {
    animation: targetPulse 2s ease-in-out;
}

@keyframes targetPulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7); border-color: var(--warning); }
    50% { box-shadow: 0 0 30px 10px rgba(245, 166, 35, 0.5); border-color: var(--yellow-hot); }
    100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); border-color: transparent; }
}

/* ========================================
   SUBPAGE HERO VARIANT
======================================== */

.hero--subpage {
    height: 75vh;
    min-height: 540px;
}

.hero__bg--rozladunki {
    background-image: url('uslugi-port.jpg');
}

.hero__bg--transport {
    background-image: url('uslugi-transport.jpg');
}

.hero__bg--kruszenie {
    background-image: url('uslugi-kolej.jpg');
}

.hero__title-dot {
    color: var(--yellow);
}

/* ========================================
   SERVICE SECTIONS â€” ZIG-ZAG PREMIUM LAYOUT
======================================== */

.service-section {
    background: var(--navy);
    padding: 110px 0 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-section--alt {
    background: var(--slate);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-section__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: center;
}

.service-section__inner--flip {
    grid-template-columns: 55fr 45fr;
}

/* TAG */
.service-section__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
}

.service-section__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

/* HEADING */
.service-section__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.service-section__title-accent {
    color: var(--yellow);
    display: block;
}

/* DESCRIPTION */
.service-section__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.85;
    opacity: 0.88;
    max-width: 520px;
    margin-bottom: 36px;
}

.service-section__desc strong {
    color: var(--white);
    font-weight: 600;
}

/* CTA BUTTON */
.service-section__cta {
    margin-top: 8px;
}

/* ========================================
   FEATURE LIST â€” YELLOW SQUARE BULLETS
======================================== */

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-list__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-list__marker {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    flex-shrink: 0;
    margin-top: 7px;
}

.feature-list__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-list__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.feature-list__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.7;
    opacity: 0.8;
}

/* ========================================
   MEDIA SHOWCASE â€” CINEMATIC PLACEHOLDER
======================================== */

.media-right,
.media-left {
    width: 100%;
}

.media-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--navy-mid);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

/* Diagonal hatching */
.media-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 36px,
            rgba(245, 166, 35, 0.04) 36px,
            rgba(245, 166, 35, 0.04) 38px
        );
    pointer-events: none;
}

/* Corner brackets */
.media-showcase::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(245, 166, 35, 0.12);
    pointer-events: none;
}

.media-showcase__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.media-showcase__icon {
    color: var(--yellow);
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.media-showcase:hover .media-showcase__icon {
    opacity: 0.45;
}

.media-showcase__label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.media-showcase:hover .media-showcase__label {
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE â€” SERVICE SECTIONS
======================================== */

@media (max-width: 1100px) {
    .service-section__inner,
    .service-section__inner--flip {
        gap: 52px;
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .service-section {
        padding: 80px 0 88px;
    }

    /* Stack: media on top, text below â€” for both variants */
    .service-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 32px;
    }

    .service-section__inner--flip {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Flip variant: move media-left to top on mobile */
    .service-section__inner--flip .media-left {
        order: -1;
    }

    .service-section__desc {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .service-section {
        padding: 64px 0 72px;
    }

    .service-section__inner,
    .service-section__inner--flip {
        padding: 0 20px;
        gap: 32px;
    }

    .service-section__title {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    .service-section__cta {
        width: 100%;
        justify-content: center;
    }

    .hero--subpage {
        height: 65vh;
        min-height: 440px;
    }
}

/* ========================================
   OBSLUGA.HTML â€” HERO BACKGROUND
======================================== */

.hero__bg--obsluga {
    background-image: url('uslugi-maszyny.jpg');
}

/* ========================================
   SHOWCASE INTRO â€” FULL WIDTH CENTERED
======================================== */

.showcase-intro {
    background: var(--navy);
    padding: 110px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.showcase-intro__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.showcase-intro__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 32px;
}

.showcase-intro__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.showcase-intro__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 40px;
}

.showcase-intro__title-accent {
    color: var(--yellow);
}

.showcase-intro__text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.85;
    opacity: 0.85;
    max-width: 780px;
    margin: 0 auto;
}

/* ========================================
   PILLARS â€” 3-COLUMN GRID
======================================== */

.pillars {
    background: var(--slate);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pillars__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.pillar-card {
    padding: 64px 52px 56px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.pillar-card:last-child {
    border-right: none;
}

.pillar-card:hover {
    background: rgba(0, 0, 0, 0.2);
}

.pillar-card--featured {
    background: var(--navy-light);
    border-right: 1px solid rgba(245, 166, 35, 0.2);
    border-left: 1px solid rgba(245, 166, 35, 0.2);
}

.pillar-card--featured:hover {
    background: var(--navy-light);
}

.pillar-card__num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    color: var(--yellow);
    opacity: 0.7;
}

.pillar-card__icon {
    color: var(--yellow);
    opacity: 0.6;
    margin-bottom: 4px;
    transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-card__icon {
    opacity: 1;
}

.pillar-card--featured .pillar-card__icon {
    opacity: 0.9;
}

.pillar-card__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.25s;
}

.pillar-card:hover .pillar-card__title {
    color: var(--yellow);
}

.pillar-card--featured .pillar-card__title {
    color: var(--yellow);
}

.pillar-card__text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.8;
    opacity: 0.82;
    flex: 1;
}

.pillar-card__text strong {
    color: var(--white);
    font-weight: 600;
}

.pillar-card__bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: background 0.4s ease;
}

.pillar-card:hover .pillar-card__bar {
    background: var(--yellow);
}

.pillar-card--featured .pillar-card__bar {
    background: var(--yellow);
}

/* ========================================
   PANORAMA â€” FULL-WIDTH CINEMATIC SHOWCASE
======================================== */

.panorama {
    width: 100%;
    line-height: 0;
}

.media-showcase-large {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    background: var(--navy-mid);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-showcase-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 52px,
            rgba(245, 166, 35, 0.035) 52px,
            rgba(245, 166, 35, 0.035) 54px
        );
    pointer-events: none;
}

.media-showcase-large::after {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(245, 166, 35, 0.1);
    pointer-events: none;
}

.media-showcase-large__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.media-showcase-large__icon {
    color: var(--yellow);
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.media-showcase-large:hover .media-showcase-large__icon {
    opacity: 0.4;
}

.media-showcase-large__label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.4;
    transition: opacity 0.4s ease;
    max-width: 720px;
}

.media-showcase-large:hover .media-showcase-large__label {
    opacity: 0.7;
}

.media-showcase-large__sub {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.5;
}

/* ========================================
   OBSLUGA CTA â€” CLOSING CALL TO ACTION
======================================== */

.obsluga-cta {
    background: var(--navy);
    padding: 100px 0 110px;
    text-align: center;
    border-top: 3px solid var(--yellow);
}

.obsluga-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.obsluga-cta__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
}

.obsluga-cta__accent {
    color: var(--yellow);
}

.obsluga-cta__text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    letter-spacing: 0.04em;
}

/* ========================================
   RESPONSIVE â€” OBSLUGA.HTML SECTIONS
======================================== */

@media (max-width: 1100px) {
    .pillar-card {
        padding: 52px 36px 48px;
    }
}

@media (max-width: 820px) {
    .showcase-intro {
        padding: 80px 0 72px;
    }

    .showcase-intro__inner {
        padding: 0 28px;
    }

    .pillars__inner {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 48px 32px 44px;
    }

    .pillar-card--featured {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(245, 166, 35, 0.2);
        border-bottom: 1px solid rgba(245, 166, 35, 0.2);
    }

    .pillar-card:last-child {
        border-bottom: none;
    }

    .media-showcase-large {
        height: 55vh;
        min-height: 360px;
    }
}

@media (max-width: 520px) {
    .showcase-intro__inner,
    .obsluga-cta__inner {
        padding: 0 20px;
    }

    .showcase-intro {
        padding: 64px 0 56px;
    }

    .pillar-card {
        padding: 40px 20px 36px;
    }

    .obsluga-cta {
        padding: 72px 0 80px;
    }

    .media-showcase-large {
        height: 50vh;
        min-height: 300px;
    }

    .obsluga-cta__title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }
}

/* ========================================
   BROKEN GRID / ASYMMETRICAL OVERLAP
   (rozladunki.html Sekcje 1 & 2)
======================================== */

.overlap-section {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: visible !important;
}

.overlap-section--alt {
    background: var(--slate);
}

/* Media container â€” 32% szerokoĹ›ci po prawej lub lewej (Vertical Pillar) */
.overlap-section__media {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32%;
    max-width: 420px;
    z-index: 1;
    overflow: visible !important;
}

.overlap-section__media--right {
    right: 20px;
}

.overlap-section__media--left {
    left: 20px;
}

/* Winieta (klimatyczne zaciemnienie krawÄ™dzi) dla wideo */
.overlap-section__media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 8px; /* Dopasowane do promienia wideo */
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
    z-index: 2;
}

.overlap-section__media .media-showcase {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

/* Karta tekstowa â€” 72% szerokoĹ›ci, nachodzi na wÄ…ski filar media */
.overlap-section__card {
    position: relative;
    z-index: 10;
    width: 72%;
    background: #0d2035;
    border-top: 3px solid var(--yellow);
    padding: 3.5rem 3rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Sekcja 1: karta lewo, ucinamy prawy dolny rĂłg */
.overlap-section__card--left {
    margin-left: 4%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

/* Sekcja 2 (alt): karta prawo, ucinamy lewy gĂłrny rĂłg */
.overlap-section__card--right {
    margin-left: auto;
    margin-right: 4%;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
}

/* ResponsywnoĹ›Ä‡ â€” poniĹĽej 900px: rezygnujemy z nachodzenia */
@media (max-width: 900px) {
    .overlap-section {
        padding: 0;
        overflow: visible;
    }

    .overlap-section__media {
        position: relative;
        width: 100%;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .overlap-section__media .media-showcase {
        min-height: 300px;
        height: 300px;
    }

    .overlap-section__card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        clip-path: none;
        padding: 2.5rem 1.5rem;
    }

    .overlap-section__card--left,
    .overlap-section__card--right {
        clip-path: none;
        margin: 0;
    }
}

/* ========================================
   INDUSTRIAL EDITORIAL
   (kruszenie.html â€” ukĹ‚ad unikalny)
======================================== */

/* --- SEKCJA 1: Panoramiczny --- */

.editorial-panoramic {
    background: var(--navy);
    padding-bottom: 0;
}

.editorial-panoramic__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 60px 60px;
}

.editorial-text {
    width: 100%;
}

/* Tekst podzielony na dwie kolumny: wielki nagĹ‚Ăłwek po lewej, reszta po prawej */
.editorial-text__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 28px;
}

.editorial-text__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -0.01em;
}

.editorial-text__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

/* Full-width panorama â€” kinowe wideo pod tekstem */
.panoramic-media {
    width: 100%;
    height: 45vh;
    min-height: 300px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 200, 0, 0.03) 0px,
            rgba(255, 200, 0, 0.03) 1px,
            transparent 1px,
            transparent 12px
        ),
        var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 193, 0, 0.18);
}

.panoramic-media::before,
.panoramic-media::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--yellow);
    border-style: solid;
    opacity: 0.6;
}

.panoramic-media::before {
    top: 20px;
    left: 24px;
    border-width: 2px 0 0 2px;
}

.panoramic-media::after {
    bottom: 20px;
    right: 24px;
    border-width: 0 2px 2px 0;
}

/* --- SEKCJA 2: Editorial Split 65/35 --- */

.editorial-split {
    background: var(--slate);
    padding: 100px 0;
}

.editorial-split__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 60px;
    align-items: stretch;
}

.editorial-split__text {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 193, 0, 0.15);
}

/* Pionowe wideo â€” dramatyczny kontrast */
.vertical-media-showcase {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 200, 0, 0.03) 0px,
            rgba(255, 200, 0, 0.03) 1px,
            transparent 1px,
            transparent 12px
        ),
        var(--navy);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--yellow);
}

.vertical-media-showcase::before,
.vertical-media-showcase::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--yellow);
    border-style: solid;
    opacity: 0.7;
}

.vertical-media-showcase::before {
    top: 16px;
    left: 16px;
    border-width: 2px 0 0 2px;
}

.vertical-media-showcase::after {
    bottom: 16px;
    right: 16px;
    border-width: 0 2px 2px 0;
}

/* ResponsywnoĹ›Ä‡ */
@media (max-width: 900px) {
    .editorial-panoramic__inner {
        padding: 56px 24px 40px;
    }

    .editorial-text__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .editorial-text__title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .panoramic-media {
        height: 35vh;
    }

    .editorial-split {
        padding: 60px 0;
    }

    .editorial-split__inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 0;
    }

    .editorial-split__text {
        padding-right: 0;
        border-right: none;
        padding-bottom: 40px;
    }

    .vertical-media-showcase {
        min-height: 300px;
        border-left: none;
        border-top: 3px solid var(--yellow);
    }
}

/* ========================================
   DYNAMIC EDGE-TO-EDGE
   (transport.html â€” ukĹ‚ad unikalny)
======================================== */

.edge-section {
    background: var(--navy);
    overflow: hidden;
}

.edge-section--alt {
    background: var(--slate);
}

/* Sekcja 1: wideo przylega do LEWEJ krawÄ™dzi â€” grid [media | text] */
.edge-section__inner--left {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 60vh;
    align-items: stretch;
}

/* Sekcja 2: wideo przylega do PRAWEJ krawÄ™dzi â€” grid [text | media] */
.edge-section__inner--right {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 60vh;
    align-items: stretch;
}

/* Media â€” rozciÄ…ga siÄ™ edge-to-edge po wĹ‚aĹ›ciwej stronie */
.edge-section__media {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 200, 0, 0.025) 0px,
            rgba(255, 200, 0, 0.025) 1px,
            transparent 1px,
            transparent 14px
        ),
        #0a1929;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Lewa krawÄ™dĹş â€” wideo wysuwa siÄ™ poza ekran po lewej */
.edge-section__inner--left .edge-section__media {
    margin-left: calc(-1 * (100vw - 100%) / 2);
    padding-left: calc((100vw - 100%) / 2);
    border-right: 3px solid var(--yellow);
}

/* Prawa krawÄ™dĹş â€” wideo wysuwa siÄ™ poza ekran po prawej */
.edge-section__inner--right .edge-section__media {
    margin-right: calc(-1 * (100vw - 100%) / 2);
    padding-right: calc((100vw - 100%) / 2);
    border-left: 3px solid var(--yellow);
}

/* NaroĹĽniki techniczne na placeholderze */
.edge-section__media::before,
.edge-section__media::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--yellow);
    border-style: solid;
    opacity: 0.5;
}

.edge-section__inner--left .edge-section__media::before {
    top: 20px;
    right: 20px;
    border-width: 2px 2px 0 0;
}

.edge-section__inner--left .edge-section__media::after {
    bottom: 20px;
    right: 20px;
    border-width: 0 2px 2px 0;
}

.edge-section__inner--right .edge-section__media::before {
    top: 20px;
    left: 20px;
    border-width: 2px 0 0 2px;
}

.edge-section__inner--right .edge-section__media::after {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 2px 2px;
}

/* Blok tekstowy â€” ciemna karta z paddingiem */
.edge-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 80px 64px;
    background: var(--navy);
    border-top: 3px solid transparent;
    position: relative;
}

/* Ĺ»ĂłĹ‚ta linia pionowa przy krawÄ™dzi wewnÄ™trznej */
.edge-section__inner--left .edge-section__content {
    border-left: none;
}

.edge-section__inner--right .edge-section__content {
    border-right: none;
}

/* Subtelny ĹĽĂłĹ‚ty akcent â€” gĂłrna linia karty tekstowej */
.edge-section__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 64px;
    right: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%);
    opacity: 0.4;
}

.edge-section--alt .edge-section__content {
    background: var(--slate);
}

/* ResponsywnoĹ›Ä‡ â€” mobile: jedno pod drugim */
@media (max-width: 900px) {
    .edge-section__inner--left,
    .edge-section__inner--right {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    /* Na mobile wideo zawsze na gĂłrze */
    .edge-section__inner--left .edge-section__media,
    .edge-section__inner--right .edge-section__media {
        order: -1;
        min-height: 280px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        border-right: none;
        border-left: none;
        border-bottom: 3px solid var(--yellow);
    }

    .edge-section__content {
        padding: 48px 24px;
    }

    .edge-section__content::before {
        left: 24px;
        right: 24px;
    }
}

/* ========================================
   GLOBAL UI ELEMENTS
======================================== */

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FCA311;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceDown 2s infinite;
    z-index: 10;
}
.scroll-down-indicator .arrow { font-size: 1.1rem; }
@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

.vertical-pillar-video, .editorial-video-frame {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    
    /* Maska - to ona robi to magiczne przenikanie */
    -webkit-mask-image: radial-gradient(circle, black 35%, transparent 85%) !important;
    mask-image: radial-gradient(circle, black 35%, transparent 85%) !important;
    
    /* Filtry kinowe */
    filter: brightness(0.4) contrast(1.2) saturate(0.6) !important;
    
    /* PoĹ›wiata, ktĂłra rozmywa granice */
    box-shadow: 0 0 150px 50px rgba(11, 20, 35, 1) !important;
    
    /* Musi byÄ‡ position relative, ĹĽeby box-shadow i maska graĹ‚y */
    position: relative;
    z-index: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

/* ========================================
   PURE EDITORIAL INFO-GRID (transport.html)
======================================== */

.info-section-clean {
    padding: 120px 20px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.info-section-clean--alt {
    background: var(--slate);
}

.info-section-clean__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: start;
}

.info-section-clean__header {
    position: relative;
}

.info-section-clean__number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--white);
    opacity: 0.04;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.info-section-clean__header-content {
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.info-section-clean__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 16px;
}

.info-section-clean__title-accent {
    color: var(--yellow);
}

.info-section-clean__body {
    border-left: 2px solid var(--yellow);
    padding-left: 40px;
}

.info-section-clean__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-section-clean .feature-list__item {
    margin-bottom: 30px;
}

.info-section-clean .feature-list__text {
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .info-section-clean__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-section-clean__body {
        padding-left: 20px;
    }
    
    .info-section-clean__number {
        top: -20px;
        left: 0;
    }
}

/* ========================================
   HOME HERO NEW ELEMENTS
======================================== */
.hero-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-slogan {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    margin: 20px 0 40px;
    text-transform: uppercase;
}

.hero-services-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-services-item {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-services-divider {
    width: 2px;
    height: 16px;
    background-color: var(--yellow);
    opacity: 0.5;
}

@media (max-width: 900px) {
    .hero-services-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hero-services-divider {
        display: none;
    }
}

/* ========================================
   JUICY MICRO-INTERACTIONS & ANIMATIONS
======================================== */

.navbar__link, .footer__nav-link, .btn, .navbar__cta, .chatbot__quick-btn, .contact__item, .chatbot__send {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s, color 0.22s, box-shadow 0.22s !important;
}

.navbar__logo {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.navbar__link:active, .footer__nav-link:active, .btn:active, .navbar__logo:active, .navbar__cta:active, .chatbot__quick-btn:active, .contact__item:active, .chatbot__send:active {
    transform: scale(0.95) translateZ(0) !important;
    transition: transform 0.1s ease-out !important;
}

.navbar__link:hover, .footer__nav-link:hover, .navbar__logo:hover {
    transform: translateY(-2px) translateZ(0);
}

/* ========================================
   MACHINE INVENTORY (Park Maszynowy)
======================================== */

.machine-inventory {
    background: var(--navy);
    padding: 100px 0 110px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.machine-inventory__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.machine-inventory__header {
    margin-bottom: 60px;
}

.machine-inventory__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.machine-inventory__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.machine-inventory__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--white);
    text-transform: uppercase;
}

.machine-inventory__title-accent {
    color: var(--yellow);
    display: block;
}

.machine-inventory__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.machine-col__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.machine-list {
    display: flex;
    flex-direction: column;
}

.machine-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.machine-row:last-child {
    border-bottom: none;
}

.machine-row__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
    flex-shrink: 0;
}

.machine-row__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(255, 165, 0, 0.08);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.2);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .machine-inventory__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .machine-inventory__inner {
        padding: 0 20px;
    }
    .machine-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   SEKCJA O NAS (#o-nas)
======================================== */

.about {
    background: var(--navy);
    padding: 110px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* -- GÓRNA CZĘŚĆ: dwukolumnowa -- */
.about__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Lewa: tag + tytuł + tekst */
.about__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 22px;
}

.about__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.about__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.about__title-accent {
    color: var(--yellow);
    display: block;
}

.about__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 540px;
}

/* Prawa: statystyki */
.about__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 40px 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about__stat {
    padding: 24px 0;
}

.about__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.6rem, 4vw, 4rem);
    color: var(--yellow);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.about__stat-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about__stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.about__stat-underline {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--yellow);
    opacity: 0.5;
}

.about__stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* -- DOLNA CZĘŚĆ: Karuzela partnerów -- */
.about__partners {
    padding: 60px 0 70px;
}

.about__partners-heading {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 36px;
}

.about__marquee-outer {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.about__marquee-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: about-marquee 28s linear infinite;
}

.about__marquee-track:hover {
    animation-play-state: paused;
}

@keyframes about-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.about__logo {
    height: 45px;
    width: auto;
    flex-shrink: 0;
    filter: grayscale(100%) opacity(50%) brightness(200%);
    transition: filter 0.3s ease-in-out;
    cursor: pointer;
}

.about__logo:hover {
    filter: grayscale(0%) opacity(100%) brightness(100%);
}

/* -- RESPONSIVE -- */
@media (max-width: 960px) {
    .about__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about__text {
        max-width: 100%;
    }
    .about__stats {
        padding: 30px 28px;
    }
}

@media (max-width: 600px) {
    .about__inner {
        padding: 0 20px;
    }
    .about {
        padding: 80px 0 0;
    }
}

.about__logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(250%) opacity(60%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.about__logo:hover {
    filter: grayscale(0%) brightness(100%) opacity(100%);
    transform: scale(1.05);
}

.chatbot__tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
}

.chatbot__tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.chatbot__tile:hover {
    background: #ffcc00;
    color: #0a1128;
    border-color: #ffcc00;
    transform: translateY(-2px);
}

.chatbot__typing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    width: fit-content;
}

.chatbot__typing-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Barlow', sans-serif;
}

.chatbot__typing-dots {
    display: flex;
    gap: 4px;
}

.chatbot__typing-dots span {
    width: 6px;
    height: 6px;
    background: #ffcc00;
    border-radius: 50%;
    animation: typing 1s infinite ease-in-out;
}

.chatbot__typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Nowe style kafelków wymuszające ciemny wygląd */
.tiles-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 15px !important;
  margin-bottom: 10px !important;
}

.chat-tile {
  background-color: transparent !important;
  color: #ffb700 !important;
  border: 1px solid #ffb700 !important;
  border-radius: 5px !important;
  padding: 10px 16px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.chat-tile:hover {
  background-color: #ffb700 !important;
  color: #000000 !important;
}

.tiles-hidden {
  display: none !important;
}

html { scroll-behavior: smooth; }


.quick-select-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 10px !important;
  padding: 5px !important;
}

.select-tile {
  background: rgba(255, 183, 0, 0.1) !important;
  color: #ffb700 !important;
  border: 1px solid #ffb700 !important;
  border-radius: 4px !important;
  padding: 8px 14px !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  text-transform: uppercase !important;
}

.select-tile:hover {
  background: #ffb700 !important;
  color: #000 !important;
} 


.chatbot__messages {
  display: flex !important;
  flex-direction: column !important;
}

.quick-select-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: auto !important; 
  padding: 10px 0 !important;
  background: transparent !important;
  border: none !important;
}

.select-tile {
  background-color: transparent !important;
  color: #ffb700 !important;
  border: 1px solid #ffb700 !important;
  border-radius: 4px !important;
  padding: 8px 14px !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  text-transform: uppercase !important;
}

.select-tile:hover {
  background-color: #ffb700 !important;
  color: #000000 !important;
} 


.chatbot__messages {
  max-height: 450px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  scrollbar-width: thin;
  scrollbar-color: #ffb700 #1a1a1a;
}

.chatbot__messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background-color: #ffb700;
  border-radius: 10px;
}

#floating-chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #ffb700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 9999;
  transition: transform 0.3s ease;
}

#floating-chat-btn:hover {
  transform: scale(1.1);
}

#chat-tooltip {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: #2a2a2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border: 1px solid #ffb700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  font-family: 'Barlow', sans-serif;
}

#chat-tooltip.show-tooltip {
  opacity: 1;
  pointer-events: auto;
}

.close-tooltip {
  margin-left: 10px;
  color: #ffb700;
  cursor: pointer;
  font-weight: bold;
} 


/* UX Improvements & Floating Chat Button */
html {
  scroll-behavior: smooth !important;
}

.chatbot__messages {
  max-height: 450px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.chatbot__messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background-color: #ffb700;
  border-radius: 10px;
}

#floating-chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #ffb700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease;
}

#floating-chat-btn:hover {
  transform: scale(1.1);
}

#chat-tooltip {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: #2a2a2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border: 1px solid #ffb700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  font-family: 'Barlow', sans-serif;
}

#chat-tooltip.show-tooltip {
  opacity: 1;
  pointer-events: auto;
}

.close-tooltip {
  margin-left: 10px;
  color: #ffb700;
  cursor: pointer;
  font-weight: bold;
} 


.chatbot__messages {
  max-height: 400px !important;
  min-height: 400px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  scrollbar-width: thin;
  scrollbar-color: #ffb700 transparent;
}

.chatbot__messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background-color: #ffb700;
  border-radius: 10px;
}

.fab__tooltip {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(10px);
}

.fab__tooltip.show-tooltip {
  pointer-events: auto !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab__tooltip-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: #ffb700;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
} 


#fab-tooltip {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#fab-tooltip.show-tooltip {
  pointer-events: auto !important;
  display: block !important;
  opacity: 1 !important;
} 




@media (max-width: 768px) {

@media (max-width: 768px) {

@media (max-width: 768px) {
    .scroll-down-indicator {
        display: none !important;
    }

    .hero--subpage {
        padding-top: 160px !important;
    }

    .hero--subpage .hero__title {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }
}


@media (max-width: 768px) {
    .hero__scroll-indicator {
        display: none !important;
    }
}


@media (max-width: 768px) {
    .hero__tag {
        display: none !important;
    }
}


@media (max-width: 768px) {
    .scroll-down-indicator,
    .hero__scroll-indicator {
        display: none !important;
    }

    .hero--subpage {
        padding-top: 160px !important;
    }

    .hero--subpage h1,
    .hero--subpage .hero__title {
        margin-top: 20px !important;
    }
}


@media (max-width: 768px) {
    .scroll-down-indicator,
    .hero__scroll-indicator {
        display: none !important;
    }

    .hero--subpage {
        padding-top: 220px !important;
    }

    .hero--subpage h1,
    .hero--subpage .hero__title {
        margin-top: 30px !important;
    }
}


/* Utility classes requested for mobile layout fixes */
.hidden { display: none !important; }
@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:block { display: block !important; }
}

/* Mobile Hero adjustments to prevent gaps */
@media (max-width: 768px) {
    .hero, .hero--subpage {
        height: auto !important;
        min-height: 100vh !important; /* Ensure it still covers screen but can grow */
        padding-bottom: 40px !important;
        margin-bottom: 0 !important;
    }
    
    /* Fix for subpages specifically */
    .hero--subpage {
        min-height: 0 !important;
        padding-bottom: 30px !important;
    }
}


/* Further refinement for mobile hero gaps */
@media (max-width: 768px) {
    .hero {
        min-height: 600px !important;
    }
    .hero--subpage {
        padding-top: 140px !important;
        padding-bottom: 20px !important;
    }
}

/* ========================================
   SEKCJA: PORT KOĹOBRZEG
======================================== */

.port-section {
    background-color: var(--navy);
    padding: 7rem 0;
}

.port-section__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.port-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Obraz */
.port-section__image-wrap {
    position: relative;
    width: 100%;
    height: 500px;
}

.port-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    border-radius: 4px 0 0 4px;
    border: 2px solid rgba(245, 162, 0, 0.25);
    box-shadow: 0 0 30px rgba(245, 162, 0, 0.1);
}

/* TreĹ›Ä‡ */
.port-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Etykieta (wzorowana na .services__header-tag / .fleet__header-tag) */
.port-section__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.25rem;
}

.port-section__tag-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

/* NagĹ‚Ăłwek */
.port-section__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 2rem;
}

.port-section__title-accent {
    color: var(--yellow);
}

/* Tekst body */
.port-section__body {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--off-white);
}

/* Pogrubienia akcentowane */
.port-accent-bold {
    color: var(--yellow);
    font-weight: 700;
}

/* Przycisk */
.port-section__cta {
    margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .port-section__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .port-section__image-wrap {
        height: 420px;
    }

    .port-section__image {
        clip-path: none;
        border-radius: 4px;
    }
}

@media (max-width: 640px) {
    .port-section {
        padding: 4rem 0;
    }

    .port-section__inner {
        padding: 0 20px;
    }

    .port-section__image-wrap {
        height: 300px;
    }
}

/* Social Media Icons in Footer */
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;      /* PRZENIEŚ NIŻEJ */
  margin-bottom: 30px;   /* ODDALENIE od dna */
}

.footer__social-link {
  opacity: 0.35;         /* WTOPIONE - nisko widoczne */
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer__social-link:hover {
  opacity: 1;            /* NA HOVER - pełna widoczność */
}

.footer__social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover svg {
  opacity: 1;
}
