/* === ZMIENNE KOLORYSTYCZNE === */
:root {
    --bg: #0a0e1a;
    --surface: #111827;
    --card: #1a202e;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --silver: #cbd5e1;
    --text: #f1f5f9;
    --text-dim: #94a3b8;
    --border: rgba(59,130,246,0.15);
    --glow: rgba(59,130,246,0.25);
}

/* === RESET I PODSTAWOWE STYLE === */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img { 
    max-width: 100%; 
    display: block; 
}

a { 
    color: inherit; 
    text-decoration: none; 
}

button { 
    font-family: inherit; 
    cursor: pointer; 
    border: none; 
}

/* === ANIMOWANE TŁO === */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(6,182,212,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.04) 0%, transparent 70%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1420 50%, #0a0e1a 100%);
}

.mesh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.03) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: meshSlide 20s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59,130,246,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
}

/* === FALE SINUSOIDALNE - 3 FALE WYŚRODKOWANE === */
.ocean {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100vw;
    height: 0;
    z-index: -1;
    pointer-events: none;
}

/* Fala 1 - Górna */
.wave:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-120px);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,50 Q150,10 300,50 T600,50 T900,50 T1200,50' stroke='%2360a5fa' stroke-width='2.5' fill='none' opacity='0.4'/%3E%3C/svg%3E") center/100% 100% no-repeat;
    animation: sine-flow-1 14s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(96,165,250,0.3));
}

/* Fala 2 - ŚRODKOWA (główna, najjaśniejsza) */
.wave:nth-of-type(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-60px);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,50 Q180,5 360,50 T720,50 T1080,50 T1200,50' stroke='%233b82f6' stroke-width='4' fill='none' opacity='0.7'/%3E%3C/svg%3E") center/100% 100% no-repeat;
    animation: sine-flow-2 12s ease-in-out infinite;
    animation-delay: -2s;
    filter: drop-shadow(0 0 20px rgba(59,130,246,0.8));
    z-index: 10;
}

/* Fala 3 - Dolna */
.wave:nth-of-type(3) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(20px);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,50 Q200,0 400,50 T800,50 T1200,50' stroke='%2306b6d4' stroke-width='2.5' fill='none' opacity='0.4'/%3E%3C/svg%3E") center/100% 100% no-repeat;
    animation: sine-flow-3 13s ease-in-out infinite;
    animation-delay: -4s;
    filter: drop-shadow(0 0 8px rgba(6,182,212,0.3));
}

/* Animacje fal */
@keyframes sine-flow-1 {
    0%, 100% {
        transform: translateY(-120px) translateX(0) scaleX(1);
    }
    50% {
        transform: translateY(-120px) translateX(-2%) scaleX(1.02);
    }
}

@keyframes sine-flow-2 {
    0%, 100% {
        transform: translateY(-60px) translateX(0) scaleX(1);
    }
    50% {
        transform: translateY(-60px) translateX(2%) scaleX(1.04);
    }
}

@keyframes sine-flow-3 {
    0%, 100% {
        transform: translateY(20px) translateX(0) scaleX(1);
    }
    50% {
        transform: translateY(20px) translateX(-2%) scaleX(1.02);
    }
}

/* === PŁYWAJĄCE CZĄSTECZKI === */
.ocean-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: float-up linear infinite;
    box-shadow: 0 0 6px rgba(59,130,246,0.3);
}

.particle:nth-child(1) {
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-duration: 25s;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-duration: 22s;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-duration: 24s;
    animation-delay: 2s;
}

.particle:nth-child(5) {
    left: 70%;
    animation-duration: 21s;
    animation-delay: 5s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-duration: 23s;
    animation-delay: 4s;
}

.particle:nth-child(7) {
    left: 15%;
    animation-duration: 26s;
    animation-delay: 1s;
}

.particle:nth-child(8) {
    left: 60%;
    animation-duration: 19s;
    animation-delay: 7s;
}

.particle:nth-child(9) {
    left: 80%;
    animation-duration: 27s;
    animation-delay: 2.5s;
}

.particle:nth-child(10) {
    left: 35%;
    animation-duration: 24s;
    animation-delay: 4.5s;
}

@keyframes float-up {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(30px);
    }
}

/* === BĄBELKI === */
.bubble {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 8px rgba(6,182,212,0.4);
    animation: bubble-rise linear infinite;
}

.bubble:nth-child(11) {
    left: 20%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.bubble:nth-child(12) {
    left: 45%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.bubble:nth-child(13) {
    left: 65%;
    animation-duration: 20s;
    animation-delay: 3s;
}

.bubble:nth-child(14) {
    left: 50%;
    animation-duration: 21s;
    animation-delay: 5s;
}

.bubble:nth-child(15) {
    left: 75%;
    animation-duration: 19s;
    animation-delay: 2s;
}

@keyframes bubble-rise {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateY(-20px) scale(1);
    }
}

/* === WATERMARKI === */
.watermark {
    position: fixed;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(59,130,246,0.08);
    pointer-events: none;
    z-index: 9999;
    transform: rotate(-45deg);
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.watermark-1 {
    top: 15%;
    left: 10%;
}

.watermark-2 {
    top: 50%;
    right: 10%;
    transform: rotate(45deg);
}

.watermark-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(-35deg);
}

/* === LINKI KONTAKTOWE === */
.contact-link {
    color: var(--primary-light);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--accent-light);
    transform: translateX(3px);
}

/* === NAGŁÓWEK === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0rem 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

/* === LOGO === */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    justify-self: start;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(59,130,246,0.3));
    transition: filter 0.3s;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 6px 16px rgba(59,130,246,0.5));
}

/* === NAWIGACJA DESKTOP === */
.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop { 
        display: flex;
        align-items: center;
        gap: 2.5rem;
        justify-self: center;
    }
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: all 0.3s;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* === PRZYCISKI AKCJI === */
.nav-actions {
    display: none;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-self: end;
    }
}

.btn-outline {
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(59,130,246,0.1);
    box-shadow: 0 4px 20px var(--glow);
    transform: translateY(-2px);
}

.btn-primary {
    padding: 0.65rem 1.8rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px var(--glow);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 6px 30px var(--glow);
    transform: translateY(-3px);
}

/* === SOCIAL MEDIA === */
.social-nav {
    display: flex;
    gap: 0.6rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-light);
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(59,130,246,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* === HAMBURGER MENU === */
.hamburger {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    justify-self: end;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none !important;
    }
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === MENU MOBILNE === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(20px);
    z-index: 90;
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s;
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: var(--primary-light);
    transform: translateX(10px);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
}

/* === SEKCJA HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 2rem 4rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(59,130,246,0.1);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: gentlePulse 3s ease-in-out infinite;
}

/* === KARTA HERO === */
.hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    transition: all 0.4s;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(59,130,246,0.2);
    border-color: var(--primary);
}

.hero-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #0a0e1a;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.hero-card:hover .hero-card-image img {
    transform: scale(1.05);
}

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10,14,26,0.9) 100%);
}

.price-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 30px var(--glow);
}

.service-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    background: rgba(10,14,26,0.8);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--primary-light);
}

.hero-card-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border);
    background: rgba(26,32,46,0.5);
}

.card-stat {
    text-align: center;
}

.card-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.2rem;
}

.card-stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* === SEKCJE === */
.section {
    padding: 6rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-label::before,
.section-label::after {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* === SIATKA KORZYŚCI === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(59,130,246,0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(59,130,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s;
    border: 1px solid var(--border);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    background: rgba(59,130,246,0.15);
    border-color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* === GALERIA === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s;
    background: #0a0e1a;
    border: 1px solid var(--border);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(59,130,246,0.2);
    border-color: var(--primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10,14,26,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
}

/* === FAQ === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    color: inherit;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    color: var(--primary-light);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 1.5rem;
    color: var(--text-dim);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* === FORMULARZ === */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(10,14,26,0.6);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(59,130,246,0.15);
    background: rgba(10,14,26,0.8);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    margin: 1.5rem 0;
}

.form-checkbox input {
    margin-top: 0.2rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* === STOPKA === */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(59,130,246,0.3));
}

.footer-tagline {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.footer-column h4 {
    margin-bottom: 1.2rem;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
}

.footer-column p {
    color: var(--text-dim);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-nav-link {
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-align: left;
}

.footer-nav-link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--primary-light);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: underline;
}

.footer-link:hover {
    color: var(--accent-light);
}

/* === MODAL POLITYKI PRYWATNOŚCI === */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.privacy-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.privacy-content {
    max-width: 900px;
    width: 100%;
    background: var(--card);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 3rem;
    position: relative;
    margin: 2rem auto;
    animation: slideUp 0.4s ease-out;
}

.privacy-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(59,130,246,0.1);
    color: var(--primary-light);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.privacy-close:hover {
    background: rgba(59,130,246,0.2);
    transform: rotate(90deg);
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-light);
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--accent-light);
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dim);
}

.privacy-content ul, 
.privacy-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-dim);
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-content strong {
    color: var(--text);
}

.privacy-date {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* === ANIMACJE === */
@keyframes meshSlide {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gentlePulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1023px) {
    .header {
        padding: 0.3rem 1.5rem;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
    }

    .logo-image {
        height: 90px;
    }

    .hero {
        padding: 9rem 1.5rem 3rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .form-container > form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .logo-image {
        height: 75px;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .watermark {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1;
    }

    /* Dostosuj fale na mobile */
    .wave:nth-of-type(1) {
        transform: translateY(-100px);
    }

    .wave:nth-of-type(2) {
        transform: translateY(-50px);
    }

    .wave:nth-of-type(3) {
        transform: translateY(0);
    }

    @keyframes sine-flow-1 {
        0%, 100% {
            transform: translateY(-100px) translateX(0) scaleX(1);
        }
        50% {
            transform: translateY(-100px) translateX(-2%) scaleX(1.02);
        }
    }

    @keyframes sine-flow-2 {
        0%, 100% {
            transform: translateY(-50px) translateX(0) scaleX(1);
        }
        50% {
            transform: translateY(-50px) translateX(2%) scaleX(1.04);
        }
    }

    @keyframes sine-flow-3 {
        0%, 100% {
            transform: translateY(0) translateX(0) scaleX(1);
        }
        50% {
            transform: translateY(0) translateX(-2%) scaleX(1.02);
        }
    }

    .particle, .bubble {
        display: none;
    }
}
