html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #18181b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.hero-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 4vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: #22c55e;
  color: white;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 200px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-banner {
    min-height: 40vh;
    border-radius: 0 0 24px 24px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .hero-content {
    padding: 0 1vw;
  }
}
.topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  background: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #f1f5f9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo-container:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.5px;
}
.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
  color: #22c55e;
  border-bottom-color: #22c55e;
}
.lang-switcher-desktop {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.lang-switcher-mobile { display: none; }
.menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .lang-switcher-desktop { display: none; }
  .menu-toggle { display: flex; align-items: center; margin-left: auto; }
  .lang-switcher-mobile { display: flex; gap: 0.5rem; margin-top: auto; }
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.menu-toggle:focus,
.menu-toggle:hover {
  background: #e6fbe8;
}
.side-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 24px 0 rgba(34,197,94,0.07);
  z-index: 1200 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 2.5rem 2rem 2rem 2rem;
  box-sizing: border-box;
  transition: right 0.35s cubic-bezier(.77,0,.18,1);
}
.side-menu.open { right: 0; }
.close-menu { background: none; border: none; cursor: pointer; margin-bottom: 2.5rem; align-self: flex-end; padding: 0.2rem; border-radius: 4px; transition: background 0.2s; }
.close-menu:focus, .close-menu:hover { background: #e6fbe8; }
.side-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  width: 100%;
}

.side-menu ul { list-style: none; padding: 0; margin: 0 0 2.5rem 0; width: 100%; }
.side-menu ul li { margin-bottom: 1.5rem; }
.side-menu a { text-decoration: none; color: #18181b; font-size: 1.15rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
.side-menu a:hover { color: #22c55e; }
.side-menu .lang-switcher { display: flex; gap: 0.5rem; margin-top: auto; }
.lang-switcher button { background: none; border: none; cursor: pointer; padding: 0.2rem; border-radius: 4px; transition: background 0.2s; }
.lang-switcher button:focus, .lang-switcher button:hover { background: #e6fbe8; }
.lang-switcher img { width: 24px; height: 24px; display: block; }
.overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(34,34,34,0.18); z-index: 1100 !important; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.show { opacity: 1; pointer-events: all; }
.centered-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 70vh;
  padding: 0;
  box-sizing: border-box;
}
.saas-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4vw;
  background: linear-gradient(120deg, #f0fdfa 0%, #f8fafc 100%);
  border-radius: 0 0 64px 64px;
  box-shadow: none;
  padding: 5vw 8vw 4vw 8vw;
  margin-bottom: 0;
  max-width: 100vw;
  width: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.saas-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0; left: 0;
  height: 120px;
  background: linear-gradient(0deg, #f8fafc 0%, transparent 100%);
  z-index: 1;
}
.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
/* Wyśrodkowanie tekstu na stronie oferty */
.saas-hero .hero-content {
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  flex: none; /* usuwa flex constraints */
}
/* Jeśli saas-hero ma tylko hero-content, wyśrodkuj go */
.saas-hero:has(.hero-content:only-child) {
  justify-content: center;
}
/* Fallback dla starszych przeglądarek */
.saas-hero.center-content {
  justify-content: center;
}
.saas-hero .big-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #18181b;
  letter-spacing: -2px;
  line-height: 1.08;
}
.saas-hero .hero-desc {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.1rem 2.6rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 24px 0 rgba(34,197,94,0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
  transform: translateY(-2px) scale(1.03);
}
.hero-illustration {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-illustration svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(34,197,94,0.10));
}
.benefits, .brands-logos, .how-it-works, .testimonials, .faq {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 0 auto;
  max-width: 100vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #18181b;
  margin: 5vw 0 2.2rem 0;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1.1;
}
.benefits-list, .brands-logos-list, .how-steps, .testimonials-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 0;
  max-width: 100vw;
  box-sizing: border-box;
}
.benefit-box, .brand-logo, .how-step, .testimonial-box {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s;
  margin-bottom: 2vw;
}
.benefit-icon, .how-icon {
  margin-bottom: 1.1rem;
}
.benefit-box h3, .how-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: #22c55e;
  letter-spacing: -0.5px;
}
.benefit-box p, .how-step p {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}
.brand-logo { 
  flex-shrink: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  min-width: 120px;
  height: 80px;
}
.brand-logo img { 
  filter: grayscale(0.8) opacity(0.6); 
  transition: filter 0.3s ease, transform 0.2s ease; 
  max-width: 100%; 
  max-height: 40px;
  width: auto; 
  height: auto; 
  object-fit: contain; 
}
@media (max-width: 600px) {
  .brand-logo img {
    max-height: 28px;
  }
}
.brand-logo:hover img { 
  filter: grayscale(0) opacity(1); 
  transform: scale(1.05);
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track.js-animation {
  transition: none;
}
.brand-logo img[alt="Prija"] {
  max-height: 75px; /* większe niż standardowe 60px */
  transform: scale(1.1);
}
.how-steps { gap: 4vw; position: relative; }
.how-steps::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%; right: 10%; height: 3px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  z-index: 0;
  border-radius: 2px;
}
.how-step { background: #fff; border-radius: 50%; box-shadow: 0 2px 12px 0 rgba(34,197,94,0.06); min-width: 120px; max-width: 180px; padding: 2.2rem 1.2rem 1.2rem 1.2rem; position: relative; z-index: 1; }
.how-step h3, .how-step p { color: #18181b; }
.testimonials-list { gap: 3vw; }
.testimonial-box { 
  background: rgba(34,197,94,0.07); 
  border-radius: 24px; 
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.06); 
  padding: 2.5rem 1.5rem 1.5rem 1.5rem; 
  min-width: 220px; 
  max-width: 340px; 
  position: relative; 
  margin-bottom: 2vw;
  flex-shrink: 0;
}
.testimonial-quote { font-size: 4rem; color: #22c55e; font-weight: 700; margin-bottom: 0.7rem; line-height: 1; opacity: 0.15; position: absolute; left: 1.2rem; top: 0.5rem; z-index: 0; }
.testimonial-box p { font-size: 1.15rem; color: #18181b; margin: 0 0 1.1rem 0; font-weight: 500; position: relative; z-index: 1; }
.testimonial-author { font-size: 1rem; color: #888; font-weight: 500; position: relative; z-index: 1; }
.faq {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 5vw auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-list {
  width: 100%;
  margin-top: 1.5rem;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #18181b;
  text-align: left;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: background 0.18s;
  border-radius: 0;
  padding-bottom: 16px;
}
.faq-question[aria-expanded="true"] {
  background: #e6fbe8;
  color: #22c55e;
}
.faq-answer {
  padding: 0 1.2rem 1.1rem 1.2rem;
  font-size: 1rem;
  color: #444;
  font-weight: 400;
  animation: fadeInFaq 0.3s;
  /* margin-top: 0.5rem; usunięte */
}
.faq-answer:not([hidden]) {
  padding-top: 16px;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
footer {
  width: 100%;
  text-align: center;
  padding: 3.2rem 0 1.2rem 0;
  font-size: 1rem;
  color: #888;
  border-top: none;
  background: transparent;
  margin-top: auto;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}
.footer-socials a svg {
  display: block;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}
.footer-socials a:hover svg {
  opacity: 0.7;
}
.marquee-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 5vw auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 1.5rem;
  background: none;
}
.marquee-track {
  display: flex;
  gap: 3vw;
  /* Animacja będzie obsługiwana przez JavaScript */
}
/* Fallback animacja CSS dla przypadku gdy JS nie zadziała */
.marquee-track.css-animation {
  animation: marquee-fallback 30s linear infinite;
}
@keyframes marquee-fallback {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.timeline-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 5vw auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-top: 2.5rem;
  gap: 2vw;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50%; left: 6%; right: 6%; height: 4px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  z-index: 0;
  border-radius: 2px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 180px;
  max-width: 320px;
  flex: 1 1 0;
  animation: fadeInUp 0.8s both;
}
.timeline-icon {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.06);
  padding: 1.1rem;
  margin-bottom: 1.2rem;
  z-index: 2;
  position: relative;
}
.timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.timeline-img {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e0fce6 0%, #f8fafc 100%);
  box-shadow: 0 4px 24px 0 rgba(34,197,94,0.10);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: box-shadow 0.2s;
}
.timeline-img:hover {
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
}
.faq-question {
  background: none;
  color: #18181b;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.faq-question[aria-expanded="true"] {
  background: #e6fbe8;
  color: #22c55e;
  padding-bottom: 0.5rem;
}
.faq-answer {
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
  padding: 0 1.2rem 1.1rem 1.2rem;
  font-size: 1rem;
  color: #444;
  font-weight: 400;
  animation: fadeInFaq 0.3s;
  z-index: 0;
}
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(34,197,94,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c1;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-bg {
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.22;
  filter: blur(2px) grayscale(0.2);
  pointer-events: none;
}
.benefits-bg > *:not(.benefits-photo-bg):not(.benefits-bg-img) { position: relative; z-index: 1; }
.testimonials-img-bg {
  position: relative;
  overflow: visible;
}
.testimonials-photo-bg {
  position: absolute;
  left: -120px;
  top: 40px;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.13);
  opacity: 0.22;
  z-index: 0;
  filter: grayscale(0.1) blur(0.5px);
  pointer-events: none;
}
.testimonials > *:not(.testimonials-photo-bg) { position: relative; z-index: 1; }
.saas-hero > *:not(.hero-bg-img) { position: relative; z-index: 1; }
.benefits-bg {
  position: relative;
  overflow: visible;
}
.benefits-bg-img {
  position: absolute;
  top: -60px; right: -120px;
  width: 340px; height: 220px;
  z-index: 0;
  background: none;
  pointer-events: none;
}
.benefits-bg-img::before {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 60% 40%, #22c55e33 0%, #f8fafc 80%);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  filter: blur(8px);
}
.benefits > *:not(.benefits-bg-img) { position: relative; z-index: 1; }
.timeline-minimal {
  width: 100%;
  position: relative;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-minimal-line {
  position: absolute;
  top: 28px; left: 8%; right: 8%; height: 3px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  border-radius: 2px;
  z-index: 0;
}
.timeline-minimal-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2vw;
  position: relative;
  z-index: 1;
}
.timeline-minimal-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 320px;
  flex: 1 1 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}
.timeline-minimal-icon {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  z-index: 2;
  position: relative;
  transition: box-shadow 0.2s;
}
.timeline-minimal-step:hover .timeline-minimal-icon {
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
}
.timeline-minimal-step h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
  color: #22c55e;
  letter-spacing: -0.5px;
  text-align: center;
}
.timeline-minimal-step p {
  font-size: 1.03rem;
  color: #444;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.timeline-minimal-icon img {
  filter: invert(48%) sepia(92%) saturate(749%) hue-rotate(86deg) brightness(92%) contrast(92%);
}
@media (max-width: 1100px) {
  .saas-hero, .benefits, .brands-logos, .how-it-works, .testimonials, .faq {
    max-width: 98vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 900px) {
  .topbar { padding: 1.2rem 2vw 1rem 2vw; }
  .saas-hero { flex-direction: column; gap: 2rem; padding: 2rem 2vw 2rem 2vw; min-height: 320px; border-radius: 0 0 32px 32px; }
  .hero-content, .hero-illustration { max-width: 100%; min-width: 0; }
  .saas-hero .big-title { font-size: 2rem; }
  .section-title { font-size: 1.3rem; margin: 3vw 0 1.2rem 0; }
  .benefits-list, .brands-logos-list, .how-steps, .testimonials-list { gap: 1.2rem; }
  .how-steps::before { left: 5%; right: 5%; }
  .timeline { flex-direction: column; gap: 2.5rem; }
  .timeline::before { top: 0; left: 0; right: 0; height: 100%; width: 4px; background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%); }
  .timeline-step { flex-direction: row; align-items: flex-start; min-width: 0; max-width: 100%; }
  .timeline-icon { margin-bottom: 0; margin-right: 1.2rem; }
  .timeline-content { align-items: flex-start; }
  .timeline-minimal-line { display: none; }
  .timeline-minimal-steps { flex-direction: column; gap: 2.5rem; }
  .timeline-minimal-step { max-width: 100%; min-width: 0; }
  .benefits-photo-bg {
    width: 180px;
    height: 180px;
    right: -40px;
    top: 60px;
  }
  .testimonials-photo-bg {
    width: 120px;
    height: 120px;
    left: -30px;
    top: 80px;
  }
}
@media (max-width: 600px) {
  .centered-content { padding: 0.5rem 0.5rem; }
  .saas-hero { padding: 1.2rem 0.5rem 1.2rem 0.5rem; min-height: 180px; }
  .section-title { font-size: 1.1rem; }
  .benefit-box, .brand-logo, .how-step, .testimonial-box { min-width: 0; max-width: 100%; }
  .how-steps { gap: 0.5rem; }
  .how-steps::before { left: 10%; right: 10%; }
  .benefits-photo-bg, .testimonials-photo-bg { display: none; }
  .hero-label {
    display: none !important;
  }
  .benefits-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .how-it-works,
  .timeline-section {
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .testimonials,
  .testimonials-img-bg {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
  }
} 
.professional-photo {
  border-radius: 18px !important;
  box-shadow: 0 8px 32px 0 rgba(34,37,94,0.13), 0 1.5px 8px 0 rgba(34,197,94,0.08);
  opacity: 0.96;
  filter: grayscale(0.04);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.benefits-photo-float-wrap {
  position: absolute;
  top: 480px;
  right: 2vw;
  width: 320px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.benefits-photo-float {
  width: 260px;
  height: 340px;
  object-fit: cover;
  margin-right: 0;
}
.testimonials-photo-float-wrap {
  position: absolute;
  left: 2vw;
  top: 2300px;
  width: 260px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.testimonials-photo-float {
  width: 220px;
  height: 300px;
  object-fit: cover;
  margin-left: 0;
}
@media (max-width: 1200px) {
  .benefits-photo-float-wrap { width: 180px; top: 600px; }
  .benefits-photo-float { width: 120px; height: 180px; }
  .testimonials-photo-float-wrap { width: 100px; top: 2700px; }
  .testimonials-photo-float { width: 80px; height: 120px; }
}
@media (max-width: 900px) {
  .benefits-photo-float-wrap, .testimonials-photo-float-wrap { display: none; }
} 
.team-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  max-width: 1100px;
  margin: 6vw auto 4vw auto;
  padding: 0 2vw;
}
.team-img-wrap {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}
.team-img {
  width: 320px;
  height: 520px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
}
.team-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
}
.team-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.7rem 0;
  color: #18181b;
}
.team-content p {
  font-size: 1.15rem;
  color: #444;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}
.team-content .team-subtitle {
  font-size: 1.22rem;
  color: #3a3a3a;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.2px;
}
.logistics-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  max-width: 1100px;
  margin: 6vw auto 4vw auto;
  padding: 0 2vw;
  flex-direction: row-reverse;
}
.logistics-img-wrap {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-start;
}
.logistics-img {
  width: 320px;
  height: 520px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
}
.logistics-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1.2rem;
  text-align: right;
}
.logistics-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.7rem 0;
  color: #18181b;
}
.logistics-content p {
  font-size: 1.15rem;
  color: #444;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}
.values-section {
  width: 100%;
  max-width: 1100px;
  margin: 6vw auto 4vw auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.values-list {
  display: flex;
  gap: 3vw;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.value-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.07);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s;
}
.value-box:hover {
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.13);
}
.value-icon {
  margin-bottom: 1.1rem;
}
.value-box h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
  color: #22c55e;
  letter-spacing: -0.5px;
}
.cta-section {
  width: 100%;
  max-width: 900px;
  margin: 7vw auto 5vw auto;
  padding: 3.5rem 2vw 3.5rem 2vw;
  background: linear-gradient(120deg, #f0fdfa 0%, #f8fafc 100%);
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(34,197,94,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #18181b;
  margin: 0;
}
@media (max-width: 900px) {
  .team-section, .logistics-section {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .team-img, .logistics-img {
    width: 90vw;
    height: 220px;
    max-width: 340px;
  }
  .team-content, .logistics-content {
    align-items: center;
    text-align: center;
  }
  .logistics-section { flex-direction: column-reverse; }
  .values-list { gap: 1.2rem; }
}
@media (max-width: 600px) {
  .team-img, .logistics-img { width: 98vw; height: 160px; max-width: 100%; }
  .cta-section { padding: 2rem 0.5rem; }
} 
.alt-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  max-width: 1200px;
  margin: 7vw auto 5vw auto;
  padding: 0 2vw;
}
.alt-section .section-img-col {
  flex: 1 1 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alt-section .section-img {
  width: 580px;
  height: 680px;
  max-width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.alt-section .section-text-col {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 260px;
  padding-left: 0;
  margin-left: 0;
}
.alt-section .section-text-col h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 0 0.7rem 0;
  color: #18181b;
}
.alt-section .section-text-col p {
  font-size: 1.22rem;
  color: #3a3a3a;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.2px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #22c55e;
}

.team-benefits-list {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-left: 0;
  padding-left: 0;
}

.team-benefit-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 180px;
}

.team-benefit-icon {
  flex-shrink: 0;
}

.team-benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
  line-height: 1.4;
}

.logistics-subtitle {
  font-size: 1.22rem;
  color: #3a3a3a;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.2px;
}

.logistics-benefits-list {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-left: 0;
  padding-left: 0;
}

.logistics-benefit-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 180px;
}

.logistics-benefit-icon {
  flex-shrink: 0;
}

.logistics-benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .team-benefits-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .team-benefit-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  
  .logistics-benefits-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .logistics-benefit-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
.alt-section.alt-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1100px) {
  .alt-section {
    flex-direction: column;
    gap: 2.5rem;
    max-width: 98vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .alt-section .section-img {
    width: 90vw;
    height: 260px;
    max-width: 100%;
    max-height: 320px;
  }
  .alt-section .section-text-col {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .alt-section .section-img {
    width: 98vw;
    height: 260px;
    max-width: 100%;
    max-height: 100vw;
  }
  .alt-section .section-text-col h2 {
    font-size: 1.2rem;
  }
  .alt-section .section-text-col p {
    font-size: 1rem;
  }
} 
/* Contact Page Styles */
.contact-hero-banner {
  position: relative;
  background: #f8fafc;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

/* Offer Page Hero with Gradient */
.offer-hero-banner {
  position: relative;
  background: linear-gradient(120deg, #f0fdfa 0%, #f8fafc 100%);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #18181b;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.contact-breadcrumb {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.6;
}

.contact-main-content {
  background: #fff;
  padding: 4rem 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-column {
  padding-right: 2rem;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1rem;
}

.contact-form-desc {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.contact-submit-btn {
  background: #374151;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: #1f2937;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info-section {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1rem;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info-content p {
  font-size: 1rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

.contact-address {
  font-weight: 500;
}

.contact-phone,
.contact-email {
  color: #22c55e !important;
  font-weight: 500;
}

.contact-phone a,
.contact-email a {
  color: inherit;
  text-decoration: none;
}

.contact-phone a:hover,
.contact-email a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-column {
    padding-right: 0;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .contact-hero-banner {
    padding: 3rem 0;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-main-content {
    padding: 3rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-section {
    padding: 1.5rem;
  }
}

.contact-details-modern {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(34,197,94,0.07);
  padding: 2.5rem 2vw 2.5rem 2vw;
  max-width: 700px;
  margin: 4vw auto 4vw auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}
.contact-detail-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.06);
  padding: 1.5rem 2rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6fbe8;
  border-radius: 12px;
  font-size: 2rem;
}
.contact-detail-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.2rem;
}
.contact-detail-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .contact-details-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .contact-detail-box {
    min-width: 0;
    max-width: 100%;
    padding: 1.2rem 1rem;
  }
} 
.stats-section {
  width: 100%;
  max-width: 1100px;
  margin: 6vw auto 4vw auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.stats-list {
  display: flex;
  gap: 3vw;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.stat-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.07);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat-label {
  font-size: 1.13rem;
  font-weight: 500;
  color: #18181b;
  margin: 0;
  letter-spacing: -0.5px;
}
@media (max-width: 900px) {
  .stats-list { gap: 1.2rem; }
  .stat-box { min-width: 0; max-width: 100%; }
} 
.feature-split-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw;
  max-width: 1200px;
  margin: 7vw auto 6vw auto;
  padding: 0 2vw;
  background: none;
}
.feature-split-img-col {
  flex: 1 1 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-split-img {
  width: 420px;
  height: 420px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 48px 0 rgba(34,37,94,0.13);
}
.feature-split-content-col {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.2rem;
  min-width: 260px;
}
.feature-split-label {
  color: #2563eb;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.feature-split-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #18181b;
  margin: 0 0 0.7rem 0;
  letter-spacing: -1px;
  line-height: 1.1;
}
.feature-split-desc {
  font-size: 1.18rem;
  color: #444;
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  line-height: 1.5;
}
.feature-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  width: 100%;
}
.feature-split-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.feature-split-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: none;
}
.feature-split-list-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.2rem;
}
.feature-split-list-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .feature-split-section {
    flex-direction: column;
    gap: 2.5rem;
    max-width: 98vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .feature-split-img {
    width: 90vw;
    height: 220px;
    max-width: 100%;
    max-height: 320px;
  }
  .feature-split-content-col {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .feature-split-img {
    width: 98vw;
    height: 160px;
    max-width: 100%;
    max-height: 180px;
  }
  .feature-split-title {
    font-size: 1.3rem;
  }
  .feature-split-list-title {
    font-size: 1rem;
  }
} 
/* SLIDER OPINII - DZIAŁAJĄCY KOD */
.testimonials-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* 3 slajdy = 300% */
}

.testimonial-slide {
  width: 33.333%; /* każdy slajd to 1/3 szerokości */
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 10px;
}

.testimonial-slide .testimonial-box {
  flex: 1;
  background: rgba(34,197,94,0.07);
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.06);
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  min-height: 180px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: #22c55e;
}

@media (max-width: 900px) {
  .testimonial-slide {
    flex-direction: column;
    gap: 16px;
  }
  
  .testimonial-slide .testimonial-box {
    min-height: 160px;
  }
}

@media (max-width: 600px) {
  .testimonials-container {
    max-width: 100vw;
    padding: 0 10px;
  }
  
  .testimonial-slide {
    padding: 0 5px;
    gap: 12px;
  }
} 
/* --- SEKCA FIRMY: GRID LOGOTYPÓW --- */
.companies-logos {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.2rem 2.2rem;
  width: 100%;
  margin-top: 1.5rem;
  justify-items: center;
  align-items: center;
  justify-content: center;
  grid-auto-flow: row;
  /* Poprawka: ogranicz max-width i centruj całą siatkę */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  /* Dodaję delikatny margines dolny, by oddzielić od kolejnej sekcji */
  margin-bottom: -5vw;
}
.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 80px;
  max-width: 180px;
  max-height: 100px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInCompany 0.8s forwards;
  /* Wyśrodkowanie w gridzie */
  margin-left: auto;
  margin-right: auto;
}
.company-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.7) opacity(0.7);
  transition: filter 0.3s, transform 0.2s;
}
.company-logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.07);
}
@keyframes fadeInCompany {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.companies-grid .company-logo {
  animation-delay: calc(var(--i, 0) * 0.08s);
}
@media (max-width: 900px) {
  .companies-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1.2rem 1.2rem;
  }
  .company-logo {
    min-width: 80px;
    max-width: 120px;
    min-height: 60px;
    max-height: 70px;
  }
  .company-logo img {
    max-height: 60px;
  }
}
@media (max-width: 600px) {
  .companies-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.7rem 0.7rem;
  }
  .company-logo {
    min-width: 60px;
    max-width: 90px;
    min-height: 40px;
    max-height: 50px;
  }
  .company-logo img {
    max-height: 40px;
  }
} 
/* --- STOPKA NOWY UKŁAD --- */
.footer-modern {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 3.5rem 0 1.2rem 0;
  font-size: 1rem;
  color: #18181b;
  margin-top: 4vw;
}
.footer-main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3vw;
  max-width: 1100px;
  margin: 0 auto 2.2rem auto;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 120px;
  max-width: 320px;
  flex: 1 1 180px;
  box-sizing: border-box;
}
.footer-brand {
  flex: 0 0 180px;
  max-width: 200px;
  min-width: 120px;
}
.footer-contact-col {
  flex: 0 0 260px;
  max-width: 320px;
  min-width: 180px;
}
.footer-links-col {
  flex: 1 1 180px;
  min-width: 120px;
}
.footer-photos-col {
  flex: 0 0 180px;
  min-width: 120px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #18181b;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1rem;
  color: #374151;
  text-align: left;
}
.footer-contact a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-contact a:hover {
  color: #22c55e;
}
.footer-links-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  color: #18181b;
  text-align: left;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.footer-links-col a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-links-col a:hover {
  color: #22c55e;
}
.footer-photos-title {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: #888;
  text-align: left;
}
.footer-photos-content {
  font-size: 1rem;
  color: #888;
}
.footer-photos-content a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-photos-content a:hover {
  color: #22c55e;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1rem;
  color: #888;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-hc a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-hc a:hover {
  color: #22c55e;
}
.footer-hc img {
  height: 24px;
  vertical-align: middle;
  margin-left: 0.5rem;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 2.2rem;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }
  .footer-brand, .footer-contact-col, .footer-links-col, .footer-photos-col {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
} 
.benefits,
.benefits-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefits-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2.5rem;
}
.benefit-box {
  align-items: center;
  text-align: center;
}

@media (max-width: 600px) {
  .section-img.professional-photo {
    height: 420px;
    aspect-ratio: 3/4;
    max-width: 60vw;
    max-height: 120vw;
  }
}

@media (max-width: 600px) {
  .team-benefits-list,
  .logistics-benefits-list {
    flex-direction: column !important;
    gap: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: flex-start !important;
  }
  .team-benefit-card,
  .logistics-benefit-card {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.8rem !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    width: auto !important;
  }
}

@media (max-width: 600px) {
  .logistics-section.alt-section.alt-reverse {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }
  .logistics-section.alt-section.alt-reverse .logistics-content {
    align-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .logistics-section.alt-section.alt-reverse {
    margin-bottom: 4rem !important;
  }
}

@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 1.25rem !important;
  }
  .cta-btn {
    font-size: 0.95rem !important;
    padding: 0.7rem 1.2rem !important;
  }
}

@media (max-width: 600px) {
  .footer-modern {
    padding: 1.2rem 0 0.7rem 0 !important;
    font-size: 0.92rem !important;
  }
  .footer-main {
    gap: 0.7rem !important;
    align-items: center !important;
    padding: 0 0.5rem !important;
  }
  .footer-bottom {
    gap: 0.3rem !important;
    align-items: center !important;
    padding-top: 0.5rem !important;
    font-size: 0.9rem !important;
    text-align: center !important;
  }
  .footer-col, .footer-brand, .footer-contact-col, .footer-links-col, .footer-photos-col {
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .footer-logo {
    justify-content: center !important;
    margin-bottom: 0.7rem !important;
  }
  .footer-contact, .footer-links-col ul, .footer-photos-content {
    align-items: center !important;
    text-align: center !important;
    gap: 0.3rem !important;
  }
  .footer-links-col {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .cta-section {
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}