/* ===============================
   EKSTREMALNY PREMIUM STARTUP CSS 
=============================== */
:root {
    --bg-dark: #03050C;
    --bg-panel: rgba(15, 17, 32, 0.4);
    --primary: #4F46E5;
    --primary-glow: #6366F1;
    --secondary: #E879F9;
    --accent: #2DD4BF;
    --text-main: #F8FAFC;
    --text-muted: #CBD5E1;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --border-radius-xl: 36px;
    --box-shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
    --vs-bg: #1e1e1e;
    --vs-sidebar: #333333;
    --vs-tab: #2d2d2d;
    --vs-border: #444444;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; -webkit-tap-highlight-color: transparent; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--secondary)); border-radius: 4px; }

body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; line-height: 1.7; font-size: 18px; }

/* ===============================
   ANIMACJE & TŁA
=============================== */
.background-orbs { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; z-index: -2; pointer-events: none; }
.stars-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.1; z-index: -1; }

.orb { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.5; animation: drift 25s infinite alternate ease-in-out; }
.orb-1 { top: -10%; left: -5%; width: 700px; height: 700px; background: #4F46E5; }
.orb-2 { bottom: -20%; right: -5%; width: 800px; height: 800px; background: #9333EA; animation-delay: -5s; }
.orb-3 { top: 30%; left: 40%; width: 500px; height: 500px; background: #14B8A6; opacity: 0.25; animation-delay: -12s; }

@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 80px) scale(1.15); } }

.reveal .slide-up { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal .slide-left { opacity: 0; transform: translateX(-60px); transition: 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal .slide-right { opacity: 0; transform: translateX(60px); transition: 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal .zoom-in { opacity: 0; transform: scale(0.85); transition: 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active .slide-up, .reveal.active .slide-left, .reveal.active .slide-right, .reveal.active .zoom-in { opacity: 1; transform: translate(0) scale(1); }
.delay-1 { transition-delay: 0.15s!important; } .delay-2 { transition-delay: 0.3s!important; } .delay-3 { transition-delay: 0.45s!important; }

/* ===============================
   TYPOGRAFIA & NAGŁÓWKI
=============================== */
h1 { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 24px; }
h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
p { color: var(--text-muted); margin-bottom: 24px; font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 300; }

.gradient-text { background: linear-gradient(110deg, var(--primary-glow), var(--secondary), var(--accent)); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; filter: drop-shadow(0 0 20px rgba(217,70,239,0.5)); }
.glow-text { filter: drop-shadow(0 0 20px var(--primary-glow)); }
@keyframes shine { to { background-position: 200% center; } }

/* ===============================
   NAWIGACJA Z MENU MOBILNYM
=============================== */
.navbar { position: fixed; top: 0; width: 100%; padding: 24px 0; z-index: 1000; transition: all 0.4s ease; border-bottom: 1px solid transparent; }
.navbar.scrolled, .navbar.solid { background: rgba(3, 5, 12, 0.9); backdrop-filter: blur(30px); border-bottom: 1px solid var(--glass-border); padding: 16px 0; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }

.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 14px; font-weight: 900; font-size: 26px; letter-spacing: -0.5px; text-decoration: none; color: white; transition: 0.3s; }
.logo:hover { transform: scale(1.05); }
.logo-img { width: 44px; height: 44px; border-radius: 12px; box-shadow: 0 0 20px var(--primary-glow); object-fit: contain; background: black; padding: 4px; }
.badge-test { font-size: 11px; padding: 4px 12px; border-radius: 20px; font-weight: 900; margin-left: 10px; background: rgba(20, 184, 166, 0.15); color: var(--accent); border: 1px solid rgba(20, 184, 166, 0.3); }

.nav-links { display: flex; gap: 36px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 16px; transition: 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: white; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.nav-links a.active::after { content:''; position: absolute; bottom: -8px; left: 0; width: 100%; height: 3px; background: var(--primary-glow); border-radius: 3px; box-shadow: 0 0 10px var(--primary-glow); }

.menu-toggle { display: none; background: transparent; border: none; color: white; font-size: 32px; cursor: pointer; transition: 0.3s; }
.menu-toggle:hover { color: var(--primary-glow); transform: rotate(90deg); }

.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(3, 5, 12, 0.98); backdrop-filter: blur(30px); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 32px; font-weight: 800; color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.mobile-menu a:hover, .mobile-menu a.active { color: white; transform: scale(1.1); color: var(--primary-glow); }
.mobile-menu .accent-link { color: var(--accent); text-shadow: 0 0 20px rgba(45,212,191,0.4); }

/* ===============================
   PRZYCISKI (BUTTONS CTA)
=============================== */
.btn { text-decoration: none; padding: 16px 32px; border-radius: 20px; font-weight: 800; font-size: 16px; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; border: none; }
.btn-ghost { color: white; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); border-color: rgba(255,255,255,0.2); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }

.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; box-shadow: 0 10px 30px rgba(99,102,241,0.4); border: 1px solid rgba(255,255,255,0.2); position: relative; overflow: hidden; z-index: 1; transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.btn-primary::before { content: ''; position: absolute; top: -2px; left: -2px; width: calc(100% + 4px); height: calc(100% + 4px); background: linear-gradient(90deg, #ff00cc, #3333ff, #ff00cc); background-size: 200%; z-index: -2; border-radius: inherit; animation: borderGradient 3s linear infinite; opacity: 0; transition: opacity 0.4s; }
.btn-primary::after { content: ''; position: absolute; inset: 1px; background: linear-gradient(135deg, var(--primary), var(--secondary)); z-index: -1; border-radius: inherit; transition: 0.4s; }
@keyframes borderGradient { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 50px rgba(217, 70, 239, 0.6); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { background: #03050C; } /* Neon outline look on hover */

.btn-large { flex-direction: column; padding: 20px 50px; font-size: 20px; i { font-size: 32px; margin-bottom: 4px; } text-align: center; border-radius: 28px; }
.btn-subtext { font-size: 12px; font-weight: 700; opacity: 0.9; letter-spacing: 0.5px; text-transform: uppercase; }

/* ===============================
   STRONA GŁÓWNA & MOCKUP TELEFONU
=============================== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 180px 0 100px; overflow: hidden; }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-group { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; }

.hero-visual { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.floating { animation: hoverDevice 8s ease-in-out infinite alternate; transform-style: preserve-3d; }
@keyframes hoverDevice { 0% { transform: translateY(0) rotateY(-15deg) rotateX(10deg); box-shadow: 60px 40px 100px rgba(0,0,0,0.8); } 100% { transform: translateY(-40px) rotateY(-5deg) rotateX(15deg); box-shadow: 40px 80px 120px rgba(0,0,0,0.6); } }

.phone-mockup { width: clamp(280px, 100%, 380px); height: 780px; background: #010206; border-radius: 65px; border: 14px solid #10142A; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08), inset 0 0 20px rgba(99,102,241,0.2), 40px 50px 80px rgba(0,0,0,1); position: relative; overflow: hidden; }
.phone-power-btn { position: absolute; right: -16px; top: 200px; width: 6px; height: 60px; background: #2A3042; border-radius: 0 6px 6px 0; box-shadow: inset -2px 0 4px rgba(0,0,0,0.5); }
.phone-volume-btn { position: absolute; left: -16px; top: 160px; width: 6px; height: 110px; background: #2A3042; border-radius: 6px 0 0 6px; box-shadow: inset 2px 0 4px rgba(0,0,0,0.5); }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 150px; height: 38px; background: #10142A; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; z-index: 10; display: flex; justify-content: center; align-items: center; }
.phone-notch::before { content: ''; width: 60px; height: 6px; background: #05060A; border-radius: 10px; }
.phone-notch::after { content: ''; width: 14px; height: 14px; background: #05060A; border-radius: 50%; margin-left: 14px; box-shadow: inset 0 0 6px rgba(99, 102, 241, 0.4); }

.phone-screen { width: 100%; height: 100%; background: radial-gradient(circle at top right, #1E1B4B, #010206); padding: 50px 24px 20px; display: flex; flex-direction: column; position: relative; }
.phone-screen::before { content:''; position: absolute; top:0;left:0;width:100%;height:100%; background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%); pointer-events:none; }

.app-status-bar { display: flex; justify-content: space-between; font-size: 14px; font-weight: 800; color: white; margin-bottom: 30px; padding: 0 10px; z-index: 5; }
.app-status-bar .icons { display: flex; gap: 8px; }

.app-ui { height: 100%; display: flex; flex-direction: column; z-index: 5; }
.app-header { display: flex; align-items: center; gap: 16px; font-size: 24px; margin-bottom: 30px; }
.app-icon-circ { width: 50px; height: 50px; border-radius: 16px; background: rgba(99, 102, 241, 0.15); display: flex; justify-content: center; align-items: center; box-shadow: inset 0 0 0 1px rgba(99,102,241,0.3); }
.app-subtitle { font-size: 13px; color: var(--primary-glow); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }

.app-body { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.message-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 28px; padding: 22px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); backdrop-filter: blur(10px); }
.message-card:first-child { border-color: rgba(99, 102, 241, 0.5); background: rgba(99, 102, 241, 0.08); box-shadow: 0 20px 50px rgba(99,102,241,0.1); }

.msg-blur { filter: blur(4px); opacity: 0.4; }
.msg-badge { background: rgba(99, 102, 241, 0.2); color: #A5B4FC; display: inline-block; padding: 6px 12px; border-radius: 10px; font-size: 11px; font-weight: 900; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.msg-text { font-size: 16px; line-height: 1.6; margin-bottom: 18px; font-weight: 400; color: #E2E8F0; }
.msg-action { color: var(--text-muted); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.msg-action.copied { color: var(--accent); }

.app-footer-nav { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 10px 10px; border-top: 1px solid rgba(255,255,255,0.05); color: #475569; font-size: 26px; }
.app-footer-nav .active { color: white; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.app-fab-fake { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 22px; display: flex; justify-content: center; align-items: center; color: white; box-shadow: 0 15px 30px var(--primary-glow); font-size: 28px; margin-top: -30px; border: 2px solid rgba(255,255,255,0.1); }

.phone-glow { position: absolute; width: 400px; height: 600px; background: var(--primary); filter: blur(140px); opacity: 0.35; z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; }

/* ===============================
   SEKCJE WNĘTRZA, BENTO GRIDS & DŁUGIE TEKSTY
=============================== */
.page-header { text-align: center; padding: 220px 40px 100px; max-width: 1000px; margin: 0 auto; }
.page-content { max-width: 1300px; margin: 0 auto; padding: 0 40px 120px; display: flex; flex-direction: column; gap: 80px; }

.content-block { padding: 60px; margin-bottom: 40px; }
.glass-panel { background: var(--bg-panel); border: 1px solid var(--glass-border); border-radius: var(--border-radius-xl); box-shadow: 0 30px 60px rgba(0,0,0,0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

.quote-box { padding: 40px 60px; border-left: 6px solid var(--primary-glow); background: linear-gradient(90deg, rgba(99,102,241,0.15), transparent); font-size: 26px; font-style: italic; font-weight: 300; margin: 50px 0; color: white; border-radius: 0 20px 20px 0; }
.accent-icon { color: var(--primary-glow); vertical-align: middle; margin-right: 14px; }

.split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.link-arrow { color: white; font-weight: 800; font-size: 20px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; margin-top: 24px; }
.link-arrow:hover { color: var(--secondary); gap: 16px; }

.glass-board { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--border-radius-xl); padding: 50px; position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); transition: 0.4s; }
.issue-icon { font-size: 70px; color: #EF4444; margin-bottom: 24px; display: inline-block; filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.5)); }

/* Elementy chata w index.html */
.chat-bubble { padding: 18px 28px; border-radius: 20px; margin-bottom: 16px; max-width: 85%; font-size: 17px; font-weight: 500; }
.chat-bubble.left { background: #1E293B; border-bottom-left-radius: 6px; border: 1px solid rgba(255,255,255,0.05); }
.chat-bubble.right { background: var(--primary); color: white; margin-left: auto; border-bottom-right-radius: 6px; box-shadow: 0 10px 25px rgba(99,102,241,0.4); }

.typing { display: flex; gap: 8px; padding: 22px 28px !important; }
.dot { width: 10px; height: 10px; background: rgba(255,255,255,0.9); border-radius: 50%; animation: bounce 1.4s infinite ease-in-out both; }
.dot:nth-child(1) { animation-delay: -0.32s; } .dot:nth-child(2) { animation-delay: -0.16s; }
.panic-alert { margin-top: 32px; padding: 20px; background: rgba(239, 68, 68, 0.1); border-left: 4px solid #EF4444; color: #EF4444; font-weight: 800; border-radius: 0 16px 16px 0; box-shadow: 0 0 20px rgba(239, 68, 68, 0.2); animation: panicPulse 1.5s infinite alternate; }
@keyframes panicPulse { 0% { box-shadow: 0 0 10px rgba(239,68,68,0.2); border-left-width: 4px; } 100% { box-shadow: 0 0 40px rgba(239,68,68,0.6); border-left-width: 8px; } }

.stats-section { padding: 60px 0 120px; }
.stats-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 0 40px; }
.stat-box { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--border-radius-xl); padding: 60px 40px; text-align: center; transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1); backdrop-filter: blur(10px); cursor: pointer; }
.stat-box:hover { transform: translateY(-15px); background: rgba(255,255,255,0.04); border-color: rgba(99,102,241,0.4); box-shadow: var(--box-shadow-glow); }
.stat-box .stat-number { font-size: 72px; font-weight: 900; display:block; margin-bottom:10px; }

/* BENTO GRID (Mini karty w technologia i o nas) */
.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.bento-card { background: rgba(255,255,255,0.02); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-radius: 30px; padding: 50px 40px 40px; transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-start; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.4); transform-style: preserve-3d; }
.bento-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary), var(--secondary)); display: block; opacity: 0.8; }
.bento-card.accent::before { background: linear-gradient(90deg, var(--accent), var(--primary-glow)); }
.bento-card.secondary::before { background: linear-gradient(90deg, var(--secondary), var(--primary-glow)); }
.bento-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); border-color: rgba(99,102,241,0.3); box-shadow: var(--box-shadow-glow); }
.bento-icon { position: absolute; top: 30px; right: 30px; font-size: 50px; color: rgba(255,255,255,0.05); transition: 0.5s; }
.bento-card:hover .bento-icon { transform: scale(1.2) rotate(-15deg); color: var(--primary-glow); filter: drop-shadow(0 0 15px var(--primary-glow)); }
.bento-card.accent:hover .bento-icon { color: var(--accent); filter: drop-shadow(0 0 15px var(--accent)); }
.bento-card.secondary:hover .bento-icon { color: var(--secondary); filter: drop-shadow(0 0 15px var(--secondary)); }
.bento-card h3 { font-size: 26px; color: white; margin-bottom: 16px; position:relative; z-index: 2; display: flex; align-items: center; gap: 10px; }
.bento-card h3::after { content:''; display:inline-block; width: 30px; height:2px; background: var(--primary-glow); }
.bento-card p { font-size: 16px; margin: 0; position:relative; z-index: 2; line-height: 1.6; color: var(--text-muted); }

/* VS CODE IDE STYLING */
.vscode-window { width: 100%; max-width: 800px; margin: 0 auto; border-radius: 12px; background-color: var(--vs-bg); border: 1px solid #333; box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 40px rgba(99,102,241,0.4); overflow: hidden; font-family: 'Consolas', 'Courier New', Courier, monospace; display: flex; flex-direction: column; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s; transform: perspective(1000px) rotateX(5deg) rotateY(-5deg); }
.vscode-window:hover { transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02); box-shadow: 0 50px 100px rgba(0,0,0,1), 0 0 60px rgba(99,102,241,0.6); }
.vscode-header { display: flex; justify-content: space-between; align-items: center; background-color: #252526; height: 40px; }
.vscode-tabs { display: flex; height: 100%; }
.vscode-tab { padding: 0 20px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: #969696; background-color: #2d2d2d; border-right: 1px solid #1e1e1e; border-top: 1px solid transparent; cursor: pointer; }
.vscode-tab.active { background-color: var(--vs-bg); color: #fff; border-top: 1px solid var(--accent); }
.mac-buttons { display: flex; gap: 8px; margin-right: 15px; }
.mac-buttons span { width: 12px; height: 12px; border-radius: 50%; }
.mac-buttons .red { background: #ff5f56; }
.mac-buttons .yellow { background: #ffbd2e; }
.mac-buttons .green { background: #27c93f; }

.vscode-body { display: flex; flex: 1; min-height: 250px; }
.vscode-sidebar { width: 48px; background-color: var(--vs-sidebar); display: flex; flex-direction: column; align-items: center; padding-top: 15px; gap: 20px; border-right: 1px solid #252526; }
.vscode-sidebar i { font-size: 22px; color: #858585; cursor: pointer; transition: 0.2s; }
.vscode-sidebar i:hover, .vscode-sidebar i.active { color: #fff; }

.vscode-editor { flex: 1; display: flex; padding: 15px 0; font-size: 14px; background: var(--vs-bg); overflow-x: auto; position: relative; }
.line-numbers { padding: 0 20px; color: #858585; display: flex; flex-direction: column; text-align: right; user-select: none; border-right: 1px solid #333; margin-right: 20px; font-family: 'Consolas', monospace; line-height: 1.6; }

.typewriter { margin: 0; color: #d4d4d4; font-family: 'Consolas', monospace; line-height: 1.6; white-space: pre; position: relative; }
.vscode-editor .comment { color: #6A9955; font-style: italic; display: block; overflow: hidden; white-space: nowrap; animation: typing-1 1s steps(40, end) forwards; width: 0; }
.vscode-editor .line2 { display: block; overflow: hidden; white-space: nowrap; animation: typing-2 1s steps(40, end) forwards; animation-delay: 1s; width: 0; }
.vscode-editor .line3 { display: block; overflow: hidden; white-space: nowrap; animation: typing-3 1s steps(40, end) forwards; animation-delay: 2s; width: 0; }
.vscode-editor .line4 { display: block; overflow: hidden; white-space: nowrap; animation: typing-4 1s steps(40, end) forwards; animation-delay: 3s; width: 0; }
.vscode-editor .line5 { display: block; overflow: hidden; white-space: nowrap; animation: typing-5 0.5s steps(40, end) forwards; animation-delay: 4s; width: 0; }

.vscode-editor .keyword { color: #569cd6; }
.vscode-editor .type { color: #4EC9B0; }
.vscode-editor .function { color: #DCDCAA; }
.vscode-editor .variable { color: #9CDCFE; }
.vscode-editor .operator { color: #d4d4d4; }

@keyframes typing-1 { to { width: 100%; } }
@keyframes typing-2 { to { width: 100%; } }
@keyframes typing-3 { to { width: 100%; } }
@keyframes typing-4 { to { width: 100%; } }
@keyframes typing-5 { to { width: 100%; } }

/* ===============================
   CENNIK & FAQ
=============================== */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top:40px; }
.price-card { background: rgba(255,255,255,0.02); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-radius: var(--border-radius-xl); padding: 50px; text-align: center; transition: 0.4s; position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.4); transform-style: preserve-3d; }

/* DYNAMIC SPOTLIGHT EFFECT DLA KART */
.bento-card::after, .price-card::after, .glass-board::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(255,255,255,0.08), transparent 40%); z-index: 1; pointer-events: none; transition: opacity 0.5s; opacity: 0; }
.bento-card:hover::after, .price-card:hover::after, .glass-board:hover::after { opacity: 1; }
.price-card.pro { border-color: var(--primary-glow); background: rgba(99,102,241,0.05); transform: translateY(-10px); box-shadow: var(--box-shadow-glow); }
.price-card.pro::before { content: 'Najpopularniejszy'; position: absolute; top: 20px; right: -40px; background: var(--primary); font-size: 11px; font-weight: 800; padding: 6px 40px; transform: rotate(45deg); text-transform: uppercase; letter-spacing: 1px; }
.price-card h3 { font-size: 32px; color: white; margin-bottom:20px; }
.price-val { font-size: 64px; font-weight: 900; margin: 20px 0; color: white; display: flex; justify-content: center; align-items: center; }
.price-val span { font-size: 20px; color: var(--text-muted); font-weight: 400; align-self: flex-end; margin-bottom: 15px; margin-left: 5px; }

.price-features { list-style: none; margin: 30px 0 40px; text-align: left; }
.price-features li { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; font-size: 17px; }
.price-features i { color: var(--accent); font-size: 24px; }

.faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; margin-bottom: 20px; cursor: pointer; transition: 0.3s; }
.faq-item:hover { background: rgba(255,255,255,0.05); }
.faq-q { font-size: 22px; font-weight: 800; display: flex; justify-content: space-between; align-items: center; }
.faq-q i { transition:0.3s; }
.faq-a { margin-top: 16px; color: var(--text-muted); display: none; }
.faq-item.active .faq-a { display: block; animation: slideDown 0.3s ease; }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--primary-glow); }

/* ===============================
   NEWSLETTER
=============================== */
.newsletter { padding: 120px 40px; display: flex; justify-content: center; position: relative; z-index: 10; }
.newsletter .glass-container { padding: 80px 60px; max-width: 1000px; text-align: center; border-radius: 48px; background: rgba(5, 7, 12, 0.7); backdrop-filter: blur(50px); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 40px rgba(255,255,255,0.02); }
.newsletter-decor { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; z-index: -1; }
.decor-1 { top: -20%; left: -10%; width: 400px; height: 400px; background: var(--secondary); }
.decor-2 { bottom: -20%; right: -10%; width: 300px; height: 300px; background: var(--accent); }

.newsletter-icon { font-size: 72px; background: linear-gradient(135deg, var(--secondary), var(--primary-glow)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 30px; display: inline-block; filter: drop-shadow(0 0 20px rgba(217, 70, 239, 0.6)); }

.newsletter-form { display: flex; gap: 20px; max-width: 600px; margin: 50px auto 30px; }
.input-wrapper { flex: 1; position: relative; }
.input-wrapper i { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--text-muted); }
.newsletter-form input { width: 100%; height: 64px; background: rgba(0,0,0,0.6); border: 2px solid rgba(255,255,255,0.1); padding: 0 24px 0 64px; border-radius: 20px; color: white; font-size: 18px; outline: none; transition: 0.3s; }
.newsletter-form input:focus { border-color: var(--primary-glow); box-shadow: 0 0 20px rgba(99,102,241,0.3); }
.newsletter-form button { height: 64px; padding: 0 40px; font-size: 20px; border-radius: 20px; }

/* ===============================
   FOOTER (STARY ORAZ NOWY)
=============================== */
.footer-content { max-width: 1400px; margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-col h4 { font-size: 22px; font-weight: 800; margin-bottom: 30px; color: white; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 16px; font-weight: 500; transition: 0.3s; }
.footer-col a:hover { color: var(--primary-glow); transform: translateX(5px); }

.footer-logo { display:flex; align-items:center; gap: 10px; font-weight:800; font-size: 20px; margin-bottom:20px; }
.footer-logo img { width: 32px; height: 32px; border-radius:8px; object-fit: contain; }
.brand-desc { font-size:15px; }

footer { border-top: 1px solid var(--glass-border); padding: 80px 0 0; margin-top: 100px; background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.03)); position: relative; z-index: 5; }
.footer-bottom { text-align: center; padding: 30px; border-top: 1px solid var(--glass-border); font-size: 15px; color: rgba(255,255,255,0.3); }

/* UTIL */
.mt-40 { margin-top: 40px; } .mt-20 { margin-top: 20px; } .mb-80 { margin-bottom: 80px; } .text-center { text-align: center; }

/* ===============================
   MOBILE RESPONSIVENESS
=============================== */
@media (max-width: 1100px) {
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: block; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 80px; }
    .cta-group { justify-content: center; flex-direction: column; width: 100%; }
    .btn-large { width: 100%; }
    .split-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .glass-board { padding: 30px; }
    .stats-container { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .footer-col a:hover { transform: translateX(0); color: var(--primary-glow); }
    .phone-mockup { transform: scale(0.9); margin: 0 auto; }
}

@media (max-width: 480px) {
    .hero { padding-top: 100px; padding-bottom: 60px; }
    .hero-container { padding: 0 15px; gap: 40px; }
    h1 { font-size: 2rem; line-height: 1.2; word-wrap: break-word; }
    h2 { font-size: 1.6rem; line-height: 1.2; }
    .hero-desc { font-size: 1rem; }
    .newsletter .glass-container { padding: 40px 20px; border-radius: 24px; }
    .phone-mockup { width: 100%; max-width: 320px; height: 680px; transform: scale(0.95); margin: 0 auto; border-radius: 55px; border-width: 10px; }
    .phone-notch { width: 120px; height: 32px; }
    .content-block { padding: 30px 15px; }
    .bento-card { padding: 30px 20px; }
    .price-card { padding: 30px 20px; }
    .stats-container { padding: 0 15px; gap: 20px; }
    .stat-box { padding: 40px 20px; }
    .mac-buttons { display: none; }
    .page-header { padding: 160px 20px 60px; }
    .nav-container { padding: 0 20px; }
    .btn { padding: 14px 24px; font-size: 15px; width: 100%; justify-content: center; }
    .app-status-bar { margin-bottom: 15px; }
    .message-card { padding: 16px; margin-bottom: 10px; }
    .split-container { gap: 40px; }
    .glass-board { padding: 25px 15px; }
    .quote-box { padding: 30px 20px; font-size: 20px; margin: 30px 0; }
    .footer-content { padding: 0 20px 40px; }
}
