/* ========= RESET & TOKENS (LIGHT) ========= */
:root {
  --bg: #f6f8fb; /* jasne tło strony */
  --card: #ffffff; /* białe karty / navbar */
  --text: #0b1020; /* główny, ciemny tekst */
  --muted: #5f6b7a; /* opis / drugorzędny */
  --accent: #3a86ff; /* akcent (niebieski) */
  --accent-2: #122cef; /* akcent 2 (niebieski inny xD) */
  --accent-3: #00c2ff; /* akcent 3 (cyjan) */
  --danger: #ff5b6e;
  --ok: #20c997;
  --glass: rgba(255, 255, 255, 0.75);

  --radius: 16px;
  --radius-lg: 20px;
  --blur: 14px;

  --nav-h: 88px;
  --nav-h-shrink: 64px;

  --shadow-1: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-2: 0 6px 22px rgba(15, 23, 42, 0.08);

  --speed-1: 0.25s;
  --speed-2: 0.45s;
  --speed-3: 0.9s;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% -10%, #ffffff 0, transparent 60%),
    radial-gradient(900px 640px at 80% -20%, #ffffff 0, transparent 55%),
    linear-gradient(180deg, #f9fbff 0, #eef3fb 100%);
  overflow-x: hidden;
}

/* ========= SCROLL PROGRESS ========= */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  z-index: 9999;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* ========= NAVBAR WRAP ========= */
.navbar-wrap {
  position: fixed; /* zamiast sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

/* Dekoracyjna fala (jasna, subtelna) */
.nav-wave {
  height: 14px;
  background:
    radial-gradient(
      60% 180% at 50% -80%,
      rgba(58, 134, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(
      90deg,
      transparent 0 10%,
      rgba(0, 0, 0, 0.06) 45%,
      transparent 90%
    );
  mask: radial-gradient(120% 150% at 50% 0, #000 42%, transparent 43%) top/40px
    100%;
  opacity: 0.5;
  transition: opacity var(--speed-2) ease;
}
body.nav-shrink .nav-wave {
  opacity: 0.28;
}

/* ========= NAVBAR (WHITE GLASS) ========= */
.navbar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--nav-h);
  transition:
    height var(--speed-2) ease,
    transform var(--speed-2),
    box-shadow var(--speed-2),
    background var(--speed-2);
  padding: 10px clamp(16px, 4vw, 40px);
  position: relative;
  isolation: isolate;
  background: var(--glass);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-1);
  justify-content: space-between;
}
body.nav-shrink .navbar {
  height: var(--nav-h-shrink);
  box-shadow: var(--shadow-2);
  background: rgba(255, 255, 255, 0.9);
}

/* Subtelny szklany border + lekki połysk (LIGHT) */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 0 rgba(15, 23, 42, 0.05) inset;
  opacity: 0.95;
}
.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.75) 12%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 280% 100%;
  animation: sheen 8s ease-in-out infinite;
  opacity: 0.6;
}
body.nav-shrink .navbar::after {
  opacity: 0.4;
}
.reduce-motion .navbar::after {
  animation: none;
}
@keyframes sheen {
  0% {
    background-position: 200% 0;
  }
  45% {
    background-position: 80% 0;
  }
  55% {
    background-position: 70% 0;
  }
  100% {
    background-position: -80% 0;
  }
}

/* ======== BRAND (LIGHT) ======== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  position: relative;
}
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(16px, 1.1rem, 22px);
  white-space: nowrap;
  color: #0b1020;
}
.brand-glow {
  position: absolute;
  inset: -10px -20px -14px -20px;
  border-radius: 20px;
  background:
    radial-gradient(
      80px 40px at 15% 50%,
      rgba(58, 134, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      80px 40px at 75% 50%,
      rgba(132, 94, 247, 0.16),
      transparent 60%
    );
  filter: blur(10px);
  z-index: -1;
  opacity: 0.9;
  transition: opacity var(--speed-2) ease;
}
.brand:hover .brand-glow {
  opacity: 1;
}
body.nav-shrink .brand-logo {
  transform: scale(0.92);
}

/* ======== NAV LINKS (LIGHT) ======== */
.nav-menu {
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}

.nav-link,
.nav-cta {
  --pad-x: 14px;
  --pad-y: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 14px;
  text-decoration: none;
  color: #1b263b;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition:
    color var(--speed-1) ease,
    background var(--speed-1) ease,
    transform var(--speed-1) ease,
    box-shadow var(--speed-1) ease;
  will-change: transform;
  background: transparent;
}

/* lekki podświetlony „ghost” + underline slide w bieli */
.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed-1) ease;
  border-radius: 2px;
  opacity: 0.85;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #0b1020;
}

/* CTA w bieli: gradient + delikatny glow */
.nav-cta {
  --pad-y: 10px;
  --pad-x: 16px;
  margin-left: 6px;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  background-size: 200% 100%;
  /* animation: flow 6s linear infinite; */
  box-shadow:
    0 0 0 0 rgba(58, 134, 255, 0),
    0 10px 22px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
@keyframes flow {
  to {
    background-position: -200% 0;
  }
}
.nav-cta.glow {
  text-shadow: 0 0 10px rgba(58, 134, 255, 0.45);
}
.nav-cta:hover {
  box-shadow:
    0 0 22px 6px rgba(58, 134, 255, 0.28),
    0 12px 26px rgba(15, 23, 42, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* Ripple ink – na jasnym tle ciemniejszy */
.ripple {
  overflow: hidden;
}
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
  background: rgba(15, 23, 42, 0.12);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ======== MEGA MENU (LIGHT) ======== */
.has-mega {
  position: relative;
}
.nav-item.has-mega {
  position: relative;
}

.mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(10px);
  width: min(960px, 92vw);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition:
    opacity var(--speed-2) ease,
    transform var(--speed-2) ease,
    visibility var(--speed-2) step-end;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

/* Pokaż gdy kursor jest na linku LUB na samym panelu (bo oba są w tym samym wrapperze) */
.nav-item.has-mega:hover > .mega,
.nav-item.has-mega:focus-within > .mega,
.nav-item.has-mega.is-open > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto; /* włącz interakcję, żeby nie znikał */
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  /* Ta linia zapewnia płynne POJAWIANIE SIĘ */
  transition:
    opacity var(--speed-2) ease,
    transform var(--speed-2) ease,
    visibility 0s linear;
}
.mega-col {
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent);
}
.mega-col h4 {
  margin: 0 0 10px;
  font-size: 12px;
  color: #63728a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 800;
}
.mega-link {
  display: block;
  padding: 8px 10px;
  margin: 2px 0;
  border-radius: 10px;
  text-decoration: none;
  color: #0b1020;
  transition:
    background var(--speed-1) ease,
    transform var(--speed-1) ease;
}
.mega-link:hover {
  background: rgba(15, 23, 42, 0.05);
  transform: translateX(3px);
}
.mega-col.highlight {
  background: linear-gradient(
    180deg,
    rgba(58, 134, 255, 0.08),
    rgba(132, 94, 247, 0.06)
  );
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.mega-cta {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #061020;
  background: linear-gradient(90deg, var(--ok), var(--accent-3));
  font-weight: 800;
}

/* ======== MOBILE (LIGHT) ======== */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10001;
}
.nav-toggle .bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #0b1020;
  border-radius: 2px;
  transition:
    transform var(--speed-1) ease,
    opacity var(--speed-1) ease,
    top var(--speed-1) ease;
}
.nav-toggle .bar:nth-child(1) {
  top: 14px;
}
.nav-toggle .bar:nth-child(2) {
  top: 21px;
}
.nav-toggle .bar:nth-child(3) {
  top: 28px;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
    order: 2;
  }
  .nav-menu {
    position: fixed;
    inset: calc(var(--nav-h)) 0 auto 0;
    height: calc(100dvh - var(--nav-h));
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--speed-2) ease,
      transform var(--speed-2) ease,
      visibility var(--speed-2) step-end;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  body.nav-shrink .nav-menu {
    inset: calc(var(--nav-h-shrink)) 0 auto 0;
    height: calc(100dvh - var(--nav-h-shrink));
  }
  .nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
  }
  .has-mega .mega {
    display: none !important;
  } /* mega ukryty na mobile dla prostoty */
  .nav-link,
  .nav-cta {
    width: 100%;
    font-size: 18px;
    padding: 14px 16px;
  }
  .brand-name {
    display: none;
  } /* oszczędność miejsca */
  body.no-scroll {
    overflow: hidden;
  }
}

/* ======== STATE: SHRINK ========= */
body.nav-shrink .navbar {
  transform: translateY(-2px);
}
body.nav-shrink .navbar::before {
  opacity: 0.9;
}

/* ======== NICETIES / FOCUS ========= */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ================= HERO (JASNY) ================= */
.hero {
  position: relative;
  min-height: clamp(646px, 100vh, 920px);
  display: grid;
  place-items: start center;
  padding: clamp(48px, 8vw, 80px) clamp(16px, 6vw, 80px);
  color: #0b1020;
  background: #ffffff;
  overflow: clip; /* ładne obcinanie parallax/overlay */
}

/* TŁO: zdjęcie + delikatny parallax */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0); /* akceleracja */
  will-change: transform;
}
@media (min-width: 900px) {
  /* delikatny parallax na większych ekranach */
  .hero-bg {
    background-attachment: fixed;
  }
}

/* Overlay poprawia czytelność (subtelny biały gradient ku środkowi) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 45% at 50% 2%,
      rgba(255, 255, 255, 0.74) 0%,
      rgba(255, 255, 255, 0.35) 48%,
      rgba(255, 255, 255, 0.12) 20%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.55) 30%,
      rgba(255, 255, 255, 0.25) 60%,
      rgba(255, 255, 255, 0) 100%
    );
  pointer-events: none;
}

/* KONTENT */
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  top: 30%;
}
.hero-inner1 {
  /* position: relative; */
  z-index: 1;
  /* text-align: center; */
  max-width: 1100px;
  width: 100%;
  top: 30%;
  margin-top: 2%;
}
@media (max-width: 900px) {
  .hero-inner1 {
    margin-top: 5%;
  }
}
@media (max-width: 700px) {
  .hero-inner1 {
    margin-top: 7%;
  }
}
@media (max-width: 620px) {
  .hero-inner1 {
    margin-top: 10%;
  }
}
@media (max-width: 500px) {
  .hero-inner1 {
    margin-top: 15%;
  }
}
/* Tytuł: jasny, z dyskretnym akcentem */
.hero-title {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.05;
  font-size: clamp(32px, 6vw, 64px);
}
.hero-title span {
  background-image: #0387ce;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 #0387ce;
}

/* Podtytuł */
.hero-sub {
  /* margin: 0 auto; */
  color: #000000;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.55;
  max-width: 900px;
  opacity: 0.95;
  margin-top: 4%;
}
.br-xl {
  display: none;
}
@media (min-width: 1200px) {
  .br-xl {
    display: inline;
  }
}

/* Przyciski */
.hero-actions {
  margin-top: clamp(16px, 4vw, 28px);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions1 {
  margin-top: clamp(16px, 4vw, 28px);
  display: flex;
  gap: 12px;
  /* justify-content: center; */
  flex-wrap: wrap;
}

.pro-odz .centrowanie-div {
  color: var(--accent1) !important;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  will-change: transform;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #0071ff, #2175d5, #00c8ff);
  background-size: 200% 100%;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  /* animation: hero-flow 10s linear infinite; */
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.btn-ghost {
  color: #0b1020;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 16, 60, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.btn-ghost:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ripple kompatybilne ze światłym tłem */
.btn.ripple {
  overflow: hidden;
}
.btn .ripple-ink {
  background: rgba(0, 0, 0, 0.08);
} /* jeśli ripple wstawiasz wewnątrz .btn */

/* Animacja gradientu CTA */
@keyframes hero-flow {
  to {
    background-position: -200% 0;
  }
}

/* Wskazówka przewijania */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vh, 40px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #22304d;
  text-decoration: none;
  opacity: 0.9;
}
.scroll-cue .mouse {
  width: 28px;
  height: 44px;
  border-radius: 16px;
  border: 2px solid rgba(0, 16, 60, 0.25);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.scroll-cue .wheel {
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: rgba(0, 16, 60, 0.45);
  animation: wheel 1.6s ease-in-out infinite;
}
.scroll-cue .scroll-text {
  font-size: 12px;
  letter-spacing: 0.2px;
  opacity: 0.75;
}
@keyframes wheel {
  0% {
    transform: translateY(-6px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(2px);
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* Redukcja ruchu – wyłącz parallax i animacje */
.reduce-motion .hero-bg {
  background-attachment: scroll;
}
.reduce-motion .btn-primary {
  animation: none;
}
.reduce-motion .wheel {
  animation: none;
}

/* ============ SEKCJE – LAYOUT ============ */
.section-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(28px, 6vw, 48px);
}
.section-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.08;
  letter-spacing: 0.2px;
}
.section-subtitle {
  color: var(--muted);
  font-size: clamp(14px, 2.6vw, 18px);
  margin: 0;
}
.margin-philosophy {
  margin-top: 12px;
}

/* Delikatna linia-akcent (pryzmat) */
.prism-line {
  width: 100%;
  height: 2px;
  margin: 0 auto 22px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  background-size: 200% 100%;
  animation: flow 12s linear infinite;
  opacity: 0.7;
}

/* ============ O NAS (filary) ============ */
.philosophy-section {
  padding: clamp(48px, 9vw, 110px) clamp(16px, 6vw, 80px);
  background: #fff;
}
.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2.8vw, 22px);
  margin-top: clamp(18px, 3vw, 28px);
}
.pillar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 22px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}
.pillar-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.pillar-title {
  margin: 0 0 6px;
}

/* ============ KARTY / GRID ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 26px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .philosophy-pillars,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .philosophy-pillars,
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card-zawodowi {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: clamp(16px, 3.2vw, 24px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-zawodowi::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.zawodowi-tlo {
  background-image: url("/public/assets/images/kierowcy-zawodowi/tlo.png");
}
.card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: clamp(16px, 3.2vw, 24px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.zawodowi-article {
  gap: 5%;
  max-width: 75%;
  margin-bottom: 3%;
}
@media (max-width: 700px) {
  .zawodowi-article {
    max-width: 100%;
  }
}
.zawodowi-txt {
  align-items: self-start !important;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.12);
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.card:hover::after {
  opacity: 0.5;
}

.card h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 3.6vw, 22px);
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.card-btn:hover {
  background: rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* warianty */
.card.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(8px);
}
.cards-udt .card.glow,
.cards-udt .card {
  background: linear-gradient(180deg, #fff, #fff);
}
.cards-udt .card.glow:hover {
  box-shadow: 0 18px 52px rgba(58, 134, 255, 0.16);
}

/* ============ CTA BUTTONS (rozszerzenia) ============ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  background-size: 200% 100%;
  /* animation: flow 10s linear infinite; */
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  font-weight: 800;
}
.btn-cta.big {
  font-size: clamp(16px, 2.8vw, 20px);
  padding: 14px 22px;
  border-radius: 16px;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-weight: 700;
}
.btn-ghost:hover {
  background: #fff;
  transform: translateY(-1px);
}
.cta-center {
  text-align: center;
  margin-top: clamp(18px, 4vw, 28px);
}

/* ============ HERO TICKER (opcjonalny) ============ */
.hero-ticker {
  margin-top: clamp(22px, 4vw, 30px);
  overflow: hidden;
  opacity: 0.9;
}
.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 800;
  color: #1b263b;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ SEKCJA KIEROWCY ZAWODOWI / UDT – tło ============ */
.offer,
.pro-odz,
.udt-odz,
.contact-section {
  padding: clamp(54px, 9vw, 120px) clamp(16px, 6vw, 80px);
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  position: relative;
}
.offer::before,
.udt-odz::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: radial-gradient(
    80% 60% at 50% -20%,
    rgba(58, 134, 255, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

/* ============ KONTAKT ============ */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(16px, 4vw, 30px);
}
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: grid;
  gap: 12px;
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  justify-content: center;
  align-items: center;
}
.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.12);
}
.info-icon {
  font-size: 22px;
  line-height: 1;
}
.info-text h4 {
  margin: 0 0 4px;
  text-align: center;
}
.info-text p {
  margin: 0;
}
.info-text .muted {
  color: var(--muted);
  text-align: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: clamp(16px, 3.4vw, 22px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-group {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
label {
  font-size: 14px;
  color: #43506a;
}
input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.18);
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  background-size: 200% 100%;
  animation: flow 10s linear infinite;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  font-weight: 800;
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* ============ FOOTER (jasny, responsywny) ============ */
.footer {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 7vw, 60px) clamp(16px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: clamp(14px, 3vw, 28px);
}
@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-brand .footer-description {
  color: var(--muted);
  margin: 8px 0 12px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
@media (max-width: 560px) {
  .footer-social {
    justify-content: center;
  }
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-section h4 {
  margin: 0 0 8px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: var(--text);
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 14px clamp(16px, 6vw, 80px);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: #475166;
}

/* ============ ANIMACJE WEJŚCIA ============ */
.fade-in {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.in {
  opacity: 1;
  transform: none;
}

.slide-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.slide-up.in {
  opacity: 1;
  transform: none;
}

.glow {
  position: relative;
}
.glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      120px 60px at 20% 20%,
      rgba(58, 134, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      120px 60px at 80% 70%,
      rgba(132, 94, 247, 0.16),
      transparent 60%
    );
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glow.in::before,
.glow:hover::before {
  opacity: 0.9;
}

/* TILT (współgra z JS) – fallback kiedy nie ma JS */
.tilt {
  transform-style: preserve-3d;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============ PREFER REDUCED MOTION ============ */
.reduce-motion .fade-in,
.reduce-motion .slide-up {
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.reduce-motion .glow::before {
  display: none;
}
.reduce-motion .ticker-track {
  animation: none;
}

/* ================== KOLORY PASTEL / TONY =============== */
/* możesz tu podmienić akcenty, jeśli chcesz inny klimat */
:root {
  --tint-rose: #ffe9f0; /* ciepły róż */
  --tint-peach: #fff0e2; /* brzoskwinia */
  --tint-vanilla: #fff7da; /* wanilia */
  --tint-mint: #e9fbf3; /* mięta */
  --tint-sky: #eaf5ff; /* niebo */
  --tint-lav: #f1ecff; /* lawenda */

  --ink-rose: #ff7aa2;
  --ink-peach: #ff9a5b;
  --ink-mint: #20c997;
  --ink-sky: #3a86ff;
  --ink-lav: #845ef7;
}

/* ============== HERO – kolorowa mgiełka (bardzo subtelna) ============== */
.hero-overlay {
  background:
    /* miękka „mgiełka” z góry (prawie biała z odrobiną barwy) */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 22%,
      rgba(255, 255, 255, 0.55) 48%,
      rgba(255, 255, 255, 0) 100%
    ),
    /* pastel wash – niebieskawo-liliowy miks */
    radial-gradient(
        120% 90% at 25% 10%,
        rgba(58, 134, 255, 0.1),
        transparent 60%
      ),
    radial-gradient(
      120% 90% at 80% 20%,
      rgba(132, 94, 247, 0.1),
      transparent 60%
    ),
    /* stara biała chmura – lekko słabsza, żeby kolory wyszły */
    radial-gradient(
        120% 90% at 50% 24%,
        rgba(255, 255, 255, 0.62) 0%,
        rgba(255, 255, 255, 0.3) 48%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(255, 255, 255, 0) 100%
      );
}

/* ============== NAGŁÓWKI SEKCJI – kolorowe akcenty ============== */
.section-title {
  position: relative;
  padding-bottom: 0.35em;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: clamp(80px, 16vw, 160px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.85;
  box-shadow: 0 6px 18px rgba(58, 134, 255, 0.18);
}

/* ============== TŁA SEKCJI – subtelne, różne odcienie ============== */

/* O NAS – delikatnie ciepło: brzoskwinia + wanilia */
.about-odz {
  background:
    radial-gradient(
      120% 70% at 10% 0%,
      rgba(255, 154, 91, 0.08),
      transparent 62%
    ),
    radial-gradient(
      120% 70% at 90% 0%,
      rgba(255, 247, 218, 0.7),
      rgba(255, 247, 218, 0) 70%
    ),
    #fff;
  position: relative;
}
.about-odz::before {
  /* pastelowy blob pod filarami */
  content: "";
  position: absolute;
  inset: auto 10% -60px 10%;
  height: 160px;
  background: radial-gradient(
    60% 100% at 50% 0%,
    rgba(255, 154, 91, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

/* PRAWO JAZDY – chłodniejsze niebo + mięta */
.offer {
  background:
    radial-gradient(
      120% 80% at 15% 0%,
      rgba(58, 134, 255, 0.08),
      transparent 65%
    ),
    radial-gradient(
      120% 80% at 85% 0%,
      rgba(32, 201, 151, 0.08),
      transparent 65%
    ),
    linear-gradient(180deg, #fff 0%, var(--tint-sky) 100%);
  position: relative;
}
.offer::after {
  content: "";
  position: absolute;
  inset: 0 0 -80px 0;
  height: 160px;
  background: radial-gradient(
    70% 60% at 50% 0%,
    rgba(58, 134, 255, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

/* KIEROWCY ZAWODOWI – mięta + wanilia (lekko cieplej) */
.pro-odz {
  background:
    radial-gradient(
      110% 70% at 20% 0%,
      rgba(32, 201, 151, 0.1),
      transparent 60%
    ),
    radial-gradient(
      110% 70% at 85% 5%,
      rgba(255, 247, 218, 0.65),
      rgba(255, 247, 218, 0) 70%
    ),
    linear-gradient(180deg, #fff 0%, var(--tint-vanilla) 100%);
}

/* UDT – lawenda + niebo (lekko futurystycznie) */
.udt-odz {
  background:
    radial-gradient(
      120% 80% at 15% 0%,
      rgba(58, 134, 255, 0.08),
      transparent 65%
    ),
    radial-gradient(
      120% 80% at 85% 0%,
      rgba(32, 201, 151, 0.08),
      transparent 65%
    ),
    linear-gradient(180deg, #fff 0%, var(--tint-sky) 100%);
}

/* KONTAKT – chłodne niebo z nutą mięty */
.contact-section {
  background:
    radial-gradient(
      110% 80% at 88% 0%,
      rgba(32, 201, 151, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff 0%, var(--tint-sky) 100%);
}

/* ============== KARTY – pastelowe warianty ============== */
.cards-grid .card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 1)),
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(58, 134, 255, 0.08),
      transparent 60%
    ),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.cards-grid .card:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 1)),
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(132, 94, 247, 0.1),
      transparent 60%
    ),
    #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(15, 23, 42, 0.14);
}
/* warianty tematyczne na podstawie siatki */
.offer .card:nth-child(1n) {
  /* niebieski */
  --card-ac: var(--ink-sky);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 1)),
    radial-gradient(
      90% 90% at 0% 0%,
      rgba(58, 134, 255, 0.08),
      transparent 60%
    ),
    #fff;
}
.offer .card:nth-child(2n) {
  /* lawenda */
  --card-ac: var(--ink-lav);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 1)),
    radial-gradient(
      90% 90% at 100% 0%,
      rgba(132, 94, 247, 0.08),
      transparent 60%
    ),
    #fff;
}
.offer .card:nth-child(3n) {
  /* mięta */
  --card-ac: var(--ink-mint);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 1)),
    radial-gradient(
      90% 90% at 0% 0%,
      rgba(32, 201, 151, 0.08),
      transparent 60%
    ),
    #fff;
}

/* Kolorowe „podkreślenie” tytułu karty */
.card h3 {
  position: relative;
  padding-bottom: 0.3em;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.card h3::after {
  content: "";
  position: relative;
  /* left: 0;
  bottom: -2px; */
  height: 3px;
  width: 100px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.9;
  margin-top: 5%;
}

/* Przycisk w karcie – lekko bardziej kolorowy */
.card-btn {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.06),
    rgba(15, 23, 42, 0.03)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.card-btn:hover {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1),
    rgba(15, 23, 42, 0.05)
  );
}

/* ============== PILLARS – ciepłe przejścia ============== */
.pillar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1)),
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(255, 154, 91, 0.08),
      transparent 60%
    ),
    #fff;
}
.pillar:hover::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    80% 60% at 50% 0%,
    rgba(255, 154, 91, 0.1),
    transparent 60%
  );
}

/* ============== CTA – minimalnie żywsze cienie ============== */
.btn-cta,
.submit-btn {
  box-shadow:
    0 12px 26px rgba(58, 134, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.btn-cta:hover,
.submit-btn:hover {
  box-shadow:
    0 16px 34px rgba(58, 134, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* ============== FOOTER – lekka mgiełka u góry ============== */
.footer {
  background:
    radial-gradient(
      120% 80% at 50% -30%,
      rgba(132, 94, 247, 0.08),
      transparent 60%
    ),
    #fff;
}

/* ============== REDUCE MOTION ============== */
.reduce-motion .about-odz::before,
.reduce-motion .offer::after {
  display: none;
}

/* =========================================================
   ABOUT / PHILOSOPHY – SUPER DELUXE EDITION ✨
   ========================================================= */

/* Pastelowe tło z blobami, siatką i poświatą */
.about-odz {
  position: relative;
  overflow: clip;
}
.about-odz .about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-odz .blob {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.34;
  transform: translateZ(0);
  animation: blobFloat var(--blob-speed, 22s) ease-in-out infinite alternate;
}
.about-odz .blob.b1 {
  left: -12vmax;
  top: -10vmax;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(58, 134, 255, 0.35),
    rgba(58, 134, 255, 0)
  );
  --blob-speed: 24s;
}
.about-odz .blob.b2 {
  right: -10vmax;
  top: -6vmax;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(132, 94, 247, 0.32),
    rgba(132, 94, 247, 0)
  );
  --blob-speed: 28s;
}
.about-odz .blob.b3 {
  left: 20%;
  bottom: -16vmax;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(32, 201, 151, 0.28),
    rgba(32, 201, 151, 0)
  );
  --blob-speed: 26s;
}
@keyframes blobFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2vmax, -1vmax, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-1vmax, 1.5vmax, 0) scale(1.02);
  }
}

/* delikatna „siatka” z poświatą */
.about-odz .grid-glow {
  position: absolute;
  inset: 20% -10% -20% -10%;
  background:
    radial-gradient(
      60% 40% at 50% 0%,
      rgba(58, 134, 255, 0.18),
      transparent 60%
    ),
    conic-gradient(
      from 90deg at 50% 50%,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0) 25% 75%,
      rgba(0, 0, 0, 0.04)
    );
  opacity: 0.35;
  mask: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0)
  );
  filter: blur(2px);
}

/* Rozbłysk na linii pryzmatu */
.prism-line--sheen {
  position: relative;
  overflow: hidden;
}
.prism-line--sheen::after {
  content: "";
  position: absolute;
  top: -150%;
  bottom: -150%;
  left: -10%;
  width: 10%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0)
  );
  animation: lineSheen 4.6s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes lineSheen {
  0% {
    transform: translateX(-120%) rotate(18deg);
  }
  50% {
    transform: translateX(320%) rotate(18deg);
  }
  100% {
    transform: translateX(320%) rotate(18deg);
  }
}

/* Grid filarów – miękki spacing i „staging” animacji */
.philosophy-pillars {
  position: relative;
  z-index: 1;
}
.philosophy-pillars .pillar {
  --tilt: 10deg;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 1)),
    radial-gradient(
      110% 110% at 100% 0%,
      rgba(58, 134, 255, 0.08),
      transparent 60%
    ),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transform-style: preserve-3d;
  perspective: 800px;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* gradientowy obrys po aktywacji (hover/in-view) */
.philosophy-pillars .pillar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(58, 134, 255, 0.18),
    rgba(132, 94, 247, 0.16),
    rgba(0, 194, 255, 0.18)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.philosophy-pillars .pillar.in::before,
.philosophy-pillars .pillar:hover::before {
  opacity: 0.9;
}

/* miękki „shine” przez środek */
.philosophy-pillars .pillar::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  transform: rotate(12deg);
  background: radial-gradient(
    60% 40% at 50% 50%,
    rgba(255, 255, 255, 0.8),
    transparent 70%
  );
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.5s ease;
}
.philosophy-pillars .pillar:hover::after {
  opacity: 0.5;
}

/* głowa filaru: ikona w ringu + tytuł */
.pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background:
    radial-gradient(
      120% 120% at 30% 20%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.6)
    ),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  transform: translateZ(30px);
}
.pillar-icon.ring {
  position: relative;
}
.pillar-icon.ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: conic-gradient(
    from 0deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3),
    var(--accent)
  );
  filter: blur(6px);
  opacity: 0.4;
  animation: ringFlow 10s linear infinite;
}
@keyframes ringFlow {
  to {
    transform: rotate(360deg);
  }
}

/* tytuł z kolorową linią */
.pillar-title {
  position: relative;
  margin: 0;
  font-size: clamp(18px, 3.6vw, 22px);
  line-height: 1.2;
}
.pillar-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -4px;
  height: 3px;
  width: 72px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.9;
}

/* CTA w karcie (link) */
.pillar-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
  color: #1b263b;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.06),
    rgba(15, 23, 42, 0.03)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 10px 12px;
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.pillar-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1),
    rgba(15, 23, 42, 0.05)
  );
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

/* interakcje 3D / tilt */
.philosophy-pillars .pillar:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  border-color: rgba(15, 23, 42, 0.12);
}

/* delikatny „docisk” elementów w głąb 3D */
.philosophy-pillars .pillar p,
.philosophy-pillars .pillar .pillar-cta {
  transform: translateZ(15px);
}

/* Staging animacji (wejście kaskadowe) */
.philosophy-pillars .pillar {
  transition-delay: 0.05s;
}
.philosophy-pillars .pillar:nth-child(1) {
  transition-delay: 0s;
}
.philosophy-pillars .pillar:nth-child(2) {
  transition-delay: 0.08s;
}
.philosophy-pillars .pillar:nth-child(3) {
  transition-delay: 0.16s;
}

/* Efekt „wypłynięcia” przy pojawieniu (komplement do .fade-in.in) */
.fade-in {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}
.fade-in.in {
  opacity: 1;
  transform: none;
}

/* Niuanse kolorystyczne wg pozycji – lekko inne tony kart */
.philosophy-pillars .pillar:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 1)),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(58, 134, 255, 0.1),
      transparent 60%
    ),
    #fff;
}
.philosophy-pillars .pillar:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 1)),
    radial-gradient(
      110% 110% at 100% 0%,
      rgba(132, 94, 247, 0.1),
      transparent 60%
    ),
    #fff;
}
.philosophy-pillars .pillar:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 1)),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(32, 201, 151, 0.1),
      transparent 60%
    ),
    #fff;
}

/* Ticker pod sekcją – elegancka maska i odbłysk */
.about-odz .hero-ticker {
  position: relative;
  z-index: 1;
  margin-top: clamp(26px, 5vw, 38px);
  mask: linear-gradient(
    90deg,
    transparent 0 2%,
    #000 12% 88%,
    transparent 98% 100%
  );
}
.about-odz .ticker-track {
  gap: 32px;
  animation-duration: 26s;
}
.about-odz .ticker-track span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.about-odz .ticker-track span::after {
  content: "";
  position: absolute;
  inset: -30% -60%;
  transform: rotate(16deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.55;
  filter: blur(6px);
}

/* Dodatkowy „wave divider” na dole sekcji */
.about-odz::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  /* background: radial-gradient(
      60% 220% at 50% 0%,
      rgba(58, 134, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
  mask: radial-gradient(120% 200% at 50% -40%, #000 40%, transparent 42%)
    top/36px 100%; */
  opacity: 0.35;
}

/* Ułatwienia dostępności i redukcje ruchu */
.reduce-motion .about-odz .blob,
.reduce-motion .prism-line--sheen::after {
  animation: none !important;
}
.reduce-motion .philosophy-pillars .pillar:hover {
  transform: none !important;
}
/* =========================================================
   ABOUT — SMOOTH LAYOUT (teksty lewa / kafelki prawa)
   ========================================================= */
.about--smooth {
  position: relative;
  padding: clamp(56px, 9vw, 120px) clamp(16px, 6vw, 80px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow: clip;
}

/* pastelowe aury — bardzo płynne, dyskretne */
.about--smooth .about-aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about--smooth .aura {
  position: absolute;
  width: 48vmax;
  height: 48vmax;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.22;
  transform: translateZ(0);
  transition:
    opacity 1.2s ease,
    filter 1.2s ease;
}
.about--smooth .aura.a1 {
  left: -16vmax;
  top: -12vmax;
  background: radial-gradient(
    50% 50%,
    rgba(58, 134, 255, 0.34),
    transparent 60%
  );
}
.about--smooth .aura.a2 {
  right: -12vmax;
  top: -6vmax;
  background: radial-gradient(
    50% 50%,
    rgba(132, 94, 247, 0.3),
    transparent 60%
  );
}

/* główny wrapper */
.about--smooth .about-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  display: flex;
  flex-direction: column;
}

/* LEWA KOLUMNA */
.about--smooth .about-left {
  position: relative;
}
.about--smooth .about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 12px;
  color: #0b1020;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.about--smooth .about-title {
  margin: 10px 0 6px;
  font-size: clamp(26px, 5.4vw, 44px);
  line-height: 1.07;
  letter-spacing: 0.2px;
}
.about-title {
  text-align: center;
}
.about-sub {
  text-align: center;
  margin-top: 3% !important;
}
.about-list {
  text-align: center;
  justify-content: center;
  margin-top: 5% !important;
}
.about-list-margin {
  margin-top: 2% !important;
}
.about-actions {
  justify-content: center;
  margin-top: 7%;
}
.about--smooth .about-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2.6vw, 18px);
  transition: color 0.6s ease;
}
.about--smooth .about-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.about--smooth .about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #243047;
}
.about--smooth .about-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(100% 100%, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.18);
  margin-top: 6px;
}
.about--smooth .about-actions {
  margin-top: clamp(16px, 3.6vw, 24px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* PRAWA KOLUMNA: KAFELKI */
.about--smooth .about-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2.8vw, 20px);
  align-content: start;
}

/* Kafelek */
.about--smooth .tile {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff),
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(58, 134, 255, 0.07),
      transparent 60%
    ),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  padding: clamp(14px, 3vw, 20px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.22, 0.61, 0.21, 1),
    box-shadow 0.6s ease,
    border-color 0.6s ease,
    background 0.6s ease,
    opacity 0.6s ease;
  will-change: transform;
}
.about--smooth .tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.14);
  border-color: rgba(15, 23, 42, 0.12);
}

/* miękkie podświetlenie na hover (płynne) */
.about--smooth .tile::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  transform: rotate(10deg);
  background: radial-gradient(
    55% 40% at 50% 50%,
    rgba(255, 255, 255, 0.85),
    transparent 70%
  );
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.about--smooth .tile:hover::after {
  opacity: 0.45;
}

/* nagłówek kafla */
.about--smooth .tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.about--smooth .tile h3 {
  margin: 0;
  font-size: clamp(17px, 3.4vw, 21px);
  position: relative;
  padding-bottom: 0.28em;
}
.about--smooth .tile h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.9;
}

/* ikonka w delikatnym pierścieniu */
.about--smooth .ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: radial-gradient(
    120% 120% at 30% 20%,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  position: relative;
}
.about--smooth .ico.ring::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 16px;
  background: conic-gradient(
    from 0deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3),
    var(--accent)
  );
  filter: blur(6px);
  opacity: 0.36;
  animation: ringSlow 14s linear infinite;
}
@keyframes ringSlow {
  to {
    transform: rotate(360deg);
  }
}

/* treść kafla */
.about--smooth .tile p {
  margin: 8px 0 12px;
  color: var(--muted);
  transition: color 0.6s ease;
}
.about--smooth .tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: #1b263b;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.06),
    rgba(15, 23, 42, 0.03)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}
.about--smooth .tile-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

/* mini statystyki */
.about--smooth .mini-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0.96;
}
.about--smooth .mini-stats span {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.06),
    rgba(15, 23, 42, 0.03)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: #243047;
}

/* subtelne odmiany pastelowe kafli (bardzo miękkie) */
.about--smooth .about-right .tile:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(58, 134, 255, 0.06),
      transparent 60%
    ),
    #fff;
}
.about--smooth .about-right .tile:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff),
    radial-gradient(
      110% 110% at 100% 0%,
      rgba(132, 94, 247, 0.06),
      transparent 60%
    ),
    #fff;
}
.about--smooth .about-right .tile:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(32, 201, 151, 0.06),
      transparent 60%
    ),
    #fff;
}
.about--smooth .about-right .tile:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff),
    radial-gradient(
      110% 110% at 100% 0%,
      rgba(255, 154, 91, 0.06),
      transparent 60%
    ),
    #fff;
}

/* ANIMACJE WEJŚCIA — super płynne */
.fade-soft {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.fade-soft.in {
  opacity: 1;
  transform: none;
}
.d2 {
  transition-delay: 0.1s;
}
.d3 {
  transition-delay: 0.18s;
}
.d4 {
  transition-delay: 0.26s;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
  .about--smooth .about-inner {
    grid-template-columns: 1fr;
  }
  .about--smooth .about-right {
    order: 2;
  }
  .about--smooth .about-left {
    order: 1;
  }
}
@media (max-width: 620px) {
  .about--smooth .about-right {
    grid-template-columns: 1fr;
  }
}

/* REDUCE MOTION */
.reduce-motion .about--smooth .tile,
.reduce-motion .fade-soft {
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.reduce-motion .about--smooth .ico.ring::before {
  animation: none !important;
}
/* ===== ABOUT: awaryjne wymuszenie widoczności kafelków ===== */
.about--smooth {
  position: relative;
  z-index: 0;
}
.about--smooth .about-aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about--smooth .about-inner {
  position: relative;
  z-index: 1;
}

.about--smooth .about-right {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(12px, 2.8vw, 20px) !important;
  align-content: start !important;
  min-height: 220px; /* żeby nie „zwinęło się” gdy coś nadpisze */
}

.about--smooth .tile {
  display: block !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(58, 134, 255, 0.06),
      transparent 60%
    ),
    #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08) !important;
  color: var(--text) !important;
  padding: clamp(14px, 3vw, 20px) !important;
  opacity: 1 !important; /* na wypadek, gdy klasa .in nie została dodana */
  transform: none !important; /* jw. */
  visibility: visible !important; /* gdy coś ukryło visibility */
}

.about--smooth .tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.about--smooth .tile h3 {
  margin: 0;
  font-size: clamp(17px, 3.4vw, 21px);
}
.about--smooth .tile p {
  margin: 8px 0 12px;
  color: var(--muted);
}

/* ikonka – bezpieczne domyślne */
.about--smooth .ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: radial-gradient(
    120% 120% at 30% 20%,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
}

/* pastelowe tonacje kafli 1–4 (bardzo miękkie) */
.about--smooth .about-right .tile:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #fff),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(58, 134, 255, 0.07),
      transparent 60%
    ),
    #fff !important;
}
.about--smooth .about-right .tile:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #fff),
    radial-gradient(
      110% 110% at 100% 0%,
      rgba(132, 94, 247, 0.07),
      transparent 60%
    ),
    #fff !important;
}
.about--smooth .about-right .tile:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #fff),
    radial-gradient(
      110% 110% at 0% 0%,
      rgba(32, 201, 151, 0.07),
      transparent 60%
    ),
    #fff !important;
}
.about--smooth .about-right .tile:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #fff),
    radial-gradient(
      110% 110% at 100% 0%,
      rgba(255, 154, 91, 0.07),
      transparent 60%
    ),
    #fff !important;
}

/* responsywność – jedna kolumna na wąskich */
@media (max-width: 620px) {
  .about--smooth .about-right {
    grid-template-columns: 1fr !important;
  }
}
/* ===================== PRAWO JAZDY — GRID & KAFELKI ===================== */
.pj-section {
  position: relative;
  overflow: clip;
}
.pj-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .pj-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .pj-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .pj-grid {
    grid-template-columns: 1fr;
  }
}

/* miękkie, pastelowe warianty co 4 karty */
.pj-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff),
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(58, 134, 255, 0.06),
      transparent 60%
    ),
    #fff;
}
.pj-card:nth-child(4n + 2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff),
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(132, 94, 247, 0.06),
      transparent 60%
    ),
    #fff;
}
.pj-card:nth-child(4n + 3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff),
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(32, 201, 151, 0.06),
      transparent 60%
    ),
    #fff;
}
.pj-card:nth-child(4n + 4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff),
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(255, 154, 91, 0.06),
      transparent 60%
    ),
    #fff;
}

/* przycisk w karcie jako button (by złapać focus i klawiaturę) */
.pj-card .card-btn {
  cursor: pointer;
  border: 0;
  font: inherit;
  color: var(--text);
}

/* ========================= MODAL (GLASS + ANIMACJE) ===================== */
.pj-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition:
    opacity 0.35s ease,
    visibility 0.35s step-end;
}
.pj-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}
.pj-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 24, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalBackdrop 0.35s ease both;
}
@keyframes modalBackdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pj-modal__dialog {
  position: relative;
  width: min(820px, 92vw);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.26);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  animation: modalIn 0.4s cubic-bezier(0.22, 0.61, 0.21, 1) 0.05s forwards;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@keyframes modalIn {
  to {
    transform: none;
    opacity: 1;
  }
}
.pj-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  font-size: 22px;
  line-height: 1;
}
.pj-modal__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 8px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.pj-modal__icon {
  width: 76px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: radial-gradient(
    120% 120% at 30% 20%,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}
.pj-modal__title {
  margin: 0;
  font-size: clamp(20px, 3.6vw, 24px);
}

.pj-modal__content {
  padding: 10px 16px 16px;
}
.pj-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .pj-modal__grid {
    grid-template-columns: 1fr;
  }
}
.pj-field {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 12px;
  min-height: 76px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}
.pj-label {
  font-size: 12px;
  color: #63728a;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pj-value {
  color: #1b263b;
}
.pj-list {
  margin: 0;
  padding-left: 16px;
  color: #1b263b;
}

.pj-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 16px 16px;
}

/* focus/keyboard */
.pj-modal [tabindex="-1"] {
  outline: none;
}
.pj-modal__dialog:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.copyright {
  text-align: center;
}
/* ============ FOOTER (DELUXE) ============ */
.footer {
  position: relative;
  overflow: clip; /* Ważne dla poświaty */
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 1) 15%
    ),
    radial-gradient(
      120% 80% at 50% -30%,
      rgba(132, 94, 247, 0.1),
      /* Poświata z góry (fiolet) */ transparent 60%
    ),
    radial-gradient(
      100% 60% at 20% -10%,
      rgba(58, 134, 255, 0.1),
      /* Poświata z góry (niebieski) */ transparent 70%
    ),
    var(--card, #fff); /* Tło domyślne */

  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 7vw, 60px) clamp(16px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; /* Więcej miejsca dla brandu i adresu */
  gap: clamp(18px, 3.5vw, 32px);
  position: relative;
  z-index: 1; /* Nad poświatą */
}

/* --- Brand --- */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo .logo-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
.footer-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0 16px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: auto; /* Dopycha ikonki na dół, jeśli kolumna jest wysoka */
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  box-shadow: var(--shadow-1);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  transition:
    transform var(--speed-1) ease,
    box-shadow var(--speed-1) ease;
}
.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

/* --- Sekcje (Kursy, Zapisy, Adres) --- */
.footer-section h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 8px;
}
/* Dekoracyjna linia pod tytułem sekcji */
.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 32px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Większy odstęp */
}
.footer-links a,
.footer-links span {
  color: var(--text);
  font-weight: 600; /* Linki są czytelniejsze */
  text-decoration: none;
  transition:
    color var(--speed-1) ease,
    transform var(--speed-1) ease;
  display: inline-block; /* Pozwala na transform */
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px); /* Subtelny efekt "push" */
}
/* Adres (span) ma ten sam styl, ale bez interakcji */
.footer-links span {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

/* --- Dolny pasek (Copyright) --- */
.footer-bottom {
  padding: 20px clamp(16px, 6vw, 80px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* --- Responsywność Footera --- */
@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr 1fr; /* Dwie kolumny */
  }
  .footer-brand {
    grid-column: 1 / -1; /* Brand zajmuje całą szerokość na górze */
  }
}

@media (max-width: 560px) {
  .footer-content {
    grid-template-columns: 1fr; /* Jedna kolumna */
    text-align: center;
  }
  .footer-brand {
    align-items: center !important; /* Centrowanie loga i opisu */
  }
  .footer-social {
    justify-content: center;
    margin-top: 16px;
  }
  .footer-section h4::after {
    left: 50%; /* Centrowanie linii pod tytułem */
    transform: translateX(-50%);
  }
  .footer-links {
    align-items: center; /* Centrowanie linków */
  }
  .footer-links a:hover {
    transform: none; /* Wyłączamy "push" na mobile */
  }
}
/* =========================================================
   LAYER DELUXE — mikrointerakcje, obrysy, połyski, magnet, glow
   ========================================================= */

/* === 1. Szklany gradientowy obrys dla nawigacji i kart === */
.navbar,
.card,
.contact-form,
.pj-modal__dialog,
.footer {
  position: relative;
  isolation: isolate;
}
.navbar::before,
.card::before,
.contact-form::before,
.pj-modal__dialog::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* grubość obrysu */
  background: linear-gradient(
    120deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.18;
  transition: opacity var(--speed-2) ease;
}
.card:hover::before,
.navbar:hover::before,
.contact-form:focus-within::before,
.pj-modal__dialog:hover::before,
.footer:hover::before {
  opacity: 0.32;
}

/* === 2. Połysk/shine na obrazkach i logo === */
.media img,
.footer-logo .logo-img,
.brand-logo {
  position: relative;
  overflow: hidden;
}
.media img::after,
.footer-logo .logo-img::after,
.brand-logo::after {
  content: "";
  position: absolute;
  inset: -30% -60%;
  transform: rotate(14deg) translateX(-120%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  opacity: 0.55;
  filter: blur(6px);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.21, 1);
  pointer-events: none;
}
.media:hover img::after,
.footer-logo:hover .logo-img::after,
.brand:hover .brand-logo::after {
  transform: rotate(14deg) translateX(120%);
}

/* === 3. Animowane obramowanie kart (diagonalny bieg) === */
.card {
  --bgl: linear-gradient(180deg, rgba(255, 255, 255, 0.86), #fff);
  background: var(--bgl);
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  filter: blur(16px);
  opacity: 0;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  transform: scale(0.98);
  pointer-events: none;
}
.card:hover::after {
  opacity: 0.25;
  transform: none;
}

/* === 4. Żywe, miękkie cienie reagujące na kursora === */
.card:hover,
.pillar:hover,
.about--smooth .tile:hover {
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.4) inset;
}

/* === 5. Magnetyczne przyciski & linki (JS dodaje klasę .magnet) === */
.magnet,
.btn,
.nav-link,
.nav-cta,
.pillar-cta,
.tile-cta,
.card-btn {
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.21, 1);
  will-change: transform;
  transform-style: preserve-3d;
}
.magnet {
  text-align: center;
}
.magnet.is-attract {
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}

/* === 6. Subtelny parallax/float dla hero tytułu === */
.hero-title {
  perspective: 600px;
}
.hero-title span {
  display: inline-block;
  /* animation: floaty 6s ease-in-out infinite; */
  transform-origin: 50% 60%;
}
.hero-title span:nth-child(odd) {
  animation-delay: 0.25s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  50% {
    transform: translate3d(0, -4px, 0) rotateX(2deg) rotateY(-1.5deg);
  }
}

/* === 7. Cursor glow (delikatna poświata, wyłączana przy reduce motion) === */
:root {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}
body::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background:
    radial-gradient(
      220px 220px at var(--cursor-x) var(--cursor-y),
      rgba(58, 134, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      320px 320px at calc(var(--cursor-x) + 120px) calc(var(--cursor-y) + 80px),
      rgba(132, 94, 247, 0.08),
      transparent 60%
    );
  mix-blend-mode: soft-light;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.reduce-motion body::after {
  display: none;
}

/* === 8. Scroll reveal – klasy już masz (.fade-in, .slide-up, .fade-soft)
        Tu dokładamy delikatną skalę, żeby wejścia były „tłuste” === */
.fade-in {
  transform: translateY(12px) scale(0.985);
}
.slide-up {
  transform: translateY(18px) scale(0.98);
}
.fade-soft {
  transform: translateY(10px) scale(0.985);
}

/* === 9. Mini „pulse” dla badge’y i statów === */
.about--smooth .mini-stats span,
.hero-ticker span {
  position: relative;
}
.about--smooth .mini-stats span::before,
.hero-ticker span::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(255, 255, 255, 0.7),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about--smooth .mini-stats span:hover::before,
.hero-ticker span:hover::before {
  opacity: 0.7;
}

/* === 10. „Glass-ink” ripple lepsze na jasnym tle === */
.ripple-ink {
  background: rgba(15, 23, 42, 0.1);
}

/* === 11. Animacja sekcji tytułów – lekki jump underline === */
.section-title::after {
  animation: underlineWave 3.6s ease-in-out infinite;
}
@keyframes underlineWave {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.08);
  }
}

/* === 12. Wersje hover dla linków w stopce (bardziej „żywe”) === */
.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
  transform: translateX(6px);
  filter: drop-shadow(0 2px 8px rgba(58, 134, 255, 0.22));
}

/* === 13. Dodatkowe parallax tło hero – leciutki zoom na hover === */
.hero-bg {
  transition:
    transform 10s cubic-bezier(0.2, 0.6, 0.2, 1),
    filter 1.2s ease;
}
.hero:hover .hero-bg {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

/* === 14. „Gooey dots” separator (możesz dodać klasę .goo-sep gdzie chcesz) === */
.goo-sep {
  --g: radial-gradient(
    12px 12px at center,
    rgba(58, 134, 255, 0.4),
    transparent 60%
  );
  height: 24px;
  mask: var(--g) left center / 40px 24px repeat-x;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.6;
  filter: blur(0.3px);
  border-radius: 999px;
}

/* === 15. Subtelne wibrujące ikonki (np. .info-icon, .pillar-icon, .ico) === */
.info-icon,
.pillar-icon,
.ico {
  animation: micropop 3.6s ease-in-out infinite;
}
@keyframes micropop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* === 16. Prefer-reduced-motion: odchudzamy dodatki === */
.reduce-motion body::after,
.reduce-motion .media img::after,
.reduce-motion .footer-logo .logo-img::after,
.reduce-motion .brand-logo::after {
  display: none !important;
}
.reduce-motion .magnet.is-attract {
  transform: none !important;
}
/* ===== ABOUT – brakujące utilsy / layout fallbacks ===== */
.section {
  padding: clamp(48px, 7vw, 96px) clamp(16px, 6vw, 80px);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 4vw, 32px);
}
.grid-1 {
  display: grid;
  grid-template-columns: 1fr; /* Jedna kolumna na całą szerokość */
  gap: 20px; /* Odstęp między kartami */
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.rev {
  direction: rtl;
}
.rev > * {
  direction: ltr;
}

.hero--sub {
  min-height: auto;
  padding: clamp(40px, 6vw, 72px) 0;
  background: #fff;
  margin-top: 13vw;
}
.h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 8px;
}
.lead {
  font-size: clamp(18px, 2.6vw, 20px);
  color: #293247;
}
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* karty / miękki box dla obrazków i statów */
.card--soft {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Zespół – siatka responsywna */
.team .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 26px);
}
@media (max-width: 980px) {
  .team .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .team .cards-grid {
    grid-template-columns: 1fr;
  }
}
.team .card h4 {
  margin: 0 0 6px;
}
.team .card p {
  margin: 0 0 8px;
}

/* „Partner” i „Feature” – te same odstępy co reszta */
.section.feature .grid-2,
.section.partner .grid-2 {
  align-items: center;
}

/* Seo pasek – żeby nie „krzyczał” */
.section.seo {
  font-size: 14px;
  line-height: 1.6;
}
.centrowanie-tekst {
  text-align: center;
  justify-content: center;
}
.centrowanie-div {
  justify-content: center;
  align-items: center;
  display: flex;
}
.centrowanie-absolutne {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.centrowanie-sekcja {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.odstep-miedzy {
  gap: 2vw;
}
.card img {
  border-radius: 0;
}

.card.bez-hovera:hover {
  transform: none !important;
  background-image: none !important;
  transition: none !important;
  box-shadow: unset !important;
  background-color: #ffffff !important;
  background: none;
}
.card.bez-hovera:hover::after {
  background: none !important;
}
.banner-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.banner-modal.is-open {
  display: block;
}
.banner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.65);
  backdrop-filter: blur(2px);
}
.banner-dialog {
  position: relative;
  max-width: min(92vw, 960px);
  margin: 6vh auto;
  z-index: 1;
  background: #0f1421;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 4vw;
}
@media (max-width: 960px) {
  .banner-dialog {
    top: 6vw;
  }
}
.banner-body img {
  display: block;
  width: 100%;
  height: auto;
}
.banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
}
.banner-close:hover {
  background: rgba(0, 0, 0, 0.55);
}
@media (max-width: 480px) {
  .banner-dialog {
    margin: 10vh auto;
  }
  .banner-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

.megazawodowi {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(10px);
  width: min(960px, 92vw);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition:
    opacity var(--speed-2) ease,
    transform var(--speed-2) ease,
    visibility var(--speed-2) step-end;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}
.navbar::before,
.navbar::after {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .nav-menu {
    will-change: transform, opacity;
  }
}
@media (max-width: 1024px) {
  /* startowo: zwinięte (wysokość 0), ale layout nie skacze */
  #nav-menu {
    height: 0; /* będzie animowane JS-em */
    opacity: 0;
    transform: translateY(-8px);
    overflow: hidden; /* maskuje zawartość przy zwijaniu */
    transition:
      height 350ms ease,
      opacity 300ms ease,
      transform 300ms ease;
    will-change: height, opacity, transform;
  }
  /* w trakcie trzymamy overflow, żeby nie migotało */
  #nav-menu.animating {
    overflow: hidden;
  }
  /* po otwarciu docelowy wygląd */
  #nav-menu.open {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu_3_kolumny {
  grid-template-columns: repeat(3, 1fr) !important;
}
.centrowanie-po-calosci {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.kierowcy-bg {
  background-image: url("/images/tlo-kierowcy.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* jeśli chcesz, żeby sekcja była trochę „wyższa”: */
  padding: 60px 0;
}
.mega-term {
  font-size: 0.9rem;
  margin: 0.5rem 0 0.75rem;
  opacity: 0.9;
}
/* ===== Osadzone zapisy (iframe) ===== */

.zapisy-embed {
  margin-top: 2.5rem;
}

.zapisy-embed-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 70vh; /* wysokość iframe (proporcja) */
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  background: radial-gradient(
    circle at top,
    #151a2a 0,
    #070914 55%,
    #04040a 100%
  );
}

.zapisy-embed-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.zapisy-note {
  max-width: 640px;
  margin: 1.25rem auto 0;
  font-size: 0.95rem;
  opacity: 0.8;
  text-align: center;
}

/* Prosty fade-in przy otwieraniu */
.zapisy-embed[data-open="1"] .zapisy-embed-inner {
  animation: zapisyFadeIn 0.35s ease-out;
}

@keyframes zapisyFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .zapisy-embed-inner {
    padding-top: 95vh; /* na telefonie trochę wyższe okno */
    border-radius: 1rem;
  }
}
.ustawienie-kolumna {
  flex-direction: column !important;
}
.ladowarka_teleskopowa {
  /* 1. Ustawienie minimalnej wysokości */
  /* Niezbędne, aby sekcja była widoczna, nawet jeśli ma mało treści */
  min-height: 400px;

  /* 2. Ścieżka do pliku obrazu */
  background-image: url("/images/ladowarka_teleskopowa.jpeg") !important;

  /* 3. Ustawienie rozmiaru obrazu */
  /* 'cover' jest najczęściej używane - sprawia, że obraz pokrywa całą sekcję, */
  /* nawet jeśli zostanie przycięty. */
  background-size: cover !important;

  /* 4. Zapobieganie powtarzaniu się obrazu */
  background-repeat: no-repeat;

  /* 5. Ustawienie pozycji obrazu */
  /* 'center' sprawia, że obraz jest wyśrodkowany w sekcji. */
  background-position: center !important;

  /* 6. Opcjonalnie: kolor tła, jeśli obraz się nie załaduje */
  background-color: #cccccc;
}
/* --- SEKCJA "POZNAJ NASZĄ OFERTĘ" --- */

.offer-section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: #ffffff;
  position: relative;
}

.offer-section .section-header {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.offer-section .section-title {
  margin-bottom: 0.5rem;
}

.offer-section .section-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
}

/* Siatka kafelków – 1 kolumna na mobile, więcej na desktopie */
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Kafelek oferty */
.offer-card {
  background: #f5f7fa; /* jasne tło kafelka */
  border-radius: 18px;
  /* padding: 1.75rem 1.5rem 1.5rem; */
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
  max-height: unset;
}

/* Delikatny efekt po najechaniu */
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: rgba(3, 135, 206, 0.5);
  background: #ffffff;
}

/* Ikona u góry kafelka */
.offer-card-icon {
  width: auto;
  height: auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #0387ce; /* Brand Azure */
  margin-bottom: 0.25rem;
}

/* Tytuł kafelka */
.offer-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

/* Opis w kafelku */
.offer-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}

/* Mikro–CTA na dole kafelka */
.offer-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #0387ce; /* kolor CTA */
  padding-top: 0.5rem;
}

.offer-card-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Strzałka delikatnie "odjeżdża" przy hoverze */
.offer-card-cta:hover .offer-card-cta-arrow {
  transform: translateX(3px);
}
/* === ZAUFALI NAM – LOGO SLIDER === */

.trusted-logos {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 0;
}

.trusted-logo img {
  max-height: 46px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
}

/* Hover / focus – tylko delikatne podbicie, na mobile i tak prawie niewidoczne */
.trusted-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Animacja – przesuwa cały pasek o połowę jego szerokości (mamy powtórzony zestaw logo) */
@keyframes trustedLogosScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Przerwa między logo mniejsza na mobile */
@media (max-width: 768px) {
  .trusted-logos {
    padding: 1.25rem 0 1.75rem;
  }

  .trusted-logo {
    min-width: 2px;
    margin-right: 1.25rem;
  }

  .trusted-logo img {
    max-height: 40px;
  }
}

/* Pauzowanie animacji tylko na urządzeniach z hoverem i myszką,
   żeby telefony NIE zatrzymywały animacji po tapnięciu */
@media (hover: hover) and (pointer: fine) {
  .trusted-logos:hover .trusted-logos-track {
    animation-play-state: paused;
  }
}

/* LOGA PARTNERÓW */

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.trusted-logo img {
  max-height: 40px;
  width: auto;
  display: block;
  opacity: 0.85;
  filter: grayscale(1);
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    opacity 0.3s ease;
}

.trusted-logo:hover img {
  transform: translateY(-3px) scale(1.04);
  opacity: 1;
  filter: grayscale(0);
}

/* Stagger animacji, żeby loga nie ruszały się synchronicznie */

.trusted-logo:nth-child(2) {
  animation-delay: 0.4s;
}
.trusted-logo:nth-child(3) {
  animation-delay: 0.8s;
}
.trusted-logo:nth-child(4) {
  animation-delay: 1.2s;
}
.trusted-logo:nth-child(5) {
  animation-delay: 1.6s;
}
.trusted-logo:nth-child(6) {
  animation-delay: 2s;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Dół sekcji: tekst + przycisk */

.trusted-bottom {
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.trusted-bottom p {
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #54606f;
}

.trusted-btn {
  display: inline-block;
  font-size: 0.95rem;
  padding-inline: 1.9rem;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 768px) {
  .trusted-section {
    padding: 3.5rem 1.25rem;
  }

  .trusted-logo {
    min-width: 5%;
    padding: 0.8rem 1.4rem;
  }

  .trusted-section .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .trusted-logo {
    min-width: 5%;
  }
}
/* ===========================
   SEKCJA "NASZE KURSY"
   =========================== */

.pj-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

/* Siatka kafelków z kursami */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Pojedynczy kafelek kursu */
.course-card {
  background: #f5f7fa;
  border-radius: 1.25rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(3, 135, 206, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

/* Delikatny pasek z kolorem brand na górze karty */
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 3px;
  background: linear-gradient(90deg, #0387ce, #4dc4ff);
  border-radius: 999px;
  transform: translateY(-100%);
}

/* Hover – lekki „lift” + mocniejszy cień */
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
  border-color: rgba(3, 135, 206, 0.2);
  background-color: #ffffff;
}

/* Nagłówek kursu */
.course-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
  color: #0f172a;
}

/* Opis pod nagłówkiem */
.course-card > p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #4b5563;
}

/* Lista benefitów kursu */
.course-list {
  list-style: none;
  margin: 0.4rem 0 0.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.course-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #374151;
}

/* Mały "bullet" w kolorze brand */
.course-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #0387ce;
  box-shadow: 0 0 0 4px rgba(3, 135, 206, 0.12);
}

/* CTA na dole kafelka */
.course-cta {
  margin-top: auto; /* pcha CTA na dół karty */
  font-size: 0.95rem;
}

/* Styl linku-CTA (spójny z mikro-CTA w innych sekcjach) */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #0387ce;
  text-decoration: none;
  position: relative;
}

.link-cta::after {
  content: "→";
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.link-cta:hover::after {
  transform: translateX(3px);
}

/* Sekcja z przyciskiem „Zapisz się na kurs” pod kafelkami */
.pj-section .cta-center {
  margin-top: 3rem;
}

/* Opcjonalne lekkie wejście kafelków (jeśli masz klasę .fade-in – możesz nadpisać) */
.course-card.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: courseFadeIn 0.5s ease forwards;
}

.course-card.fade-in:nth-child(2) {
  animation-delay: 0.06s;
}
.course-card.fade-in:nth-child(3) {
  animation-delay: 0.12s;
}
.course-card.fade-in:nth-child(4) {
  animation-delay: 0.18s;
}

@keyframes courseFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESPONSYWNOŚĆ
   =========================== */

@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pj-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .course-card {
    padding: 1.7rem 1.4rem;
  }
}
/* === KONTAKT / FORMULARZ === */

.contact-section {
  padding: 80px 0 100px;
  background: #f5f7fa;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

/* Lewa kolumna – dane kontaktowe */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 35, 52, 0.06);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 35, 52, 0.12);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 135, 206, 0.08);
  font-size: 20px;
}

.info-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 2px;
  color: #0f2334;
}

.info-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5b70;
}

/* Prawa kolumna – formularz */

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px 26px;
  box-shadow: 0 14px 40px rgba(15, 35, 52, 0.09);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f2334;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #263445;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d2dbe7;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #102132;
  background: #f9fbff;
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0387ce;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(3, 135, 206, 0.1);
}

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

/* Przyciski formularza */

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: #0387ce;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(3, 135, 206, 0.35);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.submit-btn:hover {
  background: #0273ae;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(3, 135, 206, 0.45);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(3, 135, 206, 0.35);
}

/* Mały tekst pod formularzem (zgody / RODO) */

.contact-note {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #7a8797;
}

/* Responsywność */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form {
    padding: 22px 18px 20px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 0 70px;
  }

  .info-item {
    padding: 12px 14px;
  }

  .contact-form {
    border-radius: 14px;
  }
}
/* === GŁÓWNA KARTA Z DANYMI OŚRODKA === */

.contact-main-card {
  position: relative;
  padding: 22px 22px 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at top left,
      rgba(3, 135, 206, 0.13),
      transparent 55%
    ),
    #ffffff;
  border: 1px solid rgba(3, 135, 206, 0.12);
  box-shadow: 0 18px 40px rgba(15, 35, 52, 0.1);
  overflow: hidden;
}

.contact-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 135, 206, 0.12), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.contact-main-title {
  position: relative;
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: #0f2334;
}

.contact-main-address {
  position: relative;
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: #4b5b70;
}

.contact-main-address span {
  display: block;
}

.contact-main-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.contact-main-row {
  display: flex;
  gap: 6px;
  font-size: 0.9rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.contact-main-label {
  font-weight: 600;
  color: #263445;
  min-width: 70px;
}

.contact-main-link {
  color: #0387ce;
  font-weight: 500;
  text-decoration: none;
}

.contact-main-link:hover {
  text-decoration: underline;
}

.contact-main-hours {
  position: relative;
  padding-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
  color: #4b5b70;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-main-hours-value {
  font-weight: 500;
}

/* responsywność – żeby ładnie wyglądało na małych ekranach */
@media (max-width: 900px) {
  .contact-main-card {
    padding: 18px 18px 16px;
    margin-bottom: 18px;
  }
}
/* === AKTUALNOŚCI – SEKCJA 6 === */
.news-section {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  z-index: 1;
}

.news-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(3, 135, 206, 0),
    rgba(3, 135, 206, 0.3),
    rgba(3, 135, 206, 0)
  );
  opacity: 0.7;
}

.news-container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* Grid z kartami */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Karta wpisu */
.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background-color 0.18s ease-out;
  height: 100%;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Mini „hero” na karcie */
.blog-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease-out;
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.65) 100%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* Tytuł na obrazku */
.blog-card-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 6px 16px rgba(15, 23, 42, 0.7);
}

/* Wariant bez obrazka */
.blog-card-thumb--noimg {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 18px;
  background: linear-gradient(135deg, #0387ce0f, #0f172a08);
}

.blog-card-thumb--noimg .blog-card-title {
  position: static;
  color: #0f172a;
  text-shadow: none;
  padding: 0;
}

/* Treść karty */
.blog-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Meta (ODZ + data) */
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.85rem;
  color: #6b7280;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-icon {
  font-size: 0.9rem;
}

/* Zajawka */
.blog-card-excerpt {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* max 3 linijki */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover / focus */
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(3, 135, 206, 0.45);
  background-color: #f9fafb;
}

.blog-card:hover .blog-card-thumb img,
.blog-card:focus-within .blog-card-thumb img {
  transform: scale(1.07);
}

.blog-card:hover .blog-card-thumb--noimg,
.blog-card:focus-within .blog-card-thumb--noimg {
  background: linear-gradient(135deg, #0387ce1a, #0f172a10);
}

/* Link „Zobacz wszystkie aktualności” już masz via .cta-center,
   ale można delikatnie go dopieścić w kontekście news-section */
.news-section .cta-center {
  margin-top: 32px;
}
/* Pasek z logotypami */
.trusted-section {
  padding-top: 56px;
  padding-bottom: 40px;
}

.trusted-logos {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 24px auto 0;
  padding: 12px 0;
}

/* Pojedyncze logo */
.trusted-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  opacity: 0.9;
  transition:
    opacity 0.2s ease-out,
    transform 0.2s ease-out,
    filter 0.2s ease-out;
}

.trusted-logo img {
  max-height: 40px;
  width: auto;
  display: block;
  filter: grayscale(35%);
  opacity: 0.85;
}

/* Hover (na desktopie) */
.trusted-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

/* Kluczowa animacja – przesuwamy cały tor w lewo o połowę swojej długości.
   Ponieważ loga są powielone, przejście jest płynne. */
@keyframes logos-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Dół sekcji */
.trusted-bottom {
  margin-top: 24px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  color: #4a5664;
}
@media (max-width: 480px) {
  .trusted-logos {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .trusted-logos-track {
    animation: none; /* wyłącz animację na ekstremalnie małych ekranach */
  }
}

.zdjecia-oferta {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
.paddingi-oferta {
  padding: 0.25rem 1.5rem 1.5rem;
}
/* .konwersja-ikonek {
  filter: invert(62%) sepia(50%) saturate(1600%) hue-rotate(185deg)
    brightness(100%) contrast(100%) !important;
} */
/* === ABOUT / DLACZEGO MY – HIGHLIGHTS === */

.about-odz.about--smooth {
  position: relative;
  padding: 72px 0;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.about-right.about-right--highlights {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* pojedynczy blok */

.about-highlight {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 22px 24px;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(3, 135, 206, 0.15),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.about-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 35, 52, 0.12);
}

.about-highlight:hover::before {
  opacity: 1;
}

/* górny „pasek” z ikonką */

.about-highlight-top {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.about-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(3, 135, 206, 0.1);
  font-size: 22px;
}

/* kolorowy pasek pod ikonką */

.about-highlight-bar {
  width: 70%;
  max-width: 160px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0387ce, #4fb6ff);
  opacity: 0.9;
  margin: 0 auto 10px;
}

/* tekst */

.about-highlight-text {
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
  color: #10233b;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 992px) {
  .about-inner {
    flex-direction: column;
  }

  .about-right.about-right--highlights {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-right.about-right--highlights {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-highlight {
    border-radius: 20px;
    padding: 18px 18px 20px;
  }

  .about-highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .about-highlight-text {
    font-size: 0.96rem;
  }
}
/* === PAKIETY DLA FIRM / KURSY EKSPRESOWE === */
/* Lista benefitów – promo-section */
.promo-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.promo-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1a2433; /* ciemny tekst jak w innych sekcjach */
}

/* Custom „kropeczka” / znacznik */
.promo-list li::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0387ce, #00b4ff);
  box-shadow: 0 0 0 4px rgba(3, 135, 206, 0.12);
}

/* Lekko ciaśniej na bardzo małych ekranach */
@media (max-width: 480px) {
  .promo-list li {
    padding-left: 1.9rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  .promo-list li::before {
    left: 0.35rem;
    top: 0.6rem;
    width: 0.5rem;
    height: 0.5rem;
    box-shadow: 0 0 0 3px rgba(3, 135, 206, 0.12);
  }
}
.promo-section {
  /* margin: 72px 0; */
}

.promo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f2e8; /* jasny beż jak na przykładzie */
  box-shadow: 0 18px 45px rgba(15, 35, 52, 0.12);
}

.promo-media {
  position: relative;
  min-height: 240px;
}

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

.promo-content {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a7280;
  margin-bottom: 2px;
}

.promo-title {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #10233b;
  margin-bottom: 6px;
}

.promo-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #445064;
  max-width: 40rem;
}

.promo-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 960px) {
  .promo-inner {
    grid-template-columns: 1fr;
  }

  .promo-media {
    order: -1; /* na mobile zdjęcie na górze */
  }

  .promo-content {
    padding: 24px 20px 28px;
  }

  .promo-title {
    font-size: 1.4rem;
  }
}
/* === OPINIE – SEKCJA === */

.testimonials-section {
  position: relative;
  padding: 80px 0 70px;
  color: #fff;
  overflow: hidden;
  background: url("/public/assets/images/bg-opinie.png") center/cover no-repeat
    fixed;
}

/* półprzezroczysta mgiełka, żeby tekst był czytelny */
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 32, 0.55);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}

.testimonials-title {
  color: #ffffff;
  letter-spacing: 0.06em;
}

/* slider */

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 12px 8px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.testimonial-card {
  flex: 0 1 320px;
  max-width: 360px;
  background: #ffffff;
  color: #141b2c;
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 18px 40px rgba(6, 24, 58, 0.35);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: #f6b600;
  margin-bottom: 12px;
}
.opinie-rozlozenie {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.98rem;
}

/* strzałki */

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #0e2035;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.testimonials-arrow--prev {
  left: 12px;
}

.testimonials-arrow--next {
  right: 12px;
}

.testimonials-arrow:hover {
  background: #0387ce;
  color: #fff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* kropki */

.testimonials-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonials-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    width 0.2s ease;
}

.testimonials-dot.is-active {
  width: 22px;
  background: #ff4f4f;
  transform: translateY(-1px);
}

/* RWD */

@media (max-width: 900px) {
  .testimonial-slide {
    gap: 18px;
  }

  .testimonial-card {
    flex: 0 1 calc(50% - 12px);
  }

  .testimonials-arrow--prev {
    left: 4px;
  }
  .testimonials-arrow--next {
    right: 4px;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 60px 0 50px;
    background-attachment: scroll;
  }

  .testimonial-slide {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .testimonials-arrow {
    display: none; /* na mobile spokojnie wystarczy autoplay + kropki */
  }
}
/* === TESTIMONIALS – RESPONSYWNOŚĆ (MOBILE: 1 KAFEL NA SLIDE) === */

/* Domyślnie (desktop) zostawiasz swoje obecne style – 3 kafelki na slajd */

@media (max-width: 768px) {
  .testimonials-section {
    padding-inline: 1.25rem;
  }

  .testimonials-slider {
    max-width: 600px;
    margin-inline: auto;
  }

  /* Slajd zachowujemy jako jeden "ekran" w sliderze,
     ale w środku pokazujemy tylko pierwszy kafelek. */
  .testimonial-slide {
    display: flex;
    justify-content: center;
  }

  .testimonial-card {
    max-width: 100%;
  }

  /* Ukryj 2. i 3. kartę na małych ekranach,
     dzięki temu widać tylko jedną opinię na raz */
  .testimonial-slide .testimonial-card:nth-child(n + 2) {
    display: none;
  }

  /* Lekko zmniejszamy typografię, żeby ładniej wyglądało na telefonie */
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }
}
/* === KONTAKT – karty po lewej stronie === */

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

/* główna karta + karta z mapą mają wspólny wygląd */
.contact-main-card,
.contact-map-card {
  background: #f5f7fa;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 14px 40px rgba(6, 32, 71, 0.08);
  border: 1px solid rgba(3, 135, 206, 0.05);
}

/* tytuły */
.contact-main-title,
.contact-map-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.6rem;
}

/* tekst pod tytułem w karcie z mapą */
.contact-map-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0 0 0.9rem;
}

/* adres w głównej karcie */
.contact-main-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

/* meta: telefon / e-mail */
.contact-main-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.contact-main-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-main-label {
  font-weight: 500;
  color: #6b7280;
}

.contact-main-link {
  color: #0387ce;
  font-weight: 600;
  text-decoration: none;
}

.contact-main-link:hover {
  text-decoration: underline;
}

/* godziny otwarcia */
.contact-main-hours {
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-main-hours-value {
  font-size: 0.9rem;
  color: #111827;
}

/* === KARTA Z MAPĄ === */

.contact-map-embed {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.7rem;
  background: #dbeafe;
}

/* zachowaj proporcje 16:9 i pełną szerokość mapy */
.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

/* link pod mapą */
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #0387ce;
  font-weight: 600;
  text-decoration: none;
}

.contact-map-link::after {
  content: "↗";
  font-size: 0.85em;
}

.contact-map-link:hover {
  text-decoration: underline;
}

/* przyciski pod kartami kontaktu */
.contact-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* responsywka */
@media (max-width: 768px) {
  .contact-main-card,
  .contact-map-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .contact-main-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map-embed iframe {
    min-height: 200px;
  }
}
/* === MINI HERO W SEKCJI KONTAKTU (nagłówek jak na screenie) === */

.contact-hero {
  position: relative;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding-top: 3.5rem; /* miejsce na ilustrację */
}

.contact-hero-illustration {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -55%);
  z-index: 2;
}

.contact-hero-illustration img {
  display: block;
  max-width: 260px;
  height: auto;
}

/* niebieski panel */
.contact-hero-content {
  position: relative; /* KLUCZOWE: To jest punkt odniesienia dla SVG */
  /* Twoje istniejące style gradientu, zaokrągleń i cienia */
  background: linear-gradient(to right, #007adf, #005bea);
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 91, 234, 0.5);
  padding: 40px; /* Wewnętrzny odstęp dla treści */
  overflow: hidden; /* Opcjonalne: przycina SVG, jeśli wystaje poza baner. Usuń, jeśli chcesz efekt "wylewania się" */
  flex-direction: column;

  /* Centrowanie treści */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px; /* Zapewnia odpowiednią wysokość baneru */
}

.contact-hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}

.contact-hero-subtitle {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* przycisk w niebieskim panelu */
.btn-contact-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #004b93;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.btn-contact-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
  background: #f2f4f8;
}

/* responsywka */
@media (max-width: 768px) {
  .contact-hero {
    padding-top: 3rem;
    margin-bottom: 2rem;
  }

  .contact-hero-illustration img {
    max-width: 210px;
  }

  .contact-hero-content {
    padding: 3rem 1.3rem 2.4rem;
    border-radius: 20px;
  }

  .contact-hero-title {
    font-size: 1.35rem;
  }

  .contact-hero-subtitle {
    font-size: 0.95rem;
  }
}
/* === SEKCJA CTA – ZAPISY ONLINE === */

.enroll-section {
  position: relative;
  padding: 4rem 1.5rem 4.5rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(3, 135, 206, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(3, 135, 206, 0.12),
      transparent 55%
    ),
    #f5f7fa;
  overflow: hidden;
}

.enroll-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Wycentrowany nagłówek w tej sekcji */
.section-header--center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.enroll-section .section-title {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.enroll-section .section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #5f6b7a;
}

/* Centrum CTA */
.enroll-section .cta-center {
  text-align: center;
}

/* Przycisk – lekko większy w tej sekcji */
.enroll-section .btn-cta.big {
  min-width: 260px;
  margin-top: 1rem;
}

/* Pojemnik na iframe z zapisami */
.zapisy-embed {
  margin-top: 2rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.zapisy-embed-inner {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.18);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* iframe – pełna szerokość */
.zapisy-embed-inner iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: none;
}

.zapisy-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

/* Mobile – trochę ciaśniej */
@media (max-width: 768px) {
  .enroll-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .zapisy-embed-inner iframe {
    min-height: 460px;
  }
}
/* ================= ZAUFALI NAM – LOGO MARQUEE ================= */

.trusted-section {
  padding: clamp(40px, 7vw, 72px) clamp(16px, 6vw, 80px);
}

.trusted-logos {
  position: relative;
  overflow: hidden; /* ukrywa to, co wyjeżdża poza kontener */
  max-width: 1200px;
  margin: 24px auto 0;
}

.trusted-logos-track {
  display: flex;
  align-items: center;
  gap: 2px; /* TU regulujesz odstęp między logami */
  animation: trusted-marquee 30s linear infinite;
  will-change: transform;
}

.trusted-logo {
  flex: 0 0 auto; /* logo ma się zachowywać jak element w linii */
}

.trusted-logo img {
  display: block;
  max-height: 60px; /* ew. dopasuj wysokość */
  width: auto;
  filter: grayscale(1);
  opacity: 0.8;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.trusted-logo img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

/* animacja przesuwania - dzięki duplikacji logotypów działa w pętli */
@keyframes trusted-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Szacunek dla prefers-reduced-motion - bez jazdy dla osób z wyłączonymi animacjami */
@media (prefers-reduced-motion: reduce) {
  .trusted-logos-track {
    animation: none;
  }
}
.wylacz_podkreslenie {
  text-decoration: none;
}
/* SEKCJA: DLACZEGO MY (ADR) */
#dlaczego-my {
  padding-block: clamp(3rem, 4vw, 4.5rem);
  background: var(--bg-muted, #f3f4f6);
}

/* Nagłówek sekcji */
#dlaczego-my .section-header {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

#dlaczego-my .section-title {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  line-height: 1.2;
}

#dlaczego-my .section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted, #4b5563);
}

/* GRID z filarami */
#dlaczego-my .pillars {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Karty filarów – tylko w tej sekcji */
#dlaczego-my .pillars .card {
  position: relative;
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: var(--radius-lg, 1rem);
  background: var(--surface, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

/* Pasek / akcent u góry karty */
#dlaczego-my .pillars .card::before {
  content: "";
  position: absolute;
  inset-inline: 1.4rem;
  top: 0.9rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent, #f97316),
    var(--accent-soft, #facc15)
  );
  opacity: 0.9;
}

/* Delikatne „unoszenie” przy hoverze */
#dlaczego-my .pillars .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.35); /* lekki akcent ADR */
}

/* Nagłówki filarów */
#dlaczego-my .pillars .card h3 {
  margin-top: 0.4rem; /* żeby nie nachodziło na pasek ::before */
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Tekst w filarach */
#dlaczego-my .pillars .card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted, #4b5563);
}

/* Numerki filarów (opcjonalne, ale fajnie wygląda) */
#dlaczego-my .pillars {
  counter-reset: why-adr;
}

#dlaczego-my .pillars .card h3::before {
  counter-increment: why-adr;
  content: "0" counter(why-adr);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(249, 115, 22, 0.09);
  color: var(--accent, #f97316);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
  #dlaczego-my .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #dlaczego-my {
    padding-block: 2.5rem;
  }

  #dlaczego-my .pillars {
    grid-template-columns: 1fr;
  }

  #dlaczego-my .pillars .card {
    padding: 1.3rem 1.2rem 1.4rem;
  }
}
/* SEKCJA: OFERTA ADR */
#oferta-adr {
  padding-block: clamp(3rem, 4vw, 4.5rem);
  background: var(--bg, #ffffff);
}

/* Nagłówek sekcji */
#oferta-adr .section-header {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

#oferta-adr .section-title {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  line-height: 1.2;
}

#oferta-adr .section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted, #4b5563);
}

/* GRID z kursami */
#oferta-adr .courses-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Karta kursu – tylko w tej sekcji */
#oferta-adr .course-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--radius-lg, 1rem);
  background: var(--surface, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

/* Pasek akcentowy u góry karty */
#oferta-adr .course-card::before {
  content: "";
  position: absolute;
  inset-inline: 1.5rem;
  top: 0.9rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent, #f97316),
    var(--accent-soft, #facc15)
  );
  opacity: 0.95;
}

/* Delikatne „unoszenie” przy hoverze */
#oferta-adr .course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
}

/* Odnowienie – lekko wyróżnione (ostatnia karta) */
#oferta-adr .course-card:last-child {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(249, 115, 22, 0.55);
  background: radial-gradient(
    circle at top left,
    rgba(249, 115, 22, 0.07),
    #ffffff 55%
  );
}

/* Nagłówek kursu */
#oferta-adr .course-card h3 {
  margin-top: 0.5rem; /* żeby nie nachodziło na pasek ::before */
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Krótki opis kursu */
#oferta-adr .course-card > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted, #4b5563);
}

/* Lista korzyści kursu */
#oferta-adr .course-list {
  margin: 0.3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

#oferta-adr .course-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted, #4b5563);
}

/* Custom bullet – „check” ADR */
#oferta-adr .course-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent, #f97316);
}

/* CTA w karcie – trzymamy przy dole */
#oferta-adr .course-cta {
  margin-top: auto;
  padding-top: 0.9rem;
}

/* Link CTA w karcie */
#oferta-adr .course-cta .link-cta {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(249, 115, 22, 0.06);
  color: var(--accent, #ea580c);
  transition:
    background 0.18s ease-out,
    transform 0.18s ease-out;
}

#oferta-adr .course-cta .link-cta::after {
  content: "→";
  font-size: 0.95em;
  transform: translateX(0);
  transition: transform 0.18s ease-out;
}

#oferta-adr .course-cta .link-cta:hover {
  background: rgba(249, 115, 22, 0.12);
  transform: translateY(-1px);
}

#oferta-adr .course-cta .link-cta:hover::after {
  transform: translateX(2px);
}

/* Przyciski pod gridem */
#oferta-adr .cta-center {
  text-align: center;
}

/* Możesz delikatnie wzmocnić duży przycisk tylko w tej sekcji */
#oferta-adr .btn-cta.big {
  padding-inline: 2.4rem;
  padding-block: 0.95rem;
  font-size: 1rem;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
  #oferta-adr .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #oferta-adr {
    padding-block: 2.5rem;
  }

  #oferta-adr .courses-grid {
    grid-template-columns: 1fr;
  }

  #oferta-adr .course-card {
    padding: 1.4rem 1.25rem 1.5rem;
  }
}
/* SEKCJA: PROCES KROK PO KROKU */
#proces {
  padding-block: clamp(3rem, 4vw, 4.5rem);
  background: var(--bg-muted, #f9fafb);
}

/* Nagłówek sekcji */
#proces .section-header {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

#proces .section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.2rem);
  line-height: 1.2;
}

#proces .section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted, #4b5563);
}

/* GRID z krokami */
#proces .cards-grid {
  position: relative;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Linia łącząca kroki – tylko na większych ekranach */
@media (min-width: 900px) {
  #proces .cards-grid::before {
    content: "";
    position: absolute;
    top: 1.6rem;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(249, 115, 22, 0.2),
      rgba(234, 88, 12, 0.4)
    );
    pointer-events: none;
    z-index: 0;
  }
}

/* Pojedynczy krok – karta tylko dla tej sekcji */
#proces .card {
  position: relative;
  padding: 1.8rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg, 1rem);
  background: var(--surface, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
  z-index: 1;
}

/* „Pin” nad kartą sugerujący krok w procesie */
#proces .card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  margin-inline: auto;
  top: 0.7rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* Delikatne wyróżnienie przy hover */
#proces .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.45);
}

/* Nagłówek kroku */
#proces .card h3 {
  margin: 0.3rem 0 0;
  padding-top: 0.7rem; /* miejsce na „pin” */
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Tekst kroku */
#proces .card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted, #4b5563);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
  #proces .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #proces {
    padding-block: 2.5rem;
  }

  #proces .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  #proces .card {
    padding: 1.5rem 1.3rem 1.4rem;
  }

  /* Na mobile linia łącząca nie jest potrzebna */
  #proces .cards-grid::before {
    content: none;
  }

  #proces .card::before {
    top: 0.5rem;
  }
}
/* SEKCJA: LOKALIZACJA */
#lokalizacja {
  padding-block: clamp(3rem, 4vw, 4.5rem);
}

#lokalizacja .section-header {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

#lokalizacja .section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.2rem);
  line-height: 1.2;
}

#lokalizacja .section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted, #4b5563);
}

/* GRID 2-kolumnowy */
#lokalizacja .grid-2 {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Karty lokalizacji – lekko inne niż reszta strony, ale w tym samym stylu */
#lokalizacja .card {
  padding: 1.9rem 1.6rem;
  border-radius: var(--radius-xl, 1.25rem);
  background:
    radial-gradient(
      circle at top left,
      rgba(249, 115, 22, 0.08),
      transparent 55%
    ),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

#lokalizacja .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  border-color: rgba(249, 115, 22, 0.45);
}

#lokalizacja .card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

#lokalizacja .card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, #4b5563);
}

/* Responsywność */
@media (max-width: 900px) {
  #lokalizacja .grid-2 {
    grid-template-columns: 1fr;
  }

  #lokalizacja .card {
    padding: 1.6rem 1.4rem;
  }
}

/* ========================= */
/* SEKCJA: FAQ – AKORDEON    */
/* ========================= */

#faq {
  padding-block: clamp(3rem, 4vw, 4.5rem);
  background: var(--bg-muted, #f9fafb);
}

#faq .section-header {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

#faq .section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.2rem);
  line-height: 1.2;
}

#faq .section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted, #4b5563);
}

/* Nowy układ – akordeon w dwóch kolumnach na desktopie */
#faq .grid-2 {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
}

/* Każda „card” to kolumna z listą pytań */
#faq .card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Element FAQ jako <details> – akordeon */
#faq .faq-item {
  border-radius: var(--radius-lg, 1rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition:
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out,
    transform 0.18s ease-out;
}

/* Małe podbicie przy rozwinięciu */
#faq .faq-item[open] {
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
}

/* Nagłówek pytania (summary) */
#faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--text-strong, #0f172a);
}

/* Usunięcie domyślnej strzałki w niektórych przeglądarkach */
#faq .faq-item summary::-webkit-details-marker {
  display: none;
}

/* Ikonka po lewej (okrąg) */
#faq .faq-bullet {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(249, 115, 22, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(249, 115, 22, 1);
  background: rgba(249, 115, 22, 0.06);
}

/* Ikona strzałki po prawej (pseudo-element) */
#faq .faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: auto;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.15);
  position: relative;
}

#faq .faq-item summary::after {
  background:
    linear-gradient(
      to bottom,
      transparent 42%,
      rgba(148, 163, 184, 0.9) 42%,
      rgba(148, 163, 184, 0.9) 58%,
      transparent 58%
    ),
    linear-gradient(
      to right,
      transparent 42%,
      rgba(148, 163, 184, 0.9) 42%,
      rgba(148, 163, 184, 0.9) 58%,
      transparent 58%
    );
  transform: rotate(45deg);
  transition:
    transform 0.18s ease-out,
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out;
}

/* Zmiana ikonki przy otwartym pytaniu */
#faq .faq-item[open] summary::after {
  transform: rotate(135deg);
  border-color: rgba(249, 115, 22, 0.95);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* Treść odpowiedzi */
#faq .faq-body {
  margin-top: 0.75rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, #4b5563);
}

#faq .faq-body p {
  margin: 0 0 0.5rem;
}

#faq .faq-body p:last-child {
  margin-bottom: 0;
}

/* Responsywność FAQ */
@media (max-width: 900px) {
  #faq .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  #faq {
    padding-block: 2.5rem;
  }

  #faq .faq-item {
    padding: 0.85rem 0.9rem;
  }

  #faq .faq-body {
    font-size: 0.93rem;
  }
}
/* =========================================================
   ADR PAGE – KOSMICZNY DESIGN TYLKO DLA TEJ PODSTRONY
   ========================================================= */

.adr-page {
  background: radial-gradient(
    140% 120% at 10% -10%,
    #0b1220 0,
    #020617 45%,
    #000 100%
  );
  color: black;
}

/* ---------- HERO ---------- */

.adr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(64px, 10vh, 96px) 0 72px;
  overflow: clip;
}

.adr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/adr-hero-truck.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.04);
  transform-origin: center;
  opacity: 0.65;
}

.adr-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 120% at -10% -10%,
      rgba(56, 189, 248, 0.35),
      transparent 60%
    ),
    radial-gradient(
      140% 120% at 110% -20%,
      rgba(129, 140, 248, 0.45),
      transparent 65%
    ),
    radial-gradient(
      140% 140% at 50% 130%,
      rgba(15, 23, 42, 0.98),
      #020617 70%,
      #000 100%
    );
  mix-blend-mode: normal;
}

.adr-hero-inner {
  position: relative;
  z-index: 1;
}

.adr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 40px);
  align-items: center;
}

@media (max-width: 960px) {
  .adr-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.adr-hero-left {
  max-width: 680px;
}

.adr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.4), transparent 65%),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.75);
}
.adr-hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

/* Tytuł */

.adr-hero-title {
  margin: 16px 0 10px;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #f9fafb;
}
.adr-hero-title span {
  /* background-image: linear-gradient(90deg, #38bdf8, #22c55e, #a855f7); */
  -webkit-background-clip: text;
  background-clip: text;
  /* color: transparent; */
}

/* Podtytuł */

.adr-hero-sub {
  margin: 0 0 16px;
  font-size: clamp(15px, 2.2vw, 18px);
  color: #cbd5f5;
  max-width: 560px;
}
.adr-hero-sub strong {
  color: #e5e7eb;
}
.adr-hero-sub span {
  color: #38bdf8;
}

/* Miasta */

.adr-hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}
.adr-city-chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

/* Statystyki */

.adr-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .adr-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.adr-stat {
  padding: 10px 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 55%),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.8);
}
.adr-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}
.adr-stat-value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #f9fafb;
}
.adr-stat-desc {
  font-size: 12px;
  color: #9ca3af;
}

/* CTA */

.adr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.adr-hero-ghost {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
}

.adr-hero-note {
  font-size: 13px;
  color: #9ca3af;
  max-width: 520px;
}

/* Scroll cue */

.adr-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #9ca3af;
  font-size: 11px;
  opacity: 0.85;
}

.adr-scroll-cue .mouse {
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.7);
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.8);
}

/* ---------- HERO PANEL (DATY) ---------- */

.adr-hero-panel {
  align-self: stretch;
  border-radius: 20px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(
      circle at 100% 0,
      rgba(129, 140, 248, 0.3),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
  min-height: 0;
}

@media (max-width: 960px) {
  .adr-hero-panel {
    order: -1;
  }
}

.adr-panel-header span,
.adr-panel-header h2 {
  margin: 0;
}

.adr-panel-header {
  margin-bottom: 14px;
}
.adr-panel-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
}
.adr-panel-header h2 {
  font-size: 18px;
  color: #f9fafb;
}

/* Lista terminów */

.adr-panel-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.adr-panel-list li {
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.adr-panel-label {
  font-size: 13px;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}
.adr-panel-date {
  font-size: 13px;
  font-weight: 600;
  color: #a5b4fc;
  white-space: nowrap;
}

.bullet {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  box-shadow: 0 0 10px currentColor;
}
.bullet--warm {
  color: #fb923c;
  background: #fb923c;
}
.bullet--cool {
  color: #38bdf8;
  background: #38bdf8;
}
.bullet--alert {
  color: #facc15;
  background: #facc15;
}

.adr-panel-empty {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 13px;
  color: #e5e7eb;
}

.adr-panel-footer {
  margin-top: 6px;
  font-size: 12px;
  color: #9ca3af;
}
.adr-panel-footer a {
  color: #38bdf8;
  text-decoration: none;
}
.adr-panel-footer a:hover {
  text-decoration: underline;
}

/* ---------- SEKCJE OGÓLNE DLA ADR ---------- */

.adr-section {
  position: relative;
  z-index: 1;
}

.adr-section .section-title {
  color: #0b1020;
}

.adr-section .section-subtitle {
  color: #4b5563;
}

/* ---------- OFERTA KURSÓW ADR ---------- */

.adr-offer {
  background: linear-gradient(180deg, #020617 0, #020617 10%, #f9fafb 100%);
  padding-top: 72px;
  padding-bottom: 80px;
  color: #0f172a;
}

.adr-offer .section-title,
.adr-offer .section-subtitle {
  color: black;
}
.adr-offer .section-header {
  text-align: center;
  max-width: 760px;
  margin-bottom: 32px;
}

/* siatka kursów */

.adr-courses-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .adr-courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .adr-courses-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.adr-course-card {
  position: relative;
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.adr-course-card-last {
  background: #38bdf8;
}

.adr-course-card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 0deg,
    rgba(56, 189, 248, 0.18),
    rgba(34, 197, 94, 0.16),
    rgba(129, 140, 248, 0.2),
    rgba(56, 189, 248, 0.18)
  );
  opacity: 0;
  filter: blur(24px);
  transition: opacity 0.45s ease;
  z-index: -1;
}
.adr-course-card:hover::after {
  opacity: 1;
}

.adr-course-icon {
  font-size: 24px;
  margin-bottom: 4px;
  justify-content: center;
  display: flex;
}
.adr-course-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
  color: black;
}
.adr-course-card p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #646668;
}
.adr-course-card ul {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 13px;
  color: black;
}
.adr-course-footer {
  margin-top: auto;
}
.adr-course-cta {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #38bdf8;
}
.adr-course-cta--warn {
  color: #facc15;
}

/* ---------- B2B ---------- */

.adr-b2b {
  background:
    radial-gradient(420% 520% at 10% -20%, #0ea5e9 0, transparent 60%),
    radial-gradient(120% 120% at 100% -20%, #6366f1 0, transparent 60%), #020617;
  color: white;
}

.adr-b2b-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
}

.adr-b2b-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: center;
}

@media (max-width: 960px) {
  .adr-b2b-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.adr-b2b-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bae6fd;
}
.adr-b2b-title {
  font-size: clamp(24px, 4vw, 32px);
  margin: 8px 0 8px;
}
.adr-b2b-text {
  font-size: 14px;
  color: white;
}

.adr-b2b-list {
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 13px;
}
.adr-b2b-list li + li {
  margin-top: 4px;
}

.adr-b2b-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adr-b2b-note {
  font-size: 12px;
  color: white;
}

.adr-b2b-right {
  display: flex;
  justify-content: flex-end;
}
.adr-b2b-card {
  max-width: 360px;
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 1);
  font-size: 13px;
}
.adr-b2b-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
}
.adr-b2b-card p {
  margin: 6px 0 8px;
}
.adr-b2b-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.adr-b2b-meta span {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* ---------- TIMELINE ---------- */

.adr-process {
  background: #f9fafb;
}

.adr-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-top: 16px;
}
.adr-timeline-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #38bdf8, #22c55e);
  opacity: 0.4;
}
.adr-step {
  position: relative;
  padding-left: 52px;
  margin-bottom: 18px;
}
.adr-step-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #0b1020;
  background: radial-gradient(circle at 30% 30%, #faf5ff, #e5e7eb);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}
.adr-step-card {
  border-radius: 16px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.adr-step-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}
.adr-step-card p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

/* ---------- TESTIMONIALS ---------- */

.adr-testimonials {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(25deg, #0ea5e9, transparent);
  color: #e5e7eb;
}
.adr-testimonials-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      120% 120% at 100% 0,
      rgba(56, 189, 248, 0.35),
      transparent 60%
    ),
    radial-gradient(
      120% 120% at 0 120%,
      rgba(129, 140, 248, 0.4),
      transparent 70%
    );
  opacity: 0.5;
}
.adr-testimonials-inner {
  position: relative;
  z-index: 1;
}

.adr-testimonials .section-title,
.adr-testimonials .section-subtitle {
  color: #e5e7eb;
}

/* slider – tylko doprawka */

.testimonials-slider {
  position: relative;
  margin-top: 26px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.95);
}

.testimonial-text {
  color: #0f172a;
}

.testimonial-author {
  color: black;
}

/* ---------- LOKALIZACJA ---------- */

.adr-location {
  background: #f1f5f9;
}

.adr-location-grid {
  margin-top: 12px;
}

.adr-location-card {
  background: #ffffff;
}

.adr-location-card--night {
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%),
    #020617;
  color: #8595b3;
}
.adr-location-card--night p {
  color: #cbd5f5;
}

/* ---------- FAQ ---------- */

.adr-faq {
  background: #e5e7eb;
}
.adr-faq-grid {
  margin-top: 10px;
}
.adr-faq-card {
  background: #f9fafb;
}

/* ---------- ENROLL / TERMINY ---------- */

.adr-enroll {
  position: relative;
  padding: 72px 0 96px;
  background: radial-gradient(
    140% 140% at 50% -20%,
    #0b1220,
    #020617 55%,
    #000 100%
  );
  color: #e5e7eb;
}
.adr-enroll-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(56, 189, 248, 0.32),
      transparent 60%
    ),
    radial-gradient(
      120% 120% at 100% -10%,
      rgba(129, 140, 248, 0.45),
      transparent 60%
    );
  opacity: 0.7;
}
.adr-enroll .section-header {
  position: relative;
  z-index: 1;
}
.adr-enroll .section-title,
.adr-enroll .section-subtitle {
  color: #e5e7eb;
}

/* trochę większy cień pod iframe jest już w istniejących klasach (zapisy-embed-inner) */

/* ---------- Responsywne dopieszczki ---------- */

@media (max-width: 720px) {
  .adr-hero {
    padding-top: 88px;
  }
  .adr-hero-left {
    text-align: left;
  }
  .adr-hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* === ADR: kontakt + mini formularz === */
.adr-contact {
  background: #020617;
  color: #e5e7eb;
  position: relative;
  z-index: 1;
}

.adr-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.adr-contact-left .section-title {
  margin-bottom: 0.4rem;
}

.adr-contact-left .section-subtitle {
  max-width: 34rem;
  margin-bottom: 1.2rem;
}

.adr-contact-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.adr-contact-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.adr-contact-list a {
  color: #38bdf8;
  text-decoration: none;
}

.adr-contact-list a:hover {
  text-decoration: underline;
}

.adr-contact-note {
  font-size: 0.8rem;
  color: #94a3b8;
}

.adr-contact-right {
  max-width: 480px;
  margin-left: auto;
}

.adr-contact-form {
  background: #0b1120;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.adr-contact-row {
  margin-bottom: 0.85rem;
}

.adr-contact-row label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #cbd5f5;
}

.adr-contact-row input,
.adr-contact-row textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #1e293b;
  background: #020617;
  color: #e5e7eb;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.adr-contact-row input:focus,
.adr-contact-row textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

.adr-contact-row--submit {
  margin-top: 0.4rem;
}

.adr-contact-form-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.4rem;
}

/* === ADR: pływający pasek CTA (Zadzwoń / WhatsApp / Zapisz się) === */

/* żeby pasek nie zasłaniał dołu treści tylko na tej podstronie */
/* żeby nie zasłaniały treści na dole */
main.adr-page {
  padding-bottom: 3.5rem;
}

/* kontener na małe ikonki */
.adr-floating-icons {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* pojedyncza ikonka */
.adr-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #0f172a; /* tło */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.6);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease;
}

/* możesz podmienić na własne kolory per typ */
.adr-float-icon--call {
  background: white;
}
.adr-float-icon--wa {
  background: white;
}
.adr-float-icon--signup {
  background: white;
}

.adr-float-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.7);
}

/* placeholder pod Twoje SVG / emoji */
.adr-float-icon .icon-phone,
.adr-float-icon .icon-wa,
.adr-float-icon .icon-signup {
  display: block;
  font-size: 1.4rem; /* jeśli użyjesz emoji / font-icon */
}
.hero-adr .hero-bg-adr {
  background-image: var(--hero-adr) !important; /* PODMIEŃ NA SWOJĄ ŚCIEŻKĘ */
  background-size: cover;
  /* background-position: center right; */
}

.hero-overlay-adr {
  background: linear-gradient(
    156deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.85) 40%,
    rgba(15, 23, 42, 0.78) 70%,
    rgba(15, 23, 42, 0) 100%
  );
}

.hero-inner-adr {
  display: grid;
  /* grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); */
  /* align-items: flex-end; */
  /* gap: 32px; */
}

.hero-eyebrow-adr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0071ff, #7a5cff, #00c8ff);
  border: 1px solid rgba(248, 250, 252, 0.2);
  font-size: 13px;
}

.hero-adr-cities {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* justify-content: center; */
}
.hero-adr-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Tworzymy gradient: biały w środku, przezroczysty na zewnątrz */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  z-index: -1; /* Umieszcza mgłę pod treścią diva */
  pointer-events: none; /* Sprawia, że mgła nie blokuje kliknięć */
}
.hero-adr-main {
  margin-top: 3%;
}

.hero-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(106 146 241 / 75%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 13px;
}

.hero-actions-adr {
  margin-top: 4%;
  gap: 16px;
}

.hero-note-adr {
  margin-top: 16px;
  font-size: 13px;
  color: black;
  max-width: 520px;
}

/* szklany pasek ze statystykami */
.hero-adr-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 7%;
}

.hero-stat-card {
  padding: 16px 18px;
}

.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e0bb57;
  margin-bottom: 4px;
}

.hero-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #e0bb57;
}

.hero-stat-desc {
  margin-top: 4px;
  font-size: 13px;
  color: #e0bb57;
}

@media (max-width: 900px) {
  .hero-inner-adr {
    grid-template-columns: 1fr;
  }

  .hero-adr-panel {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
/* Styl samej karty (efekt szkła) */
.hero-stat-card {
  flex: 1; /* Karty rozciągają się równomiernie */
  background: rgba(
    0,
    0,
    0,
    0.18
  ) !important; /* Bardzo delikatne, białe, przezroczyste tło */
  backdrop-filter: blur(4px); /* Rozmycie tła pod kartą (kluczowe!) */
  -webkit-backdrop-filter: blur(4px); /* Dla Safari */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Cienka, półprzezroczysta ramka */
  border-radius: 16px; /* Zaokrąglenie rogów */
  padding: 24px;
  color: #fff;
  font-family: sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Delikatny cień */
}

/* Górny napis (Label) */
.hero-stat-label {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  font-size: 1.4rem;
  color: #24b2ff;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Wartość (np. > 90%) */
.hero-stat-value {
  font-size: 1.5rem; /* Duży rozmiar czcionki */
  font-weight: 600; /* Pogrubienie */
  color: #24b2ff;
  margin-bottom: 8px;
  line-height: 1.1;
}

/* Opis na dole */
.hero-stat-desc {
  font-size: 0.85rem;
  color: #bdd8fd;
  font-weight: 400;
}

/* Responsywność - na telefonach karty jedna pod drugą */
@media (max-width: 768px) {
  .hero-adr-panel {
    flex-direction: column;
  }
}
/* =========================================================
   TERMIMY KURSÓW ADR – karta pod sekcją hero
   ========================================================= */

.adr-dates {
  padding-top: 2.5rem;
}

.adr-dates .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.adr-dates-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 32px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.adr-dates-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.adr-dates-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: #e0f2ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.adr-dates-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

/* wiersz z „pigułkami” dat */
.adr-dates-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.adr-date-item {
  flex: 1 1 220px;
  min-width: 0;
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 640px) {
  .adr-date-item {
    flex: none;
  }
}

/* label „Zapisy do / Start zajęć / Egzamin TDT” */
.adr-date-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

/* kolorowe kropki */
.adr-date-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.2);
}

.adr-date-dot--orange {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.adr-date-dot--blue {
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.adr-date-dot--green {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

/* data + „(za X dni)” */
.adr-date-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.adr-date-date {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.adr-date-rel {
  font-size: 13px;
  color: #94a3b8;
}

/* stopka z linkiem dla flot */
.adr-dates-footer {
  margin-top: 8px;
  font-size: 14px;
  color: #64748b;
}

.adr-dates-link {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.adr-dates-link:hover {
  text-decoration: underline;
}

/* stan gdy brak terminów */
.adr-dates-empty {
  margin: 4px 0 10px;
  font-size: 14px;
  color: #94a3b8;
}

/* RESPONSYWNOŚĆ */
@media (min-width: 768px) {
  .adr-dates-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .adr-dates-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .adr-dates .container {
    padding: 0 1rem;
  }

  .adr-dates-card {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .adr-dates-items {
    flex-direction: column;
  }

  .adr-date-item {
    padding: 12px 14px;
  }

  .adr-date-date {
    font-size: 16px;
  }
}
.tlo-przycisku-adr {
  background: #0387ce !important;
}
.hero-microcopy {
  margin-top: 8px;
  font-size: 13px;
  color: #bdd8fd;
}
.ico.ring .ico-svg {
  width: 50px; /* dopasuj do swojego kółka */
  height: 40px;
  display: block;
}
.kolumna {
  flex-direction: column;
}
.rozmiar-adr-dlaczego {
  max-width: 54%;
}
.rozmiar-adr-szkolenia {
  max-width: 23%;
}
/* ================= ADR – TIMELINE HORIZONTAL (SEKCJA 4) ======= */
.adr-process {
  padding: clamp(48px, 9vw, 110px) clamp(16px, 6vw, 80px);
  background: #fff;
}
.adr-timeline {
  max-width: 1040px;
  margin: 0 auto;
}
.adr-timeline--horizontal {
  position: relative;
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  align-items: flex-start;
}
.adr-timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, #ff8a3c, #ffc163);
  opacity: 0.85;
  pointer-events: none;
}
.adr-step {
  position: relative;
  flex: 1;
  min-width: 0;
}
.adr-step-node {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1020;
  box-shadow: 0 0 0 3px rgba(255, 138, 60, 0.28);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.adr-step-title {
  margin: 0 0 4px;
  font-size: 16px;
}
.adr-step-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 780px) {
  .adr-timeline--horizontal {
    flex-direction: column;
  }
  .adr-timeline-line {
    left: 14px;
    right: auto;
    width: 2px;
    height: 100%;
    top: 0;
    background: linear-gradient(#ff8a3c, #ffc163);
  }
  .adr-step {
    padding-left: 36px;
  }
  .adr-step-node {
    margin-bottom: 4px;
  }
}

/* ================= ADR – PILL + CHECKLIST ==================== */
.adr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1b263b;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.adr-checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.adr-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #243047;
}
.adr-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(32, 201, 151, 0.8);
  background: radial-gradient(circle at 30% 30%, #e9fbf3, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #20c997;
  flex-shrink: 0;
}
.adr-check::before {
  content: "✓";
}

/* ================= ADR – DLA KOGO (SEKCJA 5) ================== */
.adr-forwho {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.adr-forwho-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
}
.adr-forwho-media {
  order: 1;
}
.adr-forwho-content {
  order: 2;
}
.section-title--left,
.section-subtitle--left {
  text-align: left;
}
.adr-forwho-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.adr-forwho-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 900px) {
  .adr-forwho-inner {
    grid-template-columns: 1fr;
  }
  .adr-forwho-media {
    order: 2;
  }
  .adr-forwho-content {
    order: 1;
  }
}

/* ================= ADR – NOCLEG GRATIS (SEKCJA 7) ============= */
.adr-accommodation {
  background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}
.adr-accommodation-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
}
.adr-accommodation-media {
  order: 1;
}
.adr-accommodation-content {
  order: 2;
}
.adr-accommodation-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
.adr-accommodation-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 900px) {
  .adr-accommodation-inner {
    grid-template-columns: 1fr;
  }
}

/* ================= ADR – LOKALIZACJA (SEKCJA 8) =============== */
.adr-location {
  background: #ffffff;
}
.adr-location-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
}
.adr-location-illustration {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}
.adr-location-illustration img {
  display: block;
  width: 100%;
  height: auto;
}
.adr-location-list {
  list-style: none;
  margin: 18px 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 15px;
  color: #243047;
}
.adr-location-note {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .adr-location-inner {
    grid-template-columns: 1fr;
  }
}

/* ================= ADR – FINAL CTA (SEKCJA 10) ================ */
.adr-enroll.enroll-section {
  position: relative;
  padding: clamp(48px, 9vw, 96px) clamp(16px, 6vw, 80px);
  color: #f9fafb;
  background: radial-gradient(120% 120% at 10% -10%, #1f2937, #020617);
  overflow: hidden;
}
.adr-enroll-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      80% 60% at 50% 0%,
      rgba(255, 138, 60, 0.32),
      transparent 65%
    ),
    radial-gradient(
      60% 50% at 0% 100%,
      rgba(15, 23, 42, 0.85),
      transparent 70%
    ),
    radial-gradient(
      60% 50% at 100% 100%,
      rgba(15, 23, 42, 0.85),
      transparent 70%
    );
  opacity: 0.9;
  pointer-events: none;
}
.adr-enroll-header {
  position: relative;
  z-index: 1;
}
.adr-enroll-stripe {
  width: 110px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a3c, #ffd166);
  box-shadow: 0 6px 18px rgba(255, 138, 60, 0.5);
}
.section-title--light {
  color: #f9fafb;
}
.section-subtitle--light {
  color: #e5e7eb;
}
.adr-enroll .cta-center,
.adr-enroll .zapisy-embed {
  position: relative;
  z-index: 1;
}
.adr-enroll .zapisy-embed-inner {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.adr-enroll .zapisy-note {
  color: #e5e7eb;
}
.adr-enroll .btn-cta.big {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
.content-wrapper {
  position: relative; /* Aby z-index zadziałał */
  z-index: 10; /* Wyższa wartość = bliżej użytkownika */
  text-align: center;
  color: white;
  max-width: 600px; /* Ogranicza szerokość tekstu, żeby nie był za szeroki */
}
.illustration-svg {
  position: absolute;
  z-index: 1; /* Niższa wartość niż treść, ale wyższa niż tło (0) */

  /* POZYCJONOWANIE - Dostosuj do swojego SVG */
  /* W przykładzie z image_1 postać jest po lewej stronie */
  left: 5%; /* Odsunięcie od lewej krawędzi */
  bottom: 0; /* "Przyklejenie" do dołu */

  /* ROZMIAR */
  height: 90%; /* Dostosuj wysokość, aby pasowała do baneru */
  width: auto; /* Zachowuje proporcje */

  /* NAJWAŻNIEJSZE DLA KOMPOZYCJI (Tip Pro) */
  /* Sprawia, że myszka "ignoruje" SVG. Dzięki temu, nawet jeśli SVG
     przykryje przycisk, nadal będzie można w niego kliknąć. */
  pointer-events: none;
}
.banner-contact {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  left: 39%;
}
@media (max-width: 770px) {
  .illustration-svg {
    position: relative;
    align-items: center;
    left: 17%;
  }
  .banner-contact {
    position: relative;
    left: auto;
  }
}
.kierowcy-zawodowi-zdj {
  width: 35%;
  display: flex;
  border-radius: 10%;
}
.card-link {
  text-decoration: none;
}
/* ====== Sekcja: układ jak na screenie ====== */
.section.centrowanie-sekcja {
  background: #f6f7fb;
  padding: 56px 0;
}

/* jeśli masz globalny .container to OK; jeśli nie, to zrób max-width tutaj */
.section.centrowanie-sekcja {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ====== Grid kart ====== */
.card-zawodowi.zawodowi-article {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* żeby karty ustawiały się w 3 kolumnach bez zmiany HTML:
   stylujemy kontener sekcji jako grid, a article jako elementy */
.section.centrowanie-sekcja {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* responsywność */
@media (max-width: 980px) {
  .section.centrowanie-sekcja {
    grid-template-columns: 1fr;
  }
}

/* ====== Obrazek u góry ====== */
.kierowcy-zawodowi-zdj {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transform: scale(
    1.02
  ); /* delikatne "pełniejsze" wypełnienie jak na screenie */
}

/* ====== Treść w karcie ====== */
.centrowanie-po-calosci.zawodowi-txt {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.centrowanie-po-calosci.zawodowi-txt h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #0f172a;
}

/* pierwszy tytuł na pomarańczowo jak na screenie */
.card-zawodowi.zawodowi-article:nth-child(1) .zawodowi-txt h3 {
  color: #f28c28;
}

.centrowanie-po-calosci.zawodowi-txt p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  min-height: 44px; /* trzyma podobną wysokość opisów */
}

/* ====== Przycisk "Szczegóły" jak na screenie ====== */
.card-btn-zawodowi {
  margin-top: 10px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 12px;

  background: #15233c;
  color: #fff;
  text-decoration: none;

  font-weight: 750;
  font-size: 13px;

  transition:
    transform 0.12s ease,
    filter 0.12s ease;
}

.card-btn-zawodowi:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* jeśli masz gdzieś globalne style linków, to to zabezpiecza */
.card-btn-zawodowi:visited {
  color: #fff;
}

/* ====== drobne wygładzenie odstępów w artykule ====== */
.zawodowi-article {
  align-self: stretch;
}
/* ===== UDT tiles (jak na screenie) ===== */

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

@media (max-width: 1024px) {
  .udt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .udt-grid {
    grid-template-columns: 1fr;
  }
}

.udt-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.udt-card td {
  text-align: center;
}

.udt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.12);
}

.udt-media {
  position: relative;
  height: 200px;
  background: #f1f5f9;
}

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

.udt-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f97316; /* pomarańcz jak na screenie */
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.udt-pills {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.udt-pill {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #0f172a;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.1);
}

.udt-body {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.udt-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #0f172a;
}

.udt-body p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
  font-size: 14px;
}

.udt-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: #0387ce;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    opacity 0.12s ease;
}

.udt-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
/* =========================
   HOME — UDT kafelki ze zdjęciami (SCOPED)
   tylko dla .udtCardsHome
   ========================= */

.udtCardsHome {
  padding: clamp(24px, 4vw, 56px) 0;
}

.udtCardsHome__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
  margin: 3vw;
}

@media (max-width: 980px) {
  .udtCardsHome__grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
@media (max-width: 560px) {
  .udtCardsHome__grid {
    grid-template-columns: 1fr;
  }
}

.udtCardsHome__card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.udtCardsHome__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.14);
}

.udtCardsHome__media {
  position: relative;
  height: 170px;
  background: #e9eef7;
}

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

/* badge "UDT" */
.udtCardsHome__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ff7a1a;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* tagi na dole zdjęcia */
.udtCardsHome__tags {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.udtCardsHome__tag {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0f172a;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
}

/* body */
.udtCardsHome__body {
  padding: 18px 18px 16px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.udtCardsHome__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  color: #0f172a;
}

.udtCardsHome__text {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

/* button */
.udtCardsHome__btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: #0387ce;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition:
    transform 0.16s ease,
    opacity 0.16s ease;
}

.udtCardsHome__btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.udtCardsHome__btn:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.28);
  outline-offset: 3px;
}

/* =========================
   UDT v2 – isolated styles
   ========================= */

:root {
  --udt2-navy: #002050;
  --udt2-dark: #1b1b1b;
  --udt2-blue: #0078d4;
  --udt2-orange: #ff8c00;
  --udt2-muted: #f4f7fb;
  --udt2-border: rgba(0, 0, 0, 0.1);
  --udt2-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  --udt2-radius: 14px;
  --udt2-font:
    Inter, "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, Arial,
    sans-serif;
}

.udt2-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  font-family: var(--udt2-font);
}

.center {
  text-align: center;
}

/* Headings */
.udt2-h1 {
  font-size: clamp(30px, 3.3vw, 54px);
  line-height: 1.06;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
}
.udt2-h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--udt2-dark);
}
.udt2-h2--light {
  color: #fff;
}
.udt2-h3 {
  font-size: 18px;
  margin: 10px 0 6px;
  color: var(--udt2-dark);
}
.udt2-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 10px;
  border-radius: 999px;
}

.udt2-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 56ch;
}
.udt2-subtitle {
  color: rgba(0, 0, 0, 0.65);
  margin: 0 auto;
  max-width: 80ch;
  line-height: 1.6;
}
.udt2-subtitle--light {
  color: rgba(255, 255, 255, 0.86);
}

/* Buttons */
.udt2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  will-change: transform;
}
.udt2-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.18);
}
.udt2-btn:hover {
  transform: translateY(-2px);
}

.udt2-btn--primary {
  background: var(--udt2-blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 120, 212, 0.22);
}
.udt2-btn--primary:hover {
  box-shadow: 0 16px 36px rgba(0, 120, 212, 0.28);
}

.udt2-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.udt2-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.udt2-btn--ghost {
  background: transparent;
  border-color: rgba(0, 120, 212, 0.35);
  color: var(--udt2-blue);
}
.udt2-btn--ghost:hover {
  background: rgba(0, 120, 212, 0.08);
  border-color: rgba(0, 120, 212, 0.55);
}

.udt2-btn--orange {
  background: var(--udt2-orange);
  color: #111;
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 14px 34px rgba(255, 140, 0, 0.2);
}
.udt2-btn--orange:hover {
  box-shadow: 0 18px 46px rgba(255, 140, 0, 0.26);
}

.udt2-ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.udt2-miniNote {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.udt2-miniNote a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
}

/* Sections */
.udt2-section {
  padding: 68px 0;
}
.udt2-section--white {
  background: #fff;
}
.udt2-section--muted {
  background: var(--udt2-muted);
}
.udt2-section--dark {
  background: linear-gradient(120deg, var(--udt2-navy), #00163a);
  color: #fff;
}

/* HERO split */
.udt2-hero {
  position: relative;
  padding: 54px 0 34px;
  background:
    radial-gradient(
      1200px 600px at 10% 20%,
      rgba(0, 120, 212, 0.25),
      transparent 60%
    ),
    linear-gradient(135deg, #001022, var(--udt2-navy));
  overflow: hidden;
}
.udt2-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.udt2-hero__content {
  padding: 10px 0;
}
.udt2-hero__visual {
  position: relative;
  min-height: 380px;
}
.udt2-hero__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--udt2-radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
}
.udt2-hero__glass {
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 74px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* TRUST BAR */
.udt2-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.udt2-trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.udt2-ico svg {
  width: 20px;
  height: 20px;
}

/* Section header */
.udt2-header {
  margin-bottom: 26px;
}
.udt2-header.center .udt2-subtitle {
  max-width: 84ch;
}

/* Feature grid (2x2) */
.udt2-featureGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.udt2-featureCard {
  background: #fff;
  border: 1px solid var(--udt2-border);
  border-radius: var(--udt2-radius);
  padding: 18px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.udt2-featureCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.udt2-featureIco {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--udt2-blue);
  background: rgba(0, 120, 212, 0.1);
  border: 1px solid rgba(0, 120, 212, 0.18);
}
.udt2-featureCard:hover .udt2-featureIco {
  background: rgba(0, 120, 212, 0.16);
  border-color: rgba(0, 120, 212, 0.26);
}
.udt2-featureIco svg {
  width: 22px;
  height: 22px;
}
.udt2-featureCard p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.55;
}

/* Product cards */
.udt2-productGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.udt2-productCard {
  background: #fff;
  border: 1px solid var(--udt2-border);
  border-radius: var(--udt2-radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.udt2-productCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}
.udt2-productMedia {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.udt2-productMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.udt2-productBody {
  padding: 16px 14px 16px;
}
.udt2-productLine {
  margin: 10px 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
}
.udt2-productCard--bestseller {
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 18px 50px rgba(255, 140, 0, 0.1);
}
.udt2-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(255, 140, 0, 0.96);
  color: #111;
  font-weight: 900;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Mini cards */
.udt2-miniGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.udt2-miniCard {
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.udt2-miniCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.udt2-miniTitle {
  display: block;
  font-weight: 900;
  color: var(--udt2-dark);
  margin-bottom: 4px;
}
.udt2-miniDesc {
  display: block;
  color: rgba(0, 0, 0, 0.62);
}

/* B2B */
.udt2-b2bGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}
.udt2-b2bBadge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  margin-bottom: 12px;
}
.udt2-b2bChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 14px;
}
.udt2-chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 13px;
}
.udt2-b2bVisual {
  position: relative;
  min-height: 360px;
}
.udt2-b2bPhoto {
  position: absolute;
  inset: 0;
  border-radius: var(--udt2-radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Process path */
.udt2-path {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.udt2-step {
  background: #fff;
  border: 1px solid var(--udt2-border);
  border-radius: var(--udt2-radius);
  padding: 16px 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.udt2-stepIco {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(0, 120, 212, 0.1);
  border: 1px solid rgba(0, 120, 212, 0.18);
  margin-bottom: 10px;
}

/* FAQ accordion */
.udt2-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.udt2-accItem {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  margin: 10px 0;
  overflow: hidden;
}
.udt2-accQ {
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 900;
  color: var(--udt2-dark);
  list-style: none;
  position: relative;
}
.udt2-accQ::-webkit-details-marker {
  display: none;
}
.udt2-accQ::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: var(--udt2-blue);
}
details[open] .udt2-accQ::after {
  content: "–";
}
.udt2-accA {
  padding: 0 16px 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Final CTA */
.udt2-finalCta {
  padding: 66px 0;
  background: linear-gradient(135deg, var(--udt2-blue), var(--udt2-navy));
  color: #fff;
}
.udt2-finalGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}
.udt2-finalVisual {
  position: relative;
  min-height: 300px;
}
.udt2-finalPhoto {
  position: absolute;
  inset: 0;
  border-radius: var(--udt2-radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Reveal animations */
.udt2-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.udt2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .udt2-hero__grid,
  .udt2-b2bGrid,
  .udt2-finalGrid {
    grid-template-columns: 1fr;
  }
  .udt2-hero__visual {
    min-height: 280px;
  }
  .udt2-featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .udt2-productGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .udt2-path {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .udt2-container {
    width: min(1160px, calc(100% - 26px));
  }
  .udt2-featureGrid {
    grid-template-columns: 1fr;
  }
  .udt2-productGrid {
    grid-template-columns: 1fr;
  }
}
/* ===== UDT HERO (ADR-like): jedno zdjęcie jako tło, full screen ===== */

.udt2-hero--adr {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* jedno zdjęcie jako tło */
  background-image: var(--udt2-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* oddech jak w ADR */
  padding: 92px 0 56px;
}

/* overlay – typowo ADR: navy gradient + lekki blue glow */
.udt2-hero--adr::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 12% 22%,
      rgba(0, 120, 212, 0.22),
      transparent 60%
    ),
    linear-gradient(
      90deg,
      rgba(0, 16, 34, 0.92) 0%,
      rgba(0, 32, 80, 0.78) 45%,
      rgba(0, 32, 80, 0.38) 70%,
      rgba(0, 16, 34, 0.72) 100%
    );
  z-index: 0;
}

/* delikatna winieta / dociążenie dołu */
.udt2-hero--adr::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    900px 520px at 40% 120%,
    rgba(0, 0, 0, 0.55),
    transparent 65%
  );
  z-index: 0;
}

.udt2-hero--adr .udt2-container {
  position: relative;
  z-index: 1;
}

/* Split jak w ADR: tekst po lewej, powietrze po prawej */
.udt2-hero--adr .udt2-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 640px) 1fr;
  gap: 28px;
  align-items: center;
}

.udt2-hero--adr .udt2-hero__content {
  max-width: 640px;
}

/* prawy „spacer” – nic tu nie renderujemy, tylko kompozycja */
.udt2-hero__spacer {
  min-height: 1px;
}

/* Eyebrow, tytuł, lead (ADR-owo: mocny kontrast, technicznie) */
.udt2-eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 10px;
}

.udt2-h1 {
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.06;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.udt2-lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 60ch;
}

/* TRUST BAR – glassmorphism jak w ADR */
.udt2-trustbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);

  margin: 18px 0 18px;
}

.udt2-trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.udt2-ico {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.92);
}

.udt2-ico svg {
  width: 22px;
  height: 22px;
}

/* CTA row – ADR: primary w niebieskim, secondary ghost */
.udt2-ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.udt2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  will-change: transform;
}

.udt2-btn--primary {
  background: #0078d4;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 120, 212, 0.26);
}

.udt2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 120, 212, 0.33);
}

.udt2-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

/* mini note */
.udt2-miniNote {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.udt2-miniNote a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* RWD */
@media (max-width: 980px) {
  .udt2-hero--adr {
    padding: 78px 0 44px;
  }

  .udt2-hero--adr .udt2-hero__grid {
    grid-template-columns: 1fr;
  }

  .udt2-trustbar {
    grid-template-columns: 1fr;
  }
}
.udt2-reveal .obrazki_udt {
  border-radius: 20%;
  border-style: none;
  width: 90%;
}
.kafelki_udt {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.obrazki_5_krokow {
  height: 100%;
  width: 140%;
  border-radius: 15%;
}
.no_border {
  border-style: none;
}
.aktualnosci_tlo {
  background: #ffffff;
}
.brak_padding_top {
  padding-top: 0px;
}
/* ====== wygląd jak na screenie ====== */
.udt-steps {
  padding: 56px 16px;
  background: #fff;
  color: #0f172a;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}
.udt-steps__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.udt-steps__title {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.udt-steps__subtitle {
  margin: 0 0 34px;
  color: #6b7280;
  font-size: clamp(14px, 1.6vw, 18px);
}

.udt-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

/* krok */
.udt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.udt-step__iconWrap {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.1),
    inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  display: grid;
  place-items: center;
}

/* ikonka w środku */
.udt-step__icon {
  width: 30px;
  height: 30px;
  color: #9aa3b2;
  display: grid;
  place-items: center;
}
.udt-step__icon svg {
  width: 30px;
  height: 30px;
}

/* czarny badge z numerem (jak na screenie) */
.udt-step__badge {
  position: absolute;
  top: -6px;
  left: 60px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.udt-step__name {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 800;
}
.udt-step__desc {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
  max-width: 220px;
}

/* RWD */
@media (max-width: 1100px) {
  .udt-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .udt-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .udt-step__desc {
    max-width: 260px;
  }
}
@media (max-width: 480px) {
  .udt-steps__grid {
    grid-template-columns: 1fr;
  }
}

.hero-ops {
  --bg1: #001a4a;
  --bg2: #003c8f;
  --bg3: #0077c8;
  --accent: #ff9800;
  --cardStroke: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.1);

  padding: clamp(56px, 7vw, 96px) 16px;
  background:
    radial-gradient(
      1200px 520px at 75% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 520px at 20% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
  color: #fff;
  overflow: hidden;
  font-family:
    Inter,
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    -apple-system,
    Arial,
    sans-serif;
}

.hero-ops__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  min-height: min(520px, 80vh);
}

/* LEFT */
.hero-ops__title {
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(40px, 4.6vw, 64px);
}
.hero-ops__title span {
  color: var(--accent);
}

.hero-ops__lead {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.6;
  max-width: 54ch;
}

.hero-ops__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-ops__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
  will-change: transform;
  user-select: none;
}
.hero-ops__btn:hover {
  transform: translateY(-1px);
}

.hero-ops__btn--primary {
  background: var(--accent);
  color: #0b1020;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}
.hero-ops__btn--primary:hover {
  opacity: 0.95;
}

.hero-ops__btn--ghost {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.hero-ops__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-ops__phoneIcon {
  filter: grayscale(0);
}

.br-md {
  display: none;
}
@media (min-width: 900px) {
  .br-md {
    display: inline;
  }
}

/* RIGHT – photo card */
.hero-ops__right {
  display: flex;
  justify-content: center;
}
.hero-ops__card {
  position: relative;
  width: min(420px, 92vw);
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
  background: rgba(0, 0, 0, 0.15);
}

.hero-ops__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-ops__cardOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(0, 0, 0, 0.55), transparent 60%);
  pointer-events: none;
}

.hero-ops__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  gap: 4px;
}

.hero-ops__name {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
}
.hero-ops__job {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 14px;
}
.hero-ops__gain {
  color: var(--accent);
  font-weight: 900;
  font-size: 14px;
}

/* RWD */
@media (max-width: 980px) {
  .hero-ops__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-ops__right {
    justify-content: flex-start;
  }
  .hero-ops__card {
    transform: rotate(-3deg);
  }
}

@media (max-width: 520px) {
  .hero-ops__btn {
    width: 100%;
  }
  .hero-ops__actions {
    width: 100%;
  }
}

/* === HERO KOD 95 (scoped) === */
.okresowe-hero95 {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 16px 56px;
  background:
    radial-gradient(
      1200px 700px at 50% -20%,
      rgba(0, 156, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 110% 10%,
      rgba(0, 156, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* siatka z plusikami */
.okresowe-hero95::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at 10px 10px,
    rgba(15, 23, 42, 0.08) 1.2px,
    transparent 1.3px
  );
  background-size: 42px 42px;
  opacity: 0.12;
  pointer-events: none;
}

/* delikatna winieta i poświata po prawej */
.okresowe-hero95::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      700px 520px at 85% 35%,
      rgba(0, 156, 255, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 50% 120%,
      rgba(2, 6, 23, 0.06),
      transparent 55%
    );
  pointer-events: none;
}

.okresowe-hero95__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* pill */
.okresowe-hero95__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  color: #334155;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: clamp(18px, 3.5vw, 26px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.okresowe-hero95__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.14);
  flex: 0 0 auto;
}

/* headline */
.okresowe-hero95__h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: #0b1220;
  font-size: clamp(44px, 6.2vw, 92px);
}
.okresowe-hero95__h1 .accent {
  color: #0ea5e9;
}

/* subtitle cities */
.okresowe-hero95__cities {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.2vw, 28px);
  color: #64748b;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.okresowe-hero95__cities .sep {
  color: #0ea5e9;
  font-weight: 900;
}

/* buttons */
.okresowe-hero95__actions {
  margin-top: clamp(26px, 4vw, 36px);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.okresowe-hero95__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  border: 1px solid transparent;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
  will-change: transform;
  cursor: pointer;
}
.okresowe-hero95__btn.primary {
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  color: #fff;
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.28);
}
.okresowe-hero95__btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(2, 132, 199, 0.34);
}
.okresowe-hero95__btn.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.okresowe-hero95__btn.secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}
.okresowe-hero95__btn .arr {
  font-size: 20px;
  line-height: 1;
}

/* scroll cue */
.okresowe-hero95__scroll {
  margin-top: clamp(34px, 5vw, 52px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  color: #64748b;
  text-decoration: none;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease;
}
.okresowe-hero95__scroll:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.okresowe-hero95__chev {
  width: 18px;
  height: 18px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}

@media (max-width: 640px) {
  .okresowe-hero95 {
    padding-bottom: 44px;
  }
  .okresowe-hero95__btn {
    width: min(520px, 100%);
  }
}
.okresowe-hero95 {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 16px 56px;
  background:
    radial-gradient(
      1200px 700px at 50% -20%,
      rgba(0, 156, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 110% 10%,
      rgba(0, 156, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* siatka z plusikami */
.okresowe-hero95::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at 10px 10px,
    rgba(15, 23, 42, 0.08) 1.2px,
    transparent 1.3px
  );
  background-size: 42px 42px;
  opacity: 0.12;
  pointer-events: none;
}

/* delikatna winieta i poświata po prawej */
.okresowe-hero95::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      700px 520px at 85% 35%,
      rgba(0, 156, 255, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 50% 120%,
      rgba(2, 6, 23, 0.06),
      transparent 55%
    );
  pointer-events: none;
}

.okresowe-hero95__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* pill */
.okresowe-hero95__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  color: #334155;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: clamp(18px, 3.5vw, 26px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.okresowe-hero95__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.14);
  flex: 0 0 auto;
}

/* headline */
.okresowe-hero95__h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: #0b1220;
  font-size: clamp(44px, 6.2vw, 92px);
}
.okresowe-hero95__h1 .accent {
  color: #0ea5e9;
}

/* subtitle cities */
.okresowe-hero95__cities {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.2vw, 28px);
  color: #64748b;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.okresowe-hero95__cities .sep {
  color: #0ea5e9;
  font-weight: 900;
}

/* buttons */
.okresowe-hero95__actions {
  margin-top: clamp(26px, 4vw, 36px);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.okresowe-hero95__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  border: 1px solid transparent;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
  will-change: transform;
  cursor: pointer;
}
.okresowe-hero95__btn.primary {
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  color: #fff;
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.28);
}
.okresowe-hero95__btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(2, 132, 199, 0.34);
}
.okresowe-hero95__btn.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.okresowe-hero95__btn.secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}
.okresowe-hero95__btn .arr {
  font-size: 20px;
  line-height: 1;
}

/* scroll cue */
.okresowe-hero95__scroll {
  margin-top: clamp(34px, 5vw, 52px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  color: #64748b;
  text-decoration: none;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease;
}
.okresowe-hero95__scroll:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.okresowe-hero95__chev {
  width: 18px;
  height: 18px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}

@media (max-width: 640px) {
  .okresowe-hero95 {
    padding-bottom: 44px;
  }
  .okresowe-hero95__btn {
    width: min(520px, 100%);
  }
}
/* tło z „celownikami” jak na screenie */
.targets-bg {
  position: relative;
  overflow: hidden;
  padding-top: 14%;
}
.targets-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22; /* widoczność */
  background:
    /* pozioma kreska krzyżyka */
    linear-gradient(rgba(12, 32, 60, 0.1) 0 0) 50% 50%/14px 1px,
    /* pionowa kreska krzyżyka */
    linear-gradient(90deg, rgba(12, 32, 60, 0.1) 0 0) 50% 50%/1px 14px,
    /* mała kropka w środku (bardzo subtelna) */
    radial-gradient(circle, rgba(12, 32, 60, 0.1) 1.1px, transparent 1.2px) 0
      0/46px 46px;
  background-size:
    46px 46px,
    46px 46px,
    46px 46px; /* gęstość siatki */
  background-repeat: repeat;
}
/* =========================================================
   SEKCJA: "Kod 95 się kończy?" (jak na screenie)
   ========================================================= */

.kod95-warning {
  padding: clamp(56px, 7vw, 92px) 16px;
  background: #ffffff;
}

.kod95-warning__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

/* ikonka w zaokrąglonym tle */
.kod95-warning__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;

  color: #ef4444; /* czerwony jak na screenie */
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.16);

  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

/* tytuł */
.kod95-warning__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0b1220;
}

/* opis */
.kod95-warning__text {
  margin: 0 auto 22px;
  max-width: 860px;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.75;
  color: #5b6676;
}

.kod95-warning__text strong {
  color: #0b1220;
  font-weight: 900;
}

/* czerwony alert box */
.kod95-warning__alert {
  margin: 0 auto;
  width: min(720px, 100%);
  padding: 14px 18px;
  border-radius: 14px;

  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #b91c1c; /* ciemniejszy czerwony */
  font-weight: 800;
  letter-spacing: 0.1px;

  position: relative;
  box-shadow: 0 18px 50px rgba(239, 68, 68, 0.08);
}

/* pionowy czerwony pasek z lewej (jak na screenie) */
.kod95-warning__alert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: #ef4444;
  opacity: 0.9;
}

/* delikatna responsywka */
@media (max-width: 560px) {
  .kod95-warning__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .kod95-warning__alert {
    padding: 13px 14px;
  }
}
/* =========================================================
   SEK CJA: Dlaczego kierowcy wybierają nas? (okresowe / Kod95)
   ========================================================= */

.why95 {
  position: relative;
  padding: clamp(56px, 7vw, 92px) clamp(16px, 5vw, 64px);
  background: #f8fafc;
  overflow: hidden;
}

/* tło z "celownikami" (+) jak na screenie */
.why95::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    /* krzyżyk: pion + poziom */
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0),
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0);
  background-size:
    12px 2px,
    2px 12px;
  background-position:
    0 0,
    0 0;
  background-repeat: repeat;
  /* rozstaw siatki */
  background-attachment: scroll;
  /* trik: przesuwamy oba „paski” w jednej komórce */
  transform: translate(6px, 6px);
  pointer-events: none;
}

/* delikatna winieta na rogach jak w UI */
.why95::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      900px 420px at 12% 0%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 0%,
      rgba(34, 197, 94, 0.08),
      transparent 60%
    );
  pointer-events: none;
}

.why95__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why95__head {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.why95__title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #0b1220;
}

.why95__sub {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 22px);
  color: #0284c7; /* niebieski jak na screenie */
  font-weight: 700;
}

/* grid kart */
.why95__grid {
  margin-top: clamp(22px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}

@media (max-width: 1100px) {
  .why95__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .why95__grid {
    grid-template-columns: 1fr;
  }
}

/* karta */
.why95__card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  padding: 26px 22px 22px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.why95__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.22);
}

/* ikonka w pastelowym kwadracie */
.why95__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f1f5f9;
  color: #0ea5e9;
}

/* warianty kolorów (jak na screenie: niebieski / fiolet / zielony / purple) */
.why95__icon--blue {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}
.why95__icon--indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}
.why95__icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.why95__icon--purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.why95__h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b1220;
}

.why95__p {
  margin: 0;
  color: #556275;
  font-size: 16px;
  line-height: 1.65;
}
/* =========================================================
   OKRESOWE / KOD95 — "Wybierasz formę szkolenia"
   ========================================================= */

.form95 {
  position: relative;
  padding: clamp(56px, 7vw, 92px) clamp(16px, 5vw, 64px);
  background: #f8fafc;
  overflow: hidden;
}

/* tło z “celownikami” (+) */
.form95::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0),
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0);
  background-size:
    12px 2px,
    2px 12px;
  background-repeat: repeat;
  transform: translate(6px, 6px);
  pointer-events: none;
}

/* delikatne glow rogi */
.form95::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      900px 420px at 12% 0%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    );
  pointer-events: none;
}

.form95__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.form95__head {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.form95__title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #0b1220;
}

.form95__sub {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  color: #556275;
  font-weight: 600;
}

/* układ 2 kafli */
.form95__grid {
  margin-top: clamp(22px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

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

/* karta */
.form95__card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  padding: clamp(26px, 3vw, 34px);
  text-align: left;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  min-height: 260px;
}

.form95__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  border-color: rgba(59, 130, 246, 0.24);
}

/* niebieska linia na górze karty */
.form95__topline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #00a3ff, #3b82f6);
}

/* tytuł w karcie */
.form95__h3 {
  margin: 8px 0 18px;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0b1220;
}

/* lista */
.form95__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.form95__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #556275;
  font-size: 18px;
  line-height: 1.55;
}

.form95__list strong {
  color: #0b1220;
  font-weight: 900;
}

/* okrągły check */
.form95__tick {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #2563eb;
  border: 2px solid rgba(37, 99, 235, 0.9);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  margin-top: 2px;
}

/* watermark */
.form95__wm {
  position: absolute;
  right: 22px;
  bottom: 10px;
  color: rgba(2, 132, 199, 0.1);
  transform: rotate(-6deg);
  pointer-events: none;
  user-select: none;
}

.form95__wm--laptop {
  right: 26px;
  bottom: 8px;
}
.form95__wm--cup {
  right: 18px;
  bottom: 10px;
  transform: rotate(8deg);
}

/* trzy kropki w prawym kaflu */
.form95__dots {
  position: absolute;
  top: 18px;
  right: 22px;
  display: flex;
  gap: 10px;
  opacity: 0.6;
}
.form95__dots span {
  width: 10px;
  height: 18px;
  border-radius: 8px;
  background: rgba(226, 232, 240, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
/* =========================================================
   OKRESOWE / KOD95 — "Kto musi zrobić szkolenie?" + "Program"
   ========================================================= */

.who95 {
  position: relative;
  padding: clamp(56px, 7vw, 92px) clamp(16px, 5vw, 64px);
  background: #f8fafc;
  overflow: hidden;
}

/* tło z “celownikami” (+) jak na screenie */
.who95::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0),
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0);
  background-size:
    12px 2px,
    2px 12px;
  background-repeat: repeat;
  transform: translate(6px, 6px);
  pointer-events: none;
}

/* delikatne rozświetlenie tła */
.who95::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      900px 420px at 12% 0%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    );
  pointer-events: none;
}

.who95__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

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

/* LEWA */
.who95__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0b1220;
}

.who95__lead {
  margin: 14px 0 16px;
  font-size: 18px;
  color: #556275;
  font-weight: 600;
}

.who95__bullets {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.who95__bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
}

.who95__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.12);
  flex: 0 0 auto;
}

.who95__help {
  display: inline-block;
  margin-top: 16px;
  color: #0ea5e9;
  font-weight: 800;
  text-decoration: none;
}

.who95__help:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* PRAWA KARTA */
.who95__card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

/* pionowy niebieski pasek po lewej */
.who95__cardAccent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #0ea5e9, #2563eb);
}

.who95__cardTitle {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
  padding-left: 8px; /* wizualnie odsuwa od paska */
}

.who95__block {
  margin-top: 14px;
  padding-left: 8px;
}

.who95__h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: #0ea5e9;
}

.who95__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #556275;
  font-size: 18px;
  line-height: 1.6;
}

.who95__p {
  margin: 0;
  color: #556275;
  font-size: 18px;
  line-height: 1.6;
}

/* zielony box na dole */
.who95__ok {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 16px;
  border-radius: 14px;
  background: #eefdf3;
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.who95__okIco {
  color: #16a34a;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.who95__okText {
  margin: 0;
  color: #166534;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.who95__okText strong {
  font-weight: 900;
}

@media (max-width: 640px) {
  .who95__bullet {
    font-size: 18px;
    padding: 16px;
  }
  .who95__list,
  .who95__p {
    font-size: 16px;
  }
}
/* =========================================================
   OKRESOWE / KOD95 — Zwolnienia i ulgi czasowe + Ważność
   ========================================================= */

.ulgi95 {
  position: relative;
  padding: clamp(44px, 6vw, 72px) clamp(16px, 5vw, 64px);
  background: #f8fafc;
  overflow: hidden;
}

/* tło z “celownikami” (+) jak na screenie */
.ulgi95::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0),
    linear-gradient(rgba(59, 130, 246, 0.1) 0 0);
  background-size:
    12px 2px,
    2px 12px;
  background-repeat: repeat;
  transform: translate(6px, 6px);
  pointer-events: none;
}

/* delikatna aura */
.ulgi95::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      900px 420px at 12% 0%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    );
  pointer-events: none;
}

.ulgi95__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
}

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

/* LEWA */
.ulgi95__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0b1220;
}

.ulgi95__miniGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.ulgi95__mini {
  border-radius: 16px;
  padding: 18px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

.ulgi95__mini--adr {
  background: #fff7ed;
  border-color: rgba(251, 146, 60, 0.22);
}

.ulgi95__mini--konw {
  background: #f0fdf4;
  border-color: rgba(34, 197, 94, 0.22);
}

.ulgi95__miniHead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ulgi95__ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.ulgi95__ico--adr {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.22);
  background: rgba(249, 115, 22, 0.08);
}

.ulgi95__ico--konw {
  color: #16a34a;
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.ulgi95__miniTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0b1220;
}

.ulgi95__miniText {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #556275;
  font-weight: 600;
}

.ulgi95__mini--adr .ulgi95__miniText strong {
  color: #c2410c;
}
.ulgi95__mini--konw .ulgi95__miniText strong {
  color: #166534;
}

/* PRAWA DUŻA KARTA */
.ulgi95__big {
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.ulgi95__bigTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.ulgi95__bigTitle {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.ulgi95__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
  white-space: nowrap;
}

.ulgi95__bigText {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #556275;
  font-weight: 600;
}

.ulgi95__bigText strong {
  color: #0b1220;
  font-weight: 900;
}

.ulgi95__bigNote {
  margin: 12px 0 0;
  font-size: 16px;
  color: #94a3b8;
  font-style: italic;
  font-weight: 600;
}
/* =========================================================
   OKRESOWE / KOD95 — Karta "Przejrzysta oferta" (799 PLN)
   ========================================================= */

.offer95 {
  position: relative;
  padding: clamp(48px, 7vw, 90px) clamp(16px, 6vw, 80px);
  background: #f8fafc;
  overflow: hidden;
}

/* delikatne tło jak w innych sekcjach (możesz usunąć, jeśli już masz globalne) */
.offer95::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 12% 0%,
      rgba(56, 189, 248, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 88% 0%,
      rgba(59, 130, 246, 0.1),
      transparent 60%
    );
  pointer-events: none;
}

.offer95__wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.offer95__card {
  width: min(1120px, 100%);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
  padding: clamp(24px, 4vw, 48px);
  text-align: center;
}

/* pill */
.offer95__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.18);
  margin: 0 auto 14px;
}

/* headings */
.offer95__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0b1220;
}

.offer95__sub {
  margin: 10px 0 0;
  font-size: clamp(16px, 2vw, 18px);
  color: #667085;
  font-weight: 650;
}

/* price row */
.offer95__price {
  margin: clamp(20px, 3.4vw, 34px) 0 0;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}

.offer95__amount {
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 1000;
  color: #0b1220;
}

.offer95__currency {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  transform: translateY(-6px);
}

.offer95__pln {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #667085;
}

.offer95__brutto {
  font-size: 16px;
  font-weight: 700;
  color: #9aa4b2;
}

/* benefits bar */
.offer95__benefits {
  margin: clamp(18px, 3vw, 26px) auto 0;
  width: min(860px, 100%);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 820px) {
  .offer95__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.offer95__benefit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  color: #334155;
  font-size: 15px;
  padding: 10px 10px;
  border-radius: 12px;
}

.offer95__check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(2, 132, 199, 0.35);
  background: rgba(14, 165, 233, 0.08);
  position: relative;
}
.offer95__check::before {
  content: "✓";
  font-size: 13px;
  font-weight: 1000;
  color: #0284c7;
  transform: translateY(-1px);
}

/* note */
.offer95__note {
  margin: 18px auto 0;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.6;
  color: #7b8798;
  font-weight: 650;
}

/* actions */
.offer95__actions {
  margin-top: clamp(18px, 3.2vw, 30px);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer95__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(15, 23, 42, 0.1);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    opacity 0.16s ease,
    background 0.16s ease;
  will-change: transform;
}

.offer95__btn:hover {
  transform: translateY(-1px);
}

.offer95__btnIco {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.offer95__btnText {
  font-size: 18px;
  color: #0b1220;
}

.offer95__btn--call {
  background: #0ea5e9;
  color: #fff;
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 18px 46px rgba(14, 165, 233, 0.24);
  min-width: min(420px, 100%);
}
.offer95__btn--call .offer95__btnText {
  color: #fff;
}
.offer95__btn--call .offer95__btnIco {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.offer95__btn--call:hover {
  box-shadow: 0 22px 56px rgba(14, 165, 233, 0.3);
}

.offer95__btn--mail {
  background: #ffffff;
  color: #0b1220;
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  min-width: min(320px, 100%);
}
.offer95__btn--mail .offer95__btnIco {
  background: rgba(14, 165, 233, 0.08);
  color: #0284c7;
}
.offer95__btn--mail:hover {
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}
/* =========================================================
   OKRESOWE / KOD95 — Sekcja B2B + KKK (2 kafelki)
   ========================================================= */

.ok95-b2b {
  position: relative;
  padding: clamp(48px, 7vw, 90px) clamp(16px, 6vw, 80px);
  background: #f8fafc;
  overflow: hidden;
}

/* jeśli masz już "celowniki/plusy" globalnie, usuń ten ::before */
.ok95-b2b::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 520px at 12% 0%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 88% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    );
}

.ok95-b2b__wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.ok95-b2b__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 26px);
  align-items: stretch;
}

@media (max-width: 980px) {
  .ok95-b2b__grid {
    grid-template-columns: 1fr;
  }
}

.ok95-b2b__card {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  padding: clamp(20px, 3.4vw, 34px);
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

/* prawy kafelek ma subtelny niebieski wash */
.ok95-b2b__card--blue {
  background:
    radial-gradient(
      120% 90% at 20% 0%,
      rgba(14, 165, 233, 0.12),
      transparent 60%
    ),
    radial-gradient(
      120% 90% at 90% 0%,
      rgba(59, 130, 246, 0.1),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(240, 249, 255, 0.92),
      rgba(255, 255, 255, 0.98)
    );
}

/* ikonka w kwadracie */
.ok95-b2b__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.ok95-b2b__icon--slate {
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ok95-b2b__icon--blue {
  background: rgba(14, 165, 233, 0.12);
  color: #2563eb;
  border: 1px solid rgba(14, 165, 233, 0.18);
}

/* typografia */
.ok95-b2b__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.ok95-b2b__text {
  margin: 0 0 18px;
  color: #667085;
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}

/* lista z checkami (jak na screenie) */
.ok95-b2b__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ok95-b2b__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #334155;
  font-weight: 750;
}

.ok95-b2b__list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  margin-top: 2px;
  background: rgba(14, 165, 233, 0.1);
  border: 2px solid rgba(14, 165, 233, 0.35);
  color: #0284c7;
  font-weight: 950;
  font-size: 13px;
}

/* link na dole lewego kafla */
.ok95-b2b__link {
  margin: 22px 0 0;
  font-weight: 800;
}

.ok95-b2b__link a {
  color: #0284c7;
  text-decoration: none;
}

.ok95-b2b__link a:hover {
  text-decoration: underline;
}

/* wewnętrzna ramka na prawym kaflu */
.ok95-b2b__callout {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  max-width: 520px;
}

.ok95-b2b__calloutHead {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0b1220;
  font-weight: 950;
  font-size: 18px;
  margin-bottom: 8px;
}

.ok95-b2b__q {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.18);
  color: #0284c7;
}

.ok95-b2b__calloutText {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
}
/* =========================================================
   OKRESOWE / FAQ (Accordion)
   ========================================================= */

.ok95-faq {
  padding: clamp(56px, 7vw, 90px) 16px;
  background: #f8fafc;
}

.ok95-faq__wrap {
  max-width: 980px;
  margin: 0 auto;
}

.ok95-faq__title {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #0b1220;
}

.ok95-faq__list {
  display: grid;
  gap: 18px;
}

.ok95-faq__item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.ok95-faq__q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;

  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 850;
  color: #0b1220;
  text-align: left;
}

.ok95-faq__q:focus {
  outline: 3px solid rgba(14, 165, 233, 0.25);
  outline-offset: 2px;
}

.ok95-faq__chev {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: transform 0.22s ease;
}

.ok95-faq__item.is-open .ok95-faq__chev {
  transform: rotate(180deg);
}

.ok95-faq__a {
  padding: 0 22px 22px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.ok95-faq__a p {
  margin: 0;
  max-width: 82ch;
}
/* =========================================================
   OKRESOWE / CONTACT BAR (dark card)
   ========================================================= */

.ok95-contactbar {
  padding: clamp(44px, 6vw, 80px) 16px;
  background: #f7fafc;
}

.ok95-contactbar__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.ok95-contactbar__top {
  position: relative;
  text-align: center;
  margin-bottom: 22px;
  padding-top: 10px;
}

.ok95-contactbar__ghost {
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  font-weight: 950;
  font-size: clamp(44px, 7.2vw, 86px);
  letter-spacing: -0.04em;
  color: rgba(15, 23, 42, 0.06);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.ok95-contactbar__kicker {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 26px);
  font-weight: 900;
  color: #0b1220;
}

.ok95-contactbar__card {
  background:
    radial-gradient(
      1200px 400px at 60% -20%,
      rgba(56, 189, 248, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, #0b1325 0%, #0a1830 55%, #091329 100%);
  border-radius: 22px;
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
}

.ok95-contactbar__left {
  min-width: 240px;
}

.ok95-contactbar__brand {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  font-size: 18px;
  margin-bottom: 8px;
}

.ok95-contactbar__title {
  color: #0ea5e9;
  font-weight: 850;
  font-size: 18px;
  margin-bottom: 10px;
}

.ok95-contactbar__meta {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 15px;
}

.ok95-contactbar__meta .sep {
  color: rgba(255, 255, 255, 0.35);
}

.ok95-contactbar__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ok95-contactbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  min-width: 250px;
}

.ok95-contactbar__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.22);
}

.ok95-contactbar__btn:focus {
  outline: 3px solid rgba(14, 165, 233, 0.28);
  outline-offset: 2px;
}

.ok95-contactbar__btn--phone {
  background: linear-gradient(180deg, #0ea5e9 0%, #0b95d6 100%);
  border-color: rgba(14, 165, 233, 0.45);
  color: #fff;
}

.ok95-contactbar__btn--phone:hover {
  background: linear-gradient(180deg, #18b6ff 0%, #0ea5e9 100%);
  border-color: rgba(14, 165, 233, 0.6);
}

.ok95-contactbar__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ok95-contactbar__btn--phone .ok95-contactbar__icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
}

.ok95-contactbar__btntext {
  display: grid;
  line-height: 1.1;
}

.ok95-contactbar__label {
  font-size: 12px;
  font-weight: 750;
  opacity: 0.82;
}

.ok95-contactbar__value {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* responsive */
@media (max-width: 900px) {
  .ok95-contactbar__card {
    grid-template-columns: 1fr;
  }
  .ok95-contactbar__actions {
    justify-content: flex-start;
  }
  .ok95-contactbar__btn {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
  .ok95-contactbar__ghost {
    white-space: normal;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ok95-contactbar__value {
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }
}
/* =========================
   KWALIFIKACJA – STYL JAK NA SCREENACH
   ========================= */

:root {
  --kwal-bg: #f6fbff;
  --kwal-text: #0d1424;
  --kwal-muted: #5a6476;
  --kwal-border: #e6eef7;
  --kwal-blue: #0b78ff;
  --kwal-blue2: #00a3ff;
  --kwal-card: #ffffff;
  --kwal-shadow: 0 18px 50px rgba(13, 20, 36, 0.08);
  --kwal-radius: 22px;
}

.kwal-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.kwal-center {
  text-align: center;
}

.kwal-title {
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--kwal-text);
}
.kwal-title--xl {
  font-size: clamp(30px, 4.2vw, 54px);
}
.kwal-title--left {
  text-align: left;
}

.kwal-sub {
  margin: 12px auto 0;
  max-width: 820px;
  color: var(--kwal-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}
.kwal-sub--left {
  margin-left: 0;
  margin-right: 0;
  max-width: 560px;
}

.kwal-accent {
  background: linear-gradient(90deg, var(--kwal-blue), var(--kwal-blue2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kwal-section {
  position: relative;
  padding: clamp(44px, 6vw, 80px) 0;
  background: #fff;
}
.kwal-section--soft {
  background: var(--kwal-bg);
  /* plusy/celowniki jak na screenach */
  background-image:
    linear-gradient(rgba(180, 205, 235, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 205, 235, 0.25) 1px, transparent 1px),
    radial-gradient(
      circle at 12% 20%,
      rgba(11, 120, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(0, 163, 255, 0.12),
      transparent 42%
    ),
    radial-gradient(
      circle at 78% 80%,
      rgba(11, 120, 255, 0.1),
      transparent 45%
    ),
    radial-gradient(circle at 18% 82%, rgba(0, 163, 255, 0.08), transparent 48%);
  background-size:
    48px 48px,
    48px 48px,
    auto,
    auto,
    auto,
    auto;
  background-position:
    0 0,
    0 0,
    center,
    center,
    center,
    center;
}

/* ---------------- HERO ---------------- */
.kwal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--kwal-bg);
  /* plusy/celowniki */
  background-image:
    linear-gradient(rgba(180, 205, 235, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 205, 235, 0.25) 1px, transparent 1px),
    radial-gradient(
      circle at 15% 30%,
      rgba(11, 120, 255, 0.22),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 163, 255, 0.18),
      transparent 48%
    ),
    radial-gradient(
      circle at 82% 80%,
      rgba(11, 120, 255, 0.14),
      transparent 52%
    );
  background-size:
    48px 48px,
    48px 48px,
    auto,
    auto,
    auto;
}
.kwal-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}
.kwal-hero__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
}
.kwal-hero__h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 18px 0 10px;
  color: var(--kwal-text);
}
.kwal-hero__lead {
  margin: 0;
  max-width: 560px;
  color: rgba(13, 20, 36, 0.55);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.6;
}
.kwal-hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.kwal-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 120, 255, 0.2);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  color: #0b4dff;
  font-weight: 600;
  font-size: 14px;
}
.kwal-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--kwal-blue), var(--kwal-blue2));
  box-shadow: 0 0 0 4px rgba(11, 120, 255, 0.12);
}

.kwal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.kwal-btn:active {
  transform: translateY(1px);
}

.kwal-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--kwal-blue), var(--kwal-blue2));
  box-shadow: 0 16px 40px rgba(11, 120, 255, 0.25);
}
.kwal-btn--primary:hover {
  box-shadow: 0 18px 44px rgba(11, 120, 255, 0.3);
}

.kwal-btn--ghost {
  color: var(--kwal-text);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(13, 20, 36, 0.1);
}
.kwal-btn--ghost:hover {
  box-shadow: 0 10px 26px rgba(13, 20, 36, 0.1);
}

.kwal-hero__cities {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.kwal-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(13, 20, 36, 0.45);
  font-weight: 600;
}
.kwal-city__ico {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #0b78ff;
}

.kwal-hero__right {
  display: flex;
  justify-content: flex-end;
}
.kwal-ring {
  width: min(320px, 44vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.3)
    ),
    radial-gradient(circle at center, rgba(11, 120, 255, 0.15), transparent 55%);
  box-shadow: 0 30px 80px rgba(11, 120, 255, 0.12);
  display: grid;
  place-items: center;
  position: relative;
}
.kwal-ring::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px solid rgba(11, 120, 255, 0.18);
}
.kwal-ring::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(11, 120, 255, 0.1);
}
.kwal-ring__inner {
  text-align: center;
}
.kwal-ring__num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--kwal-blue);
  letter-spacing: -0.02em;
}
.kwal-ring__txt {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(13, 20, 36, 0.45);
}

/* ---------------- STATS ---------------- */
.kwal-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.kwal-stat {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 20, 36, 0.08);
  border-radius: var(--kwal-radius);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 48px rgba(13, 20, 36, 0.06);
  text-align: left;
}
.kwal-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #2b6cff;
}
.kwal-stat__num {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 900;
  color: var(--kwal-text);
  letter-spacing: -0.02em;
}
.kwal-stat__txt {
  margin-top: 6px;
  color: rgba(13, 20, 36, 0.55);
  font-weight: 600;
}

/* ---------------- EKOSYSTEM ---------------- */
.kwal-eco {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}
.kwal-eco__card {
  background: var(--kwal-card);
  border: 1px solid rgba(13, 20, 36, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(13, 20, 36, 0.06);
  position: relative;
  overflow: hidden;
}
.kwal-eco__card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(11, 120, 255, 0.12),
    transparent 45%
  );
  pointer-events: none;
}
.kwal-eco__card--wide {
  grid-column: 1 / 2;
}
.kwal-eco__card--blue {
  background: linear-gradient(
    140deg,
    rgba(11, 120, 255, 0.95),
    rgba(0, 163, 255, 0.78)
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.kwal-eco__card--blue::after {
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 255, 255, 0.2),
    transparent 55%
  );
}
.kwal-eco__title {
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: inherit;
  position: relative;
  z-index: 1;
}
.kwal-eco__text {
  margin: 0;
  color: rgba(13, 20, 36, 0.58);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.kwal-eco__card--blue .kwal-eco__text {
  color: rgba(255, 255, 255, 0.85);
}

.kwal-eco__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #2b6cff;
  position: relative;
  z-index: 1;
}
.kwal-eco__icon--dark {
  background: rgba(13, 20, 36, 0.06);
  color: #0d1424;
}
.kwal-eco__card--blue .kwal-eco__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.kwal-tags {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.kwal-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 20, 36, 0.06);
  color: rgba(13, 20, 36, 0.7);
  font-weight: 700;
  font-size: 13px;
}
.kwal-eco__card--blue .kwal-tag {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.kwal-eco__link {
  margin-top: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* ---------------- WARIANTY ---------------- */
.kwal-variants {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kwal-variant {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 20, 36, 0.1);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(13, 20, 36, 0.06);
  text-align: left;
}
.kwal-variant--active {
  border-color: rgba(11, 120, 255, 0.35);
  box-shadow: 0 22px 70px rgba(11, 120, 255, 0.14);
  position: relative;
}
.kwal-variant--active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, var(--kwal-blue), var(--kwal-blue2));
}
.kwal-variant__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 20, 36, 0.06);
  color: rgba(13, 20, 36, 0.68);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.kwal-variant__badge--blue {
  background: rgba(11, 120, 255, 0.12);
  color: #0b78ff;
}
.kwal-variant__title {
  margin: 14px 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.kwal-variant__text {
  margin: 0 0 16px;
  color: rgba(13, 20, 36, 0.55);
  line-height: 1.7;
}
.kwal-variant__label {
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(13, 20, 36, 0.65);
  font-size: 12px;
}
.kwal-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.kwal-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(13, 20, 36, 0.7);
  font-weight: 700;
}
.kwal-check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #0b78ff;
  flex: 0 0 auto;
  margin-top: 1px;
}
.kwal-check--blue {
  background: linear-gradient(
    90deg,
    rgba(11, 120, 255, 0.2),
    rgba(0, 163, 255, 0.16)
  );
  color: #0b78ff;
}

/* ---------------- EGZAMIN + PROGRAM ---------------- */
.kwal-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}
.kwal-examCards {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.kwal-examCard {
  background: #fff;
  border: 1px solid rgba(13, 20, 36, 0.1);
  border-radius: 18px;
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 14px 36px rgba(13, 20, 36, 0.06);
}
.kwal-examCard__title {
  font-weight: 900;
  color: var(--kwal-text);
  font-size: 18px;
}
.kwal-examCard__meta {
  margin-top: 6px;
  color: rgba(13, 20, 36, 0.55);
  font-weight: 700;
}
.kwal-examCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13, 20, 36, 0.06);
  color: rgba(13, 20, 36, 0.45);
}

.kwal-program {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kwal-programItem {
  background: #fff;
  border: 1px solid rgba(13, 20, 36, 0.1);
  border-radius: 16px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 36px rgba(13, 20, 36, 0.06);
}
.kwal-programIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #0b78ff;
  flex: 0 0 auto;
}
.kwal-programText {
  font-weight: 800;
  color: rgba(13, 20, 36, 0.78);
}

/* ---------------- FORMY ---------------- */
.kwal-forms {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.kwal-formCard {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 20, 36, 0.1);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(13, 20, 36, 0.06);
  text-align: left;
  min-height: 220px;
}
.kwal-formCard__title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.kwal-formCard__text {
  margin: 0;
  color: rgba(13, 20, 36, 0.55);
  line-height: 1.8;
  font-size: 17px;
}

/* ---------------- FAQ ---------------- */
.kwal-faq {
  margin: 22px auto 0;
  width: min(860px, 100%);
  display: grid;
  gap: 14px;
}
.kwal-faqItem {
  background: #fff;
  border: 1px solid rgba(13, 20, 36, 0.1);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(13, 20, 36, 0.06);
}
.kwal-faqItem summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 18px;
  font-weight: 900;
  color: rgba(13, 20, 36, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.kwal-faqItem summary::-webkit-details-marker {
  display: none;
}
.kwal-faqItem summary::after {
  content: "+";
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #0b78ff;
  font-size: 22px;
  font-weight: 900;
  flex: 0 0 auto;
}
.kwal-faqItem[open] summary::after {
  content: "–";
}
.kwal-faqBody {
  padding: 0 18px 18px;
  color: rgba(13, 20, 36, 0.62);
  line-height: 1.8;
  font-weight: 600;
}

/* ---------------- FINAL CTA ---------------- */
.kwal-final {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--kwal-bg);
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(11, 120, 255, 0.2),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 25%,
      rgba(0, 163, 255, 0.18),
      transparent 48%
    ),
    radial-gradient(
      circle at 70% 85%,
      rgba(11, 120, 255, 0.12),
      transparent 55%
    );
}
.kwal-final__inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}
.kwal-final__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--kwal-text);
}
.kwal-final__sub {
  margin: 14px auto 0;
  max-width: 780px;
  color: rgba(13, 20, 36, 0.55);
  line-height: 1.7;
  font-size: 18px;
}
.kwal-final__contacts {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kwal-final__sep {
  color: rgba(13, 20, 36, 0.25);
  font-weight: 900;
}
.kwal-contactPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 20, 36, 0.1);
  text-decoration: none;
  color: rgba(13, 20, 36, 0.85);
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(13, 20, 36, 0.06);
}
.kwal-contactPill__ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(11, 120, 255, 0.1);
  color: #0b78ff;
}
.kwal-final__btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kwal-blue), var(--kwal-blue2));
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(11, 120, 255, 0.26);
}
.kwal-final__btn:hover {
  box-shadow: 0 22px 60px rgba(11, 120, 255, 0.3);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .kwal-hero__inner {
    grid-template-columns: 1fr;
  }
  .kwal-hero__right {
    justify-content: center;
    order: -1;
  }
  .kwal-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .kwal-eco {
    grid-template-columns: 1fr;
  }
  .kwal-eco__card--wide {
    grid-column: auto;
  }
  .kwal-variants {
    grid-template-columns: 1fr;
  }
  .kwal-two {
    grid-template-columns: 1fr;
  }
  .kwal-program {
    grid-template-columns: 1fr;
  }
  .kwal-forms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .kwal-container {
    width: calc(100% - 28px);
  }
  .kwal-hero__cities {
    gap: 12px;
  }
  .kwal-btn {
    width: 100%;
  }
}
.aktualnosci_wszystkie_title {
  padding-top: 5%;
}
@media (max-width: 540px) {
  .aktualnosci_wszystkie_title {
    padding-top: 6%;
  }
}
@media (max-width: 460px) {
  .aktualnosci_wszystkie_title {
    padding-top: 7%;
  }
}
@media (max-width: 390px) {
  .aktualnosci_wszystkie_title {
    padding-top: 9%;
  }
}
@media (max-width: 310px) {
  .aktualnosci_wszystkie_title {
    padding-top: 12%;
  }
}
/* CSS modala kontaktu */
.cmodal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.cmodal.is-open {
  display: block;
}
.cmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}
.cmodal__dialog {
  position: relative;
  width: min(520px, calc(100% - 24px));
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 22px 20px 18px;
}
.cmodal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.cmodal__icon {
  font-size: 34px;
  margin-bottom: 8px;
}
.cmodal__title {
  margin: 0 0 6px 0;
}
.cmodal__text {
  margin: 0 0 14px 0;
  color: #475569;
}
.cmodal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.mobilka1 {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 520px) {
  .mobilka1 {
    flex-direction: column-reverse;
  }
}
/* ===== Consent / Polityka prywatności ===== */
.contact-consent{
  margin: 14px 0 10px;
}

.consent{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(148,163,184,.45);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}

.consent input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.consent-box{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgba(100,116,139,.7);
  background: #fff;
  margin-top: 2px;
  display: grid;
  place-items: center;
  transition: .15s ease;
}

.consent-box::after{
  content:"";
  width: 10px;
  height: 6px;
  border-left: 2px solid #0f172a;
  border-bottom: 2px solid #0f172a;
  transform: rotate(-45deg);
  opacity: 0;
  transition: .15s ease;
  margin-top: -1px;
}

.consent input:checked + .consent-box{
  border-color: rgba(15,23,42,.9);
  background: rgba(15,23,42,.06);
}

.consent input:checked + .consent-box::after{
  opacity: 1;
}

.consent input:focus-visible + .consent-box{
  outline: 3px solid rgba(59,130,246,.35);
  outline-offset: 2px;
}

.consent-text{
  font-size: 14px;
  line-height: 1.35;
  color: rgba(15,23,42,.92);
}

.consent-text a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.consent-hint{
  margin: 8px 2px 0;
  font-size: 12px;
  color: rgba(100,116,139,.95);
}
/* ===== Polityka prywatności – jasna wersja ===== */
    .privacy-legal-page{
      --pl-bg:#f6f8fb;
      --pl-card:#ffffff;
      --pl-card-2:#f9fbff;
      --pl-text:#172033;
      --pl-muted:#5f6b85;
      --pl-line:#dbe3f0;
      --pl-line-strong:#c9d5e8;
      --pl-accent:#1d4ed8;
      --pl-accent-2:#0f766e;
      --pl-accent-soft:#e8f0ff;
      --pl-shadow:0 20px 55px rgba(18, 38, 63, .08);
      --pl-radius:22px;
      color:var(--pl-text);
      background:linear-gradient(180deg,#f8fbff 0%, #f4f7fb 100%);
      padding:32px 16px 56px;
    }

    .privacy-legal-page *{
      box-sizing:border-box;
    }

    .privacy-legal-page a{
      color:var(--pl-accent);
      text-decoration:none;
    }

    .privacy-legal-page a:hover{
      text-decoration:underline;
    }

    .privacy-legal-wrap{
      max-width:1200px;
      margin:0 auto;
    }

    .privacy-legal-topnote{
      text-align:center;
      color:var(--pl-muted);
      margin:0 0 20px;
      font-size:.95rem;
      line-height:1.7;
    }

    .privacy-legal-hero{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at top left, rgba(29,78,216,.16), transparent 34%),
        radial-gradient(circle at top right, rgba(15,118,110,.12), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
      border:1px solid rgba(201,213,232,.9);
      border-radius:30px;
      box-shadow:var(--pl-shadow);
      padding:34px 28px;
      margin-bottom:24px;
    }

    .privacy-legal-badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }

    .privacy-legal-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:var(--pl-accent-soft);
      color:var(--pl-accent);
      font-size:.9rem;
      font-weight:700;
      border:1px solid rgba(29,78,216,.12);
    }

    .privacy-legal-title{
      margin:0;
      font-size:clamp(1.9rem, 3vw, 3rem);
      line-height:1.15;
      letter-spacing:-.02em;
      text-align:center;
    }

    .privacy-legal-subtitle{
      margin:18px auto 0;
      max-width:860px;
      text-align:center;
      color:var(--pl-muted);
      font-size:1.03rem;
      line-height:1.8;
    }

    .privacy-legal-layout{
      display:grid;
      grid-template-columns:300px minmax(0, 1fr);
      gap:24px;
      align-items:start;
    }

    .privacy-legal-sidebar{
      position:sticky;
      top:24px;
    }

    .privacy-card{
      background:var(--pl-card);
      border:1px solid var(--pl-line);
      border-radius:var(--pl-radius);
      box-shadow:var(--pl-shadow);
    }

    .privacy-toc{
      padding:22px 20px;
    }

    .privacy-toc h2{
      margin:0 0 14px;
      font-size:1.08rem;
    }

    .privacy-toc ol{
      margin:0;
      padding-left:20px;
    }

    .privacy-toc li{
      margin:0 0 10px;
      color:var(--pl-muted);
      line-height:1.45;
    }

    .privacy-toc a{
      color:var(--pl-text);
      font-weight:600;
    }

    .privacy-toc-note{
      margin-top:18px;
      padding:14px 15px;
      border-radius:16px;
      background:#f7fafc;
      border:1px solid var(--pl-line);
      color:var(--pl-muted);
      font-size:.94rem;
      line-height:1.6;
    }

    .privacy-content{
      display:flex;
      flex-direction:column;
      gap:18px;
      min-width:0;
    }

    .privacy-section{
      padding:26px 24px;
      overflow:hidden;
    }

    .privacy-section h2{
      margin:0 0 14px;
      font-size:1.35rem;
      line-height:1.3;
    }

    .privacy-section h3{
      margin:26px 0 12px;
      font-size:1.08rem;
      line-height:1.45;
      color:#0f172a;
    }

    .privacy-section p{
      margin:0 0 14px;
      line-height:1.8;
    }

    .privacy-section ul{
      margin:0 0 14px 0;
      padding-left:22px;
      line-height:1.8;
    }

    .privacy-section li{
      margin-bottom:8px;
    }

    .privacy-intro{
      display:grid;
      grid-template-columns:1.3fr .7fr;
      gap:18px;
      align-items:start;
    }

    .privacy-highlight{
      padding:18px 18px;
      background:linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
      border:1px solid var(--pl-line);
      border-radius:18px;
    }

    .privacy-highlight__label{
      font-size:.8rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:var(--pl-accent);
      font-weight:800;
      margin-bottom:8px;
    }

    .privacy-highlight__text{
      margin:0;
      color:var(--pl-text);
      line-height:1.7;
    }

    .privacy-table-wrap{
      width:100%;
      overflow-x:auto;
      margin-top:12px;
      border:1px solid var(--pl-line);
      border-radius:18px;
      background:#fff;
    }

    .privacy-table{
      width:100%;
      min-width:680px;
      border-collapse:collapse;
    }

    .privacy-table th,
    .privacy-table td{
      border:1px solid var(--pl-line);
      padding:14px 16px;
      vertical-align:top;
      line-height:1.7;
    }

    .privacy-table th{
      background:#eef4fb;
      color:#111827;
      text-align:center;
      font-weight:800;
    }

    .privacy-table td{
      background:#fff;
    }

    .privacy-footnote{
      margin-top:8px;
      color:var(--pl-muted);
      font-size:.95rem;
      line-height:1.7;
    }

    .privacy-grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }

    .privacy-callout{
      margin-top:6px;
      padding:16px 18px;
      border-radius:18px;
      border:1px solid rgba(15,118,110,.16);
      background:linear-gradient(180deg, rgba(15,118,110,.05), rgba(15,118,110,.02));
    }

    .privacy-callout strong{
      color:#0f766e;
    }

    .privacy-footer{
      padding:22px 24px;
      text-align:center;
      background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
    }

    .privacy-footer p{
      margin:0;
      line-height:1.8;
    }

    .privacy-muted{
      color:var(--pl-muted);
    }

    .privacy-center{
      text-align:center;
    }

    @media (max-width: 1024px){
      .privacy-legal-layout{
        grid-template-columns:1fr;
      }

      .privacy-legal-sidebar{
        position:static;
      }
    }

    @media (max-width: 768px){
      .privacy-legal-page{
        padding:18px 10px 40px;
      }

      .privacy-legal-hero{
        padding:24px 18px;
        border-radius:24px;
      }

      .privacy-section{
        padding:20px 16px;
      }

      .privacy-intro,
      .privacy-grid-2{
        grid-template-columns:1fr;
      }

      .privacy-legal-title{
        font-size:1.7rem;
      }

      .privacy-table{
        min-width:620px;
      }
    }

    /* =========================
   UDT EXAM / QUESTION UI
   ========================= */

.udt-tests-page {
  --udt-bg: #f6f8fc;
  --udt-surface: #ffffff;
  --udt-surface-2: #f8fbff;
  --udt-border: #dbe4f0;
  --udt-border-strong: #bfd0e6;
  --udt-text: #16202f;
  --udt-text-soft: #5f6b7a;
  --udt-primary: #2563eb;
  --udt-primary-soft: #eaf2ff;
  --udt-success: #1f9d55;
  --udt-warning: #d97706;
  --udt-danger: #dc2626;
  --udt-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --udt-radius-xl: 22px;
  --udt-radius-lg: 16px;
  --udt-radius-md: 12px;
}

/* kontener sekcji */
.udt-tests-page .container {
  max-width: 980px;
}

/* uniwersalna karta */
.udt-card {
  background: var(--udt-surface);
  border: 1px solid var(--udt-border);
  border-radius: var(--udt-radius-xl);
  box-shadow: var(--udt-shadow);
}

/* =========================
   HEADER EGZAMINU
   ========================= */

.udt-exam-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.2rem;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.udt-exam-head-main {
  flex: 1;
  min-width: 0;
}

.udt-exam-head h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.1;
  color: var(--udt-text);
}

.udt-exam-progress-label {
  margin: 0 0 0.8rem;
  color: var(--udt-text-soft);
  font-size: 0.98rem;
}

.udt-progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #e7eef8;
  border: 1px solid #d7e3f2;
  position: relative;
}

.udt-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  transition: width 0.3s ease;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.35);
}

/* =========================
   TIMER
   ========================= */

.udt-timer {
  min-width: 220px;
  text-align: center;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #eff6ff;
  border: 1px solid #cfe0ff;
  color: #12315f;
  font-size: 0.98rem;
  font-weight: 600;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.udt-timer strong {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #0f172a;
}

.udt-timer.is-warning {
  background: #fff8eb;
  border-color: #f7d7a4;
  color: #8a4b00;
}

.udt-timer.is-warning strong {
  color: #8a4b00;
}

.udt-timer.is-critical {
  background: #fff0f0;
  border-color: #ffcaca;
  color: #a61b1b;
  animation: udtPulseDanger 1s ease-in-out infinite;
}

.udt-timer.is-critical strong {
  color: #a61b1b;
}

@keyframes udtPulseDanger {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.10);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.06);
  }
}

/* =========================
   PYTANIE
   ========================= */

.udt-question {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.04), transparent 35%),
    var(--udt-surface);
}

.udt-question-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--udt-primary-soft);
  border: 1px solid #d7e6ff;
  color: #24446f;
  font-size: 0.92rem;
  font-weight: 500;
}

.udt-question h2 {
  margin: 0 0 1.5rem;
  color: var(--udt-text);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.45;
  font-weight: 700;
}

/* =========================
   FORMULARZ / ODPOWIEDZI
   ========================= */

.udt-answer-form {
  margin-top: 0.2rem;
}

.udt-answers {
  display: grid;
  gap: 0.95rem;
}

.udt-answer {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border: 1.5px solid var(--udt-border);
  border-radius: var(--udt-radius-lg);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.udt-answer:hover {
  border-color: #9dbcf5;
  background: #fbfdff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.udt-answer input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 0.1rem 0 0;
  border-radius: 50%;
  border: 2px solid #90a4bf;
  background: #fff;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.udt-answer input[type="radio"]::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--udt-primary);
  transform: scale(0);
  transition: transform 0.18s ease;
}

.udt-answer input[type="radio"]:checked {
  border-color: var(--udt-primary);
}

.udt-answer input[type="radio"]:checked::after {
  transform: scale(1);
}

.udt-answer span {
  display: block;
  color: var(--udt-text);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.udt-answer.is-selected,
.udt-answer:has(input[type="radio"]:checked) {
  border-color: var(--udt-primary);
  background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.10);
}

.udt-answer.is-selected span,
.udt-answer:has(input[type="radio"]:checked) span {
  color: #0f2f5f;
}

/* numerowane odpowiedzi – efekt wizualny */
.udt-answers .udt-answer::before {
  /* content: ""; */
  /* flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: #d4deeb; */
  transition: background 0.2s ease, transform 0.2s ease;
}

.udt-answers .udt-answer.is-selected::before,
.udt-answers .udt-answer:has(input[type="radio"]:checked)::before {
  background: var(--udt-primary);
  transform: scale(1.15);
}

/* =========================
   ACTIONS
   ========================= */

.udt-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.udt-actions .btn {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.udt-actions .btn:hover {
  transform: translateY(-1px);
}

.udt-actions .btn-primary {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

/* =========================
   DODATKOWE STANY
   ========================= */

.udt-question:focus-within {
  border-color: #c6d7f1;
  box-shadow:
    var(--udt-shadow),
    0 0 0 4px rgba(37, 99, 235, 0.06);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .udt-exam-head {
    flex-direction: column;
    align-items: stretch;
  }

  .udt-timer {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .udt-question {
    padding: 1.1rem;
  }

  .udt-exam-head {
    padding: 1.1rem;
  }

  .udt-question h2 {
    font-size: 1.18rem;
    line-height: 1.5;
  }

  .udt-answer {
    padding: 0.9rem 0.9rem;
    gap: 0.75rem;
  }

  .udt-answer span {
    font-size: 0.97rem;
  }

  .udt-actions {
    justify-content: stretch;
  }

  .udt-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .udt-timer strong {
    font-size: 1.2rem;
  }
}
.small-displays {
  display: none
}
.big-displays {
  display: flex;
}
@media (max-width: 700px) {
  .small-displays {
    display: flex;
  }
  .big-displays {
    display: none;
  }
}
/* Kolory odpowiedzi po sprawdzeniu */
.udt-answers.is-checked .udt-answer {
  opacity: 1;
}

.udt-answers.is-checked .udt-answer.is-correct-answer {
  border-color: #22c55e;
  background: #f0fdf4;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.udt-answers.is-checked .udt-answer.is-correct-answer span {
  color: #166534;
  font-weight: 600;
}

.udt-answers.is-checked .udt-answer.is-correct-answer input[type="radio"] {
  border-color: #22c55e;
  background: #dcfce7;
}

.udt-answers.is-checked .udt-answer.is-correct-answer::before {
  background: #22c55e;
}

/* Wszystkie błędne odpowiedzi na czerwono */
.udt-answers.is-checked .udt-answer.is-wrong-answer {
  border-color: #ef4444;
  background: #fef2f2;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.08);
}

.udt-answers.is-checked .udt-answer.is-wrong-answer span {
  color: #991b1b;
}

.udt-answers.is-checked .udt-answer.is-wrong-answer input[type="radio"] {
  border-color: #ef4444;
  background: #fee2e2;
}

.udt-answers.is-checked .udt-answer.is-wrong-answer::before {
  background: #ef4444;
}

/* po sprawdzeniu brak hovera jak przy aktywnym wyborze */
.udt-answers.is-checked .udt-answer:hover {
  transform: none;
  box-shadow: none;
}

/* opcjonalnie: zablokowany kursor po sprawdzeniu */
.udt-answers.is-checked .udt-answer {
  cursor: default;
}