/* --- 1. ZMIENNE I RESET --- */
:root {
    --primary-color: #000000; /* Apple Black */
    --accent-color: #0071e3; /* Apple Blue */
    --bg-color: #ffffff;
    --bg-alt: #f5f5f7; /* Jasny szary */
    --text-main: #1d1d1f;
    --text-secondary: #86868b;
    --border-radius: 20px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 70px;
}

html {
    scroll-padding-top: var(--nav-height);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background: var(--bg-color); color: var(--text-main); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 2. GLOBAL UI ELEMENTS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 30px; border-radius: 99px; font-weight: 500; font-size: 16px; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--primary-color); color: #fff; }
.btn-primary:hover { background: #333; transform: scale(1.02); }
.btn-outline { border: 1px solid #d2d2d7; color: var(--text-main); background: transparent; }
.btn-outline:hover { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-text { font-size: 14px; color: var(--text-main); margin-right: 15px; }
.full-width { width: 100%; text-align: center; }
/* --- LIMIT ZNAKÓW ERROR --- */
.limit-alert { color: #ff3b30; font-size: 11px; font-weight: 700; margin-top: 5px; text-align: right; display: none; animation: fadeIn 0.3s ease; }
.limit-alert.visible { display: block; }

/* --- 3. NAVBAR --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); z-index: 1000; transition: 0.3s; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.nav-logo-img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links li a { font-size: 14px; color: var(--text-main); opacity: 0.8; }
.nav-links li a:hover { opacity: 1; }
.nav-buttons { display: flex; align-items: center; }
.burger { display: none; font-size: 20px; cursor: pointer; }

/* --- 4. HERO SECTION --- */
.hero { height: 100vh; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; position: relative; }
.hero-logo-text { max-width: 600px; margin-bottom: 30px; }
.slogan { font-size: 56px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.sub-slogan { font-size: 20px; color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center;}

/* Scroll Down Animation */
.scroll-down { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; opacity: 0.6; animation: bounce 2s infinite; }
.mouse { width: 26px; height: 40px; border: 2px solid var(--text-main); border-radius: 20px; position: relative; margin-bottom: 10px; }
.wheel { width: 4px; height: 6px; background: var(--text-main); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }

/* --- 5. PRICING SECTION --- */
.pricing-section { padding: 100px 0; background: var(--bg-alt); }
.section-title { text-align: center; font-size: 40px; font-weight: 700; margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.pricing-card { background: #fff; padding: 40px; border-radius: var(--border-radius); box-shadow: 0 10px 40px rgba(0,0,0,0.05); text-align: center; position: relative; transition: 0.3s; }
.pricing-card:hover { transform: translateY(-10px); }
.pro-card { border: 2px solid var(--primary-color); transform: scale(1.05); z-index: 2; }
.pro-card:hover { transform: scale(1.08); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.pricing-card h3 { font-size: 24px; margin-bottom: 10px; }
.price { font-size: 48px; font-weight: 700; color: var(--text-main); }
.period { color: var(--text-secondary); margin-bottom: 30px; font-size: 14px; }
.features-list { text-align: left; margin-bottom: 30px; }
.features-list li { margin-bottom: 12px; color: var(--text-secondary); font-size: 15px; }
.features-list li i { color: var(--primary-color); margin-right: 10px; }
.trial-container { margin-top: 25px; text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; }
.trial-container p { font-size: 12px; color: #86868b; margin-bottom: 5px; }
.btn-trial-text { color: #0071e3; font-size: 14px; font-weight: 600; text-decoration: none; transition: 0.3s ease; display: inline-flex; align-items: center; gap: 5px; }
.btn-trial-text i { font-size: 10px; transition: 0.3s; }
.btn-trial-text:hover { color: #005bb5; }
.btn-trial-text:hover i { transform: translateX(3px); }
.payment-icons { display: flex; align-items: center; justify-content: center; }

/* --- 6. FEATURES (ZIG ZAG) --- */
.features-wrapper { padding-top: 50px; }
.feature-section { padding: 80px 0; overflow: hidden; }
.feature-container { display: flex; align-items: center; gap: 60px; }
.reverse .feature-container { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h2 { font-size: 42px; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.01em; }
.feature-text p { font-size: 18px; color: var(--text-secondary); line-height: 1.6; }
.feature-visual { flex: 1; display: flex; justify-content: center; }

.app-window { position: relative; width: 100%; max-width: 800px; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.05); background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: zoom-in; }
.app-window:hover { transform: translateY(-5px); box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2); }
.app-screenshot-large { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.app-window:hover .app-screenshot-large { transform: scale(1.02); }
.zoom-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 113, 227, 0.1); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease; pointer-events: none; z-index: 10; }
.zoom-overlay i { font-size: 32px; color: #fff; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3)); }
.app-window:hover .zoom-overlay { opacity: 1; }
.feature-visual { flex: 1.2; display: flex; justify-content: center; }
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); display: none; align-items: center; justify-content: center; z-index: 10000; cursor: zoom-out; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); transform: scale(0.9); animation: zoomIn 0.3s forwards; }
.lightbox-close { position: absolute; top: 30px; right: 40px; background: none; border: none; color: #1d1d1f; font-size: 44px; cursor: pointer; opacity: 0.6; transition: 0.2s; }
.lightbox-close:hover { opacity: 1; transform: scale(1.1); color: #0071e3; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { to { transform: scale(1); } }

/* MacBook Frame */
.macbook { width: 100%; max-width: 500px; perspective: 1000px; }
.screen { background: #000; border-radius: 12px 12px 0 0; border: 12px solid #333; border-bottom: none; position: relative; padding-top: 62.5%; overflow: hidden; box-shadow: inset 0 0 0 1px #444; }
.placeholder-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: top center; background-repeat: no-repeat; display: block; }
.app-screenshot { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.macbook .body { height: 16px; background: #e2e3e5; border-radius: 0 0 16px 16px; position: relative; border-top: 2px solid #ccc; width: 110%; margin-left: -5%; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.macbook .body::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15%; height: 8px; background: #c8cacb; border-radius: 0 0 8px 8px; }

/* --- 7. CONTACT & FORMS --- */
.contact-section { padding: 100px 0; background: #fff; text-align: center; }
.contact-box { max-width: 600px; margin: 0 auto; }
.contact-box h2 { font-size: 36px; margin-bottom: 15px; }
.contact-box p { font-size: 18px; color: #86868b; margin-bottom: 50px; line-height: 1.6; }
.agency-form { display: flex; flex-direction: column; width: 100%; }
.input-group { display: flex; flex-direction: column; align-items: stretch; width: 100%; margin-bottom: 25px; gap: 8px; }
.agency-form input, .agency-form textarea { padding: 15px; border-radius: 12px; border: 1px solid #d2d2d7; font-family: inherit; font-size: 16px; background: #f5f5f7; }
.agency-form textarea { height: 120px; resize: vertical; }
.input-error { border: 2px solid #ff5f57 !important; background-color: #fff2f1 !important; outline: none !important; animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both; }
.input-error:focus { border-color: #ff5f57 !important;}
.error-text { color: #ff5f57; font-size: 13px; font-weight: 600; text-align: left; display: none; padding-left: 5px; }
.error-text.visible { display: block; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); } 20%, 40%, 60%, 80% { transform: translateX(5px); } }

/* Success Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.modal-content { background: #fff; padding: 40px; border-radius: 24px; text-align: center; max-width: 400px; width: 90%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: scale(0.9) translateY(20px); transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1); }
.modal-overlay.modal-active { opacity: 1; visibility: visible; }
.modal-overlay.modal-active .modal-content { opacity: 1; transform: scale(1) translateY(0); }
.modal-content h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #1d1d1f; }
.modal-content p { color: #86868b; font-size: 16px; margin-bottom: 25px; line-height: 1.4; }

/* --- 8. FOOTER --- */
footer { padding: 40px 0 30px; background: #fff; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; }
.footer-left, .footer-center, .footer-right { flex: 1; display: flex; align-items: center; }
.footer-center { justify-content: center; }
.footer-right { justify-content: flex-end; }
.footer-logo { height: 24px; opacity: 0.7; transition: 0.3s; }
.footer-logo:hover { opacity: 1; }
.footer-center p { font-size: 12px; color: #86868b; margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #86868b; transition: 0.3s; }
.footer-links a:hover { color: #0071e3; text-decoration: underline; }
.footer-divider { border: 0; border-top: 1px solid rgba(0,0,0,0.05); margin: 25px 0; }
.footer-payments { text-align: center; }
.payment-info { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; font-size: 12px; color: #1d1d1f; font-weight: 500; }
.hotpay-logo-inline { height: 16px; }
.payment-icons-wrapper { display: flex; justify-content: center; align-items: center; gap: 20px; margin-bottom: 12px; }
.payment-icons-wrapper img { height: 40px; filter: grayscale(100%); opacity: 0.4; transition: 0.3s ease; }
.payment-icons-wrapper img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }
.operator-note { font-size: 10px; color: #a1a1a6; margin: 0 auto; line-height: 1.4; max-width: 600px; }

/* --- 9. LIGHTBOX --- */
.zoom-container { position: relative; cursor: zoom-in; overflow: hidden; display: block; height: 100%; }
.zoom-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; z-index: 5; pointer-events: none; }
.zoom-overlay i { font-size: 40px; color: #fff; }
.zoom-container:hover .zoom-overlay { opacity: 1; }
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; z-index: 10000; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 50px rgba(0,0,0,0.5); transform: scale(0.9); animation: zoomIn 0.3s forwards; }
.lightbox-close { position: absolute; top: 30px; right: 40px; background: none; border: none; color: #fff; font-size: 50px; cursor: pointer; opacity: 0.8; transition: 0.2s; }
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.9); } to { transform: scale(1); } }


/* --- FUNDAMENTY LEGAL (Wspólne) --- */
.legal-page { background-color: #f5f5f7; min-height: 100vh; position: relative; }
.mesh-gradient { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(at 0% 0%, rgba(0, 113, 227, 0.08) 0, transparent 50%), radial-gradient(at 100% 100%, rgba(0, 113, 227, 0.05) 0, transparent 50%); }
.legal-wrapper { padding-top: 100px; padding-bottom: 60px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.legal-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 32px; padding: 60px; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.03); width: 100%; }
.legal-header { text-align: center; margin-bottom: 60px; padding: 0 20px; position: relative; }
.header-icon-glow { display: flex; justify-content: center; align-items: center; margin-bottom: 30px; position: relative; }
.header-icon-glow i { font-size: 72px; background: linear-gradient(135deg, #0071e3, #66aaff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; z-index: 2; filter: drop-shadow(0 10px 20px rgba(0, 113, 227, 0.3)); }
.header-icon-glow::after { content: ''; position: absolute; width: 100px; height: 100px; background: rgba(0, 113, 227, 0.4); filter: blur(50px); z-index: 1; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.legal-header h1 { font-size: 48px; font-weight: 800; margin-bottom: 15px; background: linear-gradient(135deg, #1d1d1f, #0071e3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.02em; }
.legal-header p { font-size: 16px; color: #86868b; font-weight: 500; background: rgba(255,255,255,0.5); display: inline-block; padding: 8px 20px; border-radius: 20px; backdrop-filter: blur(5px); }
.legal-card h2 { font-size: 24px; margin-bottom: 20px; color: #1d1d1f; }
.legal-card p { text-align: justify; text-justify: inter-word; hyphens: none; -webkit-hyphens: none; }
.page-regulamin .legal-container { display: grid; grid-template-columns: 280px minmax(0, 800px) 280px; gap: 40px; justify-content: center; align-items: start; width: 100%; margin: 0 auto; padding: 40px 24px; }
.page-regulamin .legal-sidebar { position: sticky; top: 120px; background: rgba(255, 255, 255, 0.8); padding: 25px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); height: fit-content; }
.page-regulamin .legal-sidebar h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: #86868b; margin-bottom: 20px; font-weight: 700; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; }
.page-regulamin .legal-sidebar ul { display: flex; flex-direction: column; gap: 4px; }
.page-regulamin .legal-sidebar li a { display: block; padding: 12px 16px; border-radius: 12px; color: #424245; font-size: 14px; font-weight: 500; transition: all 0.3s ease; }
.page-regulamin .legal-sidebar li a:hover { background: #fff; color: #0071e3; transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.page-regulamin .legal-card { grid-column: 2; width: 100%; max-width: 800px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); border-radius: 32px; padding: 60px; border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 30px 70px rgba(0,0,0,0.07); }
.tldr { background: rgba(0, 113, 227, 0.04); border-left: 4px solid #0071e3; padding: 25px; border-radius: 18px; margin-bottom: 40px; border-top: 1px solid rgba(0,113,227,0.05); border-right: 1px solid rgba(0,113,227,0.05); border-bottom: 1px solid rgba(0,113,227,0.05); }
.tldr strong { display: block; color: #0071e3; text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; margin-bottom: 8px; }
.tldr p { font-size: 14px; line-height: 1.6; color: #1d1d1f; margin: 0; }

/* --- BENTO GRID SEKCJA --- */
.bento-section { padding: 100px 0; background: #fbfbfd; }
.bento-header { text-align: center; margin-bottom: 60px; padding: 0 20px; }
.bento-header h2 { font-size: 40px; font-weight: 700; color: #1d1d1f; margin-bottom: 20px; letter-spacing: -0.5px; }
.bento-header p { font-size: 20px; color: #86868b; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bento-card { background: #fff; padding: 35px 30px; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: flex-start; height: 100%; }
.bento-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); }
.bento-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; color: #fff; flex-shrink: 0; }
.bento-card h3 { font-size: 20px; font-weight: 700; color: #1d1d1f; margin-bottom: 12px; letter-spacing: -0.3px; }
.bento-card p { font-size: 15px; color: #86868b; line-height: 1.7; margin: 0; font-weight: 400; }

/* Kolory ikonek (Bento) */
.bento-icon.red { background: linear-gradient(135deg, #ff3b30, #ff9500); box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3); }
.bento-icon.blue { background: linear-gradient(135deg, #0071e3, #42a5f5); box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3); }
.bento-icon.green { background: linear-gradient(135deg, #34c759, #30d158); box-shadow: 0 5px 15px rgba(52, 199, 89, 0.3); }
.bento-icon.orange { background: linear-gradient(135deg, #ff9500, #ffcc00); box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3); }
.bento-icon.purple { background: linear-gradient(135deg, #af52de, #5856d6); box-shadow: 0 5px 15px rgba(175, 82, 222, 0.3); }
.bento-icon.dark { background: linear-gradient(135deg, #1d1d1f, #424245); box-shadow: 0 5px 15px rgba(29, 29, 31, 0.3); }
.bento-icon.blue-light { background: linear-gradient(135deg, #5ac8fa, #0071e3); box-shadow: 0 5px 15px rgba(90, 200, 250, 0.3); }
.bento-icon.yellow { background: linear-gradient(135deg, #ffcc00, #ff9500); box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3); }

/* RWD Bento */
@media (max-width: 1024px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bento-grid { grid-template-columns: 1fr; } .bento-card { padding: 25px; align-items: center; text-align: center; } }

/* Security Section */
.security-section { padding: 80px 0; background: #fbfbfd; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; }
.security-container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 60px; }
.security-text { max-width: 500px; }
.label-blue { color: #0071e3; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.security-text h2 { font-size: 32px; margin-bottom: 20px; font-weight: 700; color: #1d1d1f; }
.security-text p { color: #86868b; line-height: 1.6; margin-bottom: 20px; font-size: 16px; }
.security-list { display: flex; flex-direction: column; gap: 10px; }
.security-list li { display: flex; align-items: center; gap: 10px; color: #424245; font-weight: 500; }
.icon-green { color: #34c759; }
.icon-orange { color: #ff9500; }
.security-visual { background: #fff; padding: 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; }
.security-icon-lg { font-size: 100px; background: linear-gradient(135deg, #4285F4, #34A853); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Reviews Section */
.reviews-section { padding: 100px 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #f5f5f7; padding: 30px; border-radius: 20px; transition: transform 0.3s; }
.review-card:hover { transform: translateY(-5px); }
.stars { color: #ffb400; font-size: 14px; margin-bottom: 15px; }
.review-text { color: #1d1d1f; font-size: 16px; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 14px; }
.avatar.gray { background: #d2d2d7; }
.avatar.blue { background: #0071e3; }
.avatar.green { background: #34c759; }
.reviewer strong { display: block; font-size: 14px; color: #1d1d1f; }
.reviewer span { font-size: 12px; color: #86868b; }

/* RWD for New Sections */
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } .security-container { flex-direction: column-reverse; gap: 30px; text-align: center; } .security-text h2 { font-size: 26px; } .security-list { align-items: center; } .security-visual { width: 100%; height: auto; padding: 30px; } }








/* --- UKŁAD: POLITYKA PRYWATNOŚCI (Pełna szerokość - Fix zgniecenia) --- */
.page-privacy .legal-container { display: block; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.privacy-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.highlight-card { background: rgba(255, 255, 255, 0.5); padding: 40px 30px; border-radius: 24px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.4); transition: 0.3s; }
.highlight-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.highlight-card i { font-size: 32px; color: #0071e3; margin-bottom: 20px; }
.highlight-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #1d1d1f; }
.highlight-card p { font-size: 14px; color: #86868b; line-height: 1.5; margin: 0; }
.page-regulamin .legal-sidebar { max-height: calc(100vh - 150px); overflow-y: auto; scroll-behavior: smooth; scrollbar-width: none; }
.page-regulamin .legal-sidebar::-webkit-scrollbar { display: none; }
.page-regulamin .legal-sidebar li a.active { color: #0071e3; background: #fff; transform: translateX(8px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); border-left: 3px solid #0071e3; font-weight: 700; }


/* --- PARTNERS EXTRAS --- */
.btn-glow { box-shadow: 0 0 20px rgba(0, 113, 227, 0.4); animation: pulse-blue 2s infinite; }
@keyframes pulse-blue { 0% { box-shadow: 0 0 10px rgba(0, 113, 227, 0.4); } 50% { box-shadow: 0 0 25px rgba(0, 113, 227, 0.6); } 100% { box-shadow: 0 0 10px rgba(0, 113, 227, 0.4); } }
.faq-section { margin: 80px auto; max-width: 900px; padding: 0 24px; }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #fff; border-radius: 18px; padding: 20px 30px; cursor: pointer; border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; overflow: hidden; }
.faq-item:hover { border-color: rgba(0, 113, 227, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.faq-item h4 { display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: #1d1d1f; margin: 0; }
.faq-content { max-height: 0; opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding-top: 0; font-size: 15px; color: #86868b; line-height: 1.6; text-align: left; }
.faq-item.active .faq-content { max-height: 300px; opacity: 1; padding-top: 15px; }
.faq-item.active i { transform: rotate(180deg); color: #0071e3; }
.legal-toggle-section { text-align: center; padding: 80px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.full-width-legal { width: 100%; background: #ffffff; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); display: none; opacity: 0; transition: 0.5s; position: relative; z-index: 10; }
.full-width-legal.show { display: block; opacity: 1; animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.full-width-legal .legal-container { max-width: 1200px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.full-width-legal .legal-card { background: transparent; border: none; box-shadow: none; padding: 0; }
@keyframes fadeInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
/* --- ANIMACJA PRZYCISKU (GLOW) --- */
.btn-glow { box-shadow: 0 0 20px rgba(0, 113, 227, 0.4); animation: pulse-blue 2s infinite; border: none; }
@keyframes pulse-blue { 0% { box-shadow: 0 0 10px rgba(0, 113, 227, 0.4); } 50% { box-shadow: 0 0 25px rgba(0, 113, 227, 0.6); } 100% { box-shadow: 0 0 10px rgba(0, 113, 227, 0.4); } }

/* --- MODAL PARTNERSKI: ANIMACJE --- */
.partner-modal { transform: scale(0.8) translateY(30px); opacity: 0; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.modal-active .partner-modal { transform: scale(1) translateY(0); opacity: 1; }
.close-modal { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 28px; color: #86868b; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: #1d1d1f; transform: rotate(90deg); }

/* --- WALIDACJA I BŁĘDY (SHAKE) --- */
.input-error { border: 1px solid #ff3b30 !important; background: #fff2f1 !important; animation: shake-field 0.4s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes shake-field { 10%, 90% { transform: translate3d(-1px, 0, 0); } 20%, 80% { transform: translate3d(2px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-4px, 0, 0); } 40%, 60% { transform: translate3d(4px, 0, 0); } }
.error-text { color: #ff3b30; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-top: 5px; display: none; text-align: left; padding-left: 5px; }
.error-text.visible { display: block; animation: fadeInDown 0.3s ease; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.modal-content i.fa-exclamation-circle { animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
#error-message { color: #86868b; font-size: 14px; margin-bottom: 20px; }




/* --- 11. 404 PAGE STYLES --- */
body.page-404 { height: 100vh; display: flex; align-items: center; justify-content: center; background: #f5f5f7; color: #1d1d1f; overflow: hidden; }
.container-404 { text-align: center; max-width: 600px; padding: 20px; z-index: 2; }
.plug-animation { position: relative; margin-bottom: 40px; height: 150px; display: flex; justify-content: center; align-items: center; }
.plug-icon { font-size: 80px; color: #1d1d1f; display: inline-block; transition: transform 0.1s ease-out; transform: rotate(45deg); }
.shadow { width: 60px; height: 10px; background: rgba(0,0,0,0.1); border-radius: 50%; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); animation: shadowScale 3s ease-in-out infinite; }
.page-404 h1 { font-size: 48px; font-weight: 700; margin-bottom: 15px; letter-spacing: -0.02em; }
.page-404 p { font-size: 20px; color: #86868b; margin-bottom: 40px; }
.btn-home { display: inline-block; padding: 15px 35px; background: #0071e3; color: #fff; text-decoration: none; border-radius: 99px; font-weight: 500; transition: 0.3s; }
.btn-home:hover { background: #005bb5; transform: scale(1.05); }
.mesh-gradient { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(at 0% 0%, rgba(0,113,227,0.05) 0, transparent 50%), radial-gradient(at 100% 100%, rgba(0,113,227,0.05) 0, transparent 50%); z-index: 1; }

@keyframes shadowScale { 0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; } 50% { transform: translateX(-50%) scale(0.8); opacity: 0.2; } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(-20px) rotate(45deg); } }


/* --- ABOUT PAGE STYLES --- */
.about-page { background-color: #fbfbfd; overflow-x: hidden; }
.mesh-gradient-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: radial-gradient(circle at 10% 10%, rgba(0,113,227,0.08), transparent 40%), radial-gradient(circle at 90% 90%, rgba(200,0,255,0.05), transparent 40%); z-index: -1; pointer-events: none; }
.about-hero { padding: 160px 20px 80px; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-label { font-size: 13px; font-weight: 700; color: #0071e3; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.about-hero h1 { font-size: 56px; line-height: 1.1; letter-spacing: -2px; color: #1d1d1f; margin-bottom: 25px; font-weight: 700; }
.about-hero p { font-size: 22px; color: #86868b; line-height: 1.5; max-width: 700px; margin: 0 auto; }
.text-gradient { background: linear-gradient(135deg, #0071e3, #6a11cb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
/* Story Grid */
.story-section { padding: 80px 20px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-content h2 { font-size: 40px; line-height: 1.1; margin-bottom: 40px; color: #1d1d1f; letter-spacing: -1px; }
.story-step { display: flex; gap: 20px; margin-bottom: 40px; }
.step-icon { width: 50px; height: 50px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #0071e3; box-shadow: 0 4px 15px rgba(0,0,0,0.05); flex-shrink: 0; }
.story-step p { font-size: 17px; color: #424245; line-height: 1.6; margin: 0; padding-top: 2px; }
/* Visuals (Bento Style) - POPRAWIONE ROZMIESZCZENIE */
.story-visuals { position: relative; height: 500px; width: 100%; display: block; }
.visual-card { position: absolute; background: #fff; border-radius: 24px; padding: 25px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(20px); }

/* Lewy Górny Róg - Stare metody */
.card-chaos { top: 0; left: 0; width: 150px; height: 150px; transform: rotate(-5deg); z-index: 1; opacity: 0.9; }
.chaos-icon { font-size: 40px; color: #ff3b30; margin-bottom: 10px; }
.card-chaos span { font-weight: 600; color: #86868b; font-size: 14px; }
.chaos-lines { display: none; /* Ukrywamy ewentualne kreski, jeśli są */ }

/* Środek - Logo (Zmniejszone dla odstępu) */
.card-order { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; z-index: 10; box-shadow: 0 30px 60px rgba(0,113,227,0.15); border-radius: 30px; }
.logo-glow { width: 70px; height: 70px; margin-bottom: 15px; filter: drop-shadow(0 0 20px rgba(0,113,227,0.3)); }
.logo-glow img { width: 100%; height: auto; }
.card-order span { font-size: 18px; font-weight: 700; color: #1d1d1f; margin-bottom: 8px; }
.status-badge { background: #e8f8ee; color: #34c759; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* Prawy Dolny Róg - Game Changer (BIAŁY) */
.card-quote { bottom: 0; right: 0; width: auto; min-width: 170px; padding: 20px 25px; background: #fff; transform: rotate(3deg); z-index: 5; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-radius: 24px; animation-delay: 1.5s; }
.card-quote p { font-size: 20px; font-weight: 700; margin-bottom: 5px; background: linear-gradient(135deg, #0071e3, #6a11cb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.card-quote small { color: #86868b; font-size: 13px; font-weight: 500; }
/* Founder Card */
.founder-section { padding: 100px 20px; display: flex; justify-content: center; }
.founder-card { background: #fff; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); overflow: hidden; display: flex; max-width: 900px; width: 100%; align-items: center; }
.founder-img-container { width: 40%; height: 400px; position: relative; }
.founder-img { width: 100%; height: 100%; object-fit: cover; }
.location-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 12px; font-size: 13px; font-weight: 600; color: #1d1d1f; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.founder-info { width: 60%; padding: 60px; }
.founder-info h3 { font-size: 36px; font-weight: 700; color: #1d1d1f; margin-bottom: 5px; }
.founder-info .role { font-size: 16px; color: #0071e3; font-weight: 600; text-transform: uppercase; margin-bottom: 25px; letter-spacing: 1px; }
.founder-info .bio { font-size: 18px; color: #424245; line-height: 1.6; margin-bottom: 35px; }
.social-links { display: flex; gap: 15px; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; background: #f5f5f7; display: flex; align-items: center; justify-content: center; color: #1d1d1f; font-size: 18px; transition: all 0.3s ease; text-decoration: none; }
.social-btn:hover { transform: translateY(-3px); color: #fff; }
.social-btn.linkedin:hover { background: #0077b5; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn.facebook:hover { background: #3b5998; }
.social-btn.mail:hover { background: #1d1d1f; }
/* Values Bar */
.values-bar { display: flex; justify-content: space-around; padding: 60px; background: #fff; border-radius: 24px; margin-bottom: 100px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); max-width: 1000px; margin-left: auto; margin-right: auto; }
.value-item { display: flex; align-items: center; gap: 20px; }
.value-item i { font-size: 32px; color: #0071e3; background: #eef6ff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.value-item strong { display: block; font-size: 18px; color: #1d1d1f; margin-bottom: 3px; }
.value-item span { font-size: 14px; color: #86868b; }
/* Animations */
.floating-slow { animation: float 6s ease-in-out infinite; }
.floating-fast { animation: float 5s ease-in-out infinite reverse; }
@keyframes float { 0% { transform: translate(-50%, -50%) translateY(0px); } 50% { transform: translate(-50%, -50%) translateY(-20px); } 100% { transform: translate(-50%, -50%) translateY(0px); } }
/* RWD About */
@media (max-width: 900px) { .about-hero h1 { font-size: 40px; } .story-grid { grid-template-columns: 1fr; } .story-visuals { height: 400px; margin-top: 40px; } .founder-card { flex-direction: column; } .founder-img-container, .founder-info { width: 100%; } .founder-img-container { height: 300px; } .founder-info { padding: 40px 30px; } .values-bar { flex-direction: column; gap: 40px; align-items: flex-start; } }








/* =========================================
   RESPONSIVE DESIGN (FINAL COMPOSITE)
   ========================================= */

/* --- TABLET / DESKTOP (1400px - 1101px) --- */
@media (max-width: 1400px) { .page-regulamin .legal-container { grid-template-columns: 280px 1fr; justify-content: start; } }

/* --- LARGE TABLET / IPAD PRO (1100px - 769px) --- */
@media (max-width: 1100px) { 
    .page-regulamin .legal-container { grid-template-columns: 1fr; max-width: 850px; } 
    .page-regulamin .legal-sidebar { display: none; } 
    .page-regulamin .legal-card { padding: 40px 24px; border-radius: 24px; } 
    .legal-header h1 { font-size: 32px; text-align: center; }
}

/* --- MOBILE (768px and below) --- */
@media (max-width: 768px) {
    /* Base & Layout */
    body { overflow-x: hidden; }
    .container { padding: 0 20px; }
    
    /* Navbar & Navigation */
    .navbar { position: fixed; top: 0; left: 0; width: 100%; height: 60px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-container { padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 100%; }
    .nav-logo-img { height: 20px; width: auto; }
    .nav-links { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); padding: 40px 24px; gap: 25px; box-shadow: 0 15px 30px rgba(0,0,0,0.05); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; }
    .nav-links.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
    .burger { display: block; font-size: 24px; cursor: pointer; color: #1d1d1f; }
    .burger i { transition: transform 0.3s ease; }
    .burger.toggle i { transform: rotate(90deg); }
    .nav-buttons { display: none; }
    
    /* Hero Section (Apple Logo Fix) */
    .hero { padding: 100px 20px 60px 20px; height: auto; min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
    .hero-logo-text { width: 80%; max-width: 260px; height: auto; margin: 0 auto 20px; display: block; }
    .slogan { font-size: 28px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; padding: 0 10px; }
    .sub-slogan { font-size: 15px; line-height: 1.5; color: #86868b; margin-bottom: 40px; padding: 0 10px; }
    .hero-buttons { display: flex; flex-direction: column; width: 100%; gap: 12px; padding: 0 20px; }
    .btn { width: 100%; text-align: center; padding: 16px; font-size: 17px; border-radius: 14px; }
    .scroll-down { display: none; }
    
    /* Pricing & Features */
    .pricing-section { padding: 60px 24px; }
    .section-title { font-size: 28px; margin-bottom: 40px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-card { padding: 40px 24px; border-radius: 20px; }
    .pro-card { transform: none !important; margin: 0; border: 1px solid #000; }
    .feature-section { padding: 50px 24px; }
    .feature-container, .reverse .feature-container { flex-direction: column-reverse; gap: 30px; text-align: center; }
    .feature-text h2 { font-size: 26px; margin-bottom: 15px; }
    .feature-text p { font-size: 16px; line-height: 1.6; }
    .macbook { width: 100%; max-width: 400px; margin: 0 auto; }
    .macbook .body { width: 100%; margin-left: 0; height: 12px; }
    
    /* Forms & Contact */
    .contact-section { padding: 60px 24px; }
    .contact-box h2 { font-size: 28px; margin-bottom: 15px; }
    .contact-box p { font-size: 16px; margin-bottom: 40px; }
    .agency-form { display: flex; flex-direction: column; gap: 15px; }
    .agency-form input, .agency-form textarea { padding: 18px; font-size: 16px; border-radius: 12px; width: 100%; }
    .modal-content { padding: 40px 24px; width: 90%; border-radius: 24px; }
    
    .legal-wrapper { padding-top: 80px; padding-bottom: 0; }
    .page-regulamin .legal-container, .page-privacy .legal-container { display: flex; flex-direction: column; width: 100%; padding: 0; gap: 0; }
    .page-regulamin .legal-sidebar { display: block; position: static; width: 100%; padding: 25px 20px; background: #fff; border-bottom: 1px solid #f0f0f2; margin-bottom: 0; box-shadow: none; border-radius: 0; backdrop-filter: none; }
    .page-regulamin .legal-sidebar h3 { font-size: 12px; margin-bottom: 15px; border-bottom: none; padding-bottom: 0; }
    .page-regulamin .legal-sidebar ul { display: flex; flex-wrap: wrap; gap: 8px; }
    .page-regulamin .legal-sidebar li a { font-size: 12px; padding: 8px 12px; background: #f5f5f7; border-radius: 8px; }
    .page-regulamin .legal-sidebar li a:hover { transform: none; box-shadow: none; }
    .legal-card { background: #ffffff; border-radius: 0; box-shadow: none; padding: 40px 20px; width: 100%; border: none; border-top: 1px solid #f0f0f2; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .legal-header { background: #fff; margin-bottom: 0; padding: 40px 20px 20px 20px; }
    .legal-header h1 { font-size: 28px; text-align: left; }
    .legal-header p { text-align: left; font-size: 14px; }
    .privacy-highlights { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 20px; background: #fff; }
    .highlight-card { padding: 25px 20px; border-radius: 16px; background: #f5f5f7; border: none; }

}
/* Mniejszy rozmiar na telefonach */
@media (max-width: 768px) {
    .header-icon-glow i { font-size: 56px; }
    .legal-header h1 { font-size: 32px; }
}