/* =========================================================
   RolaTrans — design system
   Tokeny wg handoffu. Akcent (--rt-accent) wstrzykuje PHP
   z ustawień motywu — zmiana koloru nie wymaga ruszania CSS.
   ========================================================= */

:root {
  /* Marka */
  --rt-navy: #282164;
  --rt-navy-2: #3a3080;

  /* Akcent — nadpisywany inline przez PHP (rt_enqueue_assets) */
  --rt-accent: #598fe2;
  --rt-accent-strong: #456fb0;
  --rt-accent-12: rgba(89, 143, 226, .12);
  --rt-accent-24: rgba(89, 143, 226, .24);

  /* Zieleń ESG — celowo niezależna od akcentu: to sygnał eco */
  --rt-eco-from: #147a49;
  --rt-eco-to: #1fb26a;
  --rt-eco-light: #8ff0c0;

  /* Tekst i tła */
  --rt-ink: #282164;
  --rt-muted: #5f6480;
  --rt-line: #e5e6f0;
  --rt-bg: #ffffff;
  --rt-bg-2: #f5f5fa;

  /* Layout */
  --rt-container: 1240px;
  --rt-gutter: clamp(18px, 4vw, 56px);
  --rt-rhythm: clamp(56px, 8vw, 104px);

  /* Promienie */
  --rt-r-card: 18px;
  --rt-r-panel: 20px;
  --rt-r-btn: 12px;
  --rt-r-input: 10px;

  /* Cienie */
  --rt-shadow-card: 0 22px 44px -26px rgba(40, 33, 100, .35);
  --rt-shadow-panel: 0 30px 60px -40px rgba(40, 33, 100, .4);
  --rt-shadow-cta: 0 14px 34px -12px color-mix(in srgb, var(--rt-accent) 80%, transparent);

  /* Typografia */
  --rt-font-head: 'Sora', system-ui, sans-serif;
  --rt-font-body: 'Manrope', system-ui, sans-serif;
  --rt-font-mono: 'Space Mono', ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--rt-font-body);
  color: var(--rt-ink);
  background: var(--rt-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }
/* Sticky header nie może zasłaniać celu kotwicy */
:target { scroll-margin-top: 88px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rt-accent-strong); }

/* Focus widoczny wszędzie — wymóg dostępności, w makiecie go nie było */
:focus-visible {
  outline: 3px solid var(--rt-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

.rt-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.rt-container {
  max-width: var(--rt-container);
  margin-inline: auto;
  padding-inline: var(--rt-gutter);
}

.rt-section { padding-block: var(--rt-rhythm); }
.rt-section--alt {
  background: var(--rt-bg-2);
  border-block: 1px solid var(--rt-line);
}
.rt-section--navy { background: var(--rt-navy); color: #fff; }

.rt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--rt-min, 280px), 1fr));
  gap: var(--rt-gap, 20px);
}
.rt-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ---------- Typografia ---------- */
.rt-eyebrow {
  font-family: var(--rt-font-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--rt-accent-strong);
  margin: 0 0 14px;
}

/* Skale H1 są dwie — hero strony głównej jest większy niż hero OSKP.
   Wartości wprost z makiet, nie uśredniaj ich. */
.rt-h1 {
  font-family: var(--rt-font-head);
  font-weight: 800;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0 0 16px;
}
.rt-hero .rt-h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  margin-bottom: 20px;
}

.rt-h2 {
  font-family: var(--rt-font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 14px;
}

.rt-h3 {
  font-family: var(--rt-font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.rt-lead {
  color: var(--rt-muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.rt-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 52px); }
.rt-head--center { margin-inline: auto; text-align: center; }
.rt-head > :last-child { margin-bottom: 0; }

/* Treść redakcyjna (polityka prywatności itp.) */
.rt-prose { max-width: 760px; }
.rt-prose h2 { font-family: var(--rt-font-head); font-weight: 700; font-size: 26px; margin: 32px 0 12px; letter-spacing: -.02em; }
.rt-prose h3 { font-family: var(--rt-font-head); font-weight: 700; font-size: 20px; margin: 24px 0 10px; }
.rt-prose p, .rt-prose li { color: var(--rt-muted); font-size: 16px; line-height: 1.7; }
.rt-prose ul, .rt-prose ol { padding-left: 20px; }
.rt-prose a { color: var(--rt-accent-strong); }

/* ---------- Przyciski ---------- */
.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: var(--rt-r-btn);
  font-family: var(--rt-font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, transform .2s, box-shadow .2s;
}
.rt-btn:hover { transform: translateY(-1px); }

.rt-btn--primary {
  background: var(--rt-accent);
  border-color: var(--rt-accent);
  color: #fff;
  box-shadow: var(--rt-shadow-cta);
}
.rt-btn--primary:hover { background: var(--rt-accent-strong); border-color: var(--rt-accent-strong); }

.rt-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.rt-btn--outline:hover { background: rgba(255, 255, 255, .12); }

.rt-btn--ghost {
  background: #fff;
  color: var(--rt-navy);
  border-color: var(--rt-line);
}
.rt-btn--ghost:hover { border-color: var(--rt-accent); }

.rt-btn--white { background: #fff; color: var(--rt-eco-from); border-color: #fff; }
.rt-btn--white:hover { background: #f2fbf6; }

/* Mniejszy wariant ma własny promień (10px) — tak jest w makiecie */
.rt-btn--sm { min-height: 44px; padding: 11px 18px; font-size: 14px; border-radius: 10px; }

/* ---------- Karty ---------- */
.rt-card {
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-card);
  padding: 30px;
}
.rt-card--hover { transition: transform .2s, box-shadow .2s; }
.rt-card--hover:hover { transform: translateY(-4px); box-shadow: var(--rt-shadow-card); }

.rt-card__text {
  color: var(--rt-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.rt-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--rt-accent-12);
  color: var(--rt-accent-strong);
  margin-bottom: 20px;
}

.rt-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rt-accent-strong);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}
.rt-arrow-link::after { content: '→'; transition: transform .2s; }
.rt-arrow-link:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.rt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rt-line);
}
.rt-header__bar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.rt-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.rt-header__logo img { height: 30px; width: auto; }
.rt-header__right { margin-left: auto; display: flex; align-items: center; gap: 16px; }

.rt-nav { display: flex; align-items: center; gap: 22px; margin-left: 8px; }
.rt-nav ul { list-style: none; display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; }
.rt-nav__link {
  color: var(--rt-ink);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.rt-nav__link:hover { color: var(--rt-accent-strong); }
.rt-nav__link.is-current { color: var(--rt-accent-strong); font-weight: 700; }

.rt-lang { position: relative; display: flex; align-items: center; }
.rt-lang__icon { position: absolute; left: 11px; pointer-events: none; color: #5c6b80; display: flex; }
.rt-lang__chevron { position: absolute; right: 9px; pointer-events: none; color: #5c6b80; display: flex; }
.rt-lang select {
  appearance: none;
  font-family: var(--rt-font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--rt-navy);
  background: var(--rt-bg-2);
  border: 1px solid var(--rt-line);
  border-radius: 9px;
  padding: 9px 30px 9px 32px;
  cursor: pointer;
}
/* Tylko PL na tym etapie — przełącznik czeka na treści EN/DE/FR */
.rt-lang[data-single] select { cursor: default; }

.rt-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rt-line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.rt-burger__box {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rt-navy);
  box-shadow: 0 -6px 0 var(--rt-navy), 0 6px 0 var(--rt-navy);
}

.rt-menu {
  border-top: 1px solid var(--rt-line);
  background: #fff;
  padding: 14px var(--rt-gutter) 22px;
}
.rt-menu[hidden] { display: none; }
.rt-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
/* Celowo `ul a`, nie `a`: inaczej ten selektor nadpisuje display:inline-flex
   przycisku CTA pod listą i tekst przycisku ucieka do lewej. */
.rt-menu ul a {
  display: block;
  color: var(--rt-ink);
  font-weight: 600;
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid var(--rt-bg-2);
}
.rt-menu ul li:last-child a { border-bottom: 0; }
.rt-menu .rt-btn { margin-top: 12px; width: 100%; }

@media (max-width: 940px) {
  .rt-nav, .rt-header__cta { display: none; }
  .rt-burger { display: inline-flex; }
}

/* ---------- Breadcrumb ---------- */
.rt-crumbs {
  background: var(--rt-bg-2);
  border-bottom: 1px solid var(--rt-line);
  font-size: 13.5px;
  color: var(--rt-muted);
}
.rt-crumbs .rt-container { padding-block: 12px; }
.rt-crumbs a { color: var(--rt-muted); text-decoration: none; }
.rt-crumbs a:hover { color: var(--rt-accent-strong); }
.rt-crumbs span[aria-current] { color: var(--rt-navy); font-weight: 600; }
.rt-crumbs__sep { margin-inline: 8px; opacity: .5; }

/* ---------- Pigułka ---------- */
.rt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--rt-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--rt-accent) 40%, transparent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.rt-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rt-accent); }

/* ---------- Hero ---------- */
.rt-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 760px);
  background-color: var(--rt-navy);
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.rt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 11, 22, .86) 0%, rgba(6, 11, 22, .66) 34%, rgba(6, 11, 22, .22) 62%, rgba(6, 11, 22, .42) 100%),
    linear-gradient(180deg, rgba(6, 11, 22, .15) 55%, rgba(6, 11, 22, .6) 100%);
}
.rt-hero .rt-container { position: relative; z-index: 2; width: 100%; padding-block: clamp(60px, 10vw, 120px); }
.rt-hero__inner { max-width: 720px; }
.rt-hero .rt-h1 { color: #fff; }
.rt-hero__sub {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 36px;
}
.rt-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Wzór indygo — hero OSKP bez zdjęcia */
.rt-pattern {
  background-color: var(--rt-navy);
  background-image: repeating-linear-gradient(48deg, var(--rt-navy), var(--rt-navy) 22px, var(--rt-navy-2) 22px, var(--rt-navy-2) 44px);
}

/* ---------- Statystyki ---------- */
.rt-stats { background: var(--rt-bg-2); border-bottom: 1px solid var(--rt-line); }
.rt-stats .rt-container {
  padding-block: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.rt-stat { text-align: center; }
.rt-stat__value {
  font-family: var(--rt-font-head);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--rt-navy);
  line-height: 1;
  letter-spacing: -.03em;
}
.rt-stat__dot { color: var(--rt-accent); }
.rt-stat__label { margin-top: 10px; color: var(--rt-muted); font-weight: 600; font-size: 15px; }

/* ---------- ESG ---------- */
.rt-esg {
  background: linear-gradient(135deg, var(--rt-eco-from) 0%, var(--rt-eco-to) 100%);
  color: #fff;
}
.rt-esg .rt-container { padding-block: clamp(56px, 8vw, 96px); }
.rt-esg .rt-eyebrow { color: rgba(255, 255, 255, .8); }
.rt-esg__text { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, .9); margin: 0 0 28px; max-width: 520px; }
.rt-esg__badge {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--rt-r-panel);
  padding: 34px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
  max-width: 300px;
  margin-inline: auto;
}
.rt-esg__medal {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--rt-eco-from);
  display: flex; align-items: center; justify-content: center;
}
.rt-esg__badge-title { font-family: var(--rt-font-head); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.rt-esg__badge-sub { font-weight: 700; font-size: 15px; color: rgba(255, 255, 255, .9); margin-top: 2px; }
.rt-esg__badge-text { margin-top: 14px; font-size: 13px; color: rgba(255, 255, 255, .75); line-height: 1.5; }

/* ---------- Chipy ---------- */
.rt-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.rt-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rt-bg-2);
  border: 1px solid var(--rt-line);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--rt-navy);
}
.rt-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rt-accent); }
.rt-chip--strong { background: var(--rt-navy); border-color: var(--rt-navy); color: #fff; font-weight: 700; }

/* ---------- Placeholder (materiały do dosłania) ---------- */
.rt-ph {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--rt-r-panel);
  background: repeating-linear-gradient(45deg, #eef1f6, #eef1f6 16px, #e6eaf1 16px, #e6eaf1 32px);
  border: 1px solid var(--rt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rt-ph__label {
  font-family: var(--rt-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rt-muted);
  border: 1px dashed #b9c2d0;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .7);
  text-align: center;
}
.rt-ph__pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--rt-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--rt-accent) 25%, transparent);
}
.rt-ph__pin--home { background: var(--rt-navy); box-shadow: 0 0 0 5px rgba(40, 33, 100, .2); width: 16px; height: 16px; }
.rt-map-img {
  width: 100%;
  border-radius: var(--rt-r-panel);
  border: 1px solid var(--rt-line);
}

.rt-eyebrow--loose { margin-bottom: 20px; }

.rt-ph--note {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--rt-font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  border: 1px dashed rgba(255, 255, 255, .3);
  padding: 4px 10px;
  border-radius: 5px;
  z-index: 3;
}
.rt-ph--note-center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  text-align: center;
  max-width: calc(100% - 32px);
}

/* ---------- Baner (OSKP / kariera) ---------- */
.rt-banner { color: #fff; }
.rt-banner .rt-container {
  padding-block: clamp(44px, 6vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.rt-banner__body { max-width: 660px; }
.rt-banner__text { color: rgba(255, 255, 255, .78); font-size: 17px; margin: 0; max-width: 560px; }
.rt-banner .rt-h2 { font-size: clamp(26px, 3.8vw, 40px); }
.rt-badge-new {
  display: inline-block;
  background: var(--rt-accent);
  color: #fff;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.rt-careers {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.rt-careers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 33, 100, .94) 0%, rgba(40, 33, 100, .74) 100%);
}
.rt-careers .rt-container { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 96px); }
.rt-careers .rt-eyebrow { color: var(--rt-eco-light); }

/* ---------- Trust ---------- */
.rt-logos { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.rt-logo {
  width: 118px; height: 52px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--rt-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rt-font-mono);
  font-size: 10px;
  color: var(--rt-muted);
  letter-spacing: .08em;
  padding: 8px;
}
.rt-logo img { max-height: 100%; width: auto; object-fit: contain; }

.rt-certs { display: flex; flex-wrap: wrap; gap: 12px; }
.rt-cert {
  display: flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--rt-navy);
}
.rt-cert .rt-icon { color: var(--rt-accent-strong); }

.rt-quote { background: #fff; border: 1px solid var(--rt-line); border-radius: var(--rt-r-panel); padding: 36px; }
.rt-quote__mark { color: var(--rt-accent); font-family: var(--rt-font-head); font-size: 44px; line-height: .6; font-weight: 800; }
.rt-quote blockquote {
  font-family: var(--rt-font-head);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.45;
  color: var(--rt-navy);
  margin: 6px 0 24px;
  letter-spacing: -.01em;
}
.rt-quote__who { display: flex; align-items: center; gap: 14px; }
.rt-quote__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rt-bg-2);
  border: 1px solid var(--rt-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rt-font-mono);
  font-size: 9px;
  color: var(--rt-muted);
  overflow: hidden;
  flex-shrink: 0;
}
.rt-quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.rt-quote__name { font-weight: 700; color: var(--rt-navy); font-size: 15px; }
.rt-quote__role { color: var(--rt-muted); font-size: 13.5px; }

/* ---------- Formularz ---------- */
.rt-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: start; }
.rt-contact-list { display: flex; flex-direction: column; gap: 16px; }
.rt-contact-item { display: flex; align-items: center; gap: 12px; color: var(--rt-navy); font-weight: 600; text-decoration: none; }
.rt-contact-item__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--rt-bg-2);
  color: var(--rt-accent-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.rt-form-card {
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--rt-shadow-panel);
}
.rt-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rt-form__field { display: flex; flex-direction: column; gap: 7px; }
.rt-form__field--full { grid-column: 1 / -1; }
.rt-form__label { font-weight: 700; font-size: 13px; color: var(--rt-navy); }
.rt-form__label .rt-req { color: var(--rt-accent-strong); }
.rt-form input,
.rt-form select,
.rt-form textarea {
  border: 1px solid var(--rt-line);
  background: var(--rt-bg-2);
  border-radius: var(--rt-r-input);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--rt-ink);
  width: 100%;
}
.rt-form input:focus,
.rt-form select:focus,
.rt-form textarea:focus { border-color: var(--rt-accent); background: #fff; }
.rt-form button[type='submit'] { grid-column: 1 / -1; margin-top: 6px; width: 100%; }

.rt-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--rt-muted);
  line-height: 1.5;
}
.rt-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }

/* Honeypot — musi być niewidoczny dla człowieka, ale wypełnialny dla bota */
.rt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rt-note { grid-column: 1 / -1; border-radius: var(--rt-r-input); padding: 12px 14px; font-size: 14px; font-weight: 600; }
.rt-note--error { background: #fdecec; border: 1px solid #f5c2c2; color: #8a1f1f; }

.rt-thanks { text-align: center; padding: 40px 10px; }
.rt-thanks__icon {
  width: 66px; height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--rt-accent-12);
  color: var(--rt-accent);
  display: flex; align-items: center; justify-content: center;
}
.rt-thanks h3 { font-family: var(--rt-font-head); font-weight: 700; font-size: 24px; margin: 0 0 8px; color: var(--rt-navy); }
.rt-thanks p { color: var(--rt-muted); font-size: 16px; margin: 0; }

@media (max-width: 520px) {
  .rt-form { grid-template-columns: 1fr; }
}

/* ---------- Stopka ---------- */
.rt-footer { background: var(--rt-navy); color: rgba(255, 255, 255, .72); }
.rt-footer__top {
  padding-block: clamp(52px, 7vw, 80px) 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.rt-footer__logo { height: 30px; width: auto; margin-bottom: 18px; }
.rt-footer p { font-size: 14.5px; line-height: 1.7; margin: 0; }
.rt-footer__contact { margin-top: 14px; }
.rt-footer a { color: inherit; text-decoration: none; }
.rt-footer a:hover { color: #fff; }
.rt-footer__mail { color: var(--rt-eco-light); }
.rt-footer__title { color: #fff; font-family: var(--rt-font-head); font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.rt-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.rt-footer__langs { display: flex; gap: 10px; margin-bottom: 22px; font-size: 14px; font-weight: 700; }
.rt-footer__langs .is-active { color: #fff; }
.rt-footer__langs span { opacity: .4; }
.rt-social { display: flex; gap: 10px; }
.rt-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.rt-social a:hover { border-color: rgba(255, 255, 255, .5); }
.rt-footer__bar { border-top: 1px solid rgba(255, 255, 255, .12); }
.rt-footer__bar .rt-container {
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* =========================================================
   OSKP
   ========================================================= */

.rt-oskp-hero { position: relative; color: #fff; background-size: cover; background-position: center; overflow: hidden; }
.rt-oskp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 54, .42) 0%, rgba(20, 15, 54, .8) 100%);
}
.rt-oskp-hero .rt-container { position: relative; z-index: 2; max-width: 1000px; padding-block: clamp(54px, 9vw, 104px); }
.rt-oskp-hero .rt-h1 { color: #fff; margin-bottom: 14px; }
.rt-oskp-hero__tagline {
  font-family: var(--rt-font-head);
  font-weight: 600;
  color: var(--rt-accent);
  font-size: clamp(17px, 2.4vw, 22px);
  margin: 0 0 20px;
  letter-spacing: -.01em;
}
.rt-oskp-hero__text { color: rgba(255, 255, 255, .82); font-size: clamp(16px, 2vw, 18px); line-height: 1.6; max-width: 680px; margin: 0 0 34px; }

.rt-why { --rt-min: 200px; --rt-gap: 18px; }
.rt-why__card {
  background: var(--rt-bg-2);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-card);
  padding: 28px;
  text-align: center;
}
.rt-why__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--rt-line);
  color: var(--rt-accent-strong);
  display: flex; align-items: center; justify-content: center;
}
.rt-why__card h3 { font-size: 17px; margin: 0; }
.rt-why__card p { color: var(--rt-muted); font-size: 14px; margin: 8px 0 0; line-height: 1.5; }

.rt-scope { --rt-min: 180px; --rt-gap: 14px; list-style: none; margin: 0; padding: 0; }
.rt-scope__item {
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
}
.rt-scope__check {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--rt-accent-12);
  color: var(--rt-accent-strong);
  display: flex; align-items: center; justify-content: center;
}
.rt-scope__label { font-family: var(--rt-font-head); font-weight: 600; font-size: 15px; color: var(--rt-navy); line-height: 1.25; }

/* ---------- Cennik ---------- */
.rt-prices { --rt-min: 300px; --rt-gap: 24px; }
.rt-price {
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-panel);
  overflow: hidden;
}
.rt-price__head {
  background: var(--rt-bg-2);
  padding: 22px 26px;
  border-bottom: 1px solid var(--rt-line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rt-price__head h3 { margin: 0; }
.rt-price__icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--rt-accent-12);
  color: var(--rt-accent-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rt-price--dark .rt-price__head { background: var(--rt-navy); }
.rt-price--dark .rt-price__head h3 { color: #fff; }
.rt-price--dark .rt-price__icon { background: var(--rt-accent-24); color: #fff; }

.rt-price__list { list-style: none; margin: 0; padding: 8px 26px 20px; }
.rt-price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rt-bg-2);
}
.rt-price__row:last-child { border-bottom: 0; }
.rt-price__name { font-weight: 600; font-size: 15.5px; color: var(--rt-navy); }
.rt-price__value { font-family: var(--rt-font-head); font-weight: 800; font-size: 18px; color: var(--rt-accent-strong); white-space: nowrap; }

.rt-price-note {
  margin-top: 28px;
  background: var(--rt-bg-2);
  border: 1px solid var(--rt-line);
  border-radius: 16px;
  padding: 24px clamp(20px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.rt-price-note p {
  margin: 0;
  color: var(--rt-navy);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rt-price-note .rt-icon { color: var(--rt-accent-strong); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.rt-faq { max-width: 820px; margin-inline: auto; }
.rt-faq__list { display: flex; flex-direction: column; gap: 12px; }
.rt-faq__item { background: #fff; border: 1px solid var(--rt-line); border-radius: 14px; overflow: hidden; }
.rt-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--rt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--rt-navy);
  line-height: 1.35;
  min-height: 64px;
}
.rt-faq__chevron { display: inline-flex; flex-shrink: 0; color: var(--rt-accent-strong); transition: transform .2s ease; }
.rt-faq__item[open] .rt-faq__chevron { transform: rotate(180deg); }
/* Domyślny trójkącik <summary> — zastępujemy go własnym chevronem */
.rt-faq__q::-webkit-details-marker { display: none; }
.rt-faq__q::marker { content: ''; }
.rt-faq__q { list-style: none; }
.rt-faq__a { padding: 0 22px 22px; color: var(--rt-muted); font-size: 15px; line-height: 1.65; }
.rt-faq__a p { margin: 0; }

/* ---------- Kontakt OSKP ---------- */
.rt-oskp-contact { --rt-min: 300px; --rt-gap: 28px; align-items: stretch; }
.rt-info-list { display: flex; flex-direction: column; gap: 16px; }
.rt-info {
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rt-info__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--rt-accent-12);
  color: var(--rt-accent-strong);
  display: flex; align-items: center; justify-content: center;
}
.rt-info__label { font-weight: 700; color: var(--rt-navy); font-size: 15px; margin-bottom: 3px; }
.rt-info__value { color: var(--rt-muted); font-size: 15px; line-height: 1.5; }
.rt-info__value a { color: var(--rt-accent-strong); font-weight: 600; text-decoration: none; }
.rt-info__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2px; }
.rt-info__actions .rt-btn { flex: 1; min-width: 140px; }

.rt-map {
  border-radius: var(--rt-r-panel);
  overflow: hidden;
  border: 1px solid var(--rt-line);
  min-height: 420px;
  background: var(--rt-bg-2);
}
.rt-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Pasek „Zadzwoń" (mobile) ---------- */
.rt-callbar {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 60;
  background: var(--rt-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--rt-font-head);
  font-weight: 700;
  font-size: 17px;
  padding: 16px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 34px -8px rgba(11, 30, 57, .5);
}
.rt-callbar__spacer { display: none; height: 74px; }

@media (max-width: 940px) {
  .rt-callbar { display: flex; }
  .rt-callbar__spacer { display: block; }
}
