/* =====================================================
   ARWITO - Main Stylesheet
   Modern, Professional Design with Animations
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #2B5797;
    --primary-light: #3d6eb3;
    --primary-dark: #1e3d6b;
    --secondary: #4a90d9;
    --accent: #00d4ff;
    --gradient-primary: linear-gradient(135deg, #2B5797 0%, #4a90d9 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #2B5797 100%);

    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(43, 87, 151, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-width: 1400px;
    --section-padding: 100px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    max-width: 200px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--gradient-accent);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.navbar.navbar-dark.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar.navbar-dark .nav-link {
    color: var(--white);
}

.navbar.navbar-dark.scrolled .nav-link {
    color: var(--gray-800);
}

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

.nav-brand {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.nav-logo img {
    height: 35px;
    transition: transform var(--transition-normal);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Nav Slogan - next to logo */
.nav-slogan {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.nav-slogan img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-slogan img {
    filter: none;
    opacity: 1;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.nav-phone:hover {
    opacity: 0.8;
}

.navbar.scrolled .nav-phone {
    color: var(--gray-800);
}

.navbar-dark .nav-phone {
    color: var(--white);
}

.navbar-dark.scrolled .nav-phone {
    color: var(--gray-800);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: var(--gray-800);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 22px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.5;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(43, 87, 151, 0.3);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(43, 87, 151, 0.3) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(5deg); }
    50% { transform: translate(0, 100px) rotate(0deg); }
    75% { transform: translate(-50px, 50px) rotate(-5deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Tech Grid Background */
.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(43, 87, 151, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 87, 151, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

.hero-particles::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 87, 151, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 30%);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Tech nodes */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: nodeGlow 4s ease-in-out infinite;
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
}

.particle:nth-child(3n)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.4), transparent);
    transform: translateY(-50%);
}

.particle:nth-child(5n)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.4), transparent);
    transform: translateX(-50%);
}

@keyframes nodeGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
    max-width: 900px;
}

.hero-logo-container {
    margin-bottom: 40px;
}

.hero-logo {
    max-width: 280px;
    animation: logoAppear 1s ease-out;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-400);
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all var(--transition-normal);
    animation: fadeIn 1s ease-out 1s backwards;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 87, 151, 0.4);
}

.hero-btn i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(43, 87, 151, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto;
}

/* =====================================================
   OFFER SECTION - BANNERS
   ===================================================== */
.offer-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Delikatna siatka */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.offer-section .section-header {
    padding-top: 45px;
    position: relative;
    z-index: 2;
}

/* Particles container for offer section */
.offer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.offer-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: transparent;
    border: 2px solid rgba(43, 87, 151, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: nodeGlowBlue 4s ease-in-out infinite;
}

.offer-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
}

/* Linie łączące - poziome */
.offer-particle:nth-child(3n)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, rgba(43, 87, 151, 0.3), transparent);
    transform: translateY(-50%);
}

/* Linie łączące - pionowe */
.offer-particle:nth-child(5n)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, rgba(43, 87, 151, 0.3), transparent);
    transform: translateX(-50%);
}

/* Różne kolory obramówek */
.offer-particle:nth-child(4n+1) {
    border-color: rgba(43, 87, 151, 0.5);
}

.offer-particle:nth-child(4n+2) {
    border-color: rgba(74, 144, 217, 0.5);
}

.offer-particle:nth-child(4n+3) {
    border-color: rgba(0, 212, 255, 0.6);
}

.offer-particle:nth-child(4n+3)::before {
    background: var(--accent);
}

.offer-particle:nth-child(4n) {
    border-color: rgba(61, 110, 179, 0.5);
}

@keyframes nodeGlowBlue {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Slider Container */
.banners-slider-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.bannersSwiper {
    width: 100%;
    padding: 40px 0;
    overflow: visible;
}

.bannersSwiper .swiper-slide {
    width: 500px !important;
    height: 500px !important;
}

.bannersSwiper .swiper-slide .banner-card {
    height: 100%;
}

.bannersSwiper .swiper-slide-active .banner-card {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.bannersSwiper .swiper-slide:not(.swiper-slide-active) .banner-card {
    opacity: 0.7;
}

/* Strzałki nawigacji - przezroczyste */
.bannersSwiper .swiper-button-prev,
.bannersSwiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.bannersSwiper .swiper-button-prev:hover,
.bannersSwiper .swiper-button-next:hover {
    background: rgba(43, 87, 151, 0.2);
    border-color: var(--primary);
}

.bannersSwiper .swiper-button-prev::after,
.bannersSwiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.bannersSwiper .swiper-button-prev {
    left: 5%;
}

.bannersSwiper .swiper-button-next {
    right: 5%;
}

/* Paginacja - kropki przezroczyste */
.bannersSwiper .swiper-pagination {
    bottom: 0;
}

.bannersSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(43, 87, 151, 0.2);
    border: 2px solid var(--primary);
    opacity: 1;
    transition: all 0.3s ease;
}

.bannersSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Banner Card */
.banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-lg);
}

.swiper-slide-active .banner-card {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.banner-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

/* Logo w prawym górnym rogu */
.banner-logo-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: transparent;
    padding: 12px 15px;
    border-radius: 10px;
}

.banner-logo-corner .banner-logo {
    max-height: 52px;
    max-width: 156px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Logo bez poświaty */
.banner-logo-corner.no-glow .banner-logo {
    filter: none;
}

/* Logo po lewej stronie */
.banner-logo-corner.logo-left {
    right: auto;
    left: 15px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
    filter: brightness(1.1) saturate(1.1);
}

.banner-card:hover .banner-image {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.75) 100%);
    transition: all var(--transition-normal);
}

.banner-card:hover .banner-overlay {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.8) 100%);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.banner-card:hover .banner-content {
    transform: translateY(0);
}


.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.banner-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-description {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal) 0.1s;
}

.banner-card:hover .banner-description {
    opacity: 1;
    transform: translateY(0);
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-normal) 0.2s;
}

.banner-card:hover .banner-cta {
    opacity: 1;
    transform: translateX(0);
}

.banner-cta i {
    transition: transform var(--transition-fast);
}

.banner-card:hover .banner-cta i {
    transform: translateX(5px);
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(43, 87, 151, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 87, 151, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stats-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(43, 87, 151, 0.15) 0%, transparent 40%);
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), 0 0 40px rgba(43, 87, 151, 0.1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(43, 87, 151, 0.25);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(43, 87, 151, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    position: relative;
    padding-top: 60px;
}

/* Footer wave removed - flat top */

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact,
.footer-info {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-info li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-address {
    white-space: nowrap;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =====================================================
   PAGE HEADER (Subpages)
   ===================================================== */
.page-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    text-align: center;
    padding: 120px 30px 80px;
}

.page-header.page-header-compact {
    min-height: auto;
    padding: 100px 30px 50px;
}

/* Page header background pattern removed - solid color */

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.page-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span:not(:last-child) {
    color: var(--gray-600);
}

/* Page header shape/wave removed - flat bottom */

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    padding: var(--section-padding) 0;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--accent);
    border-radius: 15px;
    z-index: -1;
}

.about-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(43, 87, 151, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* =====================================================
   VALUES SECTION
   ===================================================== */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
}

.values-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), 0 0 40px rgba(43, 87, 151, 0.1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(43, 87, 151, 0.25);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.partners-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

/* Nettuno logo - białe logo potrzebuje ciemnego tła */
.partner-logo img[src*="nettuno"] {
    background: var(--dark);
    padding: 10px 15px;
    border-radius: 8px;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.info-header {
    margin-bottom: 40px;
}

.info-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(43, 87, 151, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.info-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray-600);
    margin: 0;
}

.info-content a {
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.info-content a:hover {
    color: var(--primary);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    background-color: #25D366;
    color: #ffffff !important;
    font-size: 1.1rem;
    vertical-align: middle;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.whatsapp-link i {
    color: #ffffff !important;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: #ffffff !important;
    transform: scale(1.1);
}

.info-content p {
    margin-bottom: 8px;
}

.company-details {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 15px;
}

.company-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.bank-info {
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}

.bank-info p {
    margin: 5px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-600);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
    background: var(--gray-100);
}

.contact-form textarea {
    padding-left: 20px;
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(43, 87, 151, 0.1);
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 48px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.form-icon.textarea-icon {
    display: none;
}

.contact-form input:focus + .form-icon,
.contact-form textarea:focus + .form-icon {
    color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 87, 151, 0.4);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.alert i {
    font-size: 1.5rem;
}

.alert p {
    margin: 0;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: var(--danger);
    border: 1px solid #fecaca;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
    background: var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .bannersSwiper .swiper-slide {
        width: 380px !important;
        height: 380px !important;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        margin: 0;
        z-index: 1002;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--gray-800) !important;
        font-size: 1.1rem;
    }

    .navbar.navbar-dark .nav-menu .nav-link {
        color: var(--gray-800) !important;
    }

    .nav-container {
        padding: 0 15px;
        flex-wrap: nowrap;
    }

    .nav-logo img {
        height: 26px;
    }

    .nav-brand {
        gap: 10px;
    }

    .nav-slogan {
        display: none;
    }

    .nav-slogan-center {
        display: none;
    }

    .nav-right {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle span {
        background: var(--gray-800);
    }

    /* Navbar-dark na mobile - białe ikony przed scrollem */
    .navbar-dark .nav-toggle span {
        background: var(--white);
    }

    .navbar-dark .nav-phone {
        color: var(--white);
    }

    /* Po scrollu - ciemne ikony */
    .navbar-dark.scrolled .nav-toggle span {
        background: var(--gray-800);
    }

    .navbar-dark.scrolled .nav-phone {
        color: var(--gray-800);
    }

    .nav-phone {
        color: var(--gray-800);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Gdy menu aktywne - X ma być ciemny */
    .nav-toggle.active span {
        background: var(--gray-800) !important;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-badge {
        right: 20px;
        bottom: -20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .offer-section {
        padding: 50px 0;
    }

    .banners-slider-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bannersSwiper .swiper-slide {
        width: 320px !important;
        height: 320px !important;
    }

    .bannersSwiper .swiper-button-prev,
    .bannersSwiper .swiper-button-next {
        display: none;
    }

    .banner-logo-corner {
        top: 12px;
        right: 12px;
        padding: 8px 10px;
    }

    .banner-logo-corner .banner-logo {
        max-height: 36px;
        max-width: 104px;
    }

    .banner-content {
        padding: 20px;
        padding-bottom: 60px;
    }

    .banner-title {
        font-size: 1.1rem;
    }

    .banner-subtitle {
        font-size: 0.8rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .about-title {
        font-size: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form .form-group.full-width {
        grid-column: span 1;
    }

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

@media (max-width: 576px) {
    .offer-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .bannersSwiper .swiper-slide {
        width: 280px !important;
        height: 280px !important;
    }

    .banner-logo-corner {
        top: 10px;
        right: 10px;
        padding: 6px 8px;
    }

    .banner-logo-corner .banner-logo {
        max-height: 31px;
        max-width: 91px;
    }

    .banner-content {
        padding: 15px;
        padding-bottom: 60px;
    }

    .banner-title {
        font-size: 1rem;
    }

    .banner-subtitle {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .banner-description {
        display: none;
    }

    .banner-cta {
        font-size: 0.8rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-image-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .about-image-decoration {
        display: none;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.hidden { display: none; }
.visible { display: block; }

/* =====================================================
   FLOATING SLOGAN (mobile only)
   ===================================================== */
.floating-slogan {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(43, 87, 151, 0.2);
    border: 1px solid rgba(43, 87, 151, 0.1);
    transition: all var(--transition-normal);
    animation: floatIn 0.8s ease-out 1.5s backwards;
}

/* Hide floating-slogan on desktop (show navbar-slogan instead) */
@media (min-width: 993px) {
    .floating-slogan {
        display: none;
    }
}

.floating-slogan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(43, 87, 151, 0.3);
}

.floating-slogan img {
    height: 22px;
    width: auto;
    display: block;
}

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

/* Ukryj gdy cookie banner jest aktywny */
.cookie-banner.active ~ .floating-slogan,
.floating-slogan.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .floating-slogan {
        bottom: 15px;
        right: 15px;
        left: 15px;
        text-align: center;
        padding: 10px 15px;
    }

    .floating-slogan img {
        height: 18px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .floating-slogan img {
        height: 14px;
    }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text h4 i {
    color: var(--accent);
}

.cookie-text p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(43, 87, 151, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-600);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.cookie-btn-settings:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    display: none;
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings-panel.active {
    display: block;
}

.cookie-settings-panel h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.cookie-option-title {
    color: var(--white);
    font-weight: 600;
}

.cookie-option p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 8px 0 0 32px;
}

.cookie-settings-buttons {
    margin-top: 20px;
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text p {
        max-width: 100%;
    }

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

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-settings-buttons {
        text-align: center;
    }
}
