/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f5f4;
  color: #1a1a1a;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2),
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
[data-animate][data-delay="1"] { transition-delay: 0.10s; }
[data-animate][data-delay="2"] { transition-delay: 0.20s; }
[data-animate][data-delay="3"] { transition-delay: 0.30s; }
[data-animate][data-delay="4"] { transition-delay: 0.40s; }

/* Card stagger (grid/row) */
.scard[data-delay="1"],
.svc-card[data-delay="1"] { transition-delay: 0.12s; }
.scard[data-delay="2"],
.svc-card[data-delay="2"] { transition-delay: 0.24s; }
.scard[data-delay="3"],
.svc-card[data-delay="3"] { transition-delay: 0.36s; }
.svc-card[data-delay="4"] { transition-delay: 0.48s; }


/* ============================
   HEADER
   ============================ */
.header {
  background: #ffffff;
  border-top: 4px solid #1b4332;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
  /* Allow logo to overflow below header */
  overflow: visible;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
  /* overflow visible so logo can extend down */
  overflow: visible;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
}

.logo__img {
  /* Bigger than header — extends ~14px below */
  height: 102px;
  width: auto;
  /* Slight drop shadow for depth */
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
  position: relative;
  z-index: 101;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo__name {
  font-size: 20px;
  font-weight: 800;
  color: #1b4332;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo__name--light {
  font-weight: 600;
}

.logo__sub {
  font-size: 10px;
  font-weight: 600;
  color: #2d7a55;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

/* NAV */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 4px 7px;
  transition: color .2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__item--active .nav__link {
  color: #1b4332;
  font-weight: 700;
}

.nav__sep {
  color: #ccc;
  font-size: 14px;
  user-select: none;
}

/* PHONE BUTTON */
.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1b4332;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
  letter-spacing: 0.3px;
}

.btn-phone:hover { background: #144028; }

.btn-phone__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* HAMBURGER (mobile only) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  height: 3px;
  background: #1b4332;
  border-radius: 2px;
  transition: all .3s;
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 92px; /* below sticky header */
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 99;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid #e8e8e8;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu__link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: #1b4332;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: #1b4332;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu__phone svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

/* ============================
   HERO SECTION (BLOCK 1)
   ============================ */
.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #eef0ee;
}

/* Right image */
.hero__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 57%;
  height: 100%;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient fade left edge */
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #eef0ee 0%,
    #eef0ee 4%,
    rgba(238,240,238,0.85) 18%,
    rgba(238,240,238,0.35) 38%,
    transparent 58%
  );
  z-index: 1;
}

/* Content wrapper */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Left text block */
.hero__left {
  max-width: 520px;
  display: flex;
  flex-direction: column;
}

/* Title */
.hero__title {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 900;
  color: #1b4332;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Gold divider line */
.hero__divider {
  width: 64px;
  height: 3px;
  background: #c9a227;
  margin-bottom: 24px;
}

/* Description */
.hero__desc {
  font-size: 17px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 38px;
}

/* Buttons */
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 16px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.btn--primary {
  background: #1b4332;
  color: #fff;
  border: 2px solid #1b4332;
}

.btn--primary:hover {
  background: #144028;
  border-color: #144028;
}

.btn--outline {
  background: transparent;
  color: #1b4332;
  border: 2px solid #c9a227;
  font-weight: 700;
}

.btn--outline:hover {
  background: rgba(201,162,39,0.08);
}

/* Phone row */
.hero__phone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__phone-icon {
  width: 44px;
  height: 44px;
  background: #1b4332;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__phone-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.hero__phone-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__phone-number {
  font-size: 20px;
  font-weight: 700;
  color: #1b4332;
  letter-spacing: 0.3px;
}

.hero__phone-hours {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

/* ============================
   RESPONSIVE — TABLET (≤1024px)
   ============================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  .nav__link { font-size: 13px; padding: 4px 5px; }

  .hero__image { width: 55%; }

  .hero__title { font-size: clamp(32px, 4vw, 52px); }
}

/* ============================
   RESPONSIVE — MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .header__inner { height: 72px; }

  .logo__img { height: 80px; }
  .logo__name { font-size: 15px; }
  .logo__sub { font-size: 8.5px; letter-spacing: 1px; }

  /* Hide desktop nav & phone button */
  .nav { display: none; }
  .btn-phone { display: none; }

  /* Show burger */
  .burger { display: flex; }

  /* Mobile menu top offset matches header height */
  .mobile-menu { top: 76px; }

  /* Hero becomes stacked */
  .hero {
    min-height: auto;
    flex-direction: column;
  }

  /* Image moves to bottom, full width */
  .hero__image {
    position: relative;
    width: 100%;
    height: 280px;
    order: 2;
  }

  .hero__image::before {
    background: linear-gradient(
      to bottom,
      #eef0ee 0%,
      rgba(238,240,238,0.4) 30%,
      transparent 60%
    );
  }

  .hero__content {
    padding-top: 44px;
    padding-bottom: 36px;
    order: 1;
  }

  .hero__title { font-size: clamp(30px, 8vw, 44px); margin-bottom: 16px; }
  .hero__desc { font-size: 15px; margin-bottom: 28px; }
  .hero__buttons { gap: 12px; margin-bottom: 32px; }

  .btn { padding: 14px 22px; font-size: 12px; }

  .hero__phone-number { font-size: 17px; }
}

/* ============================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================ */
@media (max-width: 480px) {
  .logo__name { font-size: 13px; }
  .logo__sub { display: none; }
  .logo__img { height: 68px; }

  .hero__title { font-size: clamp(28px, 9vw, 38px); }
  .hero__desc { font-size: 14px; }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn { width: 100%; justify-content: center; }

  .hero__image { height: 220px; }
}

/* ============================
   SECTION 2 — SERVICES
   ============================ */
.services {
  background: #eef0ee;
  padding: 80px 0 70px;
}

/* Heading block */
.services__head {
  text-align: center;
  margin-bottom: 52px;
}

.services__title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.services__desc {
  font-size: 16px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.75;
}

/* Cards grid — 4 columns */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

/* Single card */
.scard {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.scard:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Top text area */
.scard__top {
  padding: 24px 22px 20px;
  flex: 1;
}

/* Icon square */
.scard__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1b4332 0%, #2d6b4e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(27,67,50,0.25);
}

.scard__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Card title */
.scard__title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.35;
  margin-bottom: 14px;
}

/* Card text */
.scard__text {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.65;
}

/* Card image */
.scard__img-wrap {
  width: 100%;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}

.scard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Card bottom link */
.scard__link {
  display: flex;
  align-items: center;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-transform: uppercase;
  border-top: 1px solid #f0f0f0;
  transition: color .2s;
  flex-shrink: 0;
}

.scard__link:hover { color: #1b4332; }

/* Bottom CTA */
.services__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.services__cta-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.services__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid #1b4332;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  background: rgba(255,255,255,0.7);
  transition: all .2s;
  letter-spacing: 0.2px;
}

.services__cta-btn:hover {
  background: #1b4332;
  color: #fff;
}

.services__cta-plus {
  font-size: 18px;
  font-weight: 700;
  color: #1b4332;
  transition: color .2s;
}

.services__cta-btn:hover .services__cta-plus { color: #fff; }

.services__cta-arrow {
  font-size: 16px;
  font-weight: 700;
}

/* --- Responsive services --- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services { padding: 56px 0 52px; }
  .services__desc br { display: none; }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .scard__img-wrap { height: 140px; }
}

@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .scard__img-wrap { height: 180px; }
  .services__cta-btn { font-size: 13px; padding: 13px 22px; }
}

/* ============================
   SECTION 3 — NASZE USŁUGI
   ============================ */
.svc {
  background: #eef0ee;
  padding: 80px 0 70px;
}

.svc__head {
  text-align: center;
  margin-bottom: 50px;
}

.svc__title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #1b4332;
  letter-spacing: 2px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.svc__desc {
  font-size: 16px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.75;
}

.svc__desc strong {
  font-weight: 700;
  color: #1b4332;
}

.svc__desc-sub {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: #444;
}

/* Row: cards + arrows */
.svc__row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 50px;
}

/* Arrow between cards */
.svc__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  font-size: 20px;
  color: #1b4332;
  font-weight: 700;
  padding-bottom: 60px; /* visually center relative to card body, above image */
  opacity: 0.6;
}

/* Single card */
.svc-card {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.svc-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

/* Card top content */
.svc-card__top {
  padding: 22px 18px 18px;
  flex: 1;
}

/* Icon */
.svc-card__icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #1b4332 0%, #2d6b4e 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(27,67,50,0.3);
}

.svc-card__icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Card title */
.svc-card__title {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Card text */
.svc-card__text {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 1.65;
}

/* Card image */
.svc-card__img-wrap {
  width: 100%;
  height: 155px;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Card link */
.svc-card__link {
  display: block;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  border-top: 1px solid #f0f0f0;
  transition: color .2s;
  flex-shrink: 0;
}

.svc-card__link:hover { color: #1b4332; }

/* Bottom CTA button */
.svc__cta {
  text-align: center;
}

.svc__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1b4332;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 52px;
  border-radius: 8px;
  transition: background .2s;
  letter-spacing: 0.3px;
}

.svc__cta-btn:hover { background: #144028; }

/* --- Responsive svc --- */
@media (max-width: 1100px) {
  .svc__arrow { width: 20px; font-size: 16px; }
  .svc-card__title { font-size: 13px; }
  .svc-card__text { font-size: 12px; }
}

@media (max-width: 900px) {
  /* Stack into 2+3 grid, hide arrows */
  .svc__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .svc__arrow { display: none; }
  .svc-card__img-wrap { height: 140px; }
}

@media (max-width: 520px) {
  .svc__row { grid-template-columns: 1fr; }
  .svc-card__img-wrap { height: 170px; }
  .svc__cta-btn { font-size: 14px; padding: 15px 32px; width: 100%; justify-content: center; }
  .svc__desc br { display: none; }
}

/* ============================
   SECTION 4 — OSZUSTWA
   ============================ */
.fraud {
  position: relative;
  padding: 80px 0 80px;
  background: url('../images/4blok.png') center/cover no-repeat;
  isolation: isolate;
}

/* Semi-transparent overlay to keep readability */
.fraud::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(238, 240, 238, 0.90);
  z-index: -1;
}

.fraud > .container {
  position: relative;
  z-index: 1;
}

/* Badge pill */
.fraud__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(210,130,100,0.12);
  border: 1px solid rgba(210,130,100,0.35);
  color: #c0704a;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin: 0 auto 28px;
  display: flex;
  width: fit-content;
}

.fraud__badge svg {
  width: 15px;
  height: 15px;
  stroke: #c0704a;
  flex-shrink: 0;
}

/* Heading */
.fraud__head {
  text-align: center;
  margin-bottom: 52px;
}

.fraud__title {
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fraud__title--gold {
  color: #c9a227;
}

.fraud__desc {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* 3-column grid */
.fraud__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Single fraud card */
.fraud-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(27,67,50,0.07);
  transition: box-shadow .25s, transform .25s;
}

.fraud-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Header row: icon + title */
.fraud-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Circle icon */
.fraud-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

/* Outer ring */
.fraud-card__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.25;
}

.fraud-card__icon svg {
  width: 27px;
  height: 27px;
}

.fraud-card__icon--orange {
  background: linear-gradient(145deg, #f09050 0%, #c96a30 100%);
  box-shadow: 0 6px 20px rgba(200,100,40,0.45);
  color: #e8854a;
}
.fraud-card__icon--gold {
  background: linear-gradient(145deg, #e0b84e 0%, #b88a20 100%);
  box-shadow: 0 6px 20px rgba(180,130,30,0.45);
  color: #d4a843;
}
.fraud-card__icon--brown {
  background: linear-gradient(145deg, #b08848 0%, #7a5a28 100%);
  box-shadow: 0 6px 20px rgba(120,85,35,0.45);
  color: #a07840;
}
.fraud-card__icon--green {
  background: linear-gradient(145deg, #255c42 0%, #1b3628 100%);
  box-shadow: 0 6px 20px rgba(27,67,50,0.50);
  color: #2d7a55;
}
.fraud-card__icon--red {
  background: linear-gradient(145deg, #c03848 0%, #8a1e2c 100%);
  box-shadow: 0 6px 20px rgba(160,40,50,0.45);
  color: #b03040;
}

/* Card title */
.fraud-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.fraud-card__title--gold { color: #c9a227; }

/* Description */
.fraud-card__desc {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Warning label */
.fraud-card__warning-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #2d7a55;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Checklist */
.fraud-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  flex: 1;
}

.fraud-card__list li {
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.fraud-card__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #1b4332;
  font-size: 12px;
  font-weight: 700;
}

/* Link */
.fraud-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1b4332;
  margin-top: auto;
  transition: gap .2s, color .2s;
}

.fraud-card__link:hover {
  color: #c9a227;
  gap: 10px;
}

/* --- Responsive fraud --- */
@media (max-width: 1024px) {
  .fraud__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .fraud { padding: 56px 0 56px; }
  .fraud__grid { grid-template-columns: 1fr; }
  .fraud__title br { display: none; }
}

/* ============================
   SECTION 5 — CTA BANNER
   ============================ */
.cta-banner {
  background: url('../images/4blok.png') center/cover no-repeat;
  position: relative;
  isolation: isolate;
  padding: 56px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(220, 218, 213, 0.84);
  z-index: -1;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Gold decorative lines — full width, thin, with glow */
.cta-banner__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(180,140,30,0.3) 5%,
    rgba(201,162,39,0.7) 15%,
    #c9a227 30%,
    #d4a843 50%,
    #c9a227 70%,
    rgba(201,162,39,0.7) 85%,
    rgba(180,140,30,0.3) 95%,
    transparent 100%
  );
  position: relative;
}

.cta-banner__line::after {
  content: '';
  position: absolute;
  inset: -2px 10% -2px 10%;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.15) 30%, rgba(212,168,67,0.2) 50%, rgba(201,162,39,0.15) 70%, transparent);
  filter: blur(3px);
}

.cta-banner__line:first-child {
  margin-bottom: 36px;
}

.cta-banner__line:last-child {
  margin-top: 36px;
}

.cta-banner__title {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner__text {
  font-size: 0.95rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 28px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #24553f 0%, #1b4332 60%, #153a2b 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 36px;
  border-radius: 6px;
  border: 1px solid rgba(45,90,65,0.4);
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow:
    0 2px 8px rgba(27,67,50,0.3),
    0 4px 16px rgba(27,67,50,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.cta-banner__btn:hover {
  background: linear-gradient(180deg, #2d5a45 0%, #1b4332 60%, #123023 100%);
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(27,67,50,0.35),
    0 8px 24px rgba(27,67,50,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.cta-banner__btn-arrow {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .cta-banner { padding: 44px 0; }
  .cta-banner__text br { display: none; }
  .cta-banner__btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================
   SECTION 6 — STATS CARDS
   ============================ */
.stats {
  background: url('../images/4blok.png') center/cover no-repeat;
  position: relative;
  isolation: isolate;
  padding: 48px 0 52px;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(238, 237, 234, 0.95);
  z-index: -1;
}

.stats__inner {
  /* uses .container */
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---- Single card ---- */
.stats-card {
  position: relative;
  background: rgba(230, 229, 225, 0.55);
  border: 1px solid rgba(200, 198, 192, 0.6);
  border-radius: 14px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow:
    0 2px 12px rgba(0,0,0,0.06),
    0 1px 4px rgba(0,0,0,0.04);
}

/* Gold glow line at bottom of each card */
.stats-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,162,39,0.5) 10%,
    #c9a227 30%,
    #d4a843 50%,
    #c9a227 70%,
    rgba(201,162,39,0.5) 90%,
    transparent 100%
  );
  border-radius: 0 0 2px 2px;
  box-shadow: 0 0 14px 2px rgba(201,162,39,0.35), 0 0 6px rgba(212,168,67,0.45);
}

/* Icon circle */
.stats-card__icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(91,184,138,0.1);
  border: 1.5px solid rgba(91,184,138,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* Large value (24–96h / 1282/2017/UI) */
.stats-card__value {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 10px;
}

/* Large green checkmark (middle card) */
.stats-card__check {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5cb88a;
  line-height: 1;
  margin-bottom: 10px;
}

/* Label text */
.stats-card__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #5a5a5a;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stats-card { padding: 24px 16px 28px; }
  .stats-card__value { font-size: 1.25rem; }
}

@media (max-width: 520px) {
  .stats__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ============================
   SECTION 7 — O NAS (ABOUT)
   ============================ */
.about {
  background: url('../images/4blok.png') center/cover no-repeat;
  position: relative;
  isolation: isolate;
  padding: 80px 0 88px;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(224, 222, 216, 0.92);
  z-index: -1;
}

/* Decorative gold arc (bottom-left) */
.about__decor {
  position: absolute;
  bottom: -160px;
  left: -220px;
  width: 780px;
  height: 460px;
  border: 1.5px solid rgba(201,162,39,0.4);
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(201,162,39,0.12),
    0 0 30px rgba(201,162,39,0.07);
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
}

/* --- Badge --- */
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(215,213,207,0.65);
  border: 1px solid rgba(175,173,165,0.45);
  border-radius: 20px;
  padding: 6px 14px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
}

/* --- Title --- */
.about__title {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  font-weight: 900;
  color: #1b4332;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

/* --- Paragraphs --- */
.about__p {
  font-size: 0.93rem;
  color: #222;
  line-height: 1.78;
  margin-bottom: 14px;
}

/* --- Checklist 2-column --- */
.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 28px;
  margin: 22px 0 32px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.45;
}

.about__list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 2px;
  width: 17px;
  height: 17px;
  border: 1.5px solid #2d7a55;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%232d7a55' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat;
}

/* --- Buttons --- */
.about__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #24553f 0%, #1b4332 55%, #153a2b 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 6px;
  border: 1px solid rgba(45,90,65,0.35);
  box-shadow: 0 3px 14px rgba(27,67,50,0.28), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
}

.about__btn-primary:hover {
  background: linear-gradient(180deg, #2d5a45 0%, #1b4332 55%, #123023 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,67,50,0.34);
}

.about__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 6px;
  border: 1.5px solid rgba(80,80,75,0.35);
  transition: border-color 0.22s, color 0.22s;
}

.about__btn-outline:hover {
  border-color: #1b4332;
  color: #1b4332;
}

/* --- Right media column --- */
.about__media {
  position: relative;
}

.about__img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  max-height: 620px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

/* --- Floating cards --- */
.about__card {
  position: absolute;
  background: rgba(248,247,244,0.97);
  border: 1px solid rgba(215,213,207,0.7);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  backdrop-filter: blur(10px);
  max-width: 210px;
  z-index: 2;
}

.about__card--top {
  top: 20px;
  right: 16px;
}

.about__card--bottom {
  bottom: 36px;
  right: 16px;
}

.about__card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(91,184,138,0.1);
  border: 1px solid rgba(45,122,85,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.about__card-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
  line-height: 1.35;
}

.about__card-desc {
  font-size: 0.76rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.about__card-legal {
  margin-bottom: 10px;
}

.about__card-legal p {
  font-size: 0.76rem;
  color: #2a2a2a;
  line-height: 1.72;
}

.about__card-legal-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1b4332;
  border-top: 1px solid rgba(200,198,192,0.55);
  padding-top: 9px;
  margin-top: 9px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__media { order: -1; }
  .about__card--top { top: 12px; right: 12px; }
  .about__card--bottom { bottom: 20px; right: 12px; }
}

@media (max-width: 600px) {
  .about { padding: 56px 0 64px; }
  .about__title { font-size: 1.55rem; }
  .about__list { grid-template-columns: 1fr; gap: 9px; }
  .about__card { max-width: 170px; padding: 12px 14px; }
  .about__btn-primary, .about__btn-outline { width: 100%; justify-content: center; }
}

/* ============================
   SECTION 8 — POTRZEBUJESZ POMOCY
   ============================ */
.help {
  position: relative;
  background: linear-gradient(160deg, #f7f8f5 0%, #eef0ec 45%, #f2f3ef 100%);
  padding: 80px 0 88px;
  overflow: hidden;
  isolation: isolate;
}

/* Hexagon SVG pattern */
.help__hex {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.help__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title */
.help__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #1b4332;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  line-height: 1.15;
}

/* Subtitle */
.help__text {
  font-size: 1rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Decorative divider — two vertical dashes */
.help__divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 20px 0 28px;
}

.help__divider span {
  display: block;
  width: 3px;
  height: 22px;
  background: linear-gradient(180deg, transparent, rgba(100,120,105,0.35), transparent);
  border-radius: 2px;
}

/* Buttons row */
.help__btns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Outline button */
.help__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245,245,242,0.7);
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(130,140,130,0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.18s;
  min-width: 230px;
  justify-content: center;
}

.help__btn-outline:hover {
  border-color: rgba(45,122,85,0.5);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.help__btn-arrow {
  font-weight: 400;
  opacity: 0.75;
}

/* Dark button with gold border */
.help__btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a18;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 10px;
  border: 1.5px solid #c9a227;
  box-shadow:
    0 0 0 1px rgba(201,162,39,0.15),
    0 4px 18px rgba(0,0,0,0.22);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  min-width: 230px;
  justify-content: center;
}

.help__btn-dark:hover {
  background: #222220;
  box-shadow:
    0 0 0 1px rgba(201,162,39,0.3),
    0 6px 24px rgba(0,0,0,0.28),
    0 0 12px rgba(201,162,39,0.12);
  transform: translateY(-1px);
}

/* Guarantee strip */
.help__guarantee {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(232,231,226,0.55);
  border: 1px solid rgba(195,193,185,0.5);
  border-radius: 12px;
  padding: 20px 28px 20px 24px;
  max-width: 680px;
  width: 100%;
  text-align: left;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Left gold accent bar */
.help__guarantee::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, transparent, #c9a227 25%, #d4a843 50%, #c9a227 75%, transparent);
  border-radius: 0 2px 2px 0;
}

.help__guarantee-icon {
  flex-shrink: 0;
  width: 44px;
  height: 50px;
  filter: drop-shadow(0 2px 6px rgba(201,162,39,0.3));
}

.help__guarantee-text {
  font-size: 0.93rem;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 600px) {
  .help { padding: 60px 0 68px; }
  .help__title { font-size: 1.65rem; }
  .help__btn-outline, .help__btn-dark { min-width: unset; width: 100%; max-width: 320px; }
  .help__guarantee { flex-direction: column; text-align: center; padding: 20px 20px 20px 20px; }
  .help__guarantee::before { top: 0; bottom: unset; left: 12%; right: 12%; width: unset; height: 3px; background: linear-gradient(90deg, transparent, #c9a227 25%, #d4a843 50%, #c9a227 75%, transparent); border-radius: 2px 2px 0 0; }
}

/* ============================
   FOOTER
   ============================ */
.footer {
  position: relative;
  background: linear-gradient(160deg, #06100a 0%, #040c07 55%, #07120a 100%);
  isolation: isolate;
  overflow: hidden;
}

/* Hex pattern overlay */
.footer__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* ---- Main section (3 columns) ---- */
.footer__main {
  position: relative;
  z-index: 1;
  padding: 56px 0 52px;
}

.footer__inner {
  /* uses .container */
}

/* 3-column grid */
.footer__main .footer__inner {
  display: grid;
  grid-template-columns: 44fr 26fr 30fr;
  gap: 48px;
}

/* ---- Column 1: Brand ---- */
.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e8e8e4;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer__brand-p {
  font-size: 0.84rem;
  color: rgba(200,200,190,0.7);
  line-height: 1.75;
  margin-bottom: 12px;
}

.footer__brand-p strong {
  color: rgba(225,225,215,0.9);
  font-weight: 600;
}

/* ---- Column 2: Nav ---- */
.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c9a227;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__nav-link {
  font-size: 0.88rem;
  color: rgba(190,190,180,0.75);
  font-weight: 400;
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: #c9a227;
}

/* ---- Column 3: Contact ---- */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #1e5438, #1b4332);
  border: 1px solid rgba(45,122,85,0.4);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.footer__contact-text {
  font-size: 0.88rem;
  color: rgba(200,200,190,0.85);
  font-weight: 500;
}

.footer__contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__contact-address p {
  font-size: 0.84rem;
  color: rgba(170,170,160,0.7);
  line-height: 1.65;
}

/* ---- DANE FIRMY ---- */
.footer__dane {
  position: relative;
  z-index: 1;
  padding-bottom: 36px;
}

.footer__dane-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,162,39,0.3) 5%,
    #c9a227 25%,
    #d4a843 50%,
    #c9a227 75%,
    rgba(201,162,39,0.3) 95%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(201,162,39,0.2);
  margin-bottom: 28px;
}

.footer__dane-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9a227;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer__dane-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__dane-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(185,185,175,0.8);
  font-weight: 400;
  line-height: 1.5;
}

.footer__dane-item--name {
  font-size: 0.88rem;
  color: rgba(215,215,205,0.95);
  font-weight: 600;
}

.footer__dane-item--note {
  color: rgba(155,155,145,0.65);
  font-size: 0.8rem;
  padding-left: 26px;
}

/* ---- Copyright bar ---- */
.footer__copyright {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}

.footer__copyright p {
  font-size: 0.82rem;
  color: rgba(140,140,130,0.6);
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .footer__main .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .footer__main .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: unset; }
}


/* ============================
   USLUGI PAGE
   ============================ */

/* Единый фон для всей страницы uslugi */
.uslugi-main {
  position: relative;
  isolation: isolate;
  background: url('../images/4blok.png') center/cover no-repeat fixed;
}

.uslugi-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(232, 230, 225, 0.82);
  pointer-events: none;
}

.uslugi-main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -42deg,
    transparent 0px,
    transparent 20px,
    rgba(160, 138, 48, 0.07) 20px,
    rgba(160, 138, 48, 0.07) 22px
  );
}

/* Hero section */
.uslugi-hero {
  position: relative;
  z-index: 1;
  padding: 90px 0 80px;
}

.uslugi-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge */
.uslugi-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1b4332, #2d7a55);
  color: #e8d89a;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  box-shadow: 0 3px 16px rgba(27,67,50,0.28);
  border: 1px solid rgba(212,168,67,0.3);
}

/* Title */
.uslugi-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  color: #1b1f1a;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.uslugi-hero__title--gold {
  color: #c9a227;
}

/* Description */
.uslugi-hero__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3a3f38;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 6px;
}
.uslugi-hero__desc--second {
  font-size: 15px;
  font-weight: 400;
  color: #5a6258;
  margin-bottom: 52px;
}

/* Two service cards */
.uslugi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 60px;
  text-align: left;
}

.uslugi-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 14px;
  padding: 32px 34px 34px;
  box-shadow: 0 4px 28px rgba(27,67,50,0.08), 0 1px 0 rgba(201,162,39,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.uslugi-card__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.uslugi-card__icon-wrap {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #1e5438, #1b4332);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(27,67,50,0.3);
}

.uslugi-card__head-text {
  flex: 1;
}

.uslugi-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #1b1f1a;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.3;
}

.uslugi-card__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #2d7a55;
  line-height: 1.55;
}

.uslugi-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.4) 20%, rgba(201,162,39,0.4) 80%, transparent 100%);
  margin-bottom: 22px;
}

.uslugi-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.uslugi-card__list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #2a2e29;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.uslugi-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #c9a227;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23c9a227' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat;
}

/* DLACZEGO WARTO NAM ZAUFAĆ? */
.uslugi-trust {
  width: 100%;
  max-width: 1080px;
}

.uslugi-trust__heading-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.uslugi-trust__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.5) 30%, #c9a227 60%, rgba(201,162,39,0.5) 80%, transparent 100%);
  box-shadow: 0 0 8px rgba(201,162,39,0.25);
}

.uslugi-trust__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #c9a227;
  text-transform: uppercase;
  white-space: nowrap;
}

.uslugi-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}

.uslugi-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.uslugi-trust__icon-wrap {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #1e5438, #1b4332);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(27,67,50,0.28);
}

.uslugi-trust__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1b1f1a;
  margin-bottom: 7px;
  line-height: 1.3;
}

.uslugi-trust__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5a6258;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .uslugi-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .uslugi-trust__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .uslugi-hero__desc--second br { display: none; }
}

@media (max-width: 600px) {
  .uslugi-hero { padding: 60px 0 60px; }
  .uslugi-card { padding: 24px 20px 26px; }
  .uslugi-trust__heading-row { flex-direction: column; gap: 10px; }
  .uslugi-trust__line { width: 100%; }
}


/* ============================
   RODZAJE OSZUSTW SECTION
   ============================ */

.oszustwa {
  position: relative;
  z-index: 1;
  padding: 80px 0 70px;
}

.oszustwa__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title */
.oszustwa__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #1b1f1a;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.15;
}

.oszustwa__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a6258;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 32px;
}

/* Decorative divider */
.oszustwa__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 48px;
}

.oszustwa__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.45) 40%, #c9a227 70%, rgba(201,162,39,0.45) 90%, transparent 100%);
  box-shadow: 0 0 6px rgba(201,162,39,0.2);
}

.oszustwa__divider-ornament {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* 6-card grid */
.oszustwa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1080px;
  text-align: left;
  margin-bottom: 52px;
}

.oszustwa__card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(201,162,39,0.32);
  border-radius: 14px;
  padding: 26px 28px 28px;
  box-shadow: 0 3px 20px rgba(27,67,50,0.07), 0 1px 0 rgba(201,162,39,0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oszustwa__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,67,50,0.12), 0 1px 0 rgba(201,162,39,0.15);
}

.oszustwa__card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.oszustwa__card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #1e5438, #1b4332);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(27,67,50,0.28);
}

.oszustwa__card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #1b1f1a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-top: 4px;
}

.oszustwa__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.oszustwa__card-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2d3230;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.oszustwa__card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a227;
  font-size: 14px;
  line-height: 1.45;
}

/* Bottom brand */
.oszustwa__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 480px;
}

.oszustwa__brand-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.4) 50%, #c9a227 80%, rgba(201,162,39,0.4) 95%, transparent 100%);
  box-shadow: 0 0 5px rgba(201,162,39,0.18);
}

.oszustwa__brand-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.oszustwa__brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c9a227;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .oszustwa__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .oszustwa { padding: 60px 0 55px; }
  .oszustwa__grid { grid-template-columns: 1fr; max-width: 480px; }
  .oszustwa__subtitle br { display: none; }
  .oszustwa__divider { max-width: 90%; }
}


/* ============================
   JAK WYGLĄDA WSPÓŁPRACA
   ============================ */

.wspolpraca {
  position: relative;
  z-index: 1;
  padding: 80px 0 70px;
}

.wspolpraca__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wspolpraca__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: #1b1f1a;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wspolpraca__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a6258;
  margin-bottom: 30px;
}

/* Ornament divider */
.wspolpraca__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 52px;
}

.wspolpraca__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.45) 40%, #c9a227 70%, rgba(201,162,39,0.45) 90%, transparent 100%);
  box-shadow: 0 0 6px rgba(201,162,39,0.2);
}

.wspolpraca__divider-ornament {
  flex-shrink: 0;
}

/* 4 step cards */
.wspolpraca__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1080px;
  position: relative;
  margin-bottom: 0;
}

.wspolpraca__step {
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(201,162,39,0.30);
  border-radius: 14px;
  padding: 32px 22px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 20px rgba(27,67,50,0.07);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Number circle */
.wspolpraca__num-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.wspolpraca__num-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227, #d4a843, #a07c18, #c9a227);
  box-shadow: 0 0 14px rgba(201,162,39,0.4);
}

.wspolpraca__num-ring::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e5438, #1b4332, #163828);
}

.wspolpraca__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #d4a843;
  letter-spacing: 0.05em;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.wspolpraca__step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1b1f1a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wspolpraca__step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #4a4f48;
  line-height: 1.65;
}

/* Bottom dot on each card */
.wspolpraca__dot {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e5438, #1b4332);
  border: 2px solid rgba(201,162,39,0.5);
  box-shadow: 0 0 8px rgba(27,67,50,0.3);
  z-index: 2;
}

/* Timeline line */
.wspolpraca__timeline {
  width: 100%;
  max-width: 1080px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.35) 8%, #c9a227 25%, #d4a843 50%, #c9a227 75%, rgba(201,162,39,0.35) 92%, transparent 100%);
  box-shadow: 0 0 10px rgba(201,162,39,0.25);
  margin-bottom: 52px;
  margin-top: 0;
}

/* Bottom brand */
.wspolpraca__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 480px;
}

.wspolpraca__brand-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.4) 50%, #c9a227 80%, rgba(201,162,39,0.4) 95%, transparent 100%);
}

.wspolpraca__brand-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wspolpraca__brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c9a227;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .wspolpraca__steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
  .wspolpraca__timeline { max-width: 620px; }
}

@media (max-width: 520px) {
  .wspolpraca__steps { grid-template-columns: 1fr; max-width: 360px; }
  .wspolpraca__timeline { display: none; }
}


/* ============================
   ZESPOL PAGE
   ============================ */

/* Unified background wrapper for dlaczego + zespol-team */
.zespol-main {
  position: relative;
  isolation: isolate;
  background: url('../images/4blok.png') center / cover no-repeat fixed;
}

.zespol-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(225, 222, 216, 0.74);
  pointer-events: none;
}

/* Gold glow corners */
.zespol-main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 0% 50%, rgba(201,162,39,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 100% 50%, rgba(201,162,39,0.18) 0%, transparent 70%);
}

.zespol-main > * {
  position: relative;
  z-index: 1;
}

/* Dark hero */
.zespol-hero {
  position: relative;
  background: linear-gradient(160deg, #0e1f14 0%, #0a160f 50%, #111a0e 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}

/* Gold sparkle/glow on the right */
.zespol-hero__sparkles {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 85% 40%, rgba(201,162,39,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 100% 70%, rgba(212,168,67,0.12) 0%, transparent 60%);
}

.zespol-hero__sparkles::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -38deg,
    transparent 0px,
    transparent 22px,
    rgba(201,162,39,0.06) 22px,
    rgba(201,162,39,0.06) 24px
  );
}

.zespol-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.zespol-hero__badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(45,122,85,0.6);
  background: rgba(27,67,50,0.5);
  color: #5cb88a;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.zespol-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #f0ede6;
  line-height: 1.15;
  margin-bottom: 24px;
}

.zespol-hero__title--green {
  color: #4db87a;
}

.zespol-hero__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(220,215,205,0.75);
  line-height: 1.75;
}

.zespol-hero__desc strong {
  color: rgba(220,215,205,0.95);
  font-weight: 600;
}

/* DLACZEGO MY — 5 cards */
.dlaczego {
  position: relative;
  isolation: isolate;
  padding: 60px 0 70px;
}

/* dlaczego bg — removed, unified via .zespol-main */

/* Gold diagonal stripes — right side (mirrors zespol-team) */
.dlaczego__sparkle {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 14px,
    rgba(201,162,39,0.45) 14px,
    rgba(201,162,39,0.45) 15.5px
  );
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

/* Left side stripes */
.dlaczego__sparkle::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(-100%);
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 14px,
    rgba(201,162,39,0.45) 14px,
    rgba(201,162,39,0.45) 15.5px
  );
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.dlaczego__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dlaczego__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2d7a55;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.dlaczego__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 48px;
}

.dlaczego__card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(180,180,170,0.25);
  border-radius: 14px;
  padding: 30px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 22px rgba(27,67,50,0.09);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dlaczego__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(27,67,50,0.13);
}

.dlaczego__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(45,122,85,0.07);
  border-radius: 14px;
}

.dlaczego__card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1b1f1a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.dlaczego__card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #5a6258;
  line-height: 1.6;
}

/* Brand with logo */
.dlaczego__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 420px;
}

.dlaczego__brand-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(160,130,40,0.35) 40%, rgba(160,130,40,0.5) 70%, transparent 100%);
}

.dlaczego__brand-center {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.dlaczego__brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(160,130,40,0.8);
  text-transform: uppercase;
}

/* Team members section */
.zespol-team {
  position: relative;
  isolation: isolate;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* zespol-team bg — removed, unified via .zespol-main */

/* Gold diagonal stripes — right side */
.zespol-team__sparkle {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 14px,
    rgba(201,162,39,0.45) 14px,
    rgba(201,162,39,0.45) 15.5px
  );
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

/* Gold diagonal stripes — left side */
.zespol-team__sparkle::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(-100%);
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 14px,
    rgba(201,162,39,0.45) 14px,
    rgba(201,162,39,0.45) 15.5px
  );
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.zespol-team__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zespol-team__heading-wrap {
  text-align: center;
  margin-bottom: 52px;
}

.zespol-team__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 500;
  color: #1b1f1a;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.zespol-team__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a6258;
  line-height: 1.65;
  margin-bottom: 20px;
}

.zespol-team__ornament {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

/* Member cards grid */
.zespol-team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.zespol-member {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,67,50,0.09);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zespol-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27,67,50,0.15);
}

.zespol-member__photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2a1f, #0e1a12);
}

.zespol-member__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.zespol-member__info {
  padding: 16px 16px 18px;
}

.zespol-member__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #1b1f1a;
  margin-bottom: 7px;
}

.zespol-member__role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #3d4a3e;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.zespol-member__role-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #2d2d2d;
  opacity: 0.7;
}

/* Bottom branding */
.zespol-team__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  width: 100%;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 1200px) {
  .dlaczego__grid { grid-template-columns: repeat(3, 1fr); }
  .zespol-team__grid { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
}

@media (max-width: 900px) {
  .zespol-team__grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
}

@media (max-width: 700px) {
  .dlaczego__grid { grid-template-columns: repeat(2, 1fr); }
  .zespol-team__grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .zespol-hero__desc br { display: none; }
  .zespol-team__subtitle br { display: none; }
}

@media (max-width: 480px) {
  .dlaczego__grid { grid-template-columns: 1fr; max-width: 380px; }
  .zespol-team__grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ============================
   SUKCESY PAGE
   ============================ */

/* --- Секция целиком — светлый кремово-бежевый фон --- */
.sukcesy {
  position: relative;
  background:
    url('../images/4blok.png') center/cover fixed,
    #e2ddd4;
  padding: 80px 0 72px;
  overflow: hidden;
}

.sukcesy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(236,231,220,0.88);
  pointer-events: none;
}

/* Золотые диагональные полосы по краям */
.sukcesy__sparkle {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 130px;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 14px,
    rgba(201,162,39,0.38) 14px,
    rgba(201,162,39,0.38) 15px
  );
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.22), transparent);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.22), transparent);
  pointer-events: none;
  z-index: 1;
}
.sukcesy__sparkle--right {
  left: auto; right: 0;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.22), transparent);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.22), transparent);
}

/* --- Заголовочный блок --- */
.sukcesy__header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 52px;
}

.sukcesy__title {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  color: #1a1a18;
  line-height: 1.3;
  margin-bottom: 20px;
  font-style: normal;
}

/* "Cyber Mind" — тёплый коричнево-бронзовый */
.sukcesy__title--brown {
  font-style: italic;
  font-weight: 700;
  color: #7a5530;
}

/* "autentycznymi wynikami" — золотой курсив */
.sukcesy__title--gold {
  font-style: italic;
  font-weight: 700;
  color: #c9a227;
}

.sukcesy__subtitle {
  font-size: clamp(13px, 1.2vw, 15.5px);
  color: #4a4840;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
}

/* --- Сетка документов 4×2 --- */
.sukcesy__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 46px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Карточка документа --- */
.doc-card {
  background: rgba(255,255,255,0.88);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 2px 14px rgba(0,0,0,0.10),
    0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(210,200,180,0.5);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 32px rgba(0,0,0,0.14),
    0 2px 8px rgba(201,162,39,0.14);
  border-color: rgba(201,162,39,0.4);
}

.doc-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  background: #dedad3;
  overflow: hidden;
}

.doc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.doc-card:hover .doc-card__img {
  transform: scale(1.04);
}

/* Кнопка скачать — золотой квадрат в правом нижнем углу */
.doc-card__dl {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #c9a227 0%, #a8841a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 3px 10px rgba(160,120,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.22);
  border: 1px solid rgba(255,220,100,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  z-index: 3;
}

.doc-card__dl:hover {
  background: linear-gradient(145deg, #d4ab2e 0%, #b8920f 100%);
  box-shadow:
    0 5px 16px rgba(160,120,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.doc-card__dl:active {
  transform: scale(0.97);
}

/* --- Нижний текст --- */
.sukcesy__note {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 14.5px;
  color: #4a4840;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sukcesy__note strong {
  color: #1a1a18;
  font-weight: 700;
}

/* --- 3 знака доверия --- */
.sukcesy__trust {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}

.suk-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}

.suk-trust__icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(150,110,0,0.2));
}

.suk-trust__text {
  font-size: 13px;
  color: #3e3c36;
  line-height: 1.65;
}

.suk-trust__text strong {
  color: #1a1a18;
  font-weight: 700;
}

.suk-trust__divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(180,150,60,0.45), transparent);
  flex-shrink: 0;
}

/* --- Bottom brand --- */
.sukcesy__brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding-top: 8px;
}

/* ---- SUKCESY АДАПТИВ ---- */
@media (max-width: 900px) {
  .sukcesy__grid { grid-template-columns: repeat(3, 1fr); max-width: 820px; }
}

@media (max-width: 640px) {
  .sukcesy__grid { grid-template-columns: repeat(2, 1fr); max-width: 520px; gap: 12px; }
  .sukcesy__trust { flex-wrap: wrap; gap: 20px; }
  .suk-trust__divider { display: none; }
  .suk-trust { flex: none; width: 100%; justify-content: flex-start; padding: 0; }
  .sukcesy__subtitle br { display: none; }
}

@media (max-width: 400px) {
  .sukcesy { padding: 52px 0 48px; }
  .doc-card__dl { width: 34px; height: 34px; }
}

/* ============================
   O NAS PAGE
   ============================ */

/* ---- HERO DARK ---- */
.onas-hero {
  position: relative;
  background: linear-gradient(160deg, #0e1f14 0%, #0a160f 55%, #111a0e 100%);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 400px;
}

/* Gold sparkle glow — left side */
.onas-hero__sparkles {
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 10% 40%, rgba(201,162,39,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 25% 45% at 0% 75%, rgba(212,168,67,0.10) 0%, transparent 55%);
}

.onas-hero__sparkles::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 14px,
    rgba(201,162,39,0.07) 14px,
    rgba(201,162,39,0.07) 15px
  );
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.55), transparent 65%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.55), transparent 65%);
}

.onas-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 56px;
}

.onas-hero__left {
  flex: 0 0 54%;
  max-width: 54%;
}

.onas-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 800;
  color: #f0ede6;
  line-height: 1.15;
  margin-bottom: 28px;
}

.onas-hero__title strong {
  font-weight: 900;
}

.onas-hero__title--green {
  color: #4db87a;
}

.onas-hero__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(220,215,205,0.72);
  line-height: 1.8;
  max-width: 560px;
}

.onas-hero__desc--accent {
  color: #4db87a;
  font-weight: 600;
}

.onas-hero__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onas-hero__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ---- ONAS MAIN (unified background) ---- */
.onas-main {
  position: relative;
  background: url('../images/4blok.png') center/cover fixed, #e2ddd4;
  isolation: isolate;
}

.onas-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(225,222,216,0.80);
  pointer-events: none;
  z-index: 0;
}

/* ---- ONAS CONTENT ---- */
.onas-content {
  position: relative;
  z-index: 1;
  padding: 70px 0 60px;
}

.onas-content__sparkle {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 130px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 14px,
    rgba(201,162,39,0.38) 14px,
    rgba(201,162,39,0.38) 15px
  );
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.22), transparent);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.22), transparent);
}

.onas-content__sparkle--right {
  left: auto;
  right: 0;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.22), transparent);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.22), transparent);
}

.onas-content__wrap {
  position: relative;
  z-index: 1;
}

/* Two-column grid */
.onas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}

/* Column */
.onas-col__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: #1a1a18;
  line-height: 1.3;
  margin-bottom: 18px;
  font-style: normal;
}

.onas-col__title--gold {
  font-style: italic;
  color: #c9a227;
}

.onas-col__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4840;
  line-height: 1.75;
  margin-bottom: 22px;
}

.onas-col__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.onas-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #2a2e29;
  line-height: 1.55;
}

.onas-col__list li strong {
  font-weight: 700;
}

/* Shield bullet */
.onas-col__bullet {
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 22px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 24'%3E%3Cpath d='M10 1L2 5v8c0 6 4 11 8 12 4-1 8-6 8-12V5L10 1z' fill='%231b4332' stroke='%232d7a55' stroke-width='0.8'/%3E%3Cpolyline points='6,12 8.5,14.5 14,9' fill='none' stroke='%23c9a227' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Images at bottom of each column */
.onas-col__img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #c8c3bb;
  line-height: 0;
}

.onas-col__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* CTA button below both columns */
.onas-cta {
  text-align: center;
  margin-bottom: 52px;
}

.onas-cta__btn {
  display: inline-block;
  padding: 16px 52px;
  background: linear-gradient(135deg, #1b4332 0%, #2d7a55 100%);
  color: #f0ede6;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 1.5px solid rgba(201,162,39,0.35);
  box-shadow: 0 6px 28px rgba(27,67,50,0.30), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  text-decoration: none;
}

.onas-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(27,67,50,0.38);
}

/* Bottom brand */
.onas-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .onas-hero__inner { gap: 36px; padding: 70px 32px; }
  .onas-hero__left { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 768px) {
  .onas-hero {
    min-height: unset;
  }
  .onas-hero__inner {
    flex-direction: column;
    padding: 52px 24px;
    gap: 32px;
  }
  .onas-hero__left {
    flex: none;
    max-width: 100%;
  }
  .onas-hero__right {
    width: 100%;
  }
  .onas-hero__img {
    max-width: 100%;
    max-height: 280px;
    object-fit: cover;
  }
  .onas-hero__title br { display: none; }
}

@media (max-width: 860px) {
  .onas-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .onas-col__img {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .onas-content { padding: 48px 0 44px; }
  .onas-cta__btn { padding: 14px 32px; font-size: 14px; width: 100%; }
  .onas-col__img { height: 200px; }
}

/* ============================
   ONAS — NA CZYM NAM ZALEŻY
   ============================ */

.onas-values {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  /* 4blok.png + тёплый тёмный overlay — имитирует градиент скриншота */
  background:
    linear-gradient(180deg, rgba(18,12,6,0.76) 0%, rgba(20,14,8,0.74) 100%),
    url('../images/4blok.png') center/cover fixed;
}

/* Gold diagonal sparkle — top left */
.onas-values__sparkle--tl {
  position: absolute;
  top: 0; left: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 11px,
    rgba(201,162,39,0.50) 11px,
    rgba(201,162,39,0.50) 12px
  );
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, transparent 65%);
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, transparent 65%);
}

/* Gold diagonal sparkle — bottom right */
.onas-values__sparkle--br {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 11px,
    rgba(201,162,39,0.50) 11px,
    rgba(201,162,39,0.50) 12px
  );
  -webkit-mask-image: linear-gradient(315deg, rgba(0,0,0,0.70) 0%, transparent 65%);
  mask-image: linear-gradient(315deg, rgba(0,0,0,0.70) 0%, transparent 65%);
}

.onas-values__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.onas-values__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 700;
  color: rgba(230,222,205,0.70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 52px;
}

.onas-values__title--accent {
  color: rgba(235,225,200,0.95);
  font-weight: 800;
}

/* 4-column cards grid */
.onas-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

/* Individual card */
.onas-val-card {
  background: rgba(215, 208, 195, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(210, 200, 175, 0.22);
  border-radius: 14px;
  padding: 30px 24px 28px;
  text-align: left;
  transition: transform 0.20s ease, background 0.20s ease;
}

.onas-val-card:hover {
  transform: translateY(-4px);
  background: rgba(220, 214, 200, 0.35);
}

/* Icon wrapper */
.onas-val-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(45, 122, 85, 0.12);
  margin-bottom: 18px;
}

.onas-val-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(230, 225, 210, 0.95);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.onas-val-card__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(200, 192, 175, 0.80);
  line-height: 1.65;
}

/* ============================
   ONAS — CHCESZ POROZMAWIAĆ
   ============================ */

.onas-contact {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  /* тёмный зелёный overlay поверх той же текстуры */
  background:
    linear-gradient(180deg, rgba(4,12,6,0.92) 0%, rgba(6,16,8,0.90) 100%),
    url('../images/4blok.png') center/cover fixed;
}

/* Gold sparkle — bottom right */
.onas-contact__sparkle {
  position: absolute;
  bottom: 0; right: 0;
  width: 240px;
  height: 240px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 11px,
    rgba(201,162,39,0.48) 11px,
    rgba(201,162,39,0.48) 12px
  );
  -webkit-mask-image: linear-gradient(315deg, rgba(0,0,0,0.68) 0%, transparent 65%);
  mask-image: linear-gradient(315deg, rgba(0,0,0,0.68) 0%, transparent 65%);
}

.onas-contact__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Badge */
.onas-contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(180,175,155,0.35);
  background: rgba(255,255,255,0.04);
  color: rgba(200,192,175,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Title */
.onas-contact__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  color: rgba(235, 228, 210, 0.95);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 22px;
}

/* Subtitle */
.onas-contact__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(185,178,162,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
}

.onas-contact__text br { }

/* Buttons */
.onas-contact__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.onas-contact__btn-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border-radius: 8px;
  border: 1px solid rgba(200,192,170,0.40);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(225,218,200,0.90);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.onas-contact__btn-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(200,192,170,0.60);
}

.onas-contact__btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 36px;
  border-radius: 8px;
  border: 1px solid rgba(201,162,39,0.45);
  background: rgba(8,20,10,0.70);
  color: rgba(225,218,200,0.90);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.onas-contact__btn-dark:hover {
  background: rgba(12,28,14,0.85);
  border-color: rgba(201,162,39,0.65);
}

/* Brand line */
.onas-contact__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .onas-values__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 520px) {
  .onas-values { padding: 56px 0 64px; }
  .onas-values__grid { grid-template-columns: 1fr; max-width: 400px; }
  .onas-contact { padding: 56px 0 52px; }
  .onas-contact__btns { flex-direction: column; }
  .onas-contact__btn-light,
  .onas-contact__btn-dark { width: 100%; justify-content: center; }
  .onas-contact__title br { display: none; }
}


/* ============================================================
   KONTAKT PAGE
   ============================================================ */

/* ---- Hero ---- */
.kontakt-hero {
  position: relative;
  background: linear-gradient(160deg, #0e1f14 0%, #0a160f 55%, #111a0e 100%);
  padding: 80px 0 72px;
  overflow: hidden;
}

.kontakt-hero__sparkles {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -52deg,
      transparent 0px, transparent 14px,
      rgba(201,162,39,0.06) 14px, rgba(201,162,39,0.06) 15px
    );
  pointer-events: none;
}

.kontakt-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.kontakt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(45,122,85,0.15);
  border: 1px solid rgba(45,122,85,0.35);
  color: #4db87a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.kontakt-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(235,230,220,0.96);
  line-height: 1.15;
  margin-bottom: 18px;
}

.kontakt-hero__title--green {
  color: #4db87a;
}

.kontakt-hero__desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(190,185,172,0.80);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.kontakt-hero__desc strong {
  color: rgba(220,215,200,0.90);
  font-weight: 600;
}

/* ---- Main section background ---- */
.kontakt-main {
  position: relative;
  background: url('../images/4blok.png') center/cover fixed, #e2ddd4;
}

.kontakt-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(228,224,216,0.82);
  pointer-events: none;
}

/* ---- Section ---- */
.kontakt-section {
  position: relative;
  padding: 80px 0 90px;
}

.kontakt-section__sparkle {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px, transparent 11px,
    rgba(201,162,39,0.38) 11px, rgba(201,162,39,0.38) 12px
  );
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
}

.kontakt-section__sparkle--right {
  left: auto;
  right: 0;
  -webkit-mask-image: linear-gradient(270deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  mask-image: linear-gradient(270deg, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.kontakt-section__wrap {
  position: relative;
  z-index: 1;
}

/* ---- Grid ---- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.kontakt-grid--single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

/* ---- Info column ---- */
.kontakt-info-col__title {
  font-size: 26px;
  font-weight: 800;
  color: #1b4332;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.kontakt-info-col__title--gold {
  color: #c9a227;
  font-style: italic;
  font-weight: 700;
}

/* ---- Info cards ---- */
.kontakt-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(180,175,160,0.30);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kontakt-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.kontakt-info-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1b4332, #2d7a55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.kontakt-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kontakt-info-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2d7a55;
}

.kontakt-info-card__value {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a18;
}

.kontakt-info-card__value--link {
  transition: color 0.15s ease;
}

.kontakt-info-card__value--link:hover {
  color: #1b4332;
}

.kontakt-info-card__note {
  font-size: 12px;
  font-weight: 400;
  color: #6a6a60;
}

/* ---- Company data block ---- */
.kontakt-company {
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(180,175,160,0.30);
  border-left: 3px solid #c9a227;
  border-radius: 12px;
  padding: 20px 22px 22px;
  margin-top: 6px;
}

.kontakt-company__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.kontakt-company__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1b4332;
}

.kontakt-company__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt-company__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.kontakt-company__key {
  flex-shrink: 0;
  min-width: 110px;
  font-weight: 600;
  color: #4a5a4a;
}

.kontakt-company__val {
  color: #1a1a18;
  font-weight: 500;
}

.kontakt-company__val--active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2d7a55;
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .kontakt-grid { gap: 32px; }
}

@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-form__row { grid-template-columns: 1fr; }
  .kontakt-hero { padding: 60px 0 52px; }
  .kontakt-section { padding: 60px 0 70px; }
}

@media (max-width: 480px) {
  .kontakt-company__key { min-width: 90px; }
}

/* ============================
   GLOBAL MOBILE FIXES
   ============================ */

/* --- ≤768px HEADER FIX --- */
@media (max-width: 768px) {
  .header { overflow: hidden; }
  .header__inner { overflow: visible; gap: 12px; }
  .logo { gap: 10px; max-width: calc(100vw - 120px); }
  .logo__text { min-width: 0; }
  .logo__name { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo__sub { display: none; }

  /* Prevent any section from overflowing */
  section, main, footer { max-width: 100vw; overflow-x: hidden; }

  /* Container safe padding */
  .container, .container--wide { padding: 0 16px; }

  /* About section — fix floating cards on mobile */
  .about__card { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: 100%; margin-top: 16px; }
  .about__media { width: 100%; }
  .about__media img { width: 100%; border-radius: 12px; }

  /* Stats cards — shrink value */
  .stats-card__value { font-size: clamp(22px, 7vw, 40px); }

  /* Help section buttons */
  .help__btns { flex-direction: column; width: 100%; }
  .help__btn-outline, .help__btn-dark { width: 100%; justify-content: center; text-align: center; }

  /* Footer dane list wrap */
  .footer__dane-list { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__dane-item { font-size: 12px; }

  /* Sukcesy grid */
  .sukcesy__trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .suk-trust__divider { display: none; }
}

/* --- ≤480px ALL SECTIONS --- */
@media (max-width: 480px) {
  .container, .container--wide { padding: 0 14px; }

  .logo__img { height: 60px; }
  .logo__name { font-size: 12px; }
  .header__inner { height: 68px; gap: 8px; }
  .mobile-menu { top: 72px; }

  /* Hero */
  .hero__image { height: 200px; }
  .hero__phone { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Services cards */
  .scard { padding: 20px 16px; }

  /* CTA banner */
  .cta-banner { padding: 40px 14px; }
  .cta-banner__title { font-size: clamp(18px, 6vw, 28px); }

  /* Stats */
  .stats { padding: 40px 0; }
  .stats-card { padding: 24px 16px; }

  /* About */
  .about { padding: 50px 0; }
  .about__title { font-size: clamp(22px, 8vw, 34px); }

  /* Help */
  .help { padding: 50px 0; }
  .help__title { font-size: clamp(22px, 8vw, 36px); }
  .help__guarantee { flex-direction: column; gap: 12px; text-align: center; }

  /* Footer */
  .footer__logo { font-size: 22px; }
  .footer__brand-p { font-size: 12.5px; }

  /* Uslugi page */
  .uslugi-hero { padding: 50px 0 40px; }
  .uslugi-cards { grid-template-columns: 1fr; }
  .wspolpraca__steps { grid-template-columns: 1fr; }

  /* Zespol page */
  .dlaczego__grid { grid-template-columns: 1fr; }
  .zespol-team__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  /* Sukcesy */
  .sukcesy__grid { grid-template-columns: repeat(2, 1fr); }

  /* O nas */
  .onas-cols { grid-template-columns: 1fr; }
  .onas-values__grid { grid-template-columns: 1fr; }

  /* Kontakt */
  .kontakt-info-card { padding: 20px 16px; }
  .kontakt-company { padding: 20px 16px; }
}

/* --- ≤380px VERY SMALL PHONES --- */
@media (max-width: 380px) {
  .container, .container--wide { padding: 0 12px; }

  .logo__img { height: 52px; }
  .logo__name { font-size: 11px; }
  .header__inner { height: 64px; }
  .mobile-menu { top: 68px; }

  .btn { padding: 12px 16px; font-size: 11.5px; }

  .hero__title { font-size: clamp(22px, 9vw, 32px); }

  .sukcesy__grid { grid-template-columns: 1fr; }

  .footer__main .footer__inner { grid-template-columns: 1fr; }
  .footer__dane-item { font-size: 11px; }

  /* Prevent text overflow everywhere */
  h1, h2, h3, h4, p { word-break: break-word; overflow-wrap: break-word; }
}
