/* CSS Custom Properties removed - causing performance issues */

/* ===== BASE STYLES ===== */

/* Background animations removed - using static background */
html, body {
  height: 100%; 
  margin: 0; 
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  /* Animation removed - static background */
  scroll-behavior: smooth;
}

/* ===== LEGAL ELEMENTS STYLING ===== */
.sa-legal {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(24, 32, 40, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  color: #b7c0cc;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== GDPR PAGES STYLING ===== */
.privacy-policy-page,
.cookies-policy-page,
.privacy-request-page {
  min-height: 100vh;
  background: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  padding: 2rem 0;
  font-family: 'Inter', Arial, sans-serif;
}

.privacy-policy-page .container,
.cookies-policy-page .container,
.privacy-request-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-content,
.cookies-content,
.privacy-request-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-content h1,
.cookies-content h1,
.privacy-request-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a !important;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #0f172a !important;
  background-clip: text;
}

.privacy-section,
.cookies-section,
.privacy-request-rights {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.privacy-section h2,
.privacy-request-rights h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-section h2::before,
.privacy-request-rights h2::before {
  content: '📋';
  font-size: 1.2rem;
}

.company-info {
  background: rgba(59, 130, 246, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.company-info p {
  margin: 0.5rem 0;
  color: #b7c0cc !important;
  font-size: 0.95rem;
}

.company-info strong {
  color: #ffffff !important;
  font-weight: 600;
}

.privacy-list,
.rights-list,
.cookies-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-list li,
.rights-list li,
.cookies-list li {
  color: #b7c0cc !important;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.privacy-list li:last-child,
.rights-list li:last-child,
.cookies-list li:last-child {
  border-bottom: none;
}

.privacy-list li,
.rights-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: #475569;
  position: relative;
  padding-left: 2rem;
}

.privacy-list li::before,
.rights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

.privacy-list li:last-child,
.rights-list li:last-child {
  border-bottom: none;
}

/* ===== COOKIES TABLE STYLING ===== */
.cookies-table {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cookies-table table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

.cookies-table th {
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookies-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: #475569;
  font-size: 0.9rem;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

.cookies-table tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.5);
}

/* ===== PRIVACY REQUEST FORM STYLING ===== */
.privacy-request-form {
  background: rgba(248, 250, 252, 0.8);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  margin-bottom: 2rem;
}

.sa-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
  color: #1e293b;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7b5cff;
  margin: 0;
  flex-shrink: 0;
}

.sa-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sa-btn.primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sa-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.sa-btn.secondary {
  background: rgba(148, 163, 184, 0.1);
  color: #475569;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.sa-btn.secondary:hover {
  background: rgba(148, 163, 184, 0.2);
  transform: translateY(-1px);
}

.privacy-request-info {
  background: rgba(16, 185, 129, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #10b981;
  margin-top: 1rem;
}

.privacy-request-info p {
  margin: 0;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .privacy-policy-page .container,
  .cookies-policy-page .container,
  .privacy-request-page .container {
    padding: 0 1rem;
  }
  
  .privacy-content,
  .cookies-content,
  .privacy-request-content {
    padding: 2rem 1.5rem;
  }
  
  .privacy-content h1,
  .cookies-content h1,
  .privacy-request-content h1 {
    font-size: 2rem;
  }
  
  /* Social media - REMOVED */
  
  .cookies-table {
    font-size: 0.8rem;
  }
  
  .cookies-table th,
  .cookies-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-content,
  .cookies-content,
  .privacy-request-content {
    padding: 1.5rem 1rem;
  }
  
  .privacy-content h1,
  .cookies-content h1,
  .privacy-request-content h1 {
    font-size: 1.75rem;
  }
  
  .cookies-table th,
  .cookies-table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }
}

.sa-legal.legal-clause {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.sa-legal.consent-checkboxes {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.sa-legal p {
  margin: 0.5rem 0;
  color: #b7c0cc;
}

.sa-legal strong {
  color: #ffffff;
  font-weight: 600;
}

.sa-legal a {
  color: #7b5cff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sa-legal a:hover {
  color: #a78bfa;
  text-decoration: underline;
}

/* Checkbox styling */
.checkbox-group {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: #b7c0cc;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  border-color: #7b5cff;
  background: rgba(139, 92, 246, 0.1);
}

.checkbox-label input:checked ~ .checkmark {
  background: #7b5cff;
  border-color: #7b5cff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-label .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label.required span:last-child {
  color: #ffffff;
  font-weight: 500;
}

.checkbox-label.optional span:last-child {
  color: #b7c0cc;
}

/* Legal pages styling */
.privacy-policy-page,
.cookies-policy-page,
.privacy-request-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* Ukryj tytuł strony WordPress na stronach GDPR */
.privacy-policy-page .wp-site-blocks h1:first-child,
.cookies-policy-page .wp-site-blocks h1:first-child,
.privacy-request-page .wp-site-blocks h1:first-child,
.privacy-policy-page .site-title,
.cookies-policy-page .site-title,
.privacy-request-page .site-title,
.privacy-policy-page .entry-title:first-child,
.cookies-policy-page .entry-title:first-child,
.privacy-request-page .entry-title:first-child {
  display: none !important;
}

/* Ukryj header WordPress na stronach GDPR */
.privacy-policy-page header,
.cookies-policy-page header,
.privacy-request-page header,
.privacy-policy-page .site-header,
.cookies-policy-page .site-header,
.privacy-request-page .site-header,
.privacy-policy-page .wp-site-blocks > *:first-child,
.cookies-policy-page .wp-site-blocks > *:first-child,
.privacy-request-page .wp-site-blocks > *:first-child,
.privacy-policy-page .entry-header,
.cookies-policy-page .entry-header,
.privacy-request-page .entry-header {
  display: none !important;
}

/* Ukryj wszystkie elementy na górze strony które mogą zawierać smartautom8s.com */
.privacy-policy-page *:not(.privacy-content *):not(.container *),
.cookies-policy-page *:not(.cookies-content *):not(.container *),
.privacy-request-page *:not(.privacy-request-content *):not(.container *) {
  position: relative;
}

/* Ukryj tekst smartautom8s.com jeśli jest w ::before lub ::after */
.privacy-policy-page *::before,
.cookies-policy-page *::before,
.privacy-request-page *::before,
.privacy-policy-page *::after,
.cookies-policy-page *::after,
.privacy-request-page *::after {
  content: "" !important;
}

/* Agresywne ukrycie wszystkich elementów poza content */
.privacy-policy-page > *:not(.container),
.cookies-policy-page > *:not(.container),
.privacy-request-page > *:not(.container) {
  display: none !important;
}

/* Ukryj elementy WordPress */
.privacy-policy-page .wp-block,
.cookies-policy-page .wp-block,
.privacy-request-page .wp-block,
.privacy-policy-page .wp-block-post-title,
.cookies-policy-page .wp-block-post-title,
.privacy-request-page .wp-block-post-title {
  display: none !important;
}

/* Wyłącz globalne tło dla stron GDPR */
.privacy-policy-page::before,
.cookies-policy-page::before,
.privacy-request-page::before {
  display: none !important;
}

body:has(.privacy-policy-page)::before,
body:has(.cookies-policy-page)::before,
body:has(.privacy-request-page)::before {
  display: none !important;
}

/* Zapewnij scrollowanie dla body na stronach GDPR */
body:has(.privacy-policy-page),
body:has(.cookies-policy-page),
body:has(.privacy-request-page) {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
  min-height: 100vh !important;
}

/* Zapewnij scrollowanie dla html na stronach GDPR */
html:has(.privacy-policy-page),
html:has(.cookies-policy-page),
html:has(.privacy-request-page) {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
}

/* Zapewnij scrollowanie dla wszystkich elementów na stronach GDPR */
.privacy-policy-page,
.cookies-policy-page,
.privacy-request-page {
  overflow-y: visible !important;
  overflow-x: hidden !important;
  height: auto !important;
  min-height: 100vh !important;
}

/* Dodaj scrollbar dla całej strony na GDPR */
body:has(.privacy-policy-page),
body:has(.cookies-policy-page),
body:has(.privacy-request-page) {
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  height: 100vh !important;
  max-height: 100vh !important;
}

/* Dodaj scrollbar dla html na GDPR */
html:has(.privacy-policy-page),
html:has(.cookies-policy-page),
html:has(.privacy-request-page) {
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  height: 100vh !important;
  max-height: 100vh !important;
}

.privacy-content,
.cookies-content,
.privacy-request-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(16, 24, 32, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #b7c0cc !important;
  position: relative;
  z-index: 100 !important;
}

.privacy-content *,
.cookies-content *,
.privacy-request-content * {
  color: #b7c0cc !important;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.cookies-content h1,
.cookies-content h2,
.cookies-content h3,
.privacy-request-content h1,
.privacy-request-content h2,
.privacy-request-content h3 {
  color: #ffffff !important;
}

.privacy-content p,
.privacy-content li,
.privacy-content td,
.privacy-content th,
.cookies-content p,
.cookies-content li,
.cookies-content td,
.cookies-content th,
.privacy-request-content p,
.privacy-request-content li,
.privacy-request-content td,
.privacy-request-content th {
  color: #b7c0cc !important;
}

.cookies-content *,
.privacy-request-content * {
  color: #b7c0cc !important;
}

.cookies-content h1,
.cookies-content h2,
.cookies-content h3,
.privacy-request-content h1,
.privacy-request-content h2,
.privacy-request-content h3 {
  color: #ffffff !important;
}

.cookies-content p,
.cookies-content li,
.cookies-content td,
.cookies-content th,
.privacy-request-content p,
.privacy-request-content li,
.privacy-request-content td,
.privacy-request-content th {
  color: #b7c0cc !important;
}

.privacy-content h1,
.cookies-content h1,
.privacy-request-content h1 {
  color: #ffffff !important;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: text;
}

.privacy-section,
.cookies-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.privacy-section h2,
.cookies-section h2 {
  color: #7b5cff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-list,
.cookies-list,
.rights-list {
  list-style: none;
  padding: 0;
}

.privacy-list li,
.cookies-list li,
.rights-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.privacy-list li:before,
.cookies-list li:before,
.rights-list li:before {
  content: "•";
  color: #7b5cff;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.company-info {
  background: rgba(139, 92, 246, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.company-info p {
  color: #b7c0cc !important;
}

.company-info strong {
  color: #ffffff !important;
}

.cookies-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cookies-table th,
.cookies-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cookies-table th {
  background: rgba(139, 92, 246, 0.1);
  color: #7b5cff !important;
  font-weight: 600;
}

.cookies-table td {
  color: #b7c0cc !important;
}

.privacy-request-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  margin: 2rem 0;
}

.privacy-request-form .form-group {
  margin: 1.5rem 0;
}

.privacy-request-form label {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.privacy-request-form input,
.privacy-request-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
}

.privacy-request-form input:focus,
.privacy-request-form textarea:focus {
  outline: none;
  border-color: #7b5cff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.privacy-request-info {
  background: rgba(139, 92, 246, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  margin: 1rem 0;
  text-align: center;
}

/* Responsive legal elements */
@media (max-width: 768px) {
  .sa-legal {
    padding: 1rem;
    font-size: 13px;
  }
  
  .privacy-content,
  .cookies-content,
  .privacy-request-content {
    padding: 1rem;
    margin: 1rem;
  }
  
  .privacy-content h1,
  .cookies-content h1,
  .privacy-request-content h1 {
    font-size: 2rem;
  }
  
  .cookies-table {
    overflow-x: auto;
  }
  
  .cookies-table table {
    min-width: 500px;
  }
}

/* ===== COOKIE BANNER ===== */
.sa-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(24, 32, 40, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(139, 92, 246, 0.4);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sa-cookie-banner.hide {
  transform: translateY(100%);
}

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

.cookie-text {
  flex: 1;
  color: #b7c0cc;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text p {
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: #7b5cff;
  color: white;
}

.cookie-btn.accept:hover {
  background: #6d48ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 92, 255, 0.4);
}

.cookie-btn.necessary {
  background: rgba(255, 255, 255, 0.1);
  color: #b7c0cc;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-btn.necessary:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #ffffff;
  border-color: #7b5cff;
}

.cookie-btn.settings {
  background: transparent;
  color: #7b5cff;
  border: 1px solid #7b5cff;
}

.cookie-btn.settings:hover {
  background: #7b5cff;
  color: white;
}

/* Responsive cookie banner */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    padding: 1rem;
  }
  
  .sa-cookie-banner {
    padding: 1rem;
  }
}

/* ===== STATYCZNE TŁO DLA SEKCJI PONIŻEJ FILMU ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://smartautom8s.com/wp-content/uploads/2025/09/Bez-nazwy-1080-x-1920-px-1920-x-1080-px-scaled.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0; /* NIŻEJ niż treść GDPR */
  color: rgba(255, 255, 255, 0.95); /* Jeszcze większa przezroczystość - tło ma być widoczne */
  pointer-events: none; /* Nie blokuje interakcji z treścią */
}

/* Neural network animation completely removed */

/* Fallback - jeśli główne tło się nie załaduje */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  z-index: 0; /* Najniżej */
  pointer-events: none;
}

/* Debug border removed - tło działa */

/* Usunięto zasłaniające tło z content-section */
.content-section {
  background: transparent; /* Przezroczyste - tło ma być widoczne */
  position: relative;
  z-index: 2; /* Wyżej niż tło */
}

/* ===== LANDING LM SIDEBAR STYLING - UNIFIED ===== */
.page-landing-lm .sidebar,
.landing-lm-page .sidebar,
body:has(.hero-content) .sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10001; /* UNIFIED Z-INDEX HIERARCHY */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* MOBILE-FIRST: UKRYTY DOMYŚLNIE */
  transform: translateX(-100%);
}

/* DODAJ FIOLETOWĄ LINIĘ OBOK SIDEBARA - PRAWA STRONA */
.page-landing-lm .sidebar::after,
.landing-lm-page .sidebar::after,
body:has(.hero-content) .sidebar::after {
  content: '';
  position: fixed;
  top: 0;
  left: 280px; /* Pozycja obok sidebara */
  width: 3px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.8) 100%);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
  z-index: 10002;
}

/* Duplicate violet line removed - using sidebar::after definition above */

.sidebar-content {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center; /* Center buttons vertically */
  align-items: center; /* Center buttons horizontally */
  min-height: 100vh;
}

.sidebar-btn {
  width: 100%;
  height: clamp(50px, 6vw, 55px);
  padding: clamp(12px, 2vw, 15px) clamp(16px, 2.5vw, 20px);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  color: #ffffff;
  text-align: center; /* Center text */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; /* Center content */
  gap: clamp(12px, 2vw, 15px);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  max-width: 240px; /* Limit button width for better centering */
  box-sizing: border-box;
}


.sidebar-btn.active {
  background: rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateX(5px);
}

.sidebar-btn i {
  font-size: 20px;
  width: 24px;
  text-align: center;
  color: #8b5cf6;
  flex-shrink: 0;
}

.sidebar-btn span {
  flex: 1;
  line-height: 1.3;
  text-align: center; /* Center text in span */
}

.sidebar-btn span small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
  font-weight: 300;
  text-align: center; /* Center small text */
}

/* Sidebar logo removed - no login button */

/* Social media - REMOVED */

/* ===== HAMBURGER MENU - UNIFIED ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: rgba(139, 92, 246, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  z-index: 10002; /* UNIFIED Z-INDEX HIERARCHY */
  position: fixed;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #8b5cf6;
  border-radius: 2px;
}

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

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

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

/* ===== SIDEBAR BACKGROUND OVERLAY - UNIFIED ===== */
.sidebar-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000; /* UNIFIED Z-INDEX HIERARCHY */
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* CRITICAL: Prevent interaction when hidden */
}

.sidebar-bg.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MAIN CONTENT - UNIFIED ===== */
.content-container {
  margin-left: 280px;
  min-height: 100vh;
  overflow-y: auto;
  height: 100vh;
  background: transparent;
  position: relative;
  z-index: 1; /* UNIFIED Z-INDEX HIERARCHY */
}

/* ===== DEBUG STYLES - BETTER SECTION VISIBILITY ===== */
.content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.1);
}

.content-section:nth-child(odd) {
  background: rgba(139, 92, 246, 0.02);
}

.content-section:nth-child(even) {
  background: rgba(139, 92, 246, 0.02);
}

.content-section:last-child {
  border-bottom: none;
}

#hero {
  background: transparent !important;
}

/* ===== SECTION SPACING ===== */
.section-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-header {
  margin-bottom: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.1));
  border-radius: 16px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.05) 50%, rgba(139, 92, 246, 0.1) 100%);
  z-index: -1;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  opacity: 1;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== HERO SECTION - VIDEO BACKGROUND & BUTTONS ===== */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.7);
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 10003;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background: transparent;
  border: none;
  box-sizing: border-box;
}

.hero-logo-small {
  text-align: center;
  margin-bottom: 60px;
  background: transparent;
}

.hero-logo-small-img {
  width: 172px;
  height: 172px;
  border-radius: 34px;
  background: transparent;
}


.hero-text {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: #8b5cf6;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  padding: 0 40px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  line-height: 1.4;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-extended {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: #8b5cf6;
  margin-bottom: 50px;
  line-height: 1.4;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.hero-cta {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 180px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.cta-btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  color: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}


.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}


.cta-btn i {
  font-size: 20px;
}

.cta-btn:hover i {
  transform: translateX(3px);
}

.cta-btn .btn-text {
  display: inline;
}

.cta-btn .btn-loading {
  display: none;
}

.cta-btn.loading .btn-text {
  display: none;
}

.cta-btn.loading .btn-loading {
  display: inline;
}

/* ===== SECTION STYLES ===== */
.section-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  opacity: 1;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: 0 auto 3rem auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  justify-items: center;
}

.about-card {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0;
  min-height: 450px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.about-card:hover::before {
  left: 100%;
}


.card-icon {
  font-size: 3rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  text-align: center;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

/* ===== ABOUT FEATURES STYLING ===== */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  flex: 1; /* Rozciągnij aby wypełnić dostępną przestrzeń */
  justify-content: space-between; /* Równomiernie rozłóż elementy */
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  flex: 1; /* Każdy element zajmuje równą przestrzeń */
  min-height: 60px; /* Minimalna wysokość dla spójności */
  text-align: left;
}


.feature-item i {
  color: #8b5cf6;
  font-size: 1rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.feature-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  color: #ffffff;
}

/* ===== SERVICES SECTION - INTERACTIVE ===== */
.services-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  justify-items: center;
}

.service-content-area {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  min-height: 400px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-icon-large {
  font-size: 4rem;
  color: #8b5cf6;
  margin-bottom: 2rem;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-icon-large i {
  display: block !important;
  margin: 0 auto !important;
  text-align: center !important;
}

/* Service Logo Styles */
.service-logo {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.service-btn-logo {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

/* Read More Button Styles */
.service-read-more {
  text-align: center;
  margin: 1.5rem 0;
  display: block; /* Visible by default for Loads Management */
}

.read-more-btn {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.read-more-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.service-content-area h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.service-content-area p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: left;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.service-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-20px);
}

.service-benefits .benefit-item:nth-child(1) { animation-delay: 0.1s; }
.service-benefits .benefit-item:nth-child(2) { animation-delay: 0.2s; }
.service-benefits .benefit-item:nth-child(3) { animation-delay: 0.3s; }


.service-benefits .benefit-item i {
  color: #8b5cf6;
  font-size: 1.2rem;
  flex-shrink: 0;
}


.service-benefits .benefit-item span {
  color: #ffffff;
  font-size: 1rem;
}



.services-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  min-height: 500px;
}

.service-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  color: #fff;
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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



.service-btn:active {
  transition: all 0.1s;
}

.service-btn.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.service-btn.active::before {
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.service-btn i {
  font-size: 1.5rem;
  color: #8b5cf6;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.service-btn span {
  flex: 1;
  line-height: 1.4;
}

/* ===== AI AUDIT SECTION ===== */
.ai-audit-process {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.audit-step {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  backdrop-filter: blur(20px);
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.audit-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s;
}



.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content > p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: #ffffff;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.step-features li:last-child {
  border-bottom: none;
}


.step-features li i {
  color: #8b5cf6;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  display: inline-block;
}

.step-description {
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  line-height: 1.5;
  margin-top: 1.2rem;
  padding: 0.8rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 10px;
  border-left: 3px solid #8b5cf6;
  font-size: 0.95rem;
}

.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.step-arrow i {
  font-size: 2rem;
  color: #8b5cf6;
}


.audit-insight {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.audit-insight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}


.insight-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.insight-icon {
  font-size: 3rem;
  color: #8b5cf6;
}

/* Duplicate @keyframes pulse removed - using single definition below */

.insight-text h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.audit-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(16, 24, 32, 0.95);
  border-radius: 16px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  position: relative;
  z-index: 10003;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audit-cta h3 {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.audit-cta p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ===== LOADS MANAGEMENT - NEW LAYOUT ===== */

/* Hero Section */
.lm-hero {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
  width: 100%;
  box-sizing: border-box;
}

.lm-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.lm-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}


.lm-hero-content {
  flex: 1;
}

.lm-hero-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.lm-hero-description {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.flow-step {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
  text-align: center;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.1);
  box-sizing: border-box;
}


.flow-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}

.flow-step h5 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.flow-step p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.flow-arrow {
  font-size: 1.2rem;
  color: #8b5cf6;
}

/* Duplicate @keyframes pulse removed - using single definition below */

/* Modules Section */
.lm-modules-section {
  margin: 4rem 0;
}

.modules-section-title {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
  justify-items: center;
}

.module-card {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  text-align: center;
  width: 100%;
  max-width: 350px;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}



.module-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}


.module-card h5 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
}

.module-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Benefits Section */
.lm-benefits {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.benefits-title {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}


.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
  line-height: 1;
}

.benefit-icon i {
  line-height: 1;
  vertical-align: middle;
}

.benefit-item h5 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.lm-cta {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.2);
  text-align: center;
}

.cta-content h4 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.cta-content p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}


.cta-btn.secondary {
  background: transparent;
  color: #8b5cf6;
  border-color: #8b5cf6;
}


/* ===== PRICING SECTION ===== */
.pricing-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(2rem, 4vw, 3rem) auto;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  justify-items: center;
}

.pricing-pillar {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.pricing-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.5s ease;
}



.pillar-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}


.pricing-pillar h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.pricing-pillar p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Central Info Block */
.pricing-info-block {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.1);
}

.pricing-info-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}


.pricing-info-block h3 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  position: relative;
  z-index: 1;
}

.info-intro {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.info-subtitle {
  font-size: 1.1rem;
  color: #8b5cf6;
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.pricing-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}


.guarantee-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.guarantee-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.guarantee-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}


.pricing-contact-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.pricing-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-contact-info i {
  color: #8b5cf6;
  font-size: 1rem;
}

/* Pricing Arrow to Contact */
.pricing-arrow-to-contact {
  margin-top: 2rem;
  text-align: center;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  cursor: pointer;
}


.arrow-container i {
  font-size: 1.5rem;
  color: #8b5cf6;
}

.arrow-container span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}


/* ===== CONTACT SECTION ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
  justify-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  box-sizing: border-box;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 1.2rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-icon {
  font-size: 1.8rem;
  color: #8b5cf6;
  margin-bottom: 0.3rem;
}


.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #fff;
  font-weight: 600;
}

.contact-item p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  margin: 0;
}


/* ===== CONTACT FORM - ENHANCED ===== */
.contact-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 60px;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
  backdrop-filter: blur(20px);
  width: 100%;
  box-sizing: border-box;
}

/* Form rows for side-by-side inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

/* Override margin for form groups inside rows */
.form-row .form-group {
  margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  box-sizing: border-box;
}

/* Enhanced textarea for message */
.form-group textarea {
  min-height: 200px;
  resize: vertical;
  font-family: inherit;
}

/* Enhanced select styling */
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-group select option {
  background: rgba(16, 24, 32, 0.95);
  color: #ffffff;
  padding: 0.5rem;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form .cta-btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 32, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hide loading overlay by default after page loads */
.loading-overlay.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(139, 92, 246, 0.3);
  border-top: 3px solid #8b5cf6;
  border-radius: 50%;
}

/* ===== NOTIFICATION SYSTEM ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #fff;
  z-index: 10000;
  max-width: 400px;
  transform: translateX(100%);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.1);
}

.notification.error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.1);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-content i {
  font-size: 1.2rem;
}

/* ===== PWA INSTALL PROMPT ===== */
.pwa-install-prompt {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(139, 92, 246, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 400px;
  width: 90%;
}

.pwa-install-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.pwa-install-content i {
  font-size: 1.5rem;
  color: #ffffff;
}

.pwa-install-content span {
  flex: 1;
  font-weight: 500;
}

.pwa-install-prompt .cta-btn {
  padding: 8px 16px;
  font-size: 14px;
  min-width: auto;
}

.pwa-install-prompt .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}


/* ===== ANIMATIONS ===== */

/* ===== UNIFIED MOBILE NAVIGATION STYLES ===== */

/* UNIFIED SIDEBAR STATES */
.sidebar.active {
  transform: translateX(0) !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  z-index: 10001 !important;
}

/* UNIFIED BACKDROP */
.sidebar-bg.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* UNIFIED HAMBURGER STATES */
.hamburger.active {
  z-index: 10002 !important;
}

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

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

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


/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .video-bg video {
    animation: none !important;
  }
  
  /* Disable background animations */
  html, body, .content-container {
    animation: none !important;
  }
  
  /* Disable hover animations */
  .sidebar-btn:hover,
  .cta-btn:hover,
  .service-btn:hover {
    transform: none !important;
  }
}

/* GPU acceleration removed - causing performance issues */

/* Video optimizations removed - causing performance issues */

/* Reduced performance mode for slower devices */
.reduced-performance * {
  transition-duration: 0.1s !important;
  animation-duration: 0.1s !important;
}

.reduced-performance .video-bg video {
  display: none; /* Hide video on very slow devices */
}

.reduced-performance .video-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Lazy loading placeholder */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazy.loaded {
  opacity: 1;
}

/* Prevent body scroll when mobile menu is open */
.mobile-menu-open {
  overflow: hidden;
}

/* ===== UNIFIED RESPONSIVE DESIGN - MOBILE FIRST ===== */
/* FAZA 2: Konsolidacja wszystkich breakpointów w jeden spójny system */

/* ===== BASE MOBILE STYLES (320px+) ===== */
/* Wszystkie style bazowe są mobile-first */

/* ===== ENHANCED MOBILE TOUCH OPTIMIZATION ===== */
/* FAZA 2: Kompleksowa optymalizacja touch targets i feedback */

/* ===== FLUID TYPOGRAPHY SYSTEM ===== */
/* FAZA 2: Kompleksowy system fluid typography z clamp() */

/* ===== ACCESSIBILITY COMPLIANCE - WCAG 2.1 AA ===== */
/* FAZA 2: Kompleksowe accessibility improvements */

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
  .cta-btn,
  .sidebar-btn,
  .service-btn {
    border: 2px solid currentColor;
    background: ButtonFace;
    color: ButtonText;
  }
  
  .hero-content h1,
  .section-title {
    color: ButtonText;
    text-shadow: none;
  }
}

/* FOCUS MANAGEMENT */
.cta-btn:focus,
.hamburger:focus,
.service-btn:focus {
  outline: 3px solid #8b5cf6;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

/* Remove focus outline for sidebar buttons - only use active state */
.sidebar-btn:focus {
  outline: none;
  box-shadow: none;
}

/* SKIP LINKS */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #8b5cf6;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10003;
}

.skip-link:focus {
  top: 6px;
}

/* SCREEN READER ONLY CONTENT */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ARIA LIVE REGIONS */
.aria-live {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* BASE FLUID TYPOGRAPHY */
html {
  font-size: clamp(14px, 2.5vw, 18px); /* Fluid base font size */
}

body {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: clamp(1.4, 1.5vw, 1.6);
}

/* FLUID HEADINGS */
h1, .hero-title {
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: clamp(1.1, 1.2vw, 1.3);
  margin-bottom: clamp(1rem, 2vw, 2rem);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

h2, .section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: clamp(1.2, 1.3vw, 1.4);
  margin-bottom: clamp(0.8rem, 1.5vw, 1.5rem);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: clamp(0.8rem, 1.5vw, 1.2rem);
  backdrop-filter: blur(20px);
}

h3, .card-title {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: clamp(1.3, 1.4vw, 1.5);
  margin-bottom: clamp(0.6rem, 1vw, 1rem);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: clamp(0.6rem, 1vw, 1rem);
  backdrop-filter: blur(20px);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: clamp(1.4, 1.5vw, 1.6);
  margin-bottom: clamp(0.5rem, 0.8vw, 0.8rem);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: clamp(0.5rem, 0.8vw, 0.8rem);
  backdrop-filter: blur(20px);
}

h5 {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  line-height: clamp(1.5, 1.6vw, 1.7);
  margin-bottom: clamp(0.4rem, 0.6vw, 0.6rem);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: clamp(0.4rem, 0.6vw, 0.6rem);
  backdrop-filter: blur(20px);
}

h6 {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  line-height: clamp(1.6, 1.7vw, 1.8);
  margin-bottom: clamp(0.3rem, 0.5vw, 0.5rem);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: clamp(0.3rem, 0.5vw, 0.5rem);
  backdrop-filter: blur(20px);
}

/* FLUID PARAGRAPHS */
p, .hero-subtitle, .section-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  line-height: clamp(1.5, 1.6vw, 1.7);
  margin-bottom: clamp(0.8rem, 1.2vw, 1.2rem);
}

/* FLUID BUTTONS */
.cta-btn, .sidebar-btn, .service-btn {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
  min-height: clamp(44px, 5vw, 56px);
}

/* FLUID CARDS */
.service-card, .product-card, .pricing-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 1.5vw, 16px);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(26, 35, 50, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(20px);
}

/* FLUID ICONS */
.card-icon, .service-icon-large, .module-icon {
  width: clamp(48px, 8vw, 80px);
  height: clamp(48px, 8vw, 80px);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* FLUID SPACING */
  .content-section {
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 4rem);
}

.section-header {
  padding: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

/* FLUID SPECIAL COMPONENTS */
.hero-subtitle-extended {
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  line-height: clamp(1.4, 1.5vw, 1.6);
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.hero-cta {
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 3rem);
  }

  .cta-btn {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  min-width: clamp(160px, 25vw, 200px);
}

/* FLUID NOTIFICATIONS */
.notification {
  font-size: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: clamp(6px, 1vw, 10px);
  max-width: clamp(300px, 50vw, 500px);
}

/* FLUID LOADS MANAGEMENT */
.lm-hero-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: clamp(1.2, 1.3vw, 1.4);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.lm-hero-description {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  line-height: clamp(1.5, 1.6vw, 1.7);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.flow-step {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  font-size: clamp(0.8rem, 2vw, 1rem);
  width: clamp(250px, 30vw, 300px);
  min-width: clamp(250px, 30vw, 300px);
  max-width: clamp(250px, 30vw, 300px);
  height: clamp(220px, 25vw, 280px);
  min-height: clamp(220px, 25vw, 280px);
  max-height: clamp(220px, 25vw, 280px);
  overflow: hidden;
}

.module-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  height: clamp(200px, 25vw, 240px);
  min-height: clamp(200px, 25vw, 240px);
  max-height: clamp(200px, 25vw, 240px);
}

.benefit-item {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: clamp(6px, 1vw, 10px);
}

/* FLUID AUDIT COMPONENTS */
.audit-step {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 1.5vw, 12px);
}

.step-number {
  width: clamp(40px, 6vw, 60px);
  height: clamp(40px, 6vw, 60px);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: clamp(20px, 3vw, 30px);
}

.step-content h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}

.step-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: clamp(1.4, 1.5vw, 1.6);
}

/* FLUID PRICING COMPONENTS */
.pricing-pillar {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 1.5vw, 12px);
}

.pillar-icon {
  width: clamp(50px, 8vw, 80px);
  height: clamp(50px, 8vw, 80px);
  font-size: clamp(1.2rem, 3vw, 2rem);
  border-radius: clamp(25px, 4vw, 40px);
}

.pricing-pillar h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}

.pricing-pillar p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: clamp(1.4, 1.5vw, 1.6);
}

/* BASE TOUCH TARGETS - Apple/Google Guidelines */
.cta-btn,
  .sidebar-btn,
  .hamburger,
.service-btn,
.contact-item,
.audit-step,
.pricing-pillar,
.module-card,
.benefit-item {
  min-height: 44px; /* Apple's recommended touch target */
    min-width: 44px;
  touch-action: manipulation; /* Prevent zoom on double-tap */
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ENHANCED TOUCH FEEDBACK */
.cta-btn:active,
.sidebar-btn:active,
.hamburger:active,
.service-btn:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
  }

  /* PREVENT ZOOM ON INPUTS */
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* TOUCH-FRIENDLY FORM ELEMENTS */
.form-group input,
.form-group textarea,
.form-group select {
  min-height: 44px;
  padding: 12px 16px;
  touch-action: manipulation;
  font-size: clamp(14px, 2.5vw, 16px);
  border-radius: clamp(4px, 0.8vw, 8px);
}

/* FLUID FORM ELEMENTS */
.form-group label {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: clamp(0.5rem, 0.8vw, 0.8rem);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-size: clamp(14px, 2.5vw, 16px);
  padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.2rem);
  border-radius: clamp(4px, 0.8vw, 8px);
}

.form-group textarea {
  min-height: clamp(120px, 20vw, 150px);
  resize: vertical;
}

/* TOUCH-FRIENDLY NAVIGATION */
.nav-item,
.sidebar-btn {
  min-height: 48px; /* Slightly larger for navigation */
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TOUCH-FRIENDLY CARDS */
.service-card,
.product-card,
.pricing-card,
.audit-item,
.module-card {
  min-height: 120px; /* Minimum touch area for cards */
  padding: 20px;
  cursor: pointer;
}

/* TOUCH-FRIENDLY ICONS */
.card-icon,
.service-icon-large,
.module-icon,
.benefit-icon {
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE LAYOUT (320px - 767px) ===== */




/* ===== ENHANCED ABOUT SECTION ===== */
.about-story {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(16, 24, 32, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  text-align: center;
}

.about-story h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

.service-features li:last-child {
  border-bottom: none;
}

/* ===== ENHANCED PRODUCT CARDS ===== */
.product-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.product-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.product-features li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

.product-features li:last-child {
  border-bottom: none;
}

/* ===== AUDIT CTA SECTION ===== */
.audit-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(16, 24, 32, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  text-align: center;
  position: relative;
  z-index: 10003;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audit-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.audit-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.audit-cta .cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* ===== PRICING CTA SECTION ===== */

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.benefit-item i {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

.benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.pricing-contact {
  text-align: center;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.pricing-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-contact > p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-options .cta-btn {
  min-width: 200px;
}

.contact-info-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.contact-info-pricing p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.contact-info-pricing i {
  color: #8b5cf6;
  width: 20px;
}


/* ===== SIDEBAR SOCIAL MEDIA ===== */
/* Social media - REMOVED */





/* ===== SPA NAVIGATION STYLES ===== */
html {
  scroll-behavior: smooth;
}

.content-section {
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
}

.content-section.active {
  background: rgba(139, 92, 246, 0.02);
}

/* Enhanced section visibility */
.content-section:not(.active) {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(0);
}

.content-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth transitions removed for better performance */

/* Enhanced sidebar button states */
.sidebar-btn {
  position: relative;
  overflow: hidden;
}

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


.sidebar-btn.active {
  background: rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateX(5px);
}

.sidebar-btn.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #8b5cf6;
  border-radius: 2px;
}

/* ===== CONTENT SECTIONS - BETTER VISIBILITY & CENTERING ===== */
.content-section {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border: 2px solid transparent;
  margin: 20px 0;
  overflow: visible;
  display: block;
  height: auto;
}

/* Center all section content */
.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Section headers for better identification and centering */
.section-header {
  text-align: center;
  margin-bottom: 5px;
  padding: 18px 20px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 14px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.section-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  text-align: center;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  opacity: 1;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== GLOBAL SCROLLING & LAYOUT - OPTYMALIZOWANE ===== */
/* Usunięto duplikaty - używamy definicji z góry pliku */

/* Main content container with proper scrolling */
.content-container {
  margin-left: 280px; /* Match sidebar width */
  min-height: 100vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  height: 100vh;
}

/* Force page to be scrollable */
html {
  overflow-y: hidden;
}

/* Ensure sections are scrollable */
.content-section {
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  border: 2px solid transparent;
  margin: 20px 0;
  overflow: visible;
  display: block;
  height: auto;
}

/* ===== SCROLL BAR STYLING ===== */
/* Webkit scrollbar */
.content-container::-webkit-scrollbar {
  width: 12px;
}

.content-container::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 6px;
}

.content-container::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 6px;
  border: 2px solid rgba(139, 92, 246, 0.1);
}

.content-container::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

/* Firefox scrollbar */
.content-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.5) rgba(139, 92, 246, 0.1);
}

/* Body scrollbar */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 6px;
  border: 2px solid rgba(139, 92, 246, 0.1);
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

/* ===== ENHANCED SCROLL BAR STYLING ===== */
/* Force scrollbar to always be visible */
html {
  overflow-y: hidden;
  scrollbar-width: none;
}

body {
  overflow-y: hidden;
  scrollbar-width: none;
}

/* Webkit scrollbar - always visible */
::-webkit-scrollbar {
  width: 16px;
  background: rgba(16, 24, 32, 0.8);
}

::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), rgba(139, 92, 246, 0.8));
  border-radius: 8px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 1));
  border-color: rgba(139, 92, 246, 0.4);
}

::-webkit-scrollbar-corner {
  background: rgba(16, 24, 32, 0.8);
}

/* Sidebar scrollbar styling - OVERRIDE GLOBAL STYLES */
.sidebar::-webkit-scrollbar {
  width: 8px !important;
}

.sidebar::-webkit-scrollbar-track {
  background: #1a1a1a !important;
  border-radius: 4px !important;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #0f0f0f !important;
  border-radius: 4px !important;
  border: 1px solid #1a1a1a !important;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: #151515 !important;
}

/* Firefox scrollbar */
* {
  scrollbar-width: auto;
  scrollbar-color: rgba(139, 92, 246, 0.6) rgba(139, 92, 246, 0.1);
}

/* Firefox scrollbar for sidebar - OVERRIDE GLOBAL */
.sidebar {
  scrollbar-width: thin !important;
  scrollbar-color: #0f0f0f #1a1a1a !important;
}

/* ===== FLEXBOX LAYOUTS - CENTERED ===== */

.service-grid,
.product-grid,
.pricing-grid,
.audit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem);
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}
  
/* .about-card - DUPLICATE REMOVED - using definition from line 569 */
  .service-card,
  .product-card,
  .pricing-card,
.audit-item {
  background: rgba(16, 24, 32, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  margin: 0;
}


/* Sidebar right border line - full page height - REMOVED DUPLICATE */

/* Video bottom border line - thick like sidebar */
.video-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.8) 100%);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
  z-index: 2;
}

/* ===== SECTION SEPARATOR LINES ===== */
/* Horizontal separator lines for each module section - EXCLUDING HERO/VIDEO */
.content-section:not(#hero)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; /* Centered, not full width */
  max-width: 800px; /* Maximum width for very large screens */
  height: 3px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.8) 100%);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
  z-index: 2;
  transform-origin: center;
}

/* Remove line from last section (Contact) */
.content-section:last-child::after {
  display: none;
}

/* Hover effects for separator lines */
.content-section:not(#hero):hover::after {
  background: linear-gradient(90deg, rgba(139, 92, 246, 1) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 1) 100%);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
}

/* Enhanced section spacing with separator lines */
.content-section {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 100px;
  padding-top: clamp(3rem, 6vw, 5rem);
}

/* Specific spacing for sections with separators */
#hero {
  padding-bottom: 60px;
}

#about {
  padding-bottom: 80px;
}

#services {
  padding-bottom: 80px;
}

#ai-audit {
  padding-bottom: 80px;
}

#products {
  padding-bottom: 80px;
}

#pricing {
  padding-bottom: 80px;
}

#contact {
  padding-bottom: 40px; /* No separator line needed */
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #8b5cf6;
}

/* .about-card h3, .about-card p - DUPLICATES REMOVED - using definitions from line 594 and 602 */
.service-card h3,
.product-card h3,
.pricing-card h3,
.audit-item h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  margin-bottom: 15px;
  text-align: center;
}

.service-card p,
.product-card p,
.pricing-card p,
.audit-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  width: 100%;
  display: flex;
  justify-content: center;
}

.language-flags {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.language-btn {
  width: 32px;
  height: 24px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.language-btn:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.language-btn.active {
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
  transform: scale(1.15);
}

.language-btn img,
.language-btn svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.language-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 92, 246, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.language-btn:hover::before {
  opacity: 1;
}

.language-btn.active::before {
  opacity: 0.2;
}

/* ===== RESPONSIVE CENTERING ===== */
/* ===== RESPONSIVE GRID LAYOUTS ===== */
/* Consolidated grid layouts for all screen sizes */

/* LARGE SCREEN GRID ADJUSTMENTS (1200px and below) */
@media (max-width: 1200px) {
  .section-content,
  .service-grid,
  .product-grid,
  .pricing-grid,
  .audit-grid {
    max-width: 1000px;
    padding: 2rem clamp(1rem, 3vw, 2rem);
  }
  
  /* Services Container Responsive */
  .services-container {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  /* About Grid Responsive - now uses standard grid layout */
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .about-card {
    max-width: 100%;
    min-height: 400px;
  }
  
  .services-buttons {
    order: -1;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    min-height: auto;
  }
  
  .service-btn {
    min-width: 200px;
    flex-shrink: 0;
  }
  
  .service-content-area {
    min-height: 350px;
    padding: 1.5rem;
  }
  
  /* .about-grid, .about-card - DUPLICATES REMOVED - using main definitions */
  
  /* LARGE SCREEN SEPARATOR ADJUSTMENTS */
  .content-section:not(#hero)::after {
    height: 3px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
    width: 75%;
    max-width: 700px;
  }
  
  /* TABLET SECTION SPACING */
  .content-section {
    padding-top: 4rem;
    padding-bottom: 90px;
    margin-bottom: 2.5rem;
  }
}


/* ULTRA-MOBILE GRID ADJUSTMENTS (480px and below) */
@media (max-width: 480px) {
  .section-content,
  .service-grid,
  .product-grid,
  .pricing-grid,
  .audit-grid {
    padding: 2rem clamp(1rem, 3vw, 2rem);
  }
  
  /* Services Container Mobile */
  .services-container {
    gap: 1rem;
  }
  
  /* About Grid Mobile - now uses standard responsive grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .about-card {
    min-height: 350px;
    padding: 1.25rem;
  }
  
  .services-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .service-btn {
    min-width: auto;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .service-content-area {
    padding: 1.25rem;
    min-height: auto;
  }
  
  .service-content-area h3 {
    font-size: 1.5rem;
  }
  
  .service-content-area p {
    font-size: 1rem;
  }
  
  /* Language Switcher Mobile */
  .language-switcher {
    margin-bottom: 1rem;
  }
  
  .language-btn {
    width: 28px;
    height: 20px;
  }
  
  
  .hero-content {
    padding: 0 10px;
  }
  
  .section-header {
    padding: 12px 8px;
    margin-bottom: 5px;
  }
  
  .section-title {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: 4px;
  }
  
  .section-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  }
  
  .contact-form {
    padding: 25px 20px;
    margin: 0 15px;
    max-width: 100%;
  }
  
  /* ULTRA-MOBILE FORM ADJUSTMENTS */
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-group textarea {
    min-height: 150px;
  }
  
  /* ULTRA-MOBILE CONTACT ITEMS */
  .contact-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-icon {
    font-size: 1.8rem;
  }
  
  .contact-item h4 {
    font-size: 1.1rem;
  }
  
  .contact-item p {
    font-size: 0.9rem;
  }
  
  /* ULTRA-MOBILE PRICING ADJUSTMENTS */
  .pricing-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem auto;
  }
  
  .pricing-pillar {
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  .pricing-info-block {
    padding: 1.5rem;
  }
  
  /* Social media - REMOVED */
    margin: 2rem 0;
    border-radius: 16px;
  }
  
  .pricing-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .pricing-guarantees {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .guarantee-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .guarantee-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* ULTRA-MOBILE SEPARATOR LINES */
  .content-section:not(#hero)::after {
    height: 2px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    width: 90%;
    max-width: 400px;
  }
  
  /* ULTRA-MOBILE SECTION SPACING */
  .content-section {
    padding-bottom: 80px;
    padding-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  #hero {
    padding-bottom: 40px;
  }
  
  #about,
  #services,
  #ai-audit,
  #products,
  #pricing {
    padding-bottom: 60px;
  }
  
  #contact {
    padding-bottom: 30px;
  }
}

/* ===== CTA BUTTONS STYLING ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 160px;
  justify-content: center;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}


.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #8b5cf6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-btn i {
  font-size: 18px;
}

.cta-btn .btn-text {
  display: inline;
}

.cta-btn .btn-loading {
  display: none;
}

.cta-btn.loading .btn-text {
  display: none;
}

.cta-btn.loading .btn-loading {
  display: inline;
}

/* ===== MODERN ANIMATIONS 2026 ===== */
/* @keyframes fadeInUp removed for better performance */

/* @keyframes separatorGlow removed for better performance */

/* @keyframes separatorSlideIn removed for better performance */

/* @keyframes fadeInScale removed for better performance */

/* @keyframes pulseGlow removed for better performance */

/* @keyframes float removed for better performance */

/* Apply animations to hero elements */
/* .hero-logo-small-img animations removed for better performance */

/* Hero animations removed for better performance */

/* Smooth reveal animations for sections */
.content-section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Parallax effect for video background */
.video-bg {
  transform: translateZ(0);
  will-change: transform;
}

/* WordPress admin bar compensation - ensure video reaches top */
body.admin-bar .video-bg {
  top: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.admin-bar #hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Glassmorphism effects removed - now using clean transparent background */

/* ===== CRITICAL RESPONSIVE MEDIA QUERIES ===== */

/* TABLET & SMALL DESKTOP (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    max-width: 95%;
    padding: 0 1.5rem;
  }
  
  .sidebar-nav {
    width: 280px;
  }
  
  .content-container {
    margin-left: 0;
    padding: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .section-content {
    padding: 3rem 1.5rem;
  }
  
  .service-grid,
  .product-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
}

/* MOBILE LARGE (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .sidebar-nav {
    width: 100%;
    transform: translateX(-100%);
  }
  
  .service-grid,
  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-content {
    padding: 2rem 1rem;
  }
  
  .hero-content {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* MOBILE SMALL (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .section-content {
    padding: 1.5rem 0.75rem;
  }
  
  .hero-content {
    padding: 1.5rem 0.75rem;
  }
  
  .hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
  
  .cta-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .sidebar-btn {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
}

/* ULTRA MOBILE (max-width: 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .section-content {
    padding: 1rem 0.5rem;
  }
  
  .hero-content {
    padding: 1rem 0.5rem;
  }
  
  .hero-content h1 {
    font-size: clamp(1.5rem, 10vw, 1.75rem);
  }
  
  .cta-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* ===== LOADS MANAGEMENT LOGO TITLE ===== */
.lm-logo-title {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b5cf6;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lm-logo-title:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* ===== ENTERPRISE-LEVEL MICRO-INTERACTIONS ===== */
.sidebar-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.sidebar-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.cta-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn:active::after {
  width: 300px;
  height: 300px;
}

/* ===== ENHANCED FOCUS STATES ===== */
.sidebar-btn:focus-visible,
.cta-btn:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

/* ===== SMOOTH SCROLLING ENHANCEMENT ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #8b5cf6;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== ENTERPRISE ACCESSIBILITY STYLES ===== */
.keyboard-navigation *:focus {
  outline: 2px solid #8b5cf6 !important;
  outline-offset: 2px !important;
}

.skip-link:focus {
  top: 6px !important;
}

/* ===== ENTERPRISE ANIMATION OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ENTERPRISE PRINT STYLES ===== */
@media print {
  .sidebar,
  .hamburger,
  .video-bg,
  .cta-btn {
    display: none !important;
  }
  
  .content-container {
    margin-left: 0 !important;
  }
  
  body {
    background: transparent !important;
    color: black !important;
  }
}

/* ===== ENTERPRISE RESPONSIVE OPTIMIZATIONS ===== */

/* ULTRA-WIDE DISPLAYS (2560px+) */
@media (min-width: 2560px) {
  .container {
    max-width: 2400px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: clamp(4rem, 8vw, 6rem);
  }
  
  .section-content {
    padding: 6rem 2rem;
  }
}

/* 4K DISPLAYS (3840px+) */
@media (min-width: 3840px) {
  .container {
    max-width: 3600px;
  }
  
  .hero-content h1 {
    font-size: clamp(5rem, 10vw, 8rem);
  }
}

/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  /* Mobile video optimization */
  .video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    margin: 0;
    padding: 0;
  }
  
  /* Mobile video fallback */
  .video-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile sidebar optimization */
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    visibility: hidden;
    display: none;
  }
  
  .sidebar.active {
    transform: translateX(0);
    visibility: visible;
    display: block;
  }
  
  /* Mobile touch optimization */
  .sidebar-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  
  /* Mobile sidebar close optimization */
  .sidebar {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Mobile video container fix */
  .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  /* Naprawienie scrollowania - zaczyna od hero */
  html, body {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
  }
  
  /* Zapewnij że hero jest na górze */
  #hero {
    position: relative;
    z-index: 1;
  }
  
  /* Enhanced mobile interactions */
  .sidebar-btn:active {
    transform: scale(0.95);
  }
  
  .cta-btn:active {
    transform: scale(0.98);
  }
  
  /* Optymalizacja obrazów */
  img {
    loading: lazy;
    decoding: async;
  }
  
  /* Zmniejsz animacje na mobile */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
  }
  
  /* Wyłącz hover effects na mobile */
  .sidebar-btn:hover,
  .cta-btn:hover,
  .service-btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Critical CSS - tylko najważniejsze style */
  .hero-content {
    will-change: auto;
    transform: translateZ(0);
  }
  
  /* Wyłącz niepotrzebne efekty */
  .sidebar-nav {
    backdrop-filter: none;
    background: rgba(15, 23, 42, 0.95);
  }
  
  /* Optymalizacja fontów */
  body {
    font-display: swap;
  }
}