/* RESET I ZMIENNE */
:root {
    --bg-dark: #000000;
    --text-main: #f5f5f7;
    --text-muted: #86868b;
    --accent: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {background-color: var(--bg-dark); color: var(--text-main); font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased; scrollbar-width: none; overflow-x: hidden;}
body::-webkit-scrollbar {display: none;}

.container {max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;}
.text-gradient {background: linear-gradient(90deg, #ffffff 0%, #86868b 100%); 
    -webkit-background-clip: text; background-clip: text; color: transparent;}
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.1; }
/* === HEADER === */
.hdr-header {position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;  background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.3s ease;}
.hdr-container {max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    height: 5rem; display: flex; justify-content: space-between; align-items: center;}
@media (min-width: 768px) {.hdr-container {padding: 0 3rem;}.hdr-nav {display: flex;}}
.hdr-logo-link {display: flex; align-items: center; gap: 0.85rem; z-index: 110; text-decoration: none;}
.hdr-logo-img {height: 32px; width: auto; object-fit: contain;}
.hdr-logo-text-col {display: flex; flex-direction: column; justify-content: center;line-height: 0.9;
    font-family: 'Montserrat', sans-serif; text-transform: uppercase;background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;}
.hdr-line-1 {font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;}
.hdr-line-2 {font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em;}
.hdr-nav {display: none; align-items: center; gap: 2rem; z-index: 110;}
.hdr-nav-link {font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500; 
    color: #9ca3af; text-decoration: none; transition: color 0.3s ease;}
.hdr-nav-link:hover {color: #ffffff;}
.hdr-actions { display: flex; align-items: center; gap: 1rem; z-index: 110; }
.hdr-btn-panel {display: none; align-items: center; gap: 0.5rem; background-color: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.625rem 1.25rem; border-radius: 999px; font-family: 'Inter', sans-serif; 
    font-size: 0.75rem; font-weight: 600; color: #fff; text-decoration: none; transition: all 0.3s;}
@media (min-width: 640px) { .hdr-btn-panel { display: flex; } }
.hdr-btn-panel:hover { background-color: rgba(255,255,255,0.12);
    border-color: rgba(255, 255, 255, 0.25);box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
.hdr-btn-panel i { width: 0.875rem; height: 0.875rem; color: #9ca3af; transition: color 0.3s; }
.hdr-btn-panel:hover i { color: #fff; }

a, button, #menu-toggle-btn {-webkit-tap-highlight-color: transparent !important;}
.hdr-burger-wrap { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;}
@media (min-width: 768px) { .hdr-burger-wrap { display: none; } .hdr-nav {display: flex !important;}}
#menu-toggle-btn {padding: 0; background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.1); outline: none;
    width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; cursor: pointer; z-index: 120;
    transition: background-color 0.2s, border-color 0.2s;}
.burger-icon { position: relative; width: 20px; height: 20px; }
.burger-line {position: absolute; left: 0; top: 50%; margin-top: -1px; width: 20px; height: 2px;
    background-color: #d1d5db; border-radius: 2px; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;}
.burger-line:nth-child(1) { transform: translateY(-6px); }
.burger-line:nth-child(2) { transform: translateY(0); opacity: 1; }
.burger-line:nth-child(3) { transform: translateY(6px); }

#menu-toggle-btn.is-active { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); }
#menu-toggle-btn.is-active .burger-line { background-color: #ffffff; }
#menu-toggle-btn.is-active .burger-line:nth-child(1) { transform: translateY(0) rotate(45deg); }
#menu-toggle-btn.is-active .burger-line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
#menu-toggle-btn.is-active .burger-line:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.hdr-mobile-root { position: fixed; inset: 0; z-index: 9998; display: none; width: 100vw; height: 100vh; }
.hdr-mobile-root.is-visible { display: block; }
.hdr-mobile-bg {position: absolute; inset: 0; background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transform: scale(0.98); transition: all 0.3s ease-out;}
.hdr-mobile-bg.is-open { opacity: 1; transform: scale(1); }
.hdr-mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-link { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.mobile-link:hover { color: #fff; }
.hdr-mobile-divider { width: 3rem; height: 1px; background: rgba(255,255,255,0.1); margin: 2rem 0; }
.mobile-btn { font-family: 'Inter', sans-serif; font-size: 1.125rem; color: #fff; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); padding: 1rem 3rem; border-radius: 999px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.mobile-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* === FOOTER === */
.ftr-section {background-color: var(--bg-dark, #000); padding: 6rem 0 2rem 0; margin-top: auto;  position: relative; border-top: none;}
.ftr-section::before {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(102, 102, 102, 0.6) 50%, transparent 100%); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);}

.ftr-top-grid {display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 5rem;}
.ftr-brand-col {display: flex; flex-direction: column; align-items: flex-start;}
.ftr-logo {margin-bottom: 1.5rem;}
.ftr-desc {font-size: 0.95rem; color: #64748b; line-height: 1.6; max-width: 320px;}
.ftr-col-title {font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: #ffffff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem;}

.ftr-links {list-style: none; display: flex; flex-direction: column; gap: 1rem;}
.ftr-links a {font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #9ca3af; text-decoration: none; transition: color 0.3s ease;}
.ftr-links a:hover {color: #ffffff;}

.ftr-bottom {display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); gap: 1.5rem;}

.ftr-copyright {font-size: 0.85rem; color: #64748b;}

.ftr-socials {display: flex; gap: 1.5rem;}
.ftr-socials a {color: #64748b; transition: color 0.3s ease, transform 0.3s; display: flex; align-items: center; justify-content: center;}
.ftr-socials a:hover {color: #ffffff; transform: translateY(-2px);}
.ftr-socials i, .ftr-socials svg {width: 20px; height: 20px;}

@media (min-width: 640px) {.ftr-bottom {flex-direction: row;}}
@media (min-width: 768px) {.ftr-top-grid {grid-template-columns: repeat(2, 1fr);}}
@media (min-width: 1024px) {.ftr-top-grid {grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;}}

/* ========================================= */
/* === MAIN PAGE === */
/* ========================================= */

/* === HERO SECTION === */
.hero-section {
    position: relative;  
    min-height: 100vh; 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    padding-top: 12rem; 
    margin-bottom: 14rem; 
    background: radial-gradient(circle at center top, rgba(60, 60, 80, 0.5) 0%, #000000 35%); 
    background-color: #000;
    overflow: visible; 
}

.hero-ambient {
    position: absolute; 
    top: 30%; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    z-index: 0; 
    mix-blend-mode: screen; 
    pointer-events: none;
    opacity: 0; 
    animation: cinemaAmbientReveal 5s cubic-bezier(0.2, 0, 0.2, 0) forwards;
}

.hero-content {
    position: relative; 
    z-index: 10; 
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: cinemaContentReveal 4s cubic-bezier(0.2, 0, 0.2, 1) 0.5s forwards;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1050px;
}

.hero-gradient-green-text {
    background: linear-gradient(90deg, #ffffff 0%, hsl(118, 100%, 80%) 100%); 
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-title { 
    font-size: clamp(3.5rem, 8vw, 5.5rem); 
    font-weight: 800; 
    line-height: 1.05;
    margin-bottom: 1.5rem; 
    letter-spacing: -0.04em;
    color: #fff;
}

.hero-desc { 
    font-size: 1.25rem; 
    color: #94a3b8;
    margin-bottom: 0; 
    line-height: 1.6;
}

.blender-video-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 8rem;
    position: relative;
    border: none !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
@keyframes cinemaAmbientReveal {
    0% { 
        opacity: 0;
    }
    100% { 
        opacity: 0.9;
    }
}

@keyframes cinemaContentReveal {
    0% { 
        opacity: 0;
        transform:scale(0.97)
    }
    100% { 
        opacity: 1;
        transform:scale(1)
    }
}
@media (max-width: 768px) {
    .hero-section {padding-top: 10rem;  min-height: 100svh;  margin-bottom: 8rem; background: radial-gradient(circle at center top, rgba(60, 60, 80, 0.6) 0%, #000000 30%);}
    .hero-title {font-size: clamp(3rem, 11vw, 4rem);  margin-bottom: 2rem;}
    .hero-desc {font-size: 1.15rem; }
    .blender-video-container {margin-top: 4rem;}
}

/* === SEKCJA BENTO BOX === */
.bento-section {
    padding: 18rem 0 12rem 0;
    width: 100%;
    text-align: left !important;}
.section-label {
    font-size: 0.85rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.1em;
    display: block; margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
    margin-bottom: 5rem; max-width: 800px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}
.bento-item {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    display: flex; flex-direction: column;
}
.bento-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}
.bento-large { grid-column: span 12; grid-row: span 2; }
.bento-medium { grid-column: span 12; grid-row: span 1; }
.bento-wide { grid-column: span 12; grid-row: span 1; }
@media (min-width: 768px) {
    .bento-large { grid-column: span 6; grid-row: span 2; }
    .bento-medium { grid-column: span 6; grid-row: span 1; }
    .bento-wide { grid-column: span 12; grid-row: span 1; }
}
@media (min-width: 1024px) {
    .bento-large { grid-column: span 8; grid-row: span 2; }
    .bento-medium { grid-column: span 4; grid-row: span 1; }
    .bento-wide { grid-column: span 12; grid-row: span 1; height: 300px; }
}
.bento-content { z-index: 10; position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end;}
.bento-large .bento-content { justify-content: flex-start; }
.bento-icon { width: 32px; height: 32px; color: var(--accent); margin-bottom: 1.5rem; }
.bento-icon-shield { width: 32px; height: 32px; color: #1067b9; margin-bottom: 1.5rem; }
.bento-icon-large { width: 64px; height: 64px; color: rgba(255,255,255,0.2); }
.bento-item h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: #fff; }
.bento-item p { font-size: 1rem; color: #94a3b8; line-height: 1.5; max-width: 400px; }
.bento-content-row { display: flex; justify-content: space-between; width: 100%; height: 100%; }
.bento-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
} 
.glow-red {width: 400px; height: 400px; bottom: -150px; right: -150px;
    background: radial-gradient(circle, rgba(46, 79, 168, 0.25) 0%, transparent 70%);}
.glow-green {width: 500px; height: 500px; top: -200px; left: -100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);}
.bento-image-wrapper {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 480px;
    height: auto;
    z-index: 5; 
    pointer-events: none; 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-3d-render {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
    .bento-image-wrapper {
        position: relative; 
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 2rem; 
        display: flex;
        justify-content: center;
        align-items: center;
        transform: none;
    }
    
    .bento-item:hover .bento-image-wrapper {
        transform: scale(1.02); 
    }
}
/* === SEKCJA MAGII (USE CASES) === */
.use-cases-section {
    padding: 6rem 0 10rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.use-cases-header {
    margin-bottom: 5rem;
}

.use-cases-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.uc-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 3rem;
    align-items: center;
}

.uc-card:nth-child(1) {
    background: radial-gradient(circle at 0% 0%, rgba(60, 60, 80, 0.45) 0%, #09090b 80%);
}
.uc-card:nth-child(2) {
    background: radial-gradient(circle at 100% 0%, rgba(60, 60, 80, 0.45) 0%, #09090b 80%);
}

@media (min-width: 1024px) {
    .uc-card {
        grid-template-columns: 1fr 1.2fr;
        padding: 4rem;
        gap: 5rem;
    }
    .uc-card:nth-child(even) .uc-content { order: 2; }
    .uc-card:nth-child(even) .uc-terminal { order: 1; }
}

.uc-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 1.5rem; }
.uc-icon-blue { width: 40px; height: 40px; color: #3b82f6; margin-bottom: 1.5rem; }

.uc-content h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.uc-content p { font-size: 1.1rem; color: #94a3b8; line-height: 1.6; margin-bottom: 2rem; }

.uc-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.uc-features li { display: flex; align-items: center; gap: 0.75rem; color: #e2e8f0; font-weight: 500; }
.uc-features li i { width: 20px; height: 20px; color: var(--accent); }
.uc-card:nth-child(even) .uc-features li i { color: #3b82f6; }

.uc-terminal {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.uc-terminal::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 100px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.uc-terminal.terminal-blue::before {
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
.term-brand-wrap {
    display: flex; 
    align-items: center; 
    gap: 0.6rem;
    margin-right: 0.6rem; 
}

.term-brand-img { 
    height: 18px;
    width: auto; 
    object-fit: contain; 
}

.term-brand-text {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    line-height: 0.9; 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent;
}
.term-line-1 { font-weight: 800; font-size: 0.75rem; letter-spacing: -0.02em; }
.term-line-2 { font-weight: 700; font-size: 0.65rem; letter-spacing: -0.02em; }

.terminal-title {
    margin-left: auto;
    font-size: 0.8rem; 
    color: #64748b; 
    font-weight: 600;
    letter-spacing: 0.02em;
}
.terminal-body {
    padding: 2rem;
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.term-input { color: #fff; margin-bottom: 0.5rem; }
.term-system { color: #64748b; margin-bottom: 1.5rem; font-size: 0.8rem; }
.term-output {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    color: #a7f3d0;
}
.terminal-blue .term-output {
    border-left-color: #3b82f6;
    color: #bfdbfe;
}
.term-output p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.term-output p:last-child { margin-bottom: 0; }

/* === SEKCJA POD MASKĄ === */
.specs-section {padding: 8rem 0 10rem 0; position: relative;}
.specs-header {text-align: center; margin-bottom: 5rem; display: flex; flex-direction: column; align-items: center;}
.specs-header .section-title {margin-bottom: 0;}
.hw-card {background: #09090b; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 32px;
padding: 3rem; position: relative; overflow: hidden; margin-bottom: 3rem; box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);}
.hw-grid {display: grid; grid-template-columns: 1fr; gap: 4rem; position: relative; z-index: 2;}

@media (min-width: 1024px) {
    .hw-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        padding: 2rem;
    }
}

.hw-main-icon {
    width: 48px;
    height: 48px;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hw-text-col h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hw-text-col p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hw-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hw-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

.hw-detail-item i {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

.hw-stats-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box.box-accent {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.box-accent .stat-value {
    color: var(--accent);
}

.stat-unit {
    font-size: 1.5rem;
    color: #94a3b8;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}

/* Linie w tle karty sprzętowej */
.hw-deco-lines {
    position: absolute;
    top: 0; right: 0; bottom: 0; width: 50%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    opacity: 0.5;
}

.sw-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sw-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sw-card {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, background 0.3s;
}

.sw-card:hover {
    transform: translateY(-5px);
    background: #0a0a0c;
    border-color: rgba(255, 255, 255, 0.1);
}

.sw-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sw-icon-wrap i {
    width: 24px;
    height: 24px;
    color: #fff;
}

.sw-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.sw-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}
/* ========================================= */
/* === CALL TO ACTION (CTA) === */
/* ========================================= */
.cta-section {
    padding: 6rem 0 12rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes floatObject {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.cta-floating-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floatObject 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}

.cta-glow-behind {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-desc {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}
.cta-btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.cta-btn-primary i {
    width: 20px; height: 20px;
    transition: transform 0.3s;
}
.cta-btn-primary:hover {
    transform: scale(1.05);
    background-color: #f8fafc;
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}
.cta-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}
.cta-btn-secondary:hover {background-color: rgba(255, 255, 255, 0.1); border-color: #fff;}

/* ========================================= */
/* === STRONA SYSTEM RASTE AI === */
/* ========================================= */

/* === HERO SECTION === */
.system-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 12rem;
    margin-bottom: 14rem;
    overflow: visible;
    background: radial-gradient(circle at center top, rgba(45, 51, 83, 0.5) 0%, #000000 35%);
    background-color: #000;
}
.system-hero-ambient {
    position: absolute;
    top: 30%; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    mix-blend-mode: screen;
    opacity: 0.9; 
    z-index: 0;
    pointer-events: none;
}
.system-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.text-blue-hero-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #93ddfa 45%, #4fbeff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.system-hero-text {
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.system-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem); 
    font-weight: 800;
    line-height: 1.05; 
    margin-bottom: 1.5rem; 
    letter-spacing: -0.04em;
    color: #fff;
}
.system-desc {
    font-size: 1.25rem; 
    color: #94a3b8; 
    line-height: 1.6; 
    margin-bottom: 6rem; 
    max-width: 700px;
}
.system-hero-visual {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.system-glow-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.system-core-img {position: relative; z-index: 2; width: 100%; height: auto; object-fit: contain;
    animation: majesticFloat 8s ease-in-out infinite alternate; filter: drop-shadow(0 50px 80px rgba(0,0,0,0.9));}
@keyframes majesticFloat {0% {transform: translateY(0px) scale(1);} 100% {transform: translateY(-20px) scale(1.01);}}
@media (max-width: 768px) {
    .system-hero { padding-top: 10rem;}
    .system-title { font-size: clamp(2.8rem, 11vw, 4rem); }
    .system-desc {font-size: 1.15rem; text-shadow: 0 1px 4px rgba(0,0,0,1), 0 4px 8px rgba(0,0,0,0.9);} 
}

/* === SEKCJA 1: AKCELERATOR (ARENA GPU) === */
.gpu-showcase-section {
    position: relative;
    padding: 8rem 0 10rem 0;
    background-color: #000;
    overflow: hidden;
}
.gpu-header {text-align: center; max-width: 800px; margin: 0 auto 4rem auto; display: flex;
    flex-direction: column; align-items: center; z-index: 10; position: relative;}
.gpu-title {font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin-bottom: 1.5rem;}
.gpu-desc {font-size: 1.15rem; color: #94a3b8; line-height: 1.6; max-width: 650px;}
.gpu-arena {position: relative; width: 100%; display: flex; justify-content: center; align-items: center; padding: 4rem 0 8rem 0;}
.gpu-arena-bg-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
}
.gpu-massive-img {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 5rem;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 50px 60px rgba(0,0,0,0.8));
    animation: floatArena 8s ease-in-out infinite alternate;
}

@keyframes floatArena {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-20px) scale(1.02); }
}
.gpu-spec-cards {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -120px; 
}

.spec-card {position: relative; background: linear-gradient(145deg, rgba(20, 20, 25, 0.8) 0%, rgba(5, 5, 8, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(150%); -webkit-backdrop-filter: blur(30px) saturate(150%);
    border-radius: 24px; padding: 3.5rem 2.5rem; display: flex; flex-direction: column; align-items: flex-start;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6); overflow: hidden; transition: transform 0.4s ease, border-color 0.4s;}
.spec-card::before {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(16, 109, 185, 0.1) 0%, transparent 70%); pointer-events: none;}
.spec-value {font-family: 'JetBrains Mono', monospace; font-size: 4rem; font-weight: 700; color: #fff; line-height: 1;
    letter-spacing: -0.05em; display: flex; align-items: baseline; margin-bottom: 0.5rem; position: relative;  z-index: 2;}
.spec-plus {font-size: 3.5rem; font-weight: 700; color: #fff; margin-left: 2px;}
.spec-unit {font-family: 'Inter', sans-serif; font-size: 1.25rem; color: var(--accent); margin-left: 0.5rem; font-weight: 600; letter-spacing: 0;}
.spec-name {font-size: 0.95rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; position: relative; z-index: 2;}
@media (max-width: 1024px) {.gpu-massive-img {max-width: 90%;}.gpu-spec-cards {gap: 1.5rem; margin-top: -80px;} .spec-value {font-size: 3rem;}}
@media (max-width: 768px) {.gpu-spec-cards {grid-template-columns: 1fr; margin-top: -40px;}.spec-card {padding: 2rem 1.5rem;}}

/* === SEKCJA 2: BAZA WEKTOROWA (PANORAMA) === */
.system-semantic-section {position: relative; padding: 8rem 0 12rem 0; background-color: var(--bg-dark);}
.semantic-header {text-align: center; max-width: 800px; margin: 0 auto 6rem auto; display: flex; flex-direction: column; align-items: center;}
.semantic-title {font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin-bottom: 1.5rem;}
.text-blue-gradient {background: linear-gradient(90deg, #73d5ff 0%, #354e94 100%); -webkit-background-clip: text; background-clip: text; color: transparent;}
.semantic-desc {font-size: 1.15rem; color: #94a3b8; line-height: 1.6; max-width: 650px;}
.semantic-panorama-wrapper {position: relative; width: 100%; height: 400px; border-radius: 32px;
    overflow: hidden; margin-bottom: 6rem; border: 1px solid rgba(255, 255, 255, 0.05); background: #050505;}
@media (min-width: 1024px) {.semantic-panorama-wrapper {height: 500px;}}
.semantic-panorama-glow {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60%; height: 60%;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.15) 0%, transparent 70%); z-index: 1; pointer-events: none;}
.semantic-panorama-img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; opacity: 0.8; transition: transform 10s ease-out;}
.semantic-panorama-wrapper:hover .semantic-panorama-img {transform: scale(1.05);}
.panorama-ui-overlay {position: absolute; bottom: 2rem; left: 2rem; z-index: 5; display: flex; align-items: center; gap: 1rem;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.1);}
.ui-point {width: 8px; height: 8px; background-color: #38bdf8; border-radius: 50%; box-shadow: 0 0 10px #38bdf8; animation: pulseBlue 2s infinite;}
.ui-text {font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: #e2e8f0; letter-spacing: 0.05em; text-transform: uppercase;}
@keyframes pulseBlue {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }}
.semantic-pillars {display: grid; grid-template-columns: 1fr; gap: 3rem;}
@media (min-width: 768px) {.semantic-pillars {grid-template-columns: repeat(3, 1fr); gap: 2rem;}}
@media (min-width: 1024px) {.semantic-pillars {gap: 4rem;}}
.pillar-item {display: flex; flex-direction: column; align-items: flex-start;}
.pillar-icon {width: 32px; height: 32px; color: #51bbe9; margin-bottom: 1.5rem;}
.pillar-title {font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem;}
.pillar-desc {font-size: 1rem; color: #94a3b8; line-height: 1.6;}

/* === SEKCJA 3: AIR-GAPPED (SKARBIEC) === */
.system-airgap-section {
    padding: 6rem 0 12rem 0;
    background-color: var(--bg-dark);
}
.airgap-vault {
    background: linear-gradient(145deg, #09090b 0%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 48px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .airgap-vault {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 6rem;
    }
}
.airgap-vault::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(56, 189, 248, 0.03) 0%, transparent 100%);
    pointer-events: none;
}
.airgap-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}
.shield-icon-wrapper {
    width: 48px; height: 48px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.shield-icon-wrapper i {
    width: 24px; height: 24px;
    color: #38bdf8;
}
.airgap-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}
.airgap-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.5rem;
}
.airgap-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.airgap-desc-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 3.5rem;
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
}
.airgap-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    transition: background 0.3s, transform 0.3s;
}

.security-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.security-badge i {
    width: 20px; height: 20px;
    color: #38bdf8;
}

.security-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
}
.airgap-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.airgap-glow-safe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}
.airgap-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
    animation: floatAirgap 6s ease-in-out infinite alternate;
}
@keyframes floatAirgap {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .airgap-vault {
        padding: 4rem 3rem;
    }
}
@media (max-width: 768px) {
    .airgap-vault {
        padding: 3rem 2rem;
        border-radius: 32px;
    }
    .airgap-visual {
        order: -1;
        margin-bottom: 2rem;
    }
}
/* === SEKCJA 4: SILNIK WIZYJNY (OCR & KSeF) === */
.system-vision-section {
    padding: 10rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.vision-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision-label {
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #a855f7; /* Amethyst Purple */
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    margin-bottom: 1.5rem;
}

.vision-title {
    font-size: clamp(3rem, 5vw, 4.5rem); 
    font-weight: 800; 
    line-height: 1.1;
    letter-spacing: -0.03em; 
    color: #fff; 
    margin-bottom: 2rem;
}

.text-purple {
    background: linear-gradient(90deg, #d8b4fe 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vision-desc {
    font-size: 1.2rem; 
    color: #94a3b8; 
    line-height: 1.6; 
    max-width: 650px;
}

/* Czysta siatka dwóch kolumn */
.vision-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vision-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Minimalistyczny blok cechy */
.v-feature-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Duże, czyste ikony */
.v-icon-massive {
    margin-bottom: 2rem;
}

.v-icon-massive i, 
.v-icon-massive svg {
    width: 56px; 
    height: 56px; 
    color: #a855f7;
}

.v-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.v-text {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
    .vision-features-grid {
        gap: 3rem;
    }
    .v-feature-block {
        align-items: center;
        text-align: center;
    }
    .v-icon-massive i, 
    .v-icon-massive svg {
        width: 48px; 
        height: 48px; 
    }
    .v-heading {
        font-size: 1.5rem;
    }
}
/* ========================================= */
/* === SEKCJA 5: SILNIK KOGNITYWNY (LLM) === */
/* ========================================= */
.system-logic-section {
    padding: 10rem 0 12rem 0;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logic-header {
    text-align: center;
    margin-bottom: 6rem;
}

.logic-label {
    font-size: 0.85rem; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; display: block;
}

.logic-title {
    font-size: clamp(3rem, 8vw, 5rem); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: #fff; margin: 0;
}

.text-silver {
    background: linear-gradient(140deg, #f8fafc 20%, #8b9ab1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Układ Zig-Zag (Naprzemienny - Rozszerzony) */
.logic-zig-zag {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.logic-block {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 900px;
}

/* Wyrównanie do lewej */
.align-left {
    margin-right: auto;
    flex-direction: row;
    text-align: left;
}

/* Wyrównanie do prawej (Odwrócony układ) */
.align-right {
    margin-left: auto;
    flex-direction: row-reverse;
    text-align: right;
}

/* Wielkie, majestatyczne szklane pudełka */
.logic-icon-massive {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 32px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.logic-icon-massive i, 
.logic-icon-massive svg {
    width: 80px;
    height: 80px;
    color: #f8fafc;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

/* Tekst - "Czyste mięso" */
.logic-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.logic-meat {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Responsywność dla telefonów (Pionowy układ i bezpieczne marginesy) */
@media (max-width: 768px) {
    .logic-header {
        padding: 0 1.5rem;
    }
    .logic-zig-zag { 
        gap: 4rem; 
        padding: 0 1.5rem; /* <-- DODANE: Elegancki odstęp od lewej i prawej krawędzi ekranu */
    }
    .logic-block {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem;
    }
    .logic-icon-massive { width: 100px; height: 100px; border-radius: 24px; }
    .logic-icon-massive i, 
    .logic-icon-massive svg { width: 48px; height: 48px; }
    .logic-heading { font-size: 1.8rem; }
    .logic-meat { font-size: 1.1rem; }
}
/* ========================================= */
/* === SEKCJA 6: INTERFEJS UŻYTKOWNIKA === */
/* ========================================= */
.system-interface-section {
    padding: 10rem 0 12rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.interface-header {
    max-width: 800px;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interface-label {
    font-size: 0.85rem; font-weight: 700; color: #38bdf8;
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}

.interface-title {
    font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: #fff; margin-bottom: 1.5rem;
}

.interface-subtitle {
    font-size: 1.25rem; color: #94a3b8; font-weight: 500; margin: 0;
}

/* WIZUALNY PRZEPŁYW (USER FLOW) */
.interface-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.flow-icon {
    width: 80px; height: 80px;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 24px;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.flow-icon i, .flow-icon svg {
    width: 32px; height: 32px;
    color: #38bdf8;
}

.flow-step h4 {
    font-size: 1.25rem; font-weight: 700; color: #fff;
    margin-bottom: 0.5rem; letter-spacing: -0.01em;
}

.flow-step span {
    font-size: 0.95rem; color: #64748b; line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* Łączniki wizualne z animacją strumienia danych */
.flow-divider {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 1rem;
    position: relative;
    top: -45px; /* Wyrównanie do poziomu ikon */
    overflow: hidden;
}

.flowing-light {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    animation: dataFlow 3s linear infinite;
}

@keyframes dataFlow {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Responsywność dla telefonów (Zmiana w układ pionowy) */
@media (max-width: 768px) {
    .interface-flow {
        flex-direction: column;
        gap: 3rem;
    }
    .flow-divider {
        width: 2px; height: 60px;
        margin: 0; top: 0;
    }
    .flowing-light {
        width: 100%; height: 50%;
        top: -100%; left: 0;
        background: linear-gradient(180deg, transparent, #38bdf8, transparent);
        animation: dataFlowVertical 3s linear infinite;
    }
    @keyframes dataFlowVertical {
        0% { top: -100%; }
        100% { top: 200%; }
    }
}

/* --- STYLE DLA ZAKOMENTOWANEJ WIZUALIZACJI --- */
.interface-visual-wrapper {
    position: relative;
    width: 100%; max-width: 1100px;
    margin: 6rem auto 0 auto;
    display: flex; justify-content: center;
}
.interface-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.1) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
}
.interface-mac-window {
    position: relative; z-index: 2; width: 100%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}
.interface-img { width: 100%; height: auto; display: block; }
/* ========================================= */
/* === SEKCJA 7: CALL TO ACTION (CTA) === */
/* ========================================= */
.system-cta-section {
    position: relative;
    padding: 18rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.system-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/img/HERO_Testbackground_blue.webp'); 
    background-size: cover;
    background-position: center; 
    z-index: 1;
    animation: slowPan 15s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform;
    opacity: 0.6;
}
@keyframes slowPan {
    0% { 
        transform: scale(1) translate(0px, 0px); 
    }
    100% { 
        transform: scale(1.15) translate(-10px, -5px); 
    }
}
.system-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.cta-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Duże, majestatyczne przyciski CTA */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* Primary Button - Biały, mocno kontrastowy */
.btn-primary-massive {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #000;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 999px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-primary-massive:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-primary-massive i,
.btn-primary-massive svg {
    width: 20px; height: 20px;
}

/* Secondary Button - Szklany, minimalistyczny */
.btn-secondary-massive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s, border-color 0.3s;
    text-decoration: none;
}

.btn-secondary-massive:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    .system-cta-bg {
    height: 60%;
    top: 20%;
    opacity: 0.8;}
}
/* ========================================= */
/* === STRONA ROZWIĄZANIA HERO SECTION  === */
/* ========================================= */

/* === HERO SECTION (ROZWIĄZANIA) === */
.solutions-hero {position: relative; min-height: 100vh; width: 100%; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 12rem;
    margin-bottom: 14rem; background: radial-gradient(circle at center top, rgba(70, 55, 30, 0.5) 0%, #000000 40%); background-color: #000; overflow: visible;}
.solutions-hero-ambient {
    position: absolute;
    top: 30%; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    mix-blend-mode: screen;
    opacity: 0.9; 
    z-index: 0;
    pointer-events: none;
}

.solutions-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solutions-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
}

.solutions-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem); 
    font-weight: 800;
    line-height: 1.05; 
    margin-bottom: 1.5rem; 
    letter-spacing: -0.04em;
    color: #fff;
}

.text-gold {
    background: linear-gradient(90deg, #fff3ae 0%, #f8b02a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.solutions-desc {
    font-size: 1.25rem; 
    color: #cbd5e1; 
    line-height: 1.6; 
    margin-bottom: 6rem; 
    max-width: 700px;
}

.solutions-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutions-btn-scroll {
    gap: 0.5rem;
}

.solutions-btn-scroll i,
.solutions-btn-scroll svg {
    width: 20px; 
    height: 20px; 
}

/* Responsywność */
@media (max-width: 768px) {
    .solutions-hero { 
        padding-top: 10rem; 
    }
    .solutions-title { 
        font-size: clamp(2.8rem, 11vw, 4rem); 
    }
    .solutions-desc { 
        font-size: 1.15rem; 
        text-shadow: 0 1px 4px rgba(0, 0, 0, 1), 0 4px 8px rgba(0, 0, 0, 0.9);
    }
}
/* ========================================= */
/* === SEKCJA 2: KALKULATOR ROI (ZYSK) === */
/* ========================================= */
.roi-section {
    padding: 10rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.roi-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roi-title {
    font-size: clamp(3rem, 5vw, 4.5rem); 
    font-weight: 800; 
    line-height: 1.1;
    letter-spacing: -0.03em; 
    color: #94a3b8; /* Zmatowiony tekst bazowy */
    margin-bottom: 1.5rem;
}

.text-white { color: #fff; }

.roi-desc {
    font-size: 1.25rem; 
    color: #cbd5e1; 
    line-height: 1.6; 
    max-width: 700px;
}

/* Siatka Porównawcza */
.roi-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .roi-comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Wspólne style dla kart */
.roi-card {
    border-radius: 24px;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.roi-card-header {
    margin-bottom: 2.5rem;
}

.roi-card-header i, 
.roi-card-header svg {
    width: 36px; height: 36px;
    margin-bottom: 1rem;
}

.roi-card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.roi-card-header span {
    font-size: 1.1rem;
    font-weight: 500;
}

.roi-cost {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.roi-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.roi-period {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.roi-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.roi-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.roi-list i, 
.roi-list svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* -- STYLE SPECYFICZNE DLA KARTY: Tradycyjny Model -- */
.traditional-model {
    background: #09090b;
    border: 1px solid rgba(255,255,255,0.05);
    color: #64748b; /* Wyciszony kolor */
}

.traditional-model .roi-card-header i { color: #64748b; }
.traditional-model .roi-card-header h3 { color: #94a3b8; }
.traditional-model .roi-amount { color: #94a3b8; }
.traditional-model .roi-list i { color: #ef4444; /* Czerwone krzyżyki */ }

/* -- STYLE SPECYFICZNE DLA KARTY: Raste AI -- */
.raste-model {
    background: linear-gradient(180deg, rgba(20, 20, 22, 1) 0%, rgba(10, 10, 12, 1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3); /* Złota ramka */
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 1px 0 rgba(251, 191, 36, 0.2);
    position: relative;
    transform: scale(1.02); /* Lekko powiększona by dominować */
}

/* Złota poświata w tle karty Raste AI */
.raste-model::before {
    content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    box-shadow: 0 0 20px #fbbf24;
}

.raste-model .roi-card-header i { color: #fbbf24; }
.raste-model .roi-card-header h3 { color: #fff; }
.raste-model .roi-list { color: #cbd5e1; }
.raste-model .roi-list i { color: #10b981; /* Zielone checkmarki */ }
.raste-model .roi-list strong { color: #fff; font-weight: 700; }

/* Responsywność telefonu */
@media (max-width: 768px) {
    .roi-card { padding: 2.5rem 2rem; }
    .raste-model { transform: scale(1); margin-top: 2rem; }
    .roi-amount { font-size: 2.8rem; }
}
/* ========================================= */
/* === SEKCJA 3: SZOK REGULACYJNY (APPLE PRO) === */
/* ========================================= */
.regulatory-pro-section {padding: 10rem 0; background-color: #000;}
.reg-header {text-align: left; max-width: 1000px; margin: 0 auto 6rem auto;}
.reg-main-title {font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; text-align:center; line-height: 1.05; letter-spacing: -0.04em; color: #fff; margin: 0;}
.reg-block {display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; gap: 8rem; padding: 2rem 0;}
.reg-visual-col {flex: 0 0 35%; display: flex; flex-direction: column; align-items: flex-start;}
.reg-massive-text { font-size: clamp(5rem, 10vw, 8rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.06em; margin-bottom: 1rem;}
.text-red {background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%); -webkit-background-clip: text; background-clip: text; color: transparent;}
.text-blue {background: linear-gradient(135deg, #bae6fd 0%, #0ea5e9 100%); -webkit-background-clip: text; background-clip: text; color: transparent;}
.reg-sub-label {font-size: 1.1rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.1em;}
.reg-content-col {flex: 0 0 60%; display: flex; flex-direction: row; align-items: center; gap: 6rem;}
.reg-text-content {flex: 1; display: flex; flex-direction: column;}
.reg-giant-icon {flex-shrink: 0; width: 160px; height: 160px; display: flex; justify-content: center; align-items: center;
    -webkit-mask-image: linear-gradient(to bottom right, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 90%);
    mask-image: linear-gradient(to bottom right, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 90%);}
.reg-giant-icon i, .reg-giant-icon svg {width: 100%; height: 100%;}
.icon-safe i, .icon-safe svg {color: #10b981; filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));}
.icon-tech i, .icon-tech svg {color: #38bdf8; filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));}
.reg-heading {font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em; line-height: 1.2;}
.reg-desc {font-size: 1.25rem; color: #94a3b8; line-height: 1.6; margin-bottom: 1rem;}
.reg-desc-highlight {font-size: 1.25rem; color: #cbd5e1; line-height: 1.6; margin: 0;}
.reg-desc-highlight strong {color: #fff; font-weight: 600;}
.reg-divider {height: 1px; max-width: 1200px; margin: 6rem auto; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 50%, transparent);}
@media (max-width: 1024px) {
    .reg-header {text-align: center; margin-bottom: 4rem; }
    .reg-block {flex-direction: column;  text-align: center;  gap: 3rem;  padding: 0 1.5rem;}
    .reg-visual-col {align-items: center;}
    .reg-content-col {flex-direction: column;  text-align: center;  gap: 2rem;}
    .reg-giant-icon {width: 120px; height: 120px; -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);}
    .reg-heading {font-size: 1.8rem;}
    .reg-desc, .reg-desc-highlight {font-size: 1.15rem;}
    .reg-divider {margin: 4rem auto; width: 80%; }}
/* ========================================= */
/* === SEKCJA 4: TWARDE DANE (TABELA) === */
/* ========================================= */
.performance-data-section {padding: 10rem 0; background-color: #000;}
.perf-header {text-align: center; max-width: 850px; margin: 0 auto 6rem auto;}
.perf-title {font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: #fff; margin-bottom: 1.5rem;}
.perf-desc {font-size: 1.25rem; color: #94a3b8; line-height: 1.6;}
.perf-table-wrapper {max-width: 1100px; margin: 0 auto; background: transparent;}
.perf-row {display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding: 2.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); align-items: center; transition: background 0.3s ease;}
.perf-row.no-border {border-bottom: none;}
.perf-headers {padding-bottom: 1.5rem; padding-top: 0; border-bottom: 2px solid rgba(255, 255, 255, 0.2);}
.perf-headers div {font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #64748b;}
.perf-col-task {display: flex; flex-direction: column;}
.perf-col-task strong {font-size: 1.35rem; color: #fff; font-weight: 700; margin-bottom: 0.25rem;}
.perf-col-task span {font-size: 1rem; color: #64748b;}
.perf-col-human {display: flex; flex-direction: column;}
.human-data {font-size: 1.6rem; font-weight: 700; color: #94a3b8; margin-bottom: 0.25rem; letter-spacing: -0.02em;}
.perf-col-human span:last-child {font-size: 0.95rem; color: #64748b;}
.perf-col-ai {display: flex; flex-direction: column; background: linear-gradient(90deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
    padding: 1rem 1.5rem; border-radius: 12px; border-left: 2px solid rgba(251, 191, 36, 0.3);}
.perf-headers .perf-col-ai {background: transparent; border-left: none; padding: 0; color: #fbbf24;}
.ai-data {font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem; letter-spacing: -0.03em;}
.perf-col-ai span:last-child {font-size: 0.95rem; color: #cbd5e1;}
@media (max-width: 768px) {
    .perf-row {grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 1rem;}
    .perf-headers {display: none;}
    .perf-col-human, .perf-col-ai {padding-top: 1rem; border-top: 1px dashed rgba(255,255,255,0.05);}
    .perf-col-human::before {content: "Tradycyjnie:"; font-size: 0.8rem; color: #64748b; text-transform: uppercase; margin-bottom: 0.25rem;}
    .perf-col-ai::before {content: "Infrastruktura Raste AI:"; font-size: 0.8rem; color: #fbbf24; text-transform: uppercase; margin-bottom: 0.25rem;}
    .ai-data { font-size: 1.8rem; }}
/* ========================================= */
/* === SEKCJA 6: FINALNE CTA (ROZWIĄZANIA) === */
/* ========================================= */
.solutions-cta-section {
    position: relative;
    padding: 12rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.solutions-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center; /* Idealnie wyśrodkowane zdjęcie */
    
    /* Kinowe wtapianie w czerń */
    mix-blend-mode: screen;
    opacity: 0.25; 
    z-index: 1;
    
    /* Delikatny ruch tła dający wrażenie luksusu */
    animation: slowZoomIn 30s ease-in-out infinite alternate;
}

@keyframes slowZoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.solutions-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Mroczny gradient: czerń od dołu przechodzi w półprzezroczystość */
    background: linear-gradient(to top, #000 10%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.solutions-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-massive-title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 650px;
}

/* Układ przycisków */
.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    .cta-actions a {
        width: 100%;
        justify-content: center;
    }
}
/* ========================================= */
/* === PODSTRONA INWESTYCJA (APPLE PRO) === */
/* ========================================= */
.pricing-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 12rem;
    margin-bottom: 14rem;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center top, rgba(83, 200, 255, 0.15) 0%, #000000 45%);
    background-color: #000;
}

.pricing-hero-ambient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.9; 
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.pricing-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pricing-text-wrapper {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-title {
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    color: #fff;
}

.text-premium-gradient {
    background: linear-gradient(135deg, #e7e7e7 0%, #c4c4c4 45%, #5a5a5a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-desc {
    font-size: 1.35rem;
    color: #94a3b8;
    max-width: 650px;
    line-height: 1.6;
    margin: 0;
}

.pricing-hero-actions {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
}

.pricing-btn-scroll {
    gap: 0.75rem;
    padding: 1.25rem 3rem;
}

.pricing-btn-scroll i,
.pricing-btn-scroll svg {
    width: 20px; 
    height: 20px;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 10rem;
    }
    .pricing-title { 
        font-size: clamp(2.8rem, 11vw, 4rem);  
        word-wrap: break-word; 
        overflow-wrap: break-word; 
        -webkit-hyphens: auto; 
        hyphens: auto;
    }
    .pricing-text-wrapper {
        padding: 0 1.5rem;
    }
    .pricing-desc { 
        font-size: 1.15rem;  
        padding: 0 0.5rem;
    }
    .pricing-hero-actions { 
        bottom: 3rem; 
        width: 100%;
        padding: 0 1.5rem;
        /* DODANE: To naprawia wylewanie się przycisku poza ekran! */
        box-sizing: border-box; 
    }
    .pricing-btn-scroll {
        width: 100%; /* Przycisk teraz idealnie dopasuje się do środka z równym odstępem po bokach */
    }
}
/* === SEKCJA CENNIKA === */
.apple-pricing-section {
    position: relative;
    padding: 4rem 0 8rem 0;
    background-color: #000;
    color: #f5f5f7;
    overflow: hidden;
}
.apple-pricing-ambient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    mix-blend-mode: screen; 
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.apple-pricing-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.apple-pricing-header {
    text-align: center;
    margin-bottom: 8rem;
}

.apple-section-title {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
}

.apple-section-desc {
    font-size: 1.25rem;
    color: #86868b; /* Apple's classic muted grey */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.apple-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.apple-compare-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.col-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.col-visual i, .col-visual svg {
    width: 64px;
    height: 64px;
    color: #d2d2d7;
}

.visual-premium i, .visual-premium svg {
    width: 80px;
    height: 80px;
    color: #f5f5f7;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.col-header {
    margin-bottom: 2rem;
    height: 80px;
}

.tier-name {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f5f5f7;
    margin-bottom: 0.5rem;
}

.tier-target {
    font-size: 1rem;
    color: #86868b;
    margin: 0;
}
.col-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    height: 90px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 500;
    color: #86868b;
}

.price-label {
    font-size: 0.85rem;
    color: #86868b;
}

.text-titanium {
    background: linear-gradient(135deg, #ffffff 0%, #b5b5ba 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.apple-btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    color: #f5f5f7;
    background: transparent;
    border: 1px solid #424245;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 4rem;
}

.apple-btn-outline:hover {
    background: #424245;
}

.apple-btn-solid {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: #f5f5f7;
    border: 1px solid #f5f5f7;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 4rem;
}

.apple-btn-solid:hover {
    background: #ffffff;
    transform: scale(1.02);
}
.apple-btn-premium {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #0071e3;
    border: 1px solid #0071e3;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 4rem;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.2);
}

.apple-btn-premium:hover {
    background: #0077ed;
    border-color: #0077ed;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}
.visual-premium i, .visual-premium svg {
    color: #f5f5f7;
    filter: drop-shadow(0 0 20px rgba(0, 113, 227, 0.3));
}
.col-specs {
    width: 100%;
    text-align: center;
    border-top: 1px solid #333336;
}

.spec-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #333336;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-main {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f5f5f7;
}

.spec-sub {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.4;
}

.spec-breakdown {
    padding: 2rem 0;
    text-align: left;
}

.bd-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #86868b;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.spec-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-breakdown li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #a1a1a6;
    border-bottom: 1px dashed #333336;
    padding-bottom: 0.5rem;
}

.spec-breakdown li span:last-child {
    font-weight: 600;
    color: #f5f5f7;
}

/* === STOPKA === */
.apple-pricing-footer {
    margin-top: 6rem;
    text-align: center;
}

.apple-pricing-footer p {
    font-size: 0.85rem;
    color: #86868b;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 1024px) {
    .apple-compare-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    .col-header, .col-price {
        height: auto;
    }
    .apple-compare-col {
        padding-bottom: 4rem;
        border-bottom: 1px solid #333336;
    }
    .apple-compare-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .apple-pricing-ambient {
        display: none !important;
    }
}

/* === SEKCJA 3: GWARANCJA (APPLE TIMELINE) === */
.poc-timeline-section {
    padding: 18rem 0;
    background-color: #000;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.poc-header {
    text-align: center;
    margin-bottom: 8rem;
}
.poc-massive-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
}
.poc-visual-flow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.flow-laser-line {
    position: absolute;
    top: 90px;
    left: 10%; 
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.2) 80%, transparent);
    z-index: 1;
}
.flow-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 3rem;
}
.flow-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.node-visual {
    background-color: #000;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}
.node-visual i,
.node-visual svg {
    width: 40px; 
    height: 40px;
    color: #64748b;
    margin-bottom: 1.5rem;
}
.node-metric {
    font-size: clamp(4rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 0.5rem;
}
.node-unit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #64748b;
}
.text-emerald {
    color: #10b981;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}
.node-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.node-content p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}
@media (max-width: 992px) {
    .poc-header { margin-bottom: 5rem; }
    .flow-laser-line {
        /* Zmiana na linię pionową dla telefonów */
        top: 10%; bottom: 10%;
        left: 50%; right: auto;
        width: 2px; height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
    }
    .flow-nodes {
        flex-direction: column;
        gap: 5rem;
    }
    .node-visual { padding: 2rem 0; margin-bottom: 1.5rem; }
}
/* === STRONA KONTAKT === */
.contact-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 12rem; /* Zwiększony oddech z góry (pod headerem) */
    padding-bottom: 8rem; /* Dodany solidny oddech na dole (przed stopką) */
    overflow: hidden;
}

/* Tło - subtelny gradient */
.contact-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.08) 0%, #000000 60%);
    z-index: 0;
}

.contact-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.1fr 0.9fr; /* Asymetryczny podział na korzyść tekstu */
        gap: 6rem; /* Duży oddech między tekstem a renderem */
    }
}

/* --- LEWA STRONA: TREŚĆ --- */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

/* Lista z danymi kontaktowymi */
.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.contact-icon-wrap:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-icon-wrap i {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-icon-wrap:hover i {
    color: var(--accent);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.contact-value.link {
    transition: color 0.3s;
}

.contact-value.link:hover {
    color: var(--accent);
}

.contact-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-btn-primary i {
    width: 20px;
    height: 20px;
}

.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.contact-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-floating-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px; /* Optymalny rozmiar na dużych ekranach */
    height: auto;
    object-fit: contain;
    animation: floatObject 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

@media (max-width: 1023px) {
    .contact-grid {
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 8rem;
    }
    .contact-content {
        align-items: center;
    }
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    .contact-text {
        align-items: center;
    }
    .contact-visual {
        order: -1; 
    }
    .contact-floating-img {
        max-width: 80%;
    }
}
