:root {
  --primary: #09b1e9;
  --primary-dark: #1c5696;
  --primary-light: #eaf7ff;
  --text: #17202b;
  --muted: #ffffff;
  --line: #dce5ee;
  --white: #ffffff;
  --bg: #f6f9fc;
  --shadow: 0 14px 40px rgba(23, 64, 109, 0.08);
  --radius: 20px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.95);
  font-size: 14px;
}
.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 8px 0;
}

.topbar__inner p {
  margin: 0;
  font-weight: 1200;
  color: rgba(255,255,255,0.9);
}
.topbar a:hover { text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220,229,238,0.85);
}

.navbar__promo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--primary-light);
  border: 1px solid rgba(220,229,238,0.9);
}

.navbar__promo-graphic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}

.navbar__promo-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar__promo-content {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.navbar__promo-content strong {
  font-size: 14px;
  color: var(--primary-dark);
}

.navbar__promo-content small {
  font-size: 12px;
  color: var(--muted);
}

.topbar--secondary {
  transition: transform .3s ease, opacity .3s ease, max-height .3s ease, padding .3s ease;
  overflow: hidden;
  font-size: 20px;
  max-height: 80px;
}

.topbar--secondary.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  padding: 0;
  border: 0;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}
.nav a {
  position: relative;
  font-weight: 600;
  color: var(--text);
  transition: .2s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--primary-dark); }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.navbar__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--ghost { color: var(--primary-dark); }
.btn--full { width: 100%; }

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.topbar-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px auto;
}

.section { padding: 44px 0; }
.section--compact { padding: 28px 0 20px; }
.section--brands { overflow: hidden; }
.page-hero {
  padding: 72px 0 36px;
  background: linear-gradient(180deg, #eef8ff 0%, transparent 100%);
}
.page-hero h1,
.hero-card h1,
.section-heading h2,
.divider-banner h2,
.section-split__products {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 900px; }
.page-hero p { max-width: 760px; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.eyebrow--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.category-card,
.card,
.product-card,
.hero-card,
.divider-banner,
.contact-card,
.map-card,
.form-shell {
  background: #fff;
  border: 1px solid rgba(220,229,238,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.category-card {
  min-height: 110px;
  padding: 22px 18px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
  transition: .2s ease;
}
.category-card:hover { transform: translateY(-3px); background: var(--primary-light); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 24px;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-slider__track {
  display: flex;
  transition: transform .45s ease;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide > a {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  padding: 38px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,24,42,0.06) 0%, rgba(10,24,42,0.72) 100%);
}
.hero-slide__overlay h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin: 0; }
.hero-slide__overlay p { max-width: 580px; margin: 0 0 8px; }
.hero-slider__controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-slider__dots {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.hero-dot,
.slider-btn {
  border: 0;
  cursor: pointer;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
}
.hero-dot.is-active { background: #fff; }
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--primary-dark);
  font-size: 22px;
}

.hero-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-card {
  background: #1c5696;
  color: #fff;
}

.hero-card p {
  color: #cbd5e1;
}

.hero-card .btn--primary {
  background: #ffffff;
  color: #0f172a;
}

.hero--tight {
  padding-top: 5px;
}

.hero-card p { color: var(--muted); }
.check-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}
.section-heading--left { 
  text-align: left;
}
.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }

.product-grid {
  display: grid;
  justify-content: center;
  text-align: center;
  gap: 22px;
}
.product-grid--three-on-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}

.product-grid--three-on-two .product-card {
  height: 100%;
}

.product-grid--three { grid-template-columns: repeat(3, 1fr); }
.product-grid--eight { grid-template-columns: repeat(8, 1fr); }
.product-grid--six { grid-template-columns: repeat(6, 1fr); }

.product-card {
  overflow: hidden;
}
.product-card__image-wrap {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #f5f8fb;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.product-grid--bestsellers .product-card__image-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding: 10px;
}

.product-grid--bestsellers .product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.product-card:hover .product-card__image { transform: scale(1.04); }
.product-card__content { padding: 18px; }
.product-card__title {
  font-weight: 700;
  color: var(--primary-dark);
}
.product-card__title:hover { color: var(--primary); }

.divider-banner {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}
.divider-banner__media img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.divider-banner__content p { 
  color: var(--text); 
  max-width: 740px; 
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  gap: 24px;
  align-items: stretch;
}

.section-split > * {
  min-height: 100%;
}

.section-split__visual {
  padding: 0;
  background: transparent;
  overflow: hidden;
  display: flex;
}

.section-split__visual {
  padding: 0;
  overflow: hidden;
  display: flex;
}

.section-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.section-split__visual {
  padding: 0;
  background: transparent;
  overflow: hidden;
  display: flex;
}

.section-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.section-split__links {
  padding: 18px;
  background: #1c5696;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.section-split__links h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  margin-top: 0;
  padding-right: 4px;
}

.section-split__links .quick-links__item {
  display: block;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: color .2s ease, padding-left .2s ease;
}

.section-split__links .quick-links__item:hover {
  background: transparent;
  color: #dff3ff;
  padding-left: 8px;
}

.brands-slider {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
}
.brands-slider__track {
  display: flex;
  width: max-content;
  animation: brands-marquee 26s linear infinite;
}
.brand-chip {
  min-width: 190px;
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  border-right: 1px solid var(--line);
}
@keyframes brands-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer {
  margin-top: 24px;
}

.footer__top {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer__top-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
}

.footer__logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__top-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 500;
}

.footer__top-item a {
  color: var(--primary-dark);
}

.footer__top-icon {
  font-size: 24px;
  line-height: 1;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  font-weight: 800;
  transition: .2s ease;
}

.footer__social:hover {
  background: var(--primary-dark);
  color: #fff;
}

.footer__main {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.92);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding: 56px 0 32px;
}

.footer__desc {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links li,
.footer-links a {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__bottom-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.content-grid,
.contact-layout,
.contact-form-layout {
  display: grid;
  gap: 24px;
}
.content-grid { grid-template-columns: 2fr 1fr; }
.contact-layout { grid-template-columns: repeat(3, 1fr); }
.contact-form-layout { grid-template-columns: 1.2fr 1fr; }
.prose-block,
.info-panel,
.contact-card,
.map-card,
.form-shell { padding: 28px; }
.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span {
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
}
.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.jobs-list {
  display: grid;
  gap: 16px;
}
.job-card { overflow: hidden; }
.job-card__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.job-card__content {
  display: none;
  padding: 0 26px 24px;
  color: var(--text);
}
.job-card.is-open .job-card__content { display: block; }

.page-hero--about {
  background: linear-gradient(180deg, #eef6fb 0%, #eef6fb 100%);
}

.about-main-box {
  padding: 32px;
}

.about-main-box h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--text);
}

.about-main-box p {
  color: var(--text);
  margin-bottom: 16px;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reference-card {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  text-align: center;
}

.reference-card__content {
  flex: 1;
}

.reference-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  color: var(--text);
}

.reference-card__org {
  margin: 0 0 18px;
  color: var(--primary-dark);
  font-size: 18px;
}

.reference-card p {
  color: #4b5563;
}

.reference-card .btn {
  margin-top: 24px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: auto auto auto;
  }
  .nav-toggle { display: inline-block; justify-self: end; }
  .nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    padding: 20px;
  }
  .menu-open .nav { display: flex; }
  .navbar__actions { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .section-split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    padding: 24px 0;
    min-height: auto;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer__top-inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__socials {
    justify-content: flex-start;
  }

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 920px) {
  .references-grid {
    grid-template-columns: 1fr;
  }
}


/*syf z kułkami*/
.promo-strip {
  transition: transform .3s ease, opacity .3s ease, max-height .3s ease;
  overflow: hidden;
  max-height: 180px;
}

.promo-strip.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
}

.topbar--secondary {
  position: relative;
  background: var(--primary-dark);
  color: #fff;
  font-size: 20px;
}

.topbar__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0;
}

.topbar__media {
  position: relative;
  width: 240px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.topbar__promo-image {
  position: relative;
  z-index: 2;
  max-height: 66px;
  width: auto;
  object-fit: contain;
}

.topbar__bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}

.topbar__bubble--one {
  width: 120px;
  height: 120px;
  left: -8px;
  top: -30px;
}

.topbar__bubble--two {
  width: 92px;
  height: 92px;
  left: 58px;
  top: -8px;
}

.topbar__bubble--three {
  width: 74px;
  height: 74px;
  left: 126px;
  top: 4px;
}

.topbar--secondary p {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.promo-strip__subbar {
  background: #eef1f4;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.promo-strip__subbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-strip__subbar p {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.0rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

/*baner sale*/

.divider-banner--promo {
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding: 28px 36px;
  align-items: center;
  min-height: 240px;
}

.divider-banner--promo .divider-banner__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-banner--promo .divider-banner__media img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 0;
}

.divider-banner--promo .divider-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 560px;
}

.divider-banner--promo .divider-banner__content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--text);
}

.divider-banner--promo .divider-banner__content p {
  margin: 0 0 20px;
  font-size: 18px;
  color: #4b5563;
}

.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  transition: .2s ease;
}

.promo-banner__btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.trust-banner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(220,229,238,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-banner__content {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-banner__content h2 {
  margin: 0 0 48px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--primary-dark);
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.trust-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.trust-feature__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.trust-feature p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--text);
}

.trust-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 700;
  transition: .2s ease;
}

.trust-banner__btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.trust-banner__media {
  min-height: 100%;
}

.trust-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}