/* Mesmerize EX Rg â€“ font marki Sindbad IT */
@font-face {
    font-family: 'Mesmerize Ex Rg';
    src: local('Mesmerize Ex Rg'),
         local('MesmerizeExRg'),
         url('fonts/MesmerizeExRg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    /* Offset pod fixed navbar – wartość ustawiana przez JS (--nav-h) */
    scroll-padding-top: var(--nav-h, 82px);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* Typography – mobile-first z clamp() */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(1.75rem, 4.5vw + 0.5rem, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem,  3.5vw + 0.3rem, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw  + 0.3rem, 1.8rem); margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.85rem 1.9rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.22s ease;
    border: none;
    cursor: pointer;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #00ACE6;
    color: white;
    box-shadow: 0 4px 18px rgba(0, 172, 230, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #009ed4;
    box-shadow: 0 8px 26px rgba(0, 172, 230, 0.5);
}

/* GĹ‚Ăłwny przycisk CTA w hero â€“ "Kup online" */
.btn-hero-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.92rem 2.1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
    background: #00ACE6;
    color: #fff;
    box-shadow: 0 5px 22px rgba(0, 172, 230, 0.42);
    border: none;
}

.btn-hero-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 172, 230, 0.6);
    background: #009ed4;
}

.btn-hero-voyager {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.92rem 2.1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn-hero-voyager:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* Przyciski hero i formularza kontaktowego â€“ kolor niebieski logo */
.hero-buttons .btn-primary,
.contact-form .btn-primary {
    background: #00ACE6;
    box-shadow: 0 5px 18px rgba(0, 172, 230, 0.4);
}

.hero-buttons .btn-primary:hover,
.contact-form .btn-primary:hover {
    background: #009ed4;
    box-shadow: 0 8px 26px rgba(0, 172, 230, 0.55);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Przyciski na podstronie â€“ kolor granatowy z sygnetu */
.subpage .btn-primary {
    background: linear-gradient(135deg, #1a3878, #0f2259);
    box-shadow: 0 4px 15px rgba(26, 56, 120, 0.35);
    color: #fff;
}

.subpage .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 56, 120, 0.5);
    background: linear-gradient(135deg, #234da0, #1a3878);
}

/* WyjÄ…tek: hero i formularz kontaktowy na podstronie â€“ niebieski logo */
.subpage .hero-buttons .btn-primary,
.subpage .contact-form .btn-primary {
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    box-shadow: 0 4px 15px rgba(0, 172, 230, 0.35);
}

.subpage .hero-buttons .btn-primary:hover,
.subpage .contact-form .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 172, 230, 0.5);
    background: linear-gradient(135deg, #1dcedd, #00ACE6);
}

/* Navigation */
/* Offset dla fixed navbara przy skrolowaniu do kotwic */
[id] {
    scroll-margin-top: var(--nav-h, 82px);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── SINDBAD IT – tekst logo (Mesmerize Ex Rg) ─── */
.sindbad-logo-text {
    font-family: 'Mesmerize Ex Rg', 'Arial Black', sans-serif;
    color: #00ACE6;
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

/* ─── Navbar logo ─── */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.logo-link:hover {
    transform: scale(1.05);
}
.nav-logo-sygnet {
    height: 42px;
    width: auto;
    flex-shrink: 0;
}
.nav-logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-logo-brand {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
}
.nav-logo-tagline {
    font-size: 0.7rem;
    color: #666;
    display: block;
    font-family: 'Mesmerize Ex Rg', 'Poppins', sans-serif;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
@media (max-width: 1200px) {
    .nav-logo-tagline { display: none; }
}
@media (max-width: 1050px) {
    /* Na węższych ekranach (przed hamburgerem) zostaje sam sygnet – bez tekstu SINDBAD IT */
    .nav-logo-brand    { display: none; }
    .nav-logo-text-wrap { display: none; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a3878;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00ACE6;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #8e44ad;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-apps-btn {
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-apps-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 172, 230, 0.4);
}

.nav-apps-btn::after {
    display: none;
}

.nav-item--dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    color: #1a3878;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
}

.nav-arrow-btn:hover {
    background: rgba(0, 172, 230, 0.08);
    color: #1a3878;
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    display: block;
}

.nav-item--dropdown.is-open .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 210px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
    border: 1px solid rgba(142, 68, 173, 0.12);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 200;
}

.nav-item--dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #1a3878;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown__link:hover {
    background: rgba(0, 172, 230, 0.07);
    color: #1a3878;
}

@media (max-width: 768px) {
    .nav-item--dropdown {
        flex-wrap: wrap;
    }

    .nav-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(142, 68, 173, 0.05);
        border-radius: 8px;
        width: 100%;
        margin-top: 4px;
        padding: 4px 0;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .nav-item--dropdown.is-open .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown__link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
    gap: 0;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(0,0,0,0.05); }

.bar {
    width: 22px;
    height: 2px;
    background: #1a3878;
    margin: 3px 0;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* Animacja X gdy menu otwarte */
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Overlay za mobilnym menu */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.nav-overlay.active { display: block; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION – Full professional (German IT style)
   Photo background + dark overlay + stats bar
   ══════════════════════════════════════════════════════════ */

.hero {
    min-height: 100svh;
    position: relative;
    background: #040d18;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Full background photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.02);
    transition: transform 8s ease;
}
.hero:hover::before {
    transform: scale(1.06);
}

/* Multi-layer dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(4, 13, 24, 0.93) 0%,
            rgba(6, 22, 55, 0.82) 45%,
            rgba(4, 13, 24, 0.72) 100%
        );
    z-index: 1;
}

/* Animated bottom accent bar */
.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ACE6 0%, #1a3878 35%, #17b8a6 65%, #00ACE6 100%);
    background-size: 200% 100%;
    animation: heroBarSlide 5s linear infinite;
    z-index: 4;
}

@keyframes heroBarSlide {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Hide old split-layout image div */
.hero-image,
.hero__media {
    display: none !important;
}

/* ── Hero content area ── */
.hero-content,
.hero__content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(120px, 15vw, 190px) clamp(24px, 8vw, 150px) clamp(50px, 6vw, 70px);
    max-width: 1000px;
}

/* Eyebrow label */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #00ACE6;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: #00ACE6;
    flex-shrink: 0;
}

/* Main headline */
.hero-content h1,
.hero__content h1 {
    font-size: clamp(2.4rem, 5.5vw + 0.5rem, 5.2rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease 0.1s both;
    display: block;
}

/* Accent text within headline */
.hero-accent-text {
    color: #00ACE6;
}

/* Inline logo in heading */
.hero-logo-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    vertical-align: middle;
}
.hero-logo-sygnet {
    height: 1.1em;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}
.hero-logo-brand {
    color: #00ACE6 !important;
    font-size: 0.88em;
}

/* Backward compat */
.hero-logo-img {
    height: 1.45em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

/* Subtitle */
.hero-content p,
.hero__content p {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 2.8rem;
    animation: fadeInUp 0.7s ease 0.2s both;
    font-weight: 400;
}

/* CTA row */
.hero-buttons,
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.7s ease 0.3s both;
    align-items: flex-start;
}

.hero-buttons .btn,
.hero__actions .btn {
    white-space: nowrap;
}

/* ── Stats bar at bottom of hero ── */
.hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(4, 13, 24, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-stat {
    padding: clamp(18px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat__num {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #00ACE6;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.hero-stat__label {
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* ── MOBILE ── */
@media (max-width: 639px) {
    .hero-content,
    .hero__content {
        align-items: center;
        text-align: center;
        padding: clamp(110px, 18vw, 140px) clamp(20px, 6vw, 36px) clamp(40px, 8vw, 56px);
        max-width: 100%;
    }
    .hero-content h1,
    .hero__content h1 {
        align-items: center;
        text-align: center;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-buttons,
    .hero__actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-buttons .btn,
    .hero__actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stat:nth-child(2) { border-right: none; }
    .hero-stat:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.07); }
    .hero-stat:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.07); }
}

/* ══════════════════════════════════════════════════════════
   SERVICES / TRANSPORT SECTION – bold professional cards
   ══════════════════════════════════════════════════════════ */
.services {
    padding: clamp(70px, 9vw, 110px) 0;
    background: #0b1929;
}

.transport-section {
    padding: clamp(70px, 9vw, 110px) 0;
    background: #0b1929;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 64px);
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: clamp(1.7rem, 3.5vw + 0.3rem, 2.8rem);
    letter-spacing: -0.025em;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
}

.transport-subtitle span {
    display: block;
}

.transport-subtitle span + span {
    margin-top: 4px;
}

/* ── Transport cards – bold photo cards (T-Systems style) ── */
.transport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(18px, 2.5vw, 28px);
}

.transport-card {
    position: relative;
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card--interactive {
    cursor: pointer;
}

.transport-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.transport-card--interactive:focus-visible {
    outline: 3px solid #00ACE6;
    outline-offset: 4px;
}

/* Full-bleed background per card */
.card-background {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.5s ease;
    z-index: 0;
}

.transport-card:hover .card-background {
    transform: scale(1.07);
}

/* Per-card background images + gradient overlays */
.transport-card:nth-child(1) .card-background {
    background:
        linear-gradient(160deg, rgba(14, 143, 127, 0.88) 0%, rgba(4, 13, 24, 0.92) 100%),
        url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=800&q=80') center/cover;
}
.transport-card:nth-child(2) .card-background {
    background:
        linear-gradient(160deg, rgba(15, 34, 89, 0.88) 0%, rgba(4, 13, 24, 0.92) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=800&q=80') center/cover;
}
.transport-card:nth-child(3) .card-background {
    background:
        linear-gradient(160deg, rgba(0, 90, 160, 0.88) 0%, rgba(4, 13, 24, 0.92) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=800&q=80') center/cover;
}

/* Shine effect */
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.transport-card:hover .card-shine {
    opacity: 1;
}

/* Card content – positioned at bottom */
.card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    z-index: 2;
    color: white;
    background: none;
}

/* Card icon */
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.card-content h3 {
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.3;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    font-weight: 700;
}

/* "Kup online" badge */
.card-kup-online {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    order: -1;
}

/* Arrow indicator */
.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-top: 22px;
    align-self: flex-end;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
    flex-shrink: 0;
}

.transport-card:hover .card-arrow {
    background: #00ACE6;
    border-color: #00ACE6;
    color: #fff;
    transform: translateX(6px);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-features span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.embed-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1200;
}

.embed-modal.show {
    opacity: 1;
    visibility: visible;
}

.embed-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 19, 35, 0.75);
    backdrop-filter: blur(4px);
}

.embed-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 32px));
    max-height: min(86vh, 900px);
    padding: 28px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    overflow: auto;
}

.embed-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.embed-modal__close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.embed-modal__title {
    color: #8e44ad;
    margin-bottom: 8px;
}

.embed-modal__subtitle {
    margin-bottom: 20px;
}

.embed-modal__tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.embed-modal__tab {
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid #eadbf4;
    background: #f6effb;
    color: #6c3483;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.embed-modal__tab.active {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-color: #e67e22;
    color: white;
    box-shadow: 0 8px 22px rgba(230, 126, 34, 0.24);
}

.embed-modal__panes {
    position: relative;
}

.embed-modal__pane {
    display: none;
}

.embed-modal__pane.active {
    display: block;
}

.embed-modal__pane iframe {
    width: 100%;
    height: min(62vh, 620px);
    border: none;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.services-grid {
    display: grid;
    /* Desktop: 3 karty w rzędzie. Na środku 4. i 5. karta via subgrid trick */
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: clamp(14px, 3vw, 30px);
}

.service-card {
    background: white;
    padding: clamp(22px, 4vw, 40px) clamp(16px, 3vw, 30px);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

.service-card:nth-child(1) .service-icon,
.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.service-card:nth-child(3) .service-icon,
.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.service-card:nth-child(1)::before,
.service-card:nth-child(4)::before {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.service-card:nth-child(3)::before,
.service-card:nth-child(5)::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Fleet Section */
.fleet {
    padding: clamp(70px, 9vw, 110px) 0;
    background: #071422;
}

.fleet .section-header h2 {
    color: #ffffff;
}
.fleet .section-header p {
    color: rgba(255, 255, 255, 0.5);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(12px, 2vw, 20px);
    max-width: 1100px;
    margin: 0 auto;
}

.fleet-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    min-width: 0;
    background: #f4f6f8;
}

.fleet-item--link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.fleet-item--link:focus-visible {
    outline: 3px solid rgba(142, 68, 173, 0.45);
    outline-offset: 4px;
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.fleet-item:hover img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.fleet-item:hover .fleet-overlay {
    transform: translateY(0);
}

.fleet-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
}

/* ── fleet-item--voyager ─────────────────────────────────────────
   Tło: gradient marki (bez obrazka z tekstem wbudowanym).
   Overlay: identyczne zachowanie jak pozostałe kafle —
   domyślnie ukryty (translateY 100%), pojawia się na hover.
   Mobile (hover: none): overlay zawsze widoczny.
───────────────────────────────────────────────────────────── */
.fleet-item--voyager {
    background: linear-gradient(145deg, #0f2256 0%, #1a3878 45%, #1067b8 80%, #00ACE6 100%);
}

/* Overlay Voyager – BRAK transform:translateY(0) override →
   dziedziczy translateY(100%) z .fleet-overlay
   i pojawia się przez .fleet-item:hover .fleet-overlay jak inne kafle */
.fleet-item--voyager .fleet-overlay {
    background: linear-gradient(transparent 0%, rgba(10, 22, 60, 0.55) 25%, rgba(8, 18, 52, 0.93) 100%);
    padding: 20px 18px 18px;
}

.fleet-item--voyager .fleet-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.fleet-item--voyager .fleet-overlay p {
    color: rgba(200, 220, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.fleet-item--voyager .fleet-overlay .fleet-link-label {
    color: #fff;
    font-weight: 700;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile / touch: brak hover → overlay zawsze widoczny (jak statyczny opis) */
@media (hover: none), (max-width: 768px) {
    .fleet-item--voyager .fleet-overlay {
        transform: translateY(0);
    }
}

/* ── Voyager branding (HTML/CSS – bez tekstu w grafice) ────── */
.voy-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%); /* lekko powyżej środka */
    text-align: center;
    pointer-events: none;
    z-index: 0;
    width: 90%;
    transition: opacity 0.3s ease;
}

/* Na hover: branding lekko przyciemniony gdy overlay wyjeżdża */
.fleet-item--voyager:hover .voy-brand {
    opacity: 0.35;
}

/* Znaczek V */
.voy-brand__v {
    width: 42px;
    height: 40px;
    display: block;
    margin: 0 auto 10px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Napis VOYAGER */
.voy-brand__name {
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    font-weight: 900;
    color: #d42020;
    letter-spacing: 0.07em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35);
    margin: 0 0 4px;
    line-height: 1;
    font-style: italic;
}

/* Napis "marka pod opieką" */
.voy-brand__sub {
    font-size: 0.72rem;
    color: rgba(180, 215, 245, 0.88);
    letter-spacing: 0.05em;
    margin: 0 0 8px;
    font-weight: 400;
}

/* Wiersz: sygnet + SINDBAD IT */
.voy-brand__owner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
}

.voy-brand__sygnet {
    height: 20px;
    width: auto;
    flex-shrink: 0;
}

/* SINDBAD IT – ten sam styl co w stopce (sindbad-logo-text = Mesmerize Ex Rg) */
.voy-brand__sindbad {
    font-size: 0.9rem;
    color: #00ACE6 !important; /* niebieski z sygnetu – jak w stopce */
}

/* Mobile: brand wyżej żeby nie nakładał się na overlay */
@media (hover: none), (max-width: 768px) {
    .voy-brand {
        top: 32%;
        transform: translate(-50%, -50%);
    }
    .voy-brand__name {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
    }
}

.fleet-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0 0 0;
}

.fleet-link-label {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.security-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(142, 68, 173, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Contact */
.quick-contact-section {
    padding: clamp(36px, 6vw, 60px) 0;
    background: #071422;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-contact-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.quick-contact-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
    font-size: 1.1rem;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.quick-action-btn:hover {
    transform: translateY(-3px);
}

.quick-call-btn,
.quick-email-btn {
    background: linear-gradient(135deg, #00ACE6, #0088c2);
}

/* Contact Section */
.contact {
    padding: clamp(70px, 9vw, 110px) 0;
    background: #f0f4fa;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(24px, 5vw, 60px);
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item--link {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    padding: 8px;
    margin: -8px;
    transition: background 0.2s;
    cursor: pointer;
}

.contact-item--link:hover {
    background: rgba(0, 172, 230, 0.06);
}

.contact-item--link:hover .contact-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 172, 230, 0.4);
}

.contact-action-hint {
    font-size: 0.72rem;
    font-weight: 500;
    color: #0088c2;
    margin-left: 6px;
    opacity: 0;
    transition: opacity 0.2s;
}

.contact-item--link:hover .contact-action-hint {
    opacity: 1;
}

.footer-contact-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: #00ACE6;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 172, 230, 0.45);
}

.contact-icon::before {
    content: attr(title);
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 10px;
}

.contact-icon::after {
    display: none;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e44ad;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row.is-hidden,
.form-group.is-hidden,
#b2bSection.is-hidden {
    display: none !important;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #030a14;
    color: white;
    padding: clamp(40px, 6vw, 60px) 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

/* ─── Footer logo ─── */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo-sygnet {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}
.footer-logo-brand {
    font-size: 1.1rem;
}

/* Backward compat */
.footer-logo {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    filter: brightness(1);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8e44ad;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8e44ad;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Misc */
.fleet-item img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.service-card,
.fleet-item {
    cursor: pointer;
}

.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #8e44ad;
    outline-offset: 2px;
}

/* â”€â”€ Drawer (panel boczny) â”€â”€ */
.drawer-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}

.drawer-toggle:hover {
    background: rgba(26, 56, 120, 0.08);
}

.drawer-toggle__bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #00ACE6;
    border-radius: 2px;
    transition: 0.3s;
}

.drawer-toggle.is-open .drawer-toggle__bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.drawer-toggle.is-open .drawer-toggle__bar:nth-child(2) {
    opacity: 0;
}
.drawer-toggle.is-open .drawer-toggle__bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    z-index: 1200;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.drawer.is-open {
    transform: translateX(0);
}

/* ── Mobilna nawigacja wewnątrz drawera ── */
.drawer__mobile-nav {
    display: none; /* ukryte na desktopie */
    padding: 0;
    border-bottom: 2px solid #e8f0fb;
    background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
}

.drawer__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.drawer__mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 0.97rem;
    font-weight: 500;
    color: #1a3878;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-bottom: 1px solid rgba(0, 172, 230, 0.08);
}
.drawer__mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: #00ACE6;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.drawer__mobile-nav-link:hover,
.drawer__mobile-nav-link:focus {
    background: rgba(0, 172, 230, 0.08);
    padding-left: 26px;
    color: #00ACE6;
}
.drawer__mobile-nav-btn {
    font-family: inherit;
}

.drawer__mobile-nav-divider {
    margin: 0;
    border: none;
    border-top: 2px solid #e8f0fb;
}

.drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fb;
}

/* ─── Drawer logo ─── */
.drawer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.drawer__logo-sygnet {
    height: 34px;
    width: auto;
    flex-shrink: 0;
}
.drawer__logo-brand {
    font-size: 1rem;
}

/* Backward compat */
.drawer__logo {
    height: 34px;
    width: auto;
}

.drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.drawer__close:hover {
    background: rgba(26, 56, 120, 0.08);
    color: #00ACE6;
}

.drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
}

.drawer__placeholder {
    color: #aaa;
    font-style: italic;
    text-align: center;
    margin-top: 40px;
}

.drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer__nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}

.drawer__nav-item:hover {
    background: #eef4ff;
    color: #00ACE6;
}

.drawer__nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.drawer__nav-label {
    flex: 1;
}

.drawer__nav-arrow {
    font-size: 0.7rem;
    color: #bbb;
    transition: transform 0.2s, color 0.2s;
}

.drawer__nav-item:hover .drawer__nav-arrow {
    transform: translateX(3px);
    color: #00ACE6;
}

/* ── Polityka prywatności – split item: tekst (link) + 2 ikony akcji ── */
.drawer__nav-item--split {
    padding: 0;
    gap: 0;
}
.drawer__nav-item__main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
    padding: 13px 8px 13px 14px;
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.18s;
}
.drawer__nav-item--split:hover .drawer__nav-item__main {
    color: #00ACE6;
}
.drawer__nav-item__actions {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 10px 0 0;
    flex-shrink: 0;
}
.drawer__nav-action-btn,
.drawer__nav-action-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 7px;
    cursor: pointer;
    color: #bbb;
    font-size: 0.78rem;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
}
.drawer__nav-action-btn:hover,
.drawer__nav-action-link:hover {
    background: rgba(0, 172, 230, 0.12);
    color: #00ACE6;
}

.drawer__divider {
    height: 1px;
    background: #eee;
    margin: 8px 4px;
}

/* Akordeony w drawerze */
.drawer__accordion {
    border-radius: 10px;
    overflow: hidden;
}

.drawer__accordion-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.drawer__accordion-btn[aria-expanded="true"] {
    background: #eef4ff;
    color: #00ACE6;
}

.drawer__accordion-btn[aria-expanded="true"] .drawer__nav-arrow {
    transform: rotate(90deg);
    color: #00ACE6;
}

.drawer__accordion-body {
    padding: 4px 14px 14px 14px;
    background: #f8faff;
    border-top: 1px solid #dde8ff;
}

.drawer__accordion-body[hidden] {
    display: none;
}

.drawer__info-block {
    margin-top: 14px;
}

.drawer__info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0088c2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.drawer__info-title i {
    color: #00ACE6;
}

.drawer__steps {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.drawer__steps li {
    font-size: 0.86rem;
    color: #444;
    line-height: 1.55;
}

.drawer__text {
    font-size: 0.86rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.drawer__text:last-child {
    margin-bottom: 0;
}

.drawer__inline-link {
    color: #0088c2;
    font-weight: 600;
    text-decoration: none;
}

.drawer__inline-link:hover {
    text-decoration: underline;
}

.drawer__payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.drawer__payment-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: #e6f7fd;
    color: #0088c2;
    border: 1px solid #b3e4f5;
}

.drawer__payment-tag--blik {
    background: #e8f5e9;
    color: #1b7a3e;
    border-color: #a5d6a7;
    font-size: 0.88rem;
    padding: 5px 14px;
}

.drawer__info-block--notice {
    background: #e6f7fd;
    border-left: 3px solid #00ACE6;
    border-radius: 0 8px 8px 0;
    padding: 10px 12px;
}

.drawer__info-block--notice .drawer__info-title {
    color: #00ACE6;
}

.drawer__info-block--notice .drawer__info-title i {
    color: #00ACE6;
}

.drawer__info-block--warning {
    background: #fffbea;
    border-left: 3px solid #f0b429;
    border-radius: 0 8px 8px 0;
    padding: 10px 12px;
}

.drawer__info-block--warning .drawer__info-title {
    color: #b45309;
}

.drawer__info-block--warning .drawer__info-title i {
    color: #f0b429;
}

#currencyTableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.currency-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.currency-table thead th {
    background: #00ACE6;
    color: #fff;
    padding: 7px 10px;
    text-align: left;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.currency-table thead th:last-child {
    text-align: right;
}

.currency-table tbody tr:nth-child(even) {
    background: #f4f7ff;
}

.currency-table tbody tr:hover {
    background: #dde8ff;
}

.currency-table td {
    padding: 7px 10px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.currency-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #00ACE6;
}

.currency-table .currency-flag {
    margin-right: 6px;
    font-size: 1rem;
}

.currency-date-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.currency-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0088c2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency-date-input {
    flex: 1;
    min-width: 130px;
    padding: 6px 8px;
    border: 1.5px solid #c8d9f5;
    border-radius: 7px;
    font-size: 0.84rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.currency-date-input:focus {
    border-color: #00ACE6;
}

.currency-btn {
    padding: 6px 14px;
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.currency-btn:hover { opacity: 0.85; }

/* Kalkulator */
.currency-calc {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.currency-calc__row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.currency-calc__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.currency-calc__input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    border: 1.5px solid #c8d9f5;
    border-radius: 7px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    color: #0088c2;
    font-weight: 700;
    outline: none;
    transition: border-color 0.2s;
}

.currency-calc__input:focus { border-color: #00ACE6; }

.currency-calc__select {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 10px;
    border: 1.5px solid #c8d9f5;
    border-radius: 7px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s;
}

.currency-calc__select:focus { border-color: #00ACE6; }

.currency-calc__arrow {
    text-align: center;
    color: #00ACE6;
    font-size: 1.1rem;
    padding: 2px 0;
}

.currency-calc__result {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    background: #eef4ff;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0088c2;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-calc__rate {
    font-size: 0.76rem;
    color: #888;
    text-align: center;
    margin: 2px 0 0;
}

.drawer__privacy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer__privacy-section {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0088c2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 14px 0 6px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #dde8ff;
    padding-bottom: 4px;
}

.drawer__privacy-section i {
    color: #00ACE6;
    font-size: 0.85rem;
}

.drawer__link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 4px;
}

.drawer__link-btn:hover {
    opacity: 0.88;
    transform: translateX(3px);
}

.drawer__buy-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.drawer__link-btn--teal {
    background: linear-gradient(135deg, #17b8a6, #0e8f7f);
}

.drawer__link-btn--navy {
    background: linear-gradient(135deg, #1a3878, #0f2259);
}

.drawer__link-btn--blue {
    background: linear-gradient(135deg, #00ACE6, #0088c2);
}

/* â”€â”€ Scroll to top â”€â”€ */
/* Formularz B2B â€“ etykiety sekcji */
.form-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0088c2;
    margin: 14px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 172, 230, 0.2);
}

.form-section-label i {
    color: #00ACE6;
    font-size: 0.9rem;
}

#b2bSection:not(.is-hidden) {
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll to top */
/* scroll-to-top jest teraz WEWNĄTRZ .floating-contact jako ostatni element */
/* Używamy opacity+scale zamiast display:none – stack nie skacze */
.floating-contact__scroll {
    background: linear-gradient(135deg, #17b8a6, #0fa090);
    box-shadow: 0 4px 15px rgba(23, 184, 166, 0.35);
    border: none;
    cursor: pointer;
    font-family: inherit;
    /* Ukryty domyślnie – pojawi się po przewinięciu */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}
.floating-contact__scroll:hover {
    box-shadow: 0 6px 20px rgba(23, 184, 166, 0.55);
}
.floating-contact__scroll.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* Stary selektor – fallback aby JS działał */
.scroll-to-top { display: none !important; }

/* ── Floating contact – pionowy stack (telefon / email / WhatsApp) ── */
.floating-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;          /* WhatsApp na samym dole, scroll-to-top przesuniete w lewo */
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    z-index: 1001;
}

.floating-contact__btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.floating-contact__btn:hover {
    transform: translateY(-3px) scale(1.08);
    color: white;
}

.floating-contact__phone {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 16px rgba(52,152,219,0.4);
}
.floating-contact__phone:hover { box-shadow: 0 8px 24px rgba(52,152,219,0.55); }

.floating-contact__email {
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    box-shadow: 0 4px 16px rgba(0,172,230,0.4);
}
.floating-contact__email:hover { box-shadow: 0 8px 24px rgba(0,172,230,0.55); }

.floating-contact__whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.floating-contact__whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.6); }

@media (max-width: 767px) {
    .floating-contact { right: 10px; bottom: 10px; gap: 8px; }
    .floating-contact__btn { width: 44px; height: 44px; font-size: 18px; }
}

/* Stare klasy – fallback ukryty */
.whatsapp-float,
.phone-float { display: none !important; }

.toast-message {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8e44ad, #6c3483);
    color: white;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1200;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* =============================================================
   RESPONSIVE – MOBILE FIRST
   320-767px mobile | 768px tablet | 1024px desktop | 1280px wide
   ============================================================= */

/* ─── MOBILE (domyślnie, do 767px) ─────────────────────────── */
@media (max-width: 767px) {

    /* Globalnie */
    html { -webkit-text-size-adjust: 100%; }

    /* Navbar */
    .hamburger       { display: flex; }
    .drawer-toggle   { display: none; }
    .nav-menu        { display: none !important; }
    .nav-overlay     { display: none !important; }
    .drawer__mobile-nav { display: block; }

    .nav-container {
        padding: 0 12px;
        gap: 6px;
    }
    .nav-logo-sygnet { height: 28px; }
    .nav-logo-img { height: 28px; }
    .nav-logo-tagline { display: none; }
    .lang-selector__code  { display: none; }
    .lang-selector__btn   { padding: 4px 6px; }
    .lang-selector__arrow { display: none; }
    .lang-selector__dropdown { right: 0; left: auto; min-width: 140px; }

    /* Hero – na mobile logo sygnet mniejszy */
    .hero-logo-sygnet { height: 1em; }
    .hero-logo-img { height: 1em; }

    /* Sekcje */
    .section-header p { font-size: 0.95rem; }

    /* Karty transportowe – już auto-fit, ale min-height */
    .transport-card { min-height: 220px; }

    /* Karty usług */
    .services-grid .service-card { grid-column: auto !important; }

    /* Formularz kontaktowy */
    .form-row { flex-direction: column; }

    /* Szybki kontakt */
    .quick-contact-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .quick-action-btn { width: 100%; max-width: 320px; justify-content: center; }

    /* Stopka */
    .footer-content { text-align: center; }
    .social-links   { justify-content: center; }

    /* Modale */
    .embed-modal__dialog {
        padding: clamp(14px, 4vw, 20px);
        width: calc(100vw - 16px);
        max-height: 92vh;
    }
    .embed-modal__pane iframe { height: min(52vh, 420px); }
    .embed-modal__tabs { gap: 8px; }
    .embed-modal__tab { padding: 10px 14px; font-size: 0.88rem; }

    .agent-modal__dialog {
        padding: clamp(14px, 4vw, 20px);
        width: calc(100vw - 16px);
    }
    .agent-download-row { flex-wrap: wrap; }
    .agent-download-row__cta { white-space: normal; width: 100%; text-align: center; }

    .apps-modal__dialog {
        padding: clamp(14px, 4vw, 20px);
        width: calc(100vw - 16px);
        border-radius: 20px;
    }
    .apps-modal__layout { grid-template-columns: 1fr; }

    /* Drawer pełna szerokość */
    .drawer { width: 100%; max-width: 100%; }

    /* Tabela walut */
    #currencyTableWrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Selektor telefonu */
    .phone-dial-dropdown { width: min(260px, calc(100vw - 20px)); }
    .phone-input-group   { flex-wrap: wrap; }

    /* Floaty – scroll-to-top jest wewnątrz .floating-contact */

    /* Podstrona */
    .solutions-grid    { grid-template-columns: 1fr !important; }
    .rez-subcategories { grid-template-columns: 1fr !important; }
    .specs-grid        { grid-template-columns: 1fr !important; }
}

/* ─── MAŁE TELEFONY (do 380px) ────────────────────────────── */
@media (max-width: 380px) {
    .nav-logo-sygnet { height: 24px; }
    .nav-logo-img { height: 24px; }
    .transport-card { min-height: 180px; }
}


/* ─── DESKTOP (1024px+) ──────── hamburger chowamy ─────────── */
@media (min-width: 1024px) {
    .phone-float        { display: none; }
    .hamburger          { display: none !important; }
    .drawer-toggle      { display: flex !important; }
    .nav-menu           { display: flex !important; transform: none !important; visibility: visible !important; }
    .drawer__mobile-nav { display: none !important; }
}

/* ─── Kompatybilność < 769px (stare bloki) ─────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {
    .phone-float        { display: none; }
    .hamburger          { display: none !important; }
    .drawer-toggle      { display: flex !important; }
    .nav-menu           { display: flex !important; transform: none !important; visibility: visible !important; }
    .drawer__mobile-nav { display: none !important; }
}
/* â”€â”€ Modal Pobierz AplikacjÄ™ â”€â”€ */
.apps-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1300;
}

.apps-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.apps-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(5px);
}

.apps-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.apps-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #eef2f7;
    color: #2d3748;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.apps-modal__close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.apps-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
    gap: 28px;
    align-items: center;
}

.apps-modal__title {
    color: #0088c2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.3em;
}

/* ─── Apps modal logo ─── */
.apps-modal__logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
}
.apps-modal__logo-sygnet {
    height: 1.3em;
    width: auto;
    flex-shrink: 0;
}
.apps-modal__logo-brand {
    font-size: 0.85em;
}

/* Backward compat */
.apps-modal__logo {
    height: 1.3em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.apps-modal__subtitle {
    color: #666;
    margin-bottom: 22px;
    max-width: 640px;
}

.apps-download-list {
    display: grid;
    gap: 14px;
}

.apps-download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(0, 92, 159, 0.12);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.apps-download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 92, 159, 0.12);
    border-color: rgba(0, 92, 159, 0.22);
}

.apps-download-item__main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.apps-download-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #005c9f, #007fdb);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(0, 92, 159, 0.2);
}

.apps-download-item__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #737373;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apps-download-item__title {
    display: block;
    color: #171717;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.apps-download-item__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.apps-store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apps-store-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.apps-store-link--google {
    background: linear-gradient(135deg, #005c9f, #007fdb);
    color: white;
}

.apps-store-link--apple {
    background: #111827;
    color: white;
}

.apps-download-item__cta {
    color: #005c9f;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.apps-phone-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    min-height: 360px;
}

.apps-phone {
    position: relative;
    width: 210px;
    height: 400px;
    border-radius: 34px;
    background: #111827;
    padding: 12px;
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.25);
}

.apps-phone::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 22px;
    border-radius: 999px;
    background: #0b1220;
    z-index: 2;
}

.apps-phone-shot {
    width: 160px;
    flex-shrink: 0;
    filter: drop-shadow(0 20px 30px rgba(17, 24, 39, 0.22));
    border-radius: 22px;
}

.apps-phone__screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.apps-phone__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (max-width: 768px) {
    /* Modal jako bottom-sheet – stabilna pozycja, nie pływa */
    .apps-modal {
        align-items: flex-end;
        padding: 0;
    }

    .apps-modal__dialog {
        width: 100%;
        max-height: 92svh;
        overflow-y: auto;
        border-radius: 24px 24px 0 0;
        padding: 20px 16px 28px;
    }

    .apps-modal__layout {
        grid-template-columns: 1fr;
    }

    /* Ukryj grafiki telefonów – na mobile lista aplikacji jest priorytetem */
    .apps-phone-visual {
        display: none;
    }

    /* Tytuł z miejscem na przycisk zamknięcia */
    .apps-modal__title {
        flex-wrap: wrap;
        font-size: 1rem;
        padding-right: 38px;
        margin-bottom: 6px;
    }

    .apps-modal__subtitle {
        font-size: 0.84rem;
        margin-bottom: 14px;
    }

    /* Lista aplikacji – mniejsze odstępy */
    .apps-download-list {
        gap: 10px;
    }

    /* Kafelek aplikacji – wiersz (ikona + treść) bez zawijania */
    .apps-download-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 11px 13px;
        gap: 11px;
    }

    /* Mniejsza ikona aplikacji */
    .apps-download-item__icon {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .apps-download-item__eyebrow {
        font-size: 0.71rem;
        margin-bottom: 2px;
    }

    .apps-download-item__title {
        font-size: 0.83rem;
        margin-bottom: 6px;
    }

    /* Przyciski sklepów zawijają się zamiast wypadać poza ekran */
    .apps-download-item__links {
        flex-wrap: wrap;
        gap: 6px;
    }

    .apps-store-link {
        font-size: 0.76rem;
        padding: 5px 10px;
        gap: 5px;
    }

    .apps-download-item__cta {
        white-space: normal;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Phone Input Group z selektorem kraju
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.phone-input-group {
    display: flex;
    align-items: stretch;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.3s;
    overflow: visible;
    width: 100%;
}
.phone-input-group:focus-within {
    border-color: #00ACE6;
}

/* Nadpisz ogĂłlne style inputa wewnÄ…trz grupy */
.form-group .phone-input-group input[type="tel"],
.phone-input-group input[type="tel"] {
    flex: 1;
    border: none !important;
    border-radius: 0 8px 8px 0 !important;
    padding: 15px 14px !important;
    font-size: 1rem;
    outline: none;
    background: transparent;
    min-width: 0;
    width: auto !important;
    box-shadow: none !important;
}
.phone-input-group input[type="tel"]:focus {
    outline: none !important;
    border: none !important;
}

.phone-dial-selector {
    position: relative;
    flex-shrink: 0;
}

.phone-dial-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px 0 12px;
    height: 100%;
    background: #f8f9fa;
    border: none;
    border-right: 2px solid #e9ecef;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
    transition: background 0.2s;
    min-width: 82px;
}
.phone-dial-btn:hover {
    background: #e9ecef;
}

.phone-dial-flag {
    display: flex;
    align-items: center;
    line-height: 1;
}
.phone-dial-flag .fi {
    width: 1.4em;
    height: 1em;
    border-radius: 2px;
}
.phone-dial-code {
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
}
.phone-dial-arrow {
    font-size: 0.6rem;
    color: #999;
    transition: transform 0.2s;
    margin-left: 2px;
}
.phone-dial-selector.is-open .phone-dial-arrow {
    transform: rotate(180deg);
}

.phone-dial-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 9999;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    width: 260px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.phone-dial-selector.is-open .phone-dial-dropdown {
    display: flex;
}

.phone-dial-search {
    width: 100%;
    padding: 10px 12px;
    border: none !important;
    border-bottom: 1px solid #e9ecef !important;
    border-radius: 0 !important;
    font-size: 0.875rem;
    outline: none !important;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}
.phone-dial-search:focus {
    background: #fff;
    border-color: #e9ecef !important;
}

.phone-dial-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 220px;
    overflow-y: auto;
}

.phone-dial-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.phone-dial-item:hover,
.phone-dial-item.is-selected {
    background: #e8f7fd;
    color: #0088c2;
}
.phone-dial-item.is-selected .item-code {
    color: #0088c2;
}

.phone-dial-item .item-flag {
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.phone-dial-item .item-flag .fi {
    width: 1.4em;
    height: 1em;
    border-radius: 2px;
}
.phone-dial-item .item-name {
    flex: 1;
}
.phone-dial-item .item-code {
    color: #888;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* â”€â”€ Pole zaĹ‚Ä…cznika â”€â”€ */
.form-attachment-group {
    border: 2px dashed #c8d6e0;
    border-radius: 10px;
    padding: 14px 18px;
    transition: border-color 0.3s;
    background: #f8fbff;
}
.form-attachment-group:focus-within {
    border-color: #00ACE6;
}
.attachment-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    margin-bottom: 10px;
}
.attachment-label i {
    color: #00ACE6;
    margin-right: 6px;
}
.attachment-hint {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}
.attachment-input {
    width: 100%;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}
.attachment-input::file-selector-button {
    padding: 7px 14px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: opacity 0.2s;
}
.attachment-input::file-selector-button:hover {
    opacity: 0.88;
}

/* â”€â”€ Przycisk pobierania dwuliniowy â”€â”€
   Dziedziczy padding/font z .btn i .solution-card .btn,
   dodaje tylko ukĹ‚ad ikona + etykieta z podpisem.       */
.btn-dl {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
.btn-dl__icon {
    font-size: 1em;
    flex-shrink: 0;
    line-height: 1;
}
.btn-dl__label {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}
.btn-dl__title {
    font-size: 1em;       /* identyczny jak reszta przyciskĂłw */
    font-weight: 500;     /* identyczny jak .btn */
    line-height: 1.25;
}
.btn-dl__sub {
    font-size: 1em;
    font-weight: 500;
    opacity: 1;
    letter-spacing: 0;
}

/* NIP hint & field errors */
.nip-hint {
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 3px;
    display: block;
}
.field-error-msg {
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 4px;
    margin-bottom: 0;
    display: none;
}
.field-error-msg.visible {
    display: block;
}
.input-invalid {
    border-color: #e74c3c !important;
}
.phone-input-group.input-invalid {
    border-color: #e74c3c;
}

/* ======================================================
   SELEKTOR JÄZYKA (Google Translate)
   ====================================================== */

/* Ukryj pasek Google Translate â€“ NIE ukrywaj .goog-te-combo (potrzebny do sterowania) */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.goog-logo-link,
.goog-te-gadget-simple {
    display: none !important;
}
/* Pasek u gĂłry strony â€“ ukryj */
iframe.skiptranslate {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}
/* Ukryj oryginalnÄ… kontrolkÄ™ GT ale zachowaj w DOM */
.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}
.goog-te-combo {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}

/* Kontener selektora */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 6px;
}
.lang-selector__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    color: #fff;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.lang-selector__btn:hover,
.lang-selector__btn[aria-expanded="true"] {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}
.lang-selector__flag {
    width: 1.1em;
    height: 1.1em;
    border-radius: 2px;
    flex-shrink: 0;
}
.lang-selector__code {
    font-size: 0.8rem;
}
.lang-selector__arrow {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.2s;
}
.lang-selector__btn[aria-expanded="true"] .lang-selector__arrow {
    transform: rotate(180deg);
}

/* Dropdown listy jÄ™zykĂłw */
.lang-selector__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    min-width: 160px;
    z-index: 9999;
    overflow: hidden;
    padding: 4px 0;
}
.lang-selector__dropdown.is-open {
    display: block;
    animation: fadeInDown 0.15s ease;
}
.lang-selector__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.87rem;
    color: #1a3878;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.15s;
}
.lang-selector__item:hover {
    background: #f0f7ff;
}
.lang-selector__item.is-active {
    background: #e8f4ff;
    color: #00ACE6;
    font-weight: 700;
}
.lang-selector__item .fi {
    width: 1.25em;
    height: 1.25em;
    border-radius: 3px;
    flex-shrink: 0;
}
.lang-selector__item-label {
    flex: 1;
}
.lang-selector__item-code {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

@media (max-width: 768px) {
    .lang-selector__btn {
        padding: 4px 7px;
        font-size: 0.75rem;
    }
    .lang-selector__code {
        display: none;
    }
    .lang-selector__dropdown {
        right: 0;
        min-width: 145px;
    }
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER (RODO/GDPR)
   z-index: 9999 — zawsze na wierzchu
   ══════════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #111d35;
    color: #e8edf5;
    box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.35);
    font-size: 0.88rem;
    line-height: 1.5;
    /* Start ukryty – slideIn przy klasie --visible */
    transform: translateY(105%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                opacity  0.42s ease;
    opacity: 0;
    pointer-events: none; /* niewidoczny baner nie blokuje kliknięć */
}
.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto; /* aktywny baner jest klikalny */
}
.cookie-banner--hiding {
    transform: translateY(105%);
    opacity: 0;
    pointer-events: none;
}

/* Wewnętrzny wrapper */
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 220px;
}
.cookie-banner__text p { margin: 0; }
.cookie-banner__text strong { color: #fff; }
.cookie-banner__text a {
    color: #6ecbf0;
    text-decoration: underline;
}

/* Przyciski */
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}
.cookie-banner__btn {
    padding: 9px 22px;
    border: none;
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
    line-height: 1.3;
}
.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #00ACE6, #0088c2);
    color: #fff;
}
.cookie-banner__btn--accept:hover {
    box-shadow: 0 4px 16px rgba(0, 172, 230, 0.55);
}
.cookie-banner__btn--reject {
    background: transparent;
    color: #c8d8ec;
    border: 1px solid rgba(200, 216, 236, 0.4);
}
.cookie-banner__btn--reject:hover {
    border-color: #c8d8ec;
    background: rgba(255, 255, 255, 0.07);
}
.cookie-banner__btn--settings {
    background: transparent;
    color: #7fb3d3;
    padding: 9px 10px;
    text-decoration: underline;
    font-weight: 400;
}
.cookie-banner__btn--settings:hover { color: #fff; }

/* ── Panel ustawień (szczegółowe kategorie) ── */
.cookie-settings {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.cookie-settings__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px 16px;
}
.cookie-settings__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    gap: 12px;
}
.cookie-settings__label strong {
    display: block;
    font-size: 0.88rem;
    color: #fff;
}
.cookie-settings__label span {
    font-size: 0.78rem;
    color: #8aaabf;
}
.cookie-settings__always {
    font-size: 0.78rem;
    color: #17b8a6;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.cookie-settings__footer {
    padding-top: 12px;
    text-align: right;
}

/* ── Toggle switch ── */
.cookie-settings__toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-settings__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-settings__slider {
    position: absolute;
    inset: 0;
    background: #3a4a5c;
    border-radius: 26px;
    cursor: pointer;
    transition: background 0.28s;
}
.cookie-settings__slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.28s;
}
.cookie-settings__toggle input:checked + .cookie-settings__slider {
    background: #00ACE6;
}
.cookie-settings__toggle input:checked + .cookie-settings__slider::before {
    transform: translateX(20px);
}
.cookie-settings__toggle input:focus-visible + .cookie-settings__slider {
    outline: 2px solid #00ACE6;
    outline-offset: 2px;
}

/* Link w tekście bannera */
.cookie-banner__link {
    color: #6ecbf0;
    text-decoration: underline;
    white-space: nowrap;
}
.cookie-banner__link:hover { color: #fff; }

/* Stopka – linki polityki i zarządzania cookies */
.footer-bottom__links {
    margin-top: 6px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.75;
}
.footer-bottom__links a,
.footer-cookie-btn {
    color: inherit;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}
.footer-bottom__links a:hover,
.footer-cookie-btn:hover { opacity: 1; color: #fff; }

/* ── Responsywność bannera ── */
@media (max-width: 600px) {
    .cookie-banner__inner {
        padding: 12px 16px;
        gap: 12px;
    }
    .cookie-settings__inner {
        padding: 10px 16px 14px;
    }
    .cookie-banner__actions {
        width: 100%;
    }
    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
    .cookie-banner__btn--settings {
        flex: 0 0 auto;
        padding: 9px 6px;
    }
}
