@font-face {
  font-family: 'Gotham';
  src: url('https://www.appmewo.cfd/fonts/Gotham.woff2') format('woff2'),
       url('https://www.appmewo.cfd/fonts/Gotham.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  background: #F7F8FC; /* tło całości, jak w projekcie */
  font-family: 'Karla', Arial, sans-serif;
  color: #1B2B35;
  width: 100vw;
  min-width: 100vw;
}

.nav.open {
    display: flex;
}

.container {
  width: 100%;
  max-width: 1440px;   /* lub 1640px zależnie od projektu */
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
    width: 80vw;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

.header {
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 4;
  background: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-bg {
  opacity: 0.8; 
  background: #FFF;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 200px;
  height: 59.07px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.nav { display: flex; }
.nav a {
  color: var(--white, #FFF);
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  padding: 0.2em 0.9em;
  border-radius: 4px;
  background: none;
  transition: color 0.2s, background 0.2s;
  display: inline-block;
}

.nav a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 30;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 0; right: 0;
    height: 30vh;
    width: 100vw;
    background: white;
    flex-direction: column;
    gap: 34px;
    padding: 150px 0px 28px 1px;
    align-items: start;
    justify-content: start;
    box-shadow: -4px 0 24px 0 rgba(0,0,0,0.13);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.86,.14,.31,.87);
    z-index: 24;
    display: none;
  }
  .nav a{
    color: #373737;
    padding: 0.2em 2em;
  }
  
  .nav.open {
    transform: translateX(0);
    display: flex; 
  }
  .header-bg{
    opacity: 1;
  }
  .hamburger {
    display: flex;
  }

  .hamburger-black span{
    background-color: #000;
  }

  .logo img {
    padding-left: 1em;
  }
}

/* Animacja ikony hamburgera w stylu X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #3D3230;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #3D3230;
}




.hero {
  position: relative;
  min-height: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-bottom: 120px;
}
.hero-bg-index{
  background: url('../img/hero-gradient-background.jpg') center center/cover no-repeat;
}
.hero-bg-about-us{
  background: url('../img/bg-o-nas.png') center center/cover no-repeat;
}
.hero-bg-corporate{
  background: url('../img/bg-corporate.png') center center/cover no-repeat;
}
.hero-bg-contact{
  background: url('../img/bg-contact.png') center center/cover no-repeat;
}
.hero-bg-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 100px;
  z-index: 0;
}
.hero-gradient-overlay {
  position: absolute;
  left: 0; top: 0;
  width: 100vw; height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    285deg,
    rgba(170, 170, 170, 0.00) 1.49%,
    rgba(101, 155, 255, 0.53) 91.09%
  );
}
.hero-bg-index::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/lines-section-1.svg') center right no-repeat;
  
  pointer-events: none;
  
  opacity: 0.3;
}
.hero-bg-about-us::after{
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/lines-about-1.svg') center right no-repeat;
  
  pointer-events: none;
}
.hero-bg-corporate::after{
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/lines-about-1.svg') center right no-repeat;
  pointer-events: none;
}
.hero-bg-contact::after{
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/lines-about-1.svg') center right no-repeat;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bars {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  pointer-events: none;
  z-index: 3;
}

.hero-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #F7F8FC;
  width: 100vw;
  border: none;
}

.hero-bar-1 {
  height: 100px;
  bottom: 0;
  opacity: 0.2;
  z-index: 1;
}

.hero-bar-2 {
  height: 53px;
  bottom: 0;
  opacity: 0.4;
  z-index: 2;
}
@media (max-width: 700px) {
  .hero-bar-1 { height: 56px; }
  .hero-bar-2 { height: 28px; }
  .hero-bg-video {
    display: none;
  }

  .hero-bg-about-us::after{
    right: 0px;
    top: 78px;
    width: 100vw;
    height: 100vh;
    background: url(../img/lines-about-1.svg) center 50% no-repeat;
  }

  .hero-bg-corporate::after{
    right: 0px;
    top: 99px;
    width: 100vw;
    height: 78vh;
    background: url(../img/lines-about-1.svg) center 50% no-repeat;
  }

  .hero-bg-contact::after{
    right: 0px;
    top: 99px;
    width: 100vw;
    height: 78vh;
    background: url(../img/lines-about-1.svg) center 50% no-repeat;
  }
}
/* HERO CONTENT - wyśrodkowany napis i przyciski */
.header-inner,
.hero-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-content {
  position: relative;
  z-index: 3;
  margin-top: 170px;
  text-align: left;
}
@media (max-width: 900px) {
  .header-inner,
  .hero-content {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 100vw;
  }
  .hero-content { margin-top: 100px; }
}
@media (max-width: 600px) {
  .header-inner,
  .hero-content {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .hero-content { margin-top: 70px; }
}
.hero h1 {
  font-size: 60px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero h1 span { font-weight: 700; }
.lead {
  color: #fff;
  font-size: 28px;
  font-family: 'Karla', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 44px;
  padding-right: 30vw;
}
.lead-short{
  padding-right: 40vw!important;
  padding-top: 8vh;
}
.lead-main{
  color: #1B2B35;
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 150% */
}
.lead-main2{
  color: #1B2B35;
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}
.lead-sub{
  color: #1B2B35;
  font-family: 'Karla', Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 181.818% */
}
.lead-sub2{
  margin-top: 38px;
  color: #1B2B35;
  font-family: 'Karla', Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 145.455% */
}
.hero-buttons {
  display: flex;
  gap: 32px;
  justify-content: flex-start; /* bo tekst do lewej! */
  flex-wrap: wrap;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-family: 'Karla', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
  border: none;
  margin: 10px 0;
  box-sizing: border-box;
  gap: 10px;
}

.btn:hover {
  background-color: #3747c8;
}

.btn-primary { background: #fff; color: #1B2B35; }
.btn-primary:hover { color: white;}
.btn-secondary { background: #14B3FF; color: #fff; }

@media (max-width: 900px) {
  .hero-buttons {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    align-content: center;
  }
  .btn {
    width: 80vw;
    max-width: 340px;
    height: 65px;
    padding: 14px 18px;
    font-size: 16px;
  }
  .lead{
    font-family: 'Karla', Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .lead-short{
    padding-right: 10px!important;
  }
}
@media (max-width: 500px) {
  .btn {
    width: 80vw;
    max-width: 100%;
    height: 65px;
    padding: 10px 10px;
    font-size: 15px;
  }
}

main {
  max-width: 82vw;
  margin: 0 auto;
  padding: 40px 16px 0 16px;
}

.block {
  background: #F7F8FC;
  border-radius: 20px;
  margin-bottom: 48px;
  padding: 36px 28px;
  text-align: center;
}

.block h2 {
  font-size: 32px;
  font-family: Montserrat;
  font-weight: 700;
  margin-bottom: 16px;
}
.block .sublead {
  font-size: 24px;
  font-family: Montserrat;
  font-weight: 300;
  margin-bottom: 20px;
}
.block ul {
  list-style: disc;
  text-align: left;
  margin: 0 auto 18px auto;
  max-width: 600px;
  padding-left: 22px;
}
.block li { margin-bottom: 8px; font-size: 18px; }
.block .btn { margin-top: 16px; }

.info-main {
  font-size: 24px;
  font-family: Montserrat;
  font-weight: 300;
  color: #212936;
}
.bold { font-weight: 700; }

.why-title {
  font-size: 20px;
  font-family: Karla;
  font-weight: 700;
}
.why-main {
  font-size: 32px;
  font-family: Montserrat;
  font-weight: 300;
  margin: 14px 0;
}
.why-main .bold { font-weight: 700; }
.why ul {
  color: #1B2B35;
  font-size: 22px;
  font-family: Karla;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 18px;
  padding-left: 18px;
  text-align: left;
  display: inline-block;
}
.why-desc {
  color: #1B2B35;
  font-size: 22px;
  font-family: Karla;
  font-weight: 400;
  line-height: 32px;
}

.logistics-title {
  font-size: 26px;
  font-family: Montserrat;
  font-weight: 300;
  color: #212936;
  line-height: 1.3;
}
.logistics-title .bold { font-weight: 700; }

.benefits {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 28px;
  margin-bottom: 40px;
  padding-top: 20px;
}
.benefit {
  background: #F7F8FC;
  border-radius: 12px;
  color: #373737;
  font-size: 18px;
  font-family: Karla;
  font-weight: 400;
  line-height: 24px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 8px #0001;
}

.reviews { background: #fff; }
.reviews h2 { font-size: 32px; font-family: Montserrat; font-weight: 700; margin-bottom: 32px; }
.review-card {
  background: #fafafa;
  border: 1px solid #02A8FF;
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(53, 39, 125, 0.12);
  padding: 40px;
  margin: 0 auto;
  max-width: 420px;
  text-align: left;
}
.review-title { font-weight: 700; font-size: 24px; color: #1B2B35; }
.review-desc { font-size: 16px; margin: 18px 0; }
.review-person { margin-top: 18px; }
.review-name { font-weight: 700; }
.review-job { color: #606060; font-weight: 400; }
.review-firm { font-weight: 700; }

.footer {
  background: #212936;
  color: #fff;
  width: 100vw;
  padding: 0;
  margin: 0;
  font-family: Karla, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  padding: 54px 32px 16px 32px;
  gap: 34px;
}

.footer-logo-col {
  flex: 0 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-right: 34px;
}
.footer-logo {
  width: 120px;
  height: auto;
  opacity: 1;
}

.footer-columns {
  display: flex;
  flex: 1;
  flex-direction: row;
  gap: 44px;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}

.footer-col {
  min-width: 170px;
  max-width: 250px;
  opacity: 0.6;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  font-family: Karla, Arial, sans-serif;
}

.footer-col-title {
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 4px;
  font-family: Karla, Arial, sans-serif;
}
.footer-col-content {
  font-weight: 400;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-family: Karla, Arial, sans-serif;
}

.footer-col-content-thin {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
  line-height: 16px;
}

.footer-col-wide {
  min-width: 290px;
  max-width: 440px;
}

.footer-col-partner {
  min-width: 130px;
  max-width: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-partners-box {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 490px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 0;
  box-sizing: border-box;
}
.footer-partners-img {
  max-width: 100%;
  max-height: 106px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  margin: 0 auto;
  padding: 8px 32px 18px 32px;
  box-sizing: border-box;
}

.footer-hr {
  width: 100%;
  height: 1px;
  opacity: 0.6;
  background: #FFF;
  margin: 0 auto 16px auto;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 18px;
  align-items: center;
  justify-content: right;
}

.footer-links {
  color: #EAF4F4;
  font-size: 12px;
  font-family: Karla, Arial, sans-serif;
  text-transform: lowercase;
  font-weight: 400;
}
.footer-links a {
  color: #EAF4F4;
  text-decoration: none;
  font-family: Karla, Arial, sans-serif;
  margin: 0 3px;
  transition: color 0.2s;
  position: relative;
}
.footer-links a:hover { color: #02A8FF; }

.footer-links a:not(:last-child)::after {
  content: " |";
  color: #EAF4F4;
  font-weight: 400;
  margin-left: 5px;
}

.footer-col-pair {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  margin-bottom: 0;
}

.footer-copyright {
  color: #EAF4F4;
  font-size: 12px;
  font-family: Karla, Arial, sans-serif;
  text-transform: lowercase;
  font-weight: 400;
}
.footer-heart {
  color: #FF0D00;
  font-size: 13px;
  font-family: inherit;
}

@media (max-width: 700px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 12px;
    margin-bottom: 10px;
    width: 100%;
  }
  .footer-links a {
    margin: 0;
    display: block;
    font-size: 12px;
    line-height: 1.3;
  }
  .footer-links a:not(:last-child)::after {
    content: "";
    margin: 0;
  }

  .footer-links::after {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 1.5px;
    background: #b9c2cf;
    opacity: 0.6;
    margin-top: 18px;
  }
}

@media (max-width: 1200px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 36px 4vw 14px 4vw;
  }
  .footer-columns {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    min-width: 0;
  }
  .footer-logo-col {
    margin-bottom: 14px;
    margin-right: 0;
    justify-content: flex-start;
  }
  .footer-col,
  .footer-col-wide,
  .footer-col-partner {
            max-width: 600px;
        min-width: 0;
        margin-left: 20px;
        margin-right: 20px;
  }
  .footer-partners-box {
    max-width: 90vw;
    height: auto;
    min-width: 0;
  }
  .footer-partners-img {
    max-width: 100%;
    height: auto;
    min-width: 0;
  }
  .footer-bottom { padding: 6px 4vw 13px 4vw; }
  .footer-hr { max-width: 99vw; }
  .footer-links-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 700px) {
  .footer-inner { padding: 20px 2vw 8px 2vw; gap: 10px; }
  .footer-bottom { padding: 5px 2vw 9px 2vw; }
  .footer-hr { margin-bottom: 9px; }
  .footer-links { font-size: 11px; }
  .footer-copyright { font-size: 11px; }
  .footer-logo-col{
    flex: 0 0 1px;
    margin-top: 10px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }
  /* NOWOŚĆ: opakuj dwie pierwsze kolumny w grid lub flex */
  .footer-col-pair {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-col-pair .footer-col {
    flex: 1 1 50%;
    min-width: 0;
    max-width: 100%;
     margin-left: 0px;
        margin-right: 0px;
  }
  /* Ukryj oryginalne marginesy, lepsze dopasowanie */
  .footer-col {
    margin-bottom: 0;
    margin-left: 0px;
        margin-right: 0px;
  }
}

@media (max-width: 480px) {
  .footer-inner, .footer-bottom { padding: 7px 1vw; }
  .footer-logo { width: 70px; }
  .footer-col-title, .footer-col-content, .footer-col-content-thin {
    font-size: 10px;
    line-height: 14px;
  }
}


/* Responsywność */
@media (max-width: 900px) {
  .header-inner { flex-direction: row; gap: 20px; }
  .hero h1 { font-size: 36px; }
  .hero-content { margin-top: 200px; }
}
@media (max-width: 600px) {
  .hero { padding-bottom: 120px; }
  .hero-content { margin-top: 120px; }
  .hero h1 { 
    font-family: 'Montserrat';
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px; /* 120% */
    letter-spacing: 0.4px; padding-top: 20px; padding-bottom: 20px;
  }
  .btn { font-size: 16px; padding: 14px 18px; }
  .lead { padding-right: 0px; margin-bottom: 70px;}
}

.why-block {
  width: 100%;
  padding: 80px 0 80px 0;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

.why-block::after {
  content: "";
  display: block;
  position: absolute;
  right: 511px; 
  top: 760px;
  width: 100vw;
  height: 100%;
  background: url('../img/lines-section-2.svg') center right no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.why-block2 {
  width: 100%;
  padding: 80px 0 80px 0;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

.why-block2::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 760px;
  width: 100vw;
  height: 100%;
  background: url('../img/lines-section-4.svg') calc(50% - 600px) center no-repeat;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}

.why-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  box-sizing: border-box;
  padding: 0 40px;
}

.why-image {
  flex: 0 0 540px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}
.why-image img {
  width: 620px;
  max-width: 100%;
  border-radius: 28px;
}

.why-content {
  flex: 1 1 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 580px;
  z-index: 4;
}

.why-dot-and-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.why-dot {
  width: 16px;
  height: 16px;
  background: #22aaff;
  border-radius: 50%;
  display: inline-block;
}
.why-small-title {
  font-family: 'Karla', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1B2B35;
  letter-spacing: 0.04em;
}
.why-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #1B2B35;
  margin: 0 0 18px 0;
  line-height: 1.13;
}
.why-bold {
  font-weight: 800;
  color: #222B35;
  font-size: 38px;
  display: inline-block;
  margin-top: 10px;
}
.why-list {
  margin: 0 0 28px 0;
  padding-left: 18px;
  font-size: 20px;
  font-family: 'Karla', Arial, sans-serif;
  color: #1B2B35;
  line-height: 1.8;
  font-weight: 400;
}
.why-list li {
  margin-bottom: 8px;
  list-style: disc;
}
.why-desc {
  font-size: 19px;
  font-family: 'Karla', Arial, sans-serif;
  color: #626A74;
  line-height: 1.7;
  max-width: 600px;
}

@media (max-width: 1200px) {
  .why-inner {
    gap: 28px;
    padding: 0 16px;
  }
  .why-image { flex: 0 0 340px; }
  .why-image img { width: 520px; }
  .why-content { min-width: 220px; }
  .why-title { font-size: 30px; }
  .why-bold { font-size: 29px; }
  .why-list { font-size: 16px; }
}

@media (max-width: 800px) {
  .why-inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 0 4vw;
  }
  .why-desc {
    max-width: -webkit-fill-available;
  }
  .why-image,
  .why-content {
    flex: unset;
    width: 100%;
    max-width: 98vw;
    justify-content: inherit;
    align-items: center;
  }
  .why-shipper{
    justify-content: end;
  }
  .why-content { align-items: flex-start; }
  .why-title, .why-bold { text-align: left; }
  .why-small-title{
    font-family: 'Karla';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}

@media (max-width: 500px) {
  .why-block { 
    padding: 40px 0 0 0;
    margin-bottom: 0px; 
  }
  .why-inner { padding: 0 1vw; }
  .why-image img { width: 99vw; max-width: 99vw; }
  .why-title{ 
    font-size: 30px; 
    font-weight: 300; 
    line-height: 40px;
  }
  .why-bold{
    font-size: 28px;
    line-height: 40px;
  }
  .why-list { 
    font-family: 'Karla';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
   }
  .why-desc { 
    font-family: 'Karla';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
  }
}

.section-tech {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: none;
  border: none;
}

@media (max-width: 500px) {
  .section-tech{
    padding-top: 50px;
  }
}

/* Tło: kontener i overlay */
.section-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/bg-hero-2.png') center center/cover no-repeat;
  z-index: 1;
}
.section-bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/wave.svg') center center no-repeat,
              url('../img/wave.svg') 50vw center no-repeat;
  pointer-events: none;
  
  opacity: 0.2;
}

.section-overlay {
  position: absolute;
  inset: 0;
   /* fioletowy overlay z PNG */
  z-index: 2;
}

/* Główna grafika na środku */
.section-center {
  position: static;
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* desktop: 3 obrazki w rzędzie */
  gap: 24px;
  justify-items: center;
  align-items: center;
  background: url('../img/lines.svg') center center no-repeat;
  background-size: 85% 100%;
  margin: 0 auto;
  width: 100%;
  max-width: 80%;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 30;
}

.process-img{
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 31;
  display: block;
}

.process-img-mobile{
  display: none;
}

@media (max-width: 900px) {
  .section-center {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 600px) {
  
  .section-center { 
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: none;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: unset;
  }
  .process-img{
    max-width: 95vw;
    width: 100%;
    display: none;
  }
  .process-img-mobile{
    display: block;
    z-index: 4;
  }
}

.section3-text {
  position: static;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none; /* tekst nie zasłania interakcji */
  padding: 60px 0 5px 0;
  margin: 0 0 10px 0;
  color: var(--black, #000);
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 48px;
}

@media (max-width: 1200px) {
  .section3-text h2 { font-size: 28px; text-align: center; }
  .section3-sub { font-size: 18px; text-align: center;}
}
@media (max-width: 700px) {
  .section3-text { top: 16px; padding: 0 6vw; text-align: center;}
  .section3-text h2 { font-size: 22px; text-align: center;}
  .section3-sub { font-size: 22px; text-align: center;}
}

.carrier-section {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  overflow: hidden;
  background: url('../img/carrier-bg.png') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carrier-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 92px 48px;
  box-sizing: border-box;
}

.carrier-content {
  flex: 1 1 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 320px;
  max-width: 660px;
}

.carrier-dot-and-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.carrier-dot {
  width: 16px;
  height: 16px;
  background: #22aaff;
  border-radius: 50%;
  display: inline-block;
}
.carrier-small-title {
  font-family: Karla, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.carrier-title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 18px 0;
  line-height: 1.13;
}
.carrier-bold {
  font-weight: 800;
  color: #fff;
  font-size: 26px;
  display: inline-block;
  margin-top: 10px;
}
.carrier-list {
  margin: 0 0 32px 0;
  padding-left: 20px;
  font-size: 20px;
  font-family: Karla, Arial, sans-serif;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
}
.carrier-list li {
  margin-bottom: 8px;
  list-style: disc;
}
.carrier-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30 0px;
  height: 60px;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  font-weight: 800;
  background: #FF0D00;
  color: #fff;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

.carrier-image {
  flex: 1 1 680px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 280px;
  max-width: 720px;
}
.carrier-image img {
  width: 100%;
  max-width: 640px;
  min-width: 260px;
  border-radius: 24px;
  object-fit: contain;
}

.carrier-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1920px;
  background: #F7F8FC;
  pointer-events: none;
  z-index: 10;
}
.carrier-bar-top-1 {
  top: 0;
  height: 100px;
  opacity: 0.05;
}
.carrier-bar-top-2 {
  top: 0;
  height: 53px;
  opacity: 0.1;
}
.carrier-bar-bottom-1 {
  bottom: 0;
  height: 100px;
  opacity: 0.05;
}
.carrier-bar-bottom-2 {
  bottom: 0;
  height: 53px;
  opacity: 0.1;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1200px) {
  .carrier-inner {
    gap: 24px;
    padding: 54px 4vw;
  }
  .carrier-content { max-width: 100%; }
  .carrier-image { max-width: 370px; }
  .carrier-image img { max-width: 98vw; }
  .carrier-title { font-size: 27px; }
  .carrier-bold { font-size: 25px; }
  .carrier-list { font-size: 16px; }
  .carrier-btn { width: 96vw; max-width: 330px; font-size: 15px; height: 54px; padding: 14px 16px; }
}

@media (max-width: 800px) {
  .carrier-inner {
    flex-direction: column;
    align-items: center;
    padding: 44px 3vw;
  }
  .carrier-image {
    margin-top: 30px;
    justify-content: center;
    max-width: 98vw;
    width: 100%;
    flex: 1 1 1px;
  }
  .carrier-revert{
    flex-direction: column-reverse !important;
  }
  .carrier-content {
    align-items: flex-start;
    flex: 1 1 100px;
    max-width: 98vw;
    
  }
  .carrier-small-title{
    font-family: 'Karla';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .carrier-title,
  .carrier-bold {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .carrier-section { min-height: 420px; }
  .carrier-inner { padding: 18px 1vw; }
  .carrier-image img { min-width: 0; }
  .carrier-title { 
    font-family: 'Montserrat';
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
   }
   .carrier-bold {
    font-family: 'Montserrat';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
   }
  .carrier-list { 
    font-family: 'Karla';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
   }
  .carrier-btn { min-width: 90vw; height: 44px; font-size: 14px; }
}

.case-studies-section {
  
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 10vh 0;
  overflow: hidden;
}

.case-studies-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  background-color: #F7F8FC;
  z-index: -1;
}
.case-studies-bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url(../img/lines-section-6.svg) 50% center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.case-studies-title {
  color: #1B2B35;
  text-align: center;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin: 0 0 48px 0;
}

.case-studies-list {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto 36px auto;
  flex-wrap: wrap;
}

.case-studies-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: #fff;
  border: 1px solid #02A8FF;
  border-radius: 8px;
  padding: 40px;
  min-width: 320px;
  max-width: 50vw;
  flex: 1 1 320px;
  box-sizing: border-box;
}

.case-studies-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.case-studies-dot {
  width: 24px;
  height: 24px;
  background: #BCD8FF;
  border-radius: 100px;
  display: inline-block;
}

.case-studies-card-title {
  color: #1B2B35;
  font-family: Karla, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.case-studies-card-desc {
  color: #1B2B35;
  font-family: Karla, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.case-studies-persons {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1320px;
  margin: 40px auto 0 auto;
  flex-wrap: wrap;
}

.case-studies-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 200px;
  max-width: 400px;
  flex: 1 1 200px;
}

.case-studies-avatar {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #ddd center center/cover no-repeat;
  margin-bottom: 8px;
}

.case-studies-person-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.case-studies-person-name {
  color: #1B2B35;
  font-family: Karla, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 2px;
}

.case-studies-person-position {
  color: #606060;
  font-family: Karla, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.case-studies-person-company {
  color: #1B2B35;
  font-family: Karla, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1050px) {
  .case-studies-list,
  .case-studies-persons {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 50vw;
  }
  .case-studies-card,
  .case-studies-person {
    min-width: 220px;
    
    width: 74vw;
  }
}
@media (max-width: 700px) {
  .case-studies-section { padding: 34px 0 48px 0; display: none; }
  .case-studies-title { font-size: 22px; line-height: 32px; margin-bottom: 28px; }
  .case-studies-card { padding: 22px 12px; font-size: 18px; }
  .case-studies-list,
  .case-studies-persons { gap: 14px; max-width: 70vw;}
  .case-studies-avatar { width: 52px; height: 52px; }
  .case-studies-person-name { font-size: 16px; }
  .case-studies-person-position, .case-studies-person-company { font-size: 13px; }
}

.future-section {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TŁO I OVERLAY */
.future-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  background: url('../img/bg-log-future.png') center center / cover no-repeat;
  z-index: 1;
}
.future-bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url(../img/lines-section-7.svg) calc(50% + 40px) center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}
.future-overlay {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(180deg, rgba(33,41,54,0.44) 0%, rgba(33,41,54,0.92) 100%);
  z-index: 2;
}

/* GŁÓWNA TREŚĆ */
.future-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 80px 24px 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.future-headlines {
  margin-bottom: 42px;
  text-align: center;
}

.future-headline-small {
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 48px;
  margin-bottom: 2px;
}

.future-headline-bold {
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 48px;
}

.future-boxes {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 40px 0 48px 0;
  flex-wrap: wrap;
}

.future-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border: 8px solid rgba(255,255,255,0.20);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 260px;
  padding: 56px 24px 36px 24px;
  box-sizing: border-box;
  margin-top: 35px;
  box-shadow: 0 4px 32px 0 rgba(20,40,60,0.09);
}

.future-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 49.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #8DD8FF 0%, #02A8FF 100%);
  box-shadow: 0 2px 12px rgba(2, 168, 255, 0.15);
  z-index: 3;
}
.future-icon img, .future-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

/* RAMKA Z TEKSTEM */
.future-box-desc {
  color: #373737;
  text-align: center;
  font-family: Karla, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 24px;
}
.future-box-bold {
  font-weight: 700;
  color: #373737;
  font-family: Karla, Arial, sans-serif;
}

/* PRZYCISKI */
.future-btns {
  margin: 32px 0 0 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.future-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  margin: 10px 0;
  transition: background 0.2s, color 0.2s;
}
.future-btn-white {
  background: #fff;
  color: #1B2B35;
}
.future-btn-red {
  background: #FF0D00;
  color: #fff;
}

/* PASKI GÓRNE I DOLNE */
.future-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #F7F8FC;
  pointer-events: none;
  z-index: 10;
}
.future-bar-top-1 {
  top: 0;
  height: 100px;
  opacity: 0.1;
}
.future-bar-top-2 {
  top: 0;
  height: 53px;
  opacity: 0.2;
}
.future-bar-bottom-2 {
  bottom: 0;
  height: 53px;
  opacity: 0.05;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
  .future-content { padding: 44px 2vw 28px 2vw; }
  .future-boxes { gap: 16px; }
  .future-box { min-width: 180px; max-width: 90vw; padding: 48px 12px 28px 12px; }
  .future-headline-small, .future-headline-bold { font-size: 19px; line-height: 34px; }
  .future-btn { width: 88vw; max-width: 280px; font-size: 16px; height: 54px; padding: 14px 18px; }
}
@media (max-width: 700px) {
  .future-content { padding: 22px 1vw 18px 1vw; }
  .future-boxes { flex-direction: column; align-items: center; gap: 8px; }
  .future-box { min-width: 0; width: 80vw; margin-top: 38px; padding: 44px 4vw 20px 4vw; }
  .future-btns { gap: 10px; }
}

/*  o nas */
.team-section {
  background: #F7F8FC;
  padding: 56px 0 64px 0;
  
}

.team-section-title {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto 38px auto;
  color: #1B2B35;
  text-align: center;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.team-member {
  width: 338px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 1;
  padding-top: 4vw;
}

.board-member{
  width: 338px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 1;
}

.team-member-img {
  width: 300px;
  height: 360px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 16px;
  background-size: 148.58% 191.3%;
  background-position: -83.33px -58px;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Blok z imieniem/nazwiskiem i stanowiskiem na zdjęciu */
.team-member-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  padding: 16px;
  margin-top: -130px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px 0 rgba(120,120,120,0.06);
  width: calc(100% - 60px);
  position: relative;
}

/* Imię i nazwisko */
.team-member-name {
  color: #1B2B35;
  font-family: Karla, Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

/* Stanowisko */
.team-member-role {
  color: #606060;
  font-family: Karla, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.team-member-desc {
  width: 300px;
  color: #1B2B35;
  font-family: Karla, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 8px;
  text-align: justify;
}

@media (max-width: 1600px) {
  .team-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1400px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .team-section-title {
    font-size: 20px;
    line-height: 30px;
    padding: 0 10px;
  }
  .team-members-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }
  .team-member, .team-member-img, .team-member-desc {
    
    min-width: 0;
    max-width: 100vw;
  }
  .team-member-img {
    height: 370px;
    padding: 18px;
  }
  .team-member-data { 
            margin-top: -128px;
        width: calc(100% - 60px); 
  }
  .team-member-desc { font-size: 14px; line-height: 20px; }
}

.partners-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  width: 100vw;
  background: url('../img/bg-partners.png') center center/cover no-repeat;
  padding: 70px 0 50px 0;
  position: relative;
}
.partners-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.partners-heading {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 42px auto;
  text-align: center;
}

.heading-light {
  color: #1B2B35;
  font-size: 32px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 48px;
  display: inline;
}
.heading-bold {
  color: #1B2B35;
  font-size: 32px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  line-height: 48px;
  display: inline;
}
.heading-blue {
  color: #02A8FF;
  font-size: 32px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  line-height: 48px;
  display: inline;
}
.heading-sub {
  display: block;
  color: #1B2B35;
  font-size: 22px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 48px;
  margin-top: 12px;
}

.partners-features {
  margin: 36px auto 36px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1500px;
}

.feature-box {
  background: rgba(255,255,255,0.25);
  border-radius: 16px;
  border: 4px solid #FFF;
  padding: 0;
  width: 260px;
  min-width: 220px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 4px solid #FFF;
  outline-offset: -4px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.feature-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  padding-top: 36px;
}

.feature-icon-bg {
  width: 80px; height: 80px;
  background: rgba(250,250,250,0.80);
  box-shadow: 0px 0px 32px rgba(54,40,125,0.25);
  border-radius: 50px;
  outline: 4px solid rgba(226,232,244,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}

.feature-icon {
  display: block;
  object-fit: fill;
}

.feature-title {
  align-self: stretch;
  text-align: center;
  color: #1B2B35;
  font-size: 20px;
  font-family: Karla, Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}

.partners-footer {
  margin: 38px auto 0 auto;
  text-align: center;
  color: #1B2B35;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 48px;
  max-width: 1080px;
}

@media (max-width: 1100px) {
  .partners-features {
    gap: 22px;
  }
  .feature-box {
    width: 44vw;
    min-width: 180px;
    max-width: 320px;
  }
}
@media (max-width: 700px) {
  .partners-content {
    padding: 0 7vw;
  }
  .partners-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .feature-box {
    min-width: 0;
    max-width: 100vw;
    height: auto;
  }
  .feature-box-inner {
    padding-top: 24px;
    gap: 12px;
  }
  .partners-footer {
    font-size: 15px;
    line-height: 22px;
  }
  .heading-light, .heading-bold, .heading-blue {
    font-size: 21px;
    line-height: 34px;
  }
  .heading-sub {
    font-size: 15px;
    line-height: 22px;
  }
}
.s-board{
  color: #1B2B35;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 150% */
}
.board-section-title{
  color: #1B2B35;
  font-family: 'Montserrat';
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  padding-bottom: 5vh;
  text-align: center;
}
.owners-structure {
  width: 100%;
  background: #f7f8fc;
  padding: 48px 0;
  display: flex;
  justify-content: center;
}

.owners-structure-inner {
  width: 100%;
  max-width: 1620px;
  background: #fff;
  border-radius: 16px;
  padding: 80px 80px 64px 80px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.owners-structure-title {
  color: #1B2B35;
  font-size: 32px;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 28px;
  margin: 0 0 16px 0;
  text-align: left;
}

.owners-structure-subtitle {
  color: #1B2B35;
  font-size: 22px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
  margin-bottom: 20px;
  text-align: left;
}

.owners-structure-list {
  list-style: disc inside;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.owners-structure-list li {
  color: #1B2B35;
  font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
  padding: 16px 0 16px 16px;
  border-bottom: 1px solid rgba(219,219,219,0.8);
  margin: 0;
}

.owners-structure-list li:last-child {
  border-bottom: none;
}

/* Responsywność */
@media (max-width: 1100px) {
  .owners-structure-inner {
    padding: 40px 24px 36px 24px;
  }
  .owners-structure-title {
    font-size: 32px;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 28px;
    word-wrap: break-word
  }
  .owners-structure-subtitle {
    font-size: 22px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word
  }
  .owners-structure-list li {
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
    padding: 12px 0 12px 10px;
  }
}

@media (max-width: 700px) {
  .owners-structure-inner {
    padding: 22px 5vw 16px 5vw;
    border-radius: 12px;
  }
  .owners-structure-title {
    font-size: 22px;
    line-height: 30px;
  }
  .owners-structure-subtitle {
    font-size: 15px;
    line-height: 22px;
  }
}
.statute-section {
  width: 100%;
  background: #f7f8fc;
  padding: 44px 0;
  display: flex;
  justify-content: center;
}

.statute-box {
  background: #fff;
  border-radius: 16px;
  padding: 80px 80px 48px 80px;
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.statute-title {
  color: #1B2B35;
  font-size: 32px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

.statute-desc {
  color: #1B2B35;
  font-size: 22px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 32px;
}

.statute-row {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D9D9D9;
  padding: 8px 0;
  gap: 32px;
}

.statute-date {
  color: #1B2B35;
  font-size: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  flex: 1 1 50%;
}

.statute-download {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #1B2B35;
  font-size: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  gap: 12px;
  transition: color 0.15s;
}
.statute-download:hover {
  color: #02A8FF;
}
.statute-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-left: 6px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  transition: border-color 0.2s, background 0.2s;
}
.statute-download:hover .statute-icon {
  border-color: #1B2B35;
  background: #E2E8F4;
}

@media (max-width: 1100px) {
  .statute-box {
    padding: 44px 20px 28px 20px;
  }
  .statute-title { font-size: 24px; }
  .statute-desc { font-size: 16px; }
  .statute-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .statute-date, .statute-download {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 16px;
  }
  .statute-download { margin-top: 8px; }
  .statute-icon { width: 28px; height: 28px; }
}
@media (max-width: 600px) {
  .statute-box {
    padding: 18px 3vw 10px 3vw;
    border-radius: 12px;
  }
  .statute-title { font-size: 19px; }

  .statute-download{
    justify-content: end;
    text-align: right;
  }

  .policy-download{
    justify-content: end!important;
    text-align: right!important;
  }
}

.policies-section {
  width: 100%;
  background: #f7f8fc;
  padding: 48px 0;
  display: flex;
  justify-content: center;
}

.policies-box {
  width: 100%;
  max-width: 1620px;
  background: #fff;
  border-radius: 16px;
  padding: 80px 80px 40px 80px;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 3vh;
}

.policies-title {
  color: #1B2B35;
  font-size: 38px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
}

.policies-desc {
  color: #1B2B35;
  font-size: 26px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 32px;
}

.policies-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.policy-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #D9D9D9;
  min-height: 56px;
}

.policy-name {
  flex: 1 1 60%;
  color: #1B2B35;
  font-size: 20px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
}

.policy-download {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #1B2B35;
  font-size: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  gap: 10px;
  transition: color 0.15s;
}
.policy-download:hover {
  color: #02A8FF;
}
.policy-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-left: 5px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  transition: border-color 0.2s, background 0.2s;
}
.policy-download:hover .policy-icon {
  border-color: #1B2B35;
  background: #E2E8F4;
}

/* Responsywność */
@media (max-width: 1100px) {
  .policies-box {
    padding: 36px 20px 16px 20px;
  }
  .policies-title { font-size: 26px; }
  .policies-desc { font-size: 18px; }
  .policy-row { flex-direction: column; align-items: flex-start; gap: 7px; }
  .policy-name, .policy-download {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    font-size: 16px;
    margin-bottom: 0;
  }
  .policy-icon { width: 28px; height: 28px; }
}
@media (max-width: 600px) {
  .policies-box {
    padding: 15px 3vw 8px 3vw;
    border-radius: 12px;
  }
  .policies-title { font-size: 17px; }
}
.board-section {
  width: 100%;
  background: #F7F8FC;
  padding: 60px 0 64px 0;
  display: flex;
  justify-content: center;
}
.board-content {
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: 68px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 32px;
}
.board-left {
  flex: 2;
  min-width: 350px;
}
.board-title {
  color: #1B2B35;
  font-size: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 18px;
}
.board-desc {
  color: #1B2B35;
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  line-height: 48px;
  padding-left: 1vw;
  padding-right: 1vw;
}
.board-right {
  flex: 1.3;
  min-width: 340px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.board-person-card {
  width: 338px;
  height: 394px;
  padding: 20px;
  border-radius: 16px;
  background: #E2E8F4;
  background-size: 148.58% 191.3%;
  background-position: -83.33px -58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0 2px 20px 0 rgba(25,40,50,0.02);
}
.board-person-overlay {
  align-self: stretch;
  padding: 16px;
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.person-name {
  color: #1B2B35;
  font-family: 'Karla', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
}
.person-role {
  color: #606060;
  font-family: 'Karla', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.board-person-desc {
  margin-top: 16px;
  color: #1B2B35;
  font-family: 'Karla', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  padding-left: 2vw;
  padding-right: 2vw;
}

/* Responsywność */
@media (max-width: 1100px) {
  .board-content {
    flex-direction: column;
    gap: 42px;
    align-items: flex-start;
    padding: 0 10vw;
  }
  .board-left, .board-right {
    min-width: 0;
    max-width: 100%;
  }
  .board-person-card { width: 98vw; max-width: 370px; min-width: 0; }
}
@media (max-width: 700px) {
  .board-section {
    padding: 26px 0 22px 0;
  }
  .board-content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    padding: 0 2vw;
  }
  .board-title { font-size: 21px; line-height: 30px; }
  .board-desc { font-size: 18px; line-height: 26px; }
  .board-person-card { width: 90vw; min-width: 0; height: 380px; padding: 14px; }
  .person-name { font-size: 16px; }
  .person-role { font-size: 13px; }
  .board-person-desc { font-size: 13px; }
}

.contact-section {
  width: 100%;
  background: #f7f8fc;
  padding: 48px 0;
  display: flex;
  justify-content: center;
  margin-top:-270px;
  z-index:120;
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding: 80px;
  box-sizing: border-box;
  align-items: flex-start;
  z-index:120;
}

.contact-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 8px 0;
  border-bottom: 1px solid #D9D9D9;
}
.contact-row:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-data {
  flex: 1 1 0;
  color: #1B2B35;
  font-size: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  word-break: break-word;
}
.contact-link {
  color: #0087CE;
  font-size: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.contact-form {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 280px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  color: #373737;
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 2px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: #F7F8FC;
  border-radius: 4px;
  border: 1px solid rgba(0, 135, 206, 0.10);
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  padding: 12px 18px;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #14B3FF;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.recaptcha-note {
  font-size: 14px;
  color: #5a6c7a;
  margin: 0;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.g-recaptcha.input-error {
  outline: 1px solid #e63946;
  border-radius: 4px;
}
#captcha-error {
  margin-top: 2px;
}

.btn-send {
  width: 122px;
  margin-top: 12px;
  padding: 20px 32px;
  background: #14B3FF;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.18px;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-block;
}
.btn-send:hover {
  background: #0098e0;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
  .contact-box {
    flex-direction: column;
    gap: 38px;
    padding: 30px 8vw 30px 8vw;
  }
}
@media (max-width: 700px) {
  .contact-section {
    padding: 18px 0;
  }
  .contact-box {
    padding: 12px 2vw 12px 2vw;
    border-radius: 10px;
    gap: 20px;
    align-items: normal;
  }
  .contact-icon { width: 26px; height: 26px; }
  .contact-data, .contact-link, .form-group label, .form-group input, .form-group textarea, .btn-send {
    font-size: 15px;
  }
}

.lead-title-contact{
  color: #1B2B35;
}

.lead-contact{
  margin-top: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 41, 54, 0.82);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-form {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 0 32px rgba(0,0,0,0.16);
  padding: 48px 40px;
  max-width: 480px;
  width: 90vw;
  z-index: 131;
}
@keyframes modalIn {
  from { transform: scale(.93); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}

.modal-logo {
  width: 180px;
  opacity: 0.12;
  margin-bottom: 18px;
  user-select: none;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 32px; right: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  transition: background .18s;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
}
.modal-close img {
  width: 32px; height: 32px; display: block;
}
.modal-close:hover { background: #f0f5ff; }

.modal-title {
  color: #1B2B35;
  font-size: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 10px 0;
}
.modal-subtitle {
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: #1B2B35;
  line-height: 32px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.modal-subtitle b {
  font-weight: 700;
}

.modal-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-form-group label {
  font-family: 'Karla', Arial, sans-serif;
  color: #373737;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 2px;
}
.modal-form-group input[type="text"],
.modal-form-group input[type="email"],
.modal-form-group input[type="tel"] {
  height: 48px;
  background: #F7F8FC;
  border-radius: 4px;
  border: 1px solid rgba(0, 135, 206, 0.10);
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  padding: 0 16px;
  outline: none;
  transition: border .17s;
}
.modal-form-group input:focus {
  border: 1.5px solid #14B3FF;
}

.modal-checkbox-row {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.modal-checkbox-row label {
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  color: #373737;
  font-weight: 400;
  margin: 0;
}
.modal-checkbox-row input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #14B3FF;
  border-radius: 4px;
  margin-right: 4px;
}

.modal-checkbox-row a {
  color: #373737;
  text-decoration: underline;
  font-weight: 700;
  transition: color .17s;
}
.modal-checkbox-row a:hover {
  color: #02A8FF;
}

.modal-send-btn {
  width: 100%;
  padding: 20px 0;
  background: #14B3FF;
  border-radius: 8px;
  border: none;
  color: #fff;
  font-size: 18px;
  font-family: Karla, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.18px;
  cursor: pointer;
  margin-top: 12px;
  transition: background .17s;
}
.modal-send-btn:hover {
  background: #0087CE;
}

/* Responsywność */
@media (max-width: 600px) {
  .modal-form {
    min-width: 0;
    width: 98vw;
    padding: 36px 4vw 28px 4vw;
    border-radius: 10px;
    gap: 14px;
  }
  .modal-title { font-size: 18px; line-height: 27px; }
  .modal-subtitle { font-size: 15px; line-height: 23px; }
  .modal-logo { width: 130px; margin-bottom: 10px; }
}

.jv-error {
  display:block;
  margin-top:4px;
  font-size:.85rem;
  color:#c00;
}
input.jv-error-field,
textarea.jv-error-field {
  border-color:#c00 !important;
}
