html,
body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(11, 28, 45, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background: #ffb703;
  color: #0b1c2d;
  padding: 9px 16px; /* MNIEJSZY */
  border-radius: 6px; /* bardziej nowoczesny */
  text-decoration: none;
  font-weight: 600;
  font-size: 14px; /* delikatnie mniejszy tekst */
  transition: all 0.2s ease; /* smooth */
}

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

.hero {
  margin-top: 0;
  padding-top: 160px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.services {
  padding: 80px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #f1f3f6;
  padding: 30px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

.cta {
  background: #0b1c2d;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.site-footer {
  background: #081421;
  color: #aaa;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.logo img {
  height: 140px;
}
.site-header .logo {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
}

.site-header .logo img {
  display: block;
  height: 140px;
  width: auto;
}
.site-header .logo {
  background-color: #ffffff !important;
}
.site-header .logo {
  display: inline-flex;
  align-items: center;
}

.site-header .logo img {
  height: 140px;
  width: auto;
  display: block;
}
.brand {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: #0b1c2d;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav .menu {
    flex-direction: column;
    gap: 25px;
  }

  .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
.why-us {
  background: #0b1c2d;
  color: #ffffff;
  padding: 100px 0;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
}

.why-item h3 {
  margin-bottom: 15px;
  color: #ffb703;
}

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

.contact {
  padding: 100px 0;
  background: #f5f7fa;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 40px auto 0;
}

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

.contact input,
.contact textarea {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.services-page {
  padding: 80px 0;
}

.service-block {
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-block h2 {
  margin-bottom: 15px;
  color: #0b1c2d;
}

.service-block ul {
  margin-top: 15px;
}

.service-block li {
  margin-bottom: 8px;
}

.about-page {
  padding: 80px 0;
}

.about-block {
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-block h2 {
  margin-bottom: 15px;
  color: #0b1c2d;
}

.about-block p {
  margin-bottom: 15px;
}

.about-block ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-block li {
  margin-bottom: 8px;
}

.contact-page {
  padding: 80px 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-success {
  background: #e6f7ec;
  color: #146c43;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
}

.form-error {
  background: #fdecea;
  color: #842029;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
}

h1,
h2,
h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

p {
  max-width: 720px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-hero p {
  color: #d0d8e0;
  font-size: 18px;
  margin: 0 auto;
}

/* ===== SEKCJE – ODDECH ===== */

section {
  padding: 100px 0;
}

section + section {
  border-top: 1px solid #eef1f4;
}

/* ===== TŁA SEKCJI ===== */

.cta {
  background: linear-gradient(180deg, #0f2a44 0%, #0f2a44 100%);
  color: #ffffff;
}

.service-block,
.about-block {
  background: #f5f7fa;
  padding: 48px;
  border-radius: 14px;
  margin-bottom: 60px;
}

section h2 {
  margin-bottom: 40px;
}

section h1 {
  margin-bottom: 20px;
}

.page-hero {
  background: #ffffff;
  color: #0b1c2d;
  padding: 120px 0 100px;
  text-align: center;
}

.page-hero h1 {
  color: #0b1c2d;
}

.page-hero p {
  color: #4a5568;
  font-size: 18px;
  margin: 0 auto;
}

.services {
  background: #f5f7fa;
  padding: 120px 0;
}

.services h1,
.services h2 {
  color: #0b1c2d;
}

.services p {
  color: #4a5568;
}

/* =========================
   STRONA: USŁUGI – PORZĄDEK
========================= */

.services-page {
  background: #ffffff;
  padding: 120px 0;
}

.services-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* pojedynczy kafelek usługi */
.service-item {
  background: #f5f7fa;
  padding: 56px;
  border-radius: 16px;
  text-align: center;
}

/* nagłówki */
.service-item h2 {
  color: #0b1c2d;
  margin-bottom: 20px;
}

/* opis */
.service-item p {
  color: #4a5568;
  margin: 0 auto 30px;
}

/* lista */
.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li {
  margin-bottom: 10px;
  color: #1a1a1a;
  position: relative;
  padding-left: 18px;
}

/* subtelna kropka zamiast brutalnych punktów */
.service-item li::before {
  content: "•";
  color: #ffb703;
  position: absolute;
  left: 0;
}

/* =========================
   STRONA: USŁUGI – HERO
========================= */

.services-page {
  background: linear-gradient(180deg, #0f2a44 0%, #123a5e 100%);
  padding: 140px 0;
  text-align: center;
}

.services-page h1,
.services-page h2 {
  color: #ffffff;
}

.services-page p {
  color: #d0d8e0;
  max-width: 720px;
  margin: 0 auto;
}

/* USUNIĘCIE BIAŁEGO PASA OD WP ADMIN BAR */
html {
  margin-top: 0 !important;
}

body.admin-bar .site-header {
  top: 0;
}
.site-header a {
  color: #ffffff;
}

.site-header a:hover {
  color: #ffb703;
}
/* ===== STICKY HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* stan po scrollu */
.site-header.scrolled {
  background: rgba(11, 28, 45, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ===== RESET BIAŁEJ LINII U GÓRY ===== */
html,
body {
  margin: 0;
  padding: 0;
}

/* OFFSET POD FIXED HEADER */
body {
  padding-top: 90px; /* dopasowane do wysokości headera */
}
/* ===== USUŃ PUSTY ELEMENT NAD HEADEREM (WP FIX) ===== */
body > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* NA 100%: brak białej linii */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #0b1c2d;
}

/* ===== NASZE USŁUGI ===== */

.services {
  background: #f5f7fa;
  padding: 120px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #0b1c2d;
}

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

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO ===== */

.hero {
  background: linear-gradient(180deg, #0b1c2d 0%, #0f2a44 100%);
  padding: 160px 0 140px;
  color: #ffffff;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  color: #d0d8e0;
  margin-bottom: 36px;
}

.hero {
  position: relative;
}
.services h2 {
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  background: #ffb703;
  border-radius: 2px;
}

.services {
  text-align: center;
}

.services-grid {
  text-align: left; /* żeby kafelki NIE były wyśrodkowane */
}
.services h2 {
  margin-bottom: 60px;
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px; /* BYŁO za duże – teraz subtelnie */
  background: linear-gradient(
    to bottom,
    rgba(11, 28, 45, 0) 0%,
    rgba(11, 28, 45, 0.6) 40%,
    #f8fafc 100%
  );
}

/* HERO – główny przycisk */
.hero-cta {
  background-color: #ffb703;
  color: #000000;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.35);
}

/* hover delikatny – NIE zmienia koloru tekstu */
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 183, 3, 0.45);
}
/* HEADER – przycisk "Zapytaj o wycenę" */
/* HEADER – przycisk "Zapytaj o wycenę" */
.site-header .btn-primary {
  color: #000000;
}
.hero-content {
  text-align: center;
}

.hero-content > * {
  margin-left: auto;
  margin-right: auto;
}

.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #071b2e 0%, #0b2a44 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 30px 25px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtelna linia premium */
.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 193, 7, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item h3 {
  color: #ffc107;
  margin-bottom: 12px;
}

.why-item p {
  color: #e5e5e5;
  line-height: 1.6;
}

/* === CONTACT CTA === */

.contact-cta {
  background: linear-gradient(180deg, #0b1c2d 0%, #0f2a44 100%);
  padding: 120px 0;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.contact-card h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-card .cta-main {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 32px;
}

.contact-card .cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* === SCROLL REVEAL ANIMATION === */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  transition-delay: 0.15s;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.contact-card {
  opacity: 1 !important;
}

.hero {
  position: relative;
  min-height: 90vh;

  background-image: url("../img/hero-tir-logistyka.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 40, 0.75) 0%,
    rgba(8, 20, 40, 0.85) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 20, 40, 0.8) 0%,
    rgba(8, 20, 40, 0.9) 100%
  );
}
.hero-content h1 {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero-cta:hover {
  box-shadow: 0 10px 30px rgba(255, 196, 0, 0.35);
}
.btn-primary:hover {
  background-color: #000;
  color: #ffc400;
}

/* HEADER CTA – Zapytaj o wycenę */
.header-cta {
  background-color: #ffc400;
  color: #000;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* HOVER – czarny + żółty glow */
.header-cta:hover {
  background-color: #000;
  color: #ffc400;

  /* delikatne rozświetlenie */
  box-shadow:
    0 0 0 2px rgba(255, 196, 0, 0.25),
    0 8px 24px rgba(255, 196, 0, 0.35);

  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.services {
  padding-top: 100px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.service-card {
  padding: 28px 30px;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* === FIX: przesunięcie tekstu wyżej w kafelkach usług === */
.services .service-card {
  padding-top: 24px !important;
  padding-bottom: 32px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}
.services .service-card h3,
.services .service-card p {
  margin-top: 0 !important;
}

.services .service-card p {
  line-height: 1.45;
}
/* Ikony usług */
.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
  color: #ffc400;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffc400;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon svg {
  stroke: #ffb000;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* === Wyśrodkowanie zawartości kart usług === */
.services .service-card {
  text-align: center;
  align-items: center;
}

.service-icon {
  margin-top: 4px;
}

/* Kafelki usług jako linki */
.services .service-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.services .service-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ================================
   SERVICE ICON – SUBTLE HOVER FX
================================ */

/* Ikona – stan początkowy */
.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: #ffc400;
  fill: none;
  stroke-width: 2;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

/* Hover na CAŁĄ kartę */
.service-card:hover .service-icon svg {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 0 8px rgba(255, 196, 0, 0.6));
}

.why-item {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ================================
   WHY US – CENTER TITLES
================================ */

.why-item h3 {
  text-align: center;
}

.why-item {
  text-align: center;
}

section {
  margin: 0;
}

section > .container {
  padding: 80px 0;
}

/* FIX: usunięcie pustej przestrzeni pod headerem */
.site-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.site-header::after,
header::after {
  display: none !important;
  content: none !important;
}

.hero,
.contact-cta {
  margin-top: 0;
}

.site-footer {
  background: linear-gradient(180deg, #061a2d, #041321);
  color: #cfd8e3;
  padding: 40px 0;
  font-size: 14px;
}

.site-footer a {
  color: #cfd8e3;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffc400;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-col p {
  margin: 6px 0 0;
  opacity: 0.8;
}

.footer-contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  text-align: right;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

/* ==================================================
   O NAS – FINAL, CZYSTY, PROFESJONALNY LAYOUT
================================================== */

/* --- SEKCJA GŁÓWNA --- */
.about-section {
  background: linear-gradient(180deg, #0b1f33 0%, #071726 100%);
}

/* --- HERO --- */
.about-hero {
  padding: 140px 20px 120px;
  text-align: center;
}

.about-title {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.about-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* --- CONTENT WRAPPER --- */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px; /* 🔑 WYRAŹNY ODSTĘP MIĘDZY KAFELKAMI */
  padding: 0 20px 120px;
}

/* --- KAFELKI --- */
.about-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;

  background: #ffffff;
  color: #0b1c2d;
  padding: 56px 56px 60px;
  border-radius: 16px;

  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  text-align: center;
}

/* --- NAGŁÓWKI W KAFELKACH --- */
.about-card h2 {
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 600;
  color: #0b1c2d;
}

/* --- TEKST --- */
.about-card p {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.75;
}

/* --- LISTA --- */
.about-list {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 560px;
  text-align: left;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15.5px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffb703;
  font-weight: 700;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 20px 100px;
  }

  .about-card {
    padding: 40px 32px 44px;
  }

  .about-card h2 {
    font-size: 23px;
  }
}

/* ==================================================
   O NAS – REALNY ODSTĘP MIĘDZY KAFELKAMI (FIX)
================================================== */

.about-card {
  margin-bottom: 72px; /* 🔥 REALNY, WIDOCZNY ODSTĘP */
}

/* ostatni kafelek bez marginesu */
.about-card:last-child {
  margin-bottom: 0;
}

/* =========================================
   O NAS – CENTROWANIE + ODCHUDZENIE KART
========================================= */

/* pełne wyrównanie osi strony */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* karty dokładnie na środku */
.about-card {
  margin-left: auto;
  margin-right: auto;
}

/* lżejsze karty (–10% wysokości) */
.about-card {
  padding: 42px 44px; /* było 48px */
}

/* nagłówki – mniej ciężkie */
.about-card h2 {
  margin-bottom: 16px;
}

/* tekst – ciaśniej, bardziej premium */
.about-card p {
  margin-bottom: 14px;
}

/* wyraźny, elegancki odstęp między kartami */
.about-card {
  margin-bottom: 72px;
}

.about-card:last-child {
  margin-bottom: 0;
}
/* === O NAS – FINAL FIX (STABILNY) === */

.about-card {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px; /* REALNY ODSTĘP */
  padding: 40px 44px; /* lżejsze o ~10% */
  max-width: 880px;
  text-align: center;
}
/* === O NAS – TRUE CENTER FIX === */

.about-card {
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  max-width: 880px;
  padding: 40px 44px;
  margin-bottom: 72px;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  text-align: center;
}

/* =========================
   ABOUT – TYPOGRAFIA PRO
========================= */

/* karta */
.about-card {
  text-align: center;
}

/* nagłówki */
.about-card h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

/* LEAD – pierwszy akapit */
.about-card p:first-of-type {
  font-size: 17px;
  font-weight: 500;
  color: #1f2937;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* reszta tekstu */
.about-card p:not(:first-of-type) {
  text-align: left; /* 🔑 czytelność */
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #374151;
}

/* listy – też lewa kolumna */
.about-list {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: left;
}

.about-list li {
  line-height: 1.6;
}

/* =========================
   ABOUT – SEPARATORY PREMIUM
========================= */

.about-card h2 {
  position: relative;
  padding-bottom: 18px;
}

.about-card h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #ffb703, #ffc94a);
  border-radius: 2px;
}

/* LEAD – pierwsze zdanie */
.about-card p:first-of-type {
  font-size: 17.5px;
  font-weight: 500;
  color: #111827;
  line-height: 1.6;
}

/* zwykły tekst */
.about-card p {
  font-size: 15.5px;
  color: #374151;
}

.about-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffb703;
  font-weight: 700;
}

.about-card h2::after {
  width: 64px; /* było za krótkie */
  height: 3px;
  margin: 18px auto 0;
  background: #ffb703; /* czysty brand */
  border-radius: 3px;
}
/* CAŁY TEKST W KARTACH – JEDEN TON */
.about-card p,
.about-card li {
  color: #111827; /* głęboka, profesjonalna czerń */
  font-size: 15.8px;
  line-height: 1.75;
}

/* pierwszy akapit – delikatnie mocniejszy */
.about-card p:first-of-type {
  font-weight: 500;
}

/* =========================
   ABOUT – FORCE TYPOGRAPHY
========================= */

.about-section .about-card p,
.about-section .about-card li {
  color: #111827 !important;
  font-size: 15.8px;
  line-height: 1.75;
  opacity: 1 !important;
}

.about-card p:first-of-type {
  font-weight: 500;
}
.about-card p {
  margin-bottom: 18px;
}

.hero {
  align-items: flex-start;
  padding-top: 120px;
}

/* =========================
   CTA – KONTAKT (FIX)
========================= */

.contact-cta {
  background: linear-gradient(180deg, #071b2e 0%, #0b2a44 100%);
  padding: 120px 20px;
}

.contact-cta .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Nagłówek */
.contact-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

/* Opis */
.contact-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 24px;
}

/* Przycisk */
.contact-cta .btn-primary {
  background-color: #ffc400;
  color: #000000;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255, 196, 0, 0.35);
  transition: all 0.3s ease;
}

.contact-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 196, 0, 0.45);
}

/* =========================
   HERO 1 – PREMIUM INTRO
========================= */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 20px 120px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 28px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
}

/* subtelny separator */
.hero::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: #ffb703;
  border-radius: 2px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 140px 20px 100px;
  }

  .hero p {
    font-size: 16px;
  }
}

section:empty,
div:empty {
  display: none !important;
}
/* =========================
   HERO – FINAL (BLUE FIX)
========================= */

.hero {
  position: relative;
  min-height: 90vh;

  background-image: url("../img/hero-tir-logistyka.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  overflow: hidden;
}

/* NIEBIESKI OVERLAY – KLUCZ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 20, 40, 0.88) 0%,
    rgba(6, 20, 40, 0.92) 100%
  );
  z-index: 1;
}

/* treść nad overlay */
.hero-inner,
.hero-content {
  position: relative;
  z-index: 2;
}

/* delikatny zoom */
.hero {
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}

/* =========================
   SERVICES – FIX KOLORÓW TEKSTU
========================= */

.services-page .service-item {
  background: #ffffff;
  color: #111827; /* głęboka czerń */
}

.services-page .service-item h2 {
  color: #0b1c2d; /* brandowy granat */
}

.services-page .service-item p {
  color: #1f2937; /* czytelny czarny */
}

.services-page .service-item li {
  color: #111827;
}

/* punkty listy – żółty brand */
.services-page .service-item li::before {
  color: #ffb703;
}

/* =========================
   SCROLL REVEAL – SERVICES
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   SERVICES – IKONY SVG
========================= */

.service-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffb703;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

/* hover */
.service-item:hover .service-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.6));
}

/* =========================
   FIX: TEKST W USŁUGACH
========================= */

.services-page .service-block {
  background: #ffffff;
}

.services-page .service-block h2 {
  color: #0b1c2d !important;
}

.services-page .service-block p {
  color: #374151 !important;
}

.services-page .service-block li {
  color: #111827 !important;
}
/* =========================
   SAFE REVEAL (bez znikania)
========================= */

.reveal {
  opacity: 1;
  transform: translateY(24px);
}

.reveal.active {
  transform: translateY(0);
  transition: transform 0.6s ease;
}
/* SVG – lekki lift */
.services-page .service-block:hover .service-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.6));
}
/* =========================
   SERVICES HERO – DARK
========================= */

.services-page {
  background: linear-gradient(180deg, #0b1c2d 0%, #0f2a44 100%);
  padding: 140px 0 120px;
  text-align: center;
}

/* nagłówek */
.services-page h1 {
  color: #ffffff;
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 20px;
}

/* opis pod nagłówkiem */
.services-page > .container > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   SERVICE BLOCK – PREMIUM
========================= */

.service-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 56px 56px 60px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

/* odstęp od tła */
.services-wrapper {
  margin-top: 100px;
}

/* =========================
   SERVICE TEXT HIERARCHY
========================= */

.service-block h2 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #0b1c2d;
}

.service-block p {
  font-size: 16px;
  line-height: 1.75;
  color: #1f2937;
  max-width: 640px;
  margin: 0 auto 28px;
}

.service-block ul {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-block li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #111827;
}

.service-block li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffb703;
  font-weight: 700;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
}

.service-icon svg {
  stroke: #ffb703;
  stroke-width: 2;
}

/* =========================
   USŁUGI – HERO FIX
========================= */

.page-hero {
  background: linear-gradient(180deg, #0b1c2d 0%, #0f2a44 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
}
/* =========================
   USŁUGI – START KART WYŻEJ
========================= */

.services-page {
  padding-top: 10px; /* było zdecydowanie za dużo */
}

/* USŁUGI – HERO HEIGHT TUNING */
.page-hero {
  padding: 120px 0 60px; /* było za wysokie */
}

/* USŁUGI – SMOOTH TRANSITION */
.page-hero {
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(11, 28, 45, 0), #0b1c2d);
}
/* PIERWSZY KAFEL USŁUG – WIĘCEJ WAGI */
.services-page .service-item:first-child {
  margin-top: -40px;
}

/* USŁUGI – USUNIĘCIE SEPARATORA LINII */
.page-hero + section,
.page-hero + .services-page,
.services-page {
  border-top: none !important;
}

/* USŁUGI – PODNIESIENIE PIERWSZEGO KAFLA */
.services-page .service-item:first-child {
  margin-top: -100px;
}
.services-page .service-item:first-child {
  margin-top: -120px;
}
/* FIX: PODNIESIENIE PIERWSZEGO KAFLA USŁUG */
.services-page .service-block:first-child {
  margin-top: -120px !important;
}
section + section {
  border-top: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(6, 20, 40, 0) 0%,
    rgba(6, 20, 40, 0.8) 60%,
    rgba(6, 20, 40, 1) 100%
  );
}

.extra-services {
  padding: 80px 0;
  background: #f7f7f7;
}

.extra-services h2 {
  text-align: center;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  margin-bottom: 50px;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.extra-service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.extra-services {
  padding: 80px 0;
  background: #f7f7f7;
}

.extra-services h2 {
  text-align: center;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  margin-bottom: 50px;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.extra-service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.extra-services {
  padding: 90px 0;
  background: #f6f6f6;
}

.extra-services h2 {
  text-align: center;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-inline: auto;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.extra-service-card {
  background: #f5f7fa;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.extra-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.extra-service-card h3 {
  margin-bottom: 10px;
}

.extra-service-card p {
  margin-bottom: 25px;
}

/* PRZYCISK WIĘCEJ */
.btn-more {
  display: inline-block;
  padding: 12px 28px;
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn-more:hover {
  background: #000;
  color: #ffcc00;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
/* USŁUGI DODATKOWE – TEKST */
.extra-services h2 {
  color: #0b1f33; /* ciemny granat – spójny z marką */
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 12px;
}

.extra-services .section-desc {
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 60px;
}

.extra-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #f5f7fa 0%, #eef2f6 100%);
}

.extra-service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== EXTRA SERVICES – FIX TEKSTU ===== */

.extra-services .extra-service-card h3 {
  color: #0b1f33 !important; /* ciemny granat */
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.extra-services .extra-service-card p {
  color: #333 !important;
  font-size: 15px;
  line-height: 1.6;
}
.extra-service-card {
  text-align: center;
}

.extra-service-card h3 {
  min-height: 52px; /* wyrównuje wysokość nagłówków */
}
.extra-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}
.extra-services .container {
  max-width: 1200px;
}
.extra-services h2 {
  letter-spacing: -0.3px;
}
.extra-service-card {
  cursor: pointer;
}

.extra-service-card:hover h3 {
  color: #000;
}
.extra-services {
  position: relative;
  padding-bottom: 120px;
}

/* GÓRNE PRZEJŚCIE */
.extra-services {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .extra-services {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .extra-services h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .extra-services .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .extra-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .extra-service-card {
    padding: 24px;
    border-radius: 16px;
  }

  .extra-service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .extra-service-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .btn-more {
    padding: 14px 32px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .extra-services::after {
    height: 50px;
    background: linear-gradient(
      180deg,
      rgba(247, 249, 252, 0) 0%,
      rgba(7, 28, 47, 0.25) 100%
    );
  }
}
/* === USŁUGA – CMR === */

.service-hero {
  background: linear-gradient(180deg, #071c2f 0%, #0b2744 100%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.service-hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.service-content {
  padding: 90px 0;
  background: #f5f7fa;
}

.container.narrow {
  max-width: 850px;
}

.service-content h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  color: #0b1f33;
}

.service-content p,
.service-content li {
  line-height: 1.7;
  color: #333;
}

.service-content ul {
  padding-left: 20px;
}

.service-faq h3 {
  margin-top: 25px;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 0;
  }

  .service-hero h1 {
    font-size: 28px;
  }

  .service-content {
    padding: 60px 0;
  }
}
/* ================================
   SERVICE PAGE – CMR
================================ */

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 820px;
}

/* HERO */
.service-hero {
  background: linear-gradient(180deg, #071c2f 0%, #0b2a45 100%);
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.service-hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #ffc400;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* CONTENT */
.service-content {
  background: #f5f7fa;
  padding: 80px 0;
}

.service-content h2 {
  font-size: 28px;
  margin: 60px 0 16px;
  color: #0b2a45;
}

.service-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.service-content ul {
  margin: 20px 0 40px;
  padding-left: 20px;
}

.service-content li {
  margin-bottom: 10px;
}

/* FAQ */
.service-faq {
  margin-top: 60px;
}

.service-faq h3 {
  font-size: 18px;
  margin: 30px 0 8px;
  color: #0b2a45;
}

.service-faq p {
  margin-bottom: 10px;
  color: #444;
}

/* CTA */
.contact-cta {
  background: linear-gradient(180deg, #0b2a45 0%, #071c2f 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 20px;
  }

  .service-hero h1 {
    font-size: 32px;
  }

  .service-content {
    padding: 60px 0;
  }

  .contact-cta h2 {
    font-size: 28px;
  }
}
/* =========================
   BUTTONS – GLOBAL STYLE
========================= */

.btn-primary,
button,
input[type="submit"] {
  background-color: #f5c400;
  color: #000;
  border: 2px solid transparent;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER – TEN JEDEN JEDYNY */
.btn-primary:hover,
button:hover,
input[type="submit"]:hover {
  background-color: #000;
  color: #f5c400;
  border-color: #f5c400;
  box-shadow: 0 0 18px rgba(245, 196, 0, 0.45);
  transform: translateY(-2px);
}
/* =========================
   SERVICE CARDS
========================= */

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  background: #000;
  color: #fff;
  border-color: #f5c400;
  box-shadow: 0 0 25px rgba(245, 196, 0, 0.35);
  transform: translateY(-6px);
}

/* TEKST W KAFELKU */
.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

/* PRZYCISK W KAFELKU */
.service-card:hover .btn-primary {
  background: #000;
  color: #f5c400;
  border-color: #f5c400;
}

/* =========================
   HEADER CTA – smaller
========================= */

.header .btn-primary,
.site-header .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}
/* HERO CTA */
.hero .btn-primary {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 10px;
}
/* SERVICE CARDS CTA */
.service-card .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
}
.service-back {
  margin: 40px 0;
}

.service-back a {
  color: #ffc400;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-back a:hover {
  text-decoration: underline;
}
.service-back {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.service-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffc400;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-back a:hover {
  text-decoration: underline;
  transform: translateX(-2px);
}
html {
  scroll-behavior: smooth;
}
.back-to-services {
  display: inline-block;
  margin: 40px auto 30px;
  font-size: 15px;
  font-weight: 600;
  color: #f5b400;
  text-decoration: none;
  transition: all 0.2s ease;
}

.back-to-services:hover {
  color: #dca000;
  transform: translateX(-4px);
}
.service-content {
  background: #f5f7fa;
  padding: 80px 0;
}

.service-content-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 70px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* WYŁĄCZ hover */
.service-content-box:hover {
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transform: none;
}
.back-to-services {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 600;
  color: #f5b400;
  text-decoration: none;
  transition: all 0.2s ease;
}

.back-to-services:hover {
  color: #dca000;
  transform: translateX(-4px);
}
.service-back {
  margin-bottom: 35px;
}

.back-to-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;

  color: #0b2a4a;
  background: #f5b400;

  padding: 10px 18px;
  border-radius: 999px;

  text-decoration: none;
  transition: all 0.25s ease;
}

.back-to-services:hover {
  background: #dca000;
  transform: translateX(-4px);
}
.back-to-services {
  background: #eef2f6;
  color: #0b2a4a;
}

.back-to-services:hover {
  background: #e2e8f0;
}
/* BACK LINK – wróć do usług dodatkowych */

.service-back {
  margin-bottom: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;

  color: #f5c400;
  background: rgba(245, 196, 0, 0.08);

  border: 2px solid transparent;
  transition: all 0.25s ease;
}

/* HOVER – jak przycisk CTA */
.back-link:hover {
  background: #f5c400;
  color: #0b1f33;

  text-decoration: underline;
  border-color: #f5c400;

  box-shadow: 0 6px 18px rgba(245, 196, 0, 0.35);
}

/* delikatny ruch strzałki */
.back-link:hover::before {
  transform: translateX(-2px);
}
/* BACK LINK – Wróć do usług dodatkowych */

.service-back {
  margin-bottom: 32px;
}

.service-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 22px;
  border-radius: 999px;

  background: #f5f7fa; /* jasne tło – jak teraz */
  color: #f5b800; /* żółty brand */
  font-weight: 600;
  font-size: 14px;

  text-decoration: none;
  border: 2px solid transparent;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.service-back a:hover {
  background: #f5b800; /* TEN SAM żółty co CTA */
  color: #0b1f33; /* granatowy tekst */
  border-color: #f5b800;

  text-decoration: underline; /* jak chciałeś */
  transform: translateX(-2px); /* delikatny ruch */
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.narrow {
  max-width: 800px;
}

/* HERO */

.about-hero {
  padding: 140px 0;
  text-align: center;
  background: #ffffff;
}

.about-hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 20px;
  color: #555;
  max-width: 750px;
  margin: auto;
  margin-bottom: 40px;
}

/* BUTTON */

.primary-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 18px 34px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.primary-btn.big {
  font-size: 20px;
  padding: 22px 46px;
}

/* STATS */

.stats {
  background: #f7f9fc;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h2 {
  font-size: 46px;
  color: #0c2d48;
  margin-bottom: 10px;
}

.stat p {
  color: #666;
}

/* ABOUT */

.about-short {
  padding: 110px 0;
  text-align: center;
}

.lead {
  font-size: 22px;
  margin-bottom: 20px;
}

/* FEATURES */

.features {
  background: #f7f9fc;
  padding: 110px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* CLIENTS */

.clients {
  padding: 110px 0;
  text-align: center;
}

.clients ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.clients li {
  margin: 12px 0;
  font-size: 18px;
}

/* PROCESS */

.process {
  background: #f7f9fc;
  padding: 110px 0;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process span {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #ffcc00;
  border-radius: 50%;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* CTA */

.cta {
  padding: 140px 0;
  text-align: center;
  background: #0c2d48;
  color: #fff;
}

.cta p {
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
  color: #d2dbe5;
}

/* MOBILE */

@media (max-width: 900px) {
  .stats-grid,
  .features-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 36px;
  }
}
.about-hero {
  padding: 160px 20px;
  text-align: center;

  background:
    linear-gradient(rgba(12, 45, 72, 0.92), rgba(12, 45, 72, 0.92)),
    url("/wp-content/uploads/hero.jpg");

  background-size: cover;
  background-position: center;

  color: #fff;
}
.about-hero h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}
.about-hero p {
  font-size: 22px;
  max-width: 750px;
  margin: auto;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}
.about-hero h1 {
  max-width: 900px;
  margin: auto;
}
.about-hero h1 {
  font-weight: 800;
}
.primary-btn {
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.35);
}
.about-hero {
  position: relative;
  height: 85vh;
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  background: url("../img/gdansk-hero.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(6, 25, 45, 0.75), rgba(6, 25, 45, 0.92));

  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}
.about-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.about-hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
}
.hero-btn {
  display: inline-block;
  padding: 18px 42px;

  background: #ffcc00;
  color: #000;

  font-weight: 700;
  border-radius: 12px;

  text-decoration: none;

  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: #000;
  color: #ffcc00;

  transform: translateY(-6px);

  border: 2px solid #ffcc00;

  box-shadow: 0 0 18px rgba(255, 204, 0, 0.6);
}
.hero-btn {
  border: 2px solid transparent;
}
@media (max-width: 768px) {
  .about-hero {
    height: 70vh;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p {
    font-size: 18px;
  }
}
.about-hero {
  background: url("../img/gdansk-hero.webp") center/cover no-repeat;
}
.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;

  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
}
.about-hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.hero-content {
  max-width: 850px;
  margin: auto;
}
.about-hero {
  height: 100vh;
  min-height: 720px;
}
.hero-content {
  transform: translateY(-40px);
}
/* ======================================
   ABOUT HERO + TRANSPARENT HEADER
   DZIAŁA TYLKO NA STRONIE "O NAS"
====================================== */

/* 🔥 HEADER — taki jak masz na innych podstronach */
.page-id-9 .site-header {
  background: rgba(
    8,
    25,
    45,
    0.55
  ) !important; /* <- ta przezroczystość jak na SS3 */
  backdrop-filter: blur(8px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

/* po scrollu — robi się bardziej solidny */
.page-id-9 .site-header.scrolled {
  background: rgba(8, 25, 45, 0.92) !important;
  backdrop-filter: blur(12px);
}

/* ======================================
   HERO — usuwamy granat
====================================== */

.page-id-9 .about-hero {
  position: relative;
  min-height: 100vh;

  /* NADPISUJE WSZYSTKIE gradienty */
  background: url("../img/gdansk-hero.webp") center/cover no-repeat !important;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 overlay — ale LEKKI (nie granatowa ściana) */
.page-id-9 .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(10, 25, 45, 0.35),
    rgba(10, 25, 45, 0.55)
  );

  z-index: 1;
}

/* treść nad overlay */
.page-id-9 .about-hero .container {
  position: relative;
  z-index: 2;
}

/* 🔥 PODNOSIMY TEKST — wygląda dużo bardziej premium */
.page-id-9 .about-hero .container {
  transform: translateY(-70px);
}

/* czytelność */
.page-id-9 .about-hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;

  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-id-9 .about-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);

  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.45);
}
/* ===============================
   HERO OVER HEADER FIX — O NAS
=============================== */

.page-id-9 .about-hero {
  margin-top: -120px; /* wysokość headera */
  padding-top: 260px; /* żeby tekst nie uciekł pod menu */
}
.page-id-9 .about-hero {
  position: relative;
  z-index: 1;
}
.page-id-9 .about-hero {
  margin-top: -140px;
  padding-top: 300px;
  min-height: 100vh;
}
/* =================================
   ABOUT HERO — TEXT HIGHER (PRO)
================================= */

.page-id-9 .about-hero {
  display: flex;
  align-items: flex-start; /* 🔥 zamiast center */
}

.page-id-9 .about-hero .hero-content {
  margin-top: 80px; /* regulujesz tym wysokość */
}
/* 🔥 PRO overlay — robi całą robotę */
.page-id-9 .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(6, 20, 40, 0.75) 0%,
    rgba(6, 20, 40, 0.55) 40%,
    rgba(6, 20, 40, 0.35) 100%
  );

  z-index: 1;
}

/* tekst nad overlayem */
.page-id-9 .hero-content {
  position: relative;
  z-index: 2;
}
.page-id-9 .hero-content h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}
/* ===== SYSTEM 30K ===== */

:root {
  --navy: #0b1f33;
  --navy-soft: #0f2b46;
  --text-dark: #0e1b2b;
  --text-light: #ffffff;
  --bg-light: #f7f9fc;
  --accent: #ffc400;
}
.about-short {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 120px 0;
}

.about-short h2 {
  color: var(--text-dark);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-short p {
  color: #5b6b7c;
  font-size: 18px;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
}
.features {
  background: #ffffff;
  padding: 120px 0;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  transition: 0.35s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.clients {
  background: var(--navy);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.clients h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.clients li {
  opacity: 0.85;
  font-size: 18px;
  margin: 12px 0;
}
.process {
  background: var(--bg-light);
  padding: 120px 0;
}

.process h2 {
  color: var(--text-dark);
}

.step-number {
  background: var(--accent);
  color: #000;
  font-weight: 700;
}
section {
  position: relative;
  z-index: 2;
}
.features {
  background: #f7f9fc;
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.feature-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);

  transition: 0.35s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0b1f33;
}

.feature-card p {
  color: #5b6b79;
  font-size: 17px;
  line-height: 1.7;
}
.clients {
  padding: 140px 0;

  background: linear-gradient(135deg, #0b2239, #0f2f50);

  color: white;
  text-align: center;
}
.clients h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.clients li {
  list-style: none;
  font-size: 20px;
  margin: 14px 0;
  opacity: 0.9;
}
.cta .btn-primary {
  padding: 20px 46px;
  font-size: 18px;
  border-radius: 14px;

  background: #ffc400;
  color: #0b1f33;
  font-weight: 700;

  box-shadow: 0 15px 40px rgba(255, 196, 0, 0.35);

  transition: 0.3s;
}

.cta .btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 60px rgba(255, 196, 0, 0.5);
}
section {
  padding: 120px 0;
}
/* FIX — sekcja Co nas wyróżnia */

.features h2 {
  color: #0b1f33;
}

.feature-card h3 {
  color: #0b1f33;
}

.feature-card p {
  color: #5b6b79;
}
.features h2 {
  color: #0b1f33 !important;
}

.feature-card h3 {
  color: #0b1f33 !important;
}
.features h2 {
  font-size: 42px;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
/* 🔥 HARD FIX — karta "Co nas wyróżnia" */

.features .feature-card h3 {
  color: #0b1f33 !important;
}

.features .feature-card p {
  color: #5b6b79 !important;
}
.features .feature-card {
  opacity: 1 !important;
}
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.06);
  transition: 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 31, 51, 0.12);
}
/* HARD RESET sekcji Co nas wyróżnia */

.features * {
  opacity: 1 !important;
  color: #0b1f33 !important;
}
:root {
  --navy-dark: #0e2438;
  --navy: #14324d;
  --navy-light: #1e3f5f;

  --text-dark: #0b1f33;
  --text-muted: #5b6b7c;

  --bg-light: #f6f8fb;
  --card-bg: #ffffff;

  --brand-yellow: #ffd200;

  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.stats-section {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  padding: 100px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.about-section {
  background: var(--bg-light);
  padding: 120px 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.features-section {
  background: #fff;
  padding: 120px 0;
}

.features-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 80px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--card-bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid #e6ebf0;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.audience-section {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  padding: 120px 0;
  text-align: center;
}

.audience-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-list li {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 12px 0;
}
/* =====================================
   OGÓLNE SEKCJE – TYLKO STRONA "O NAS"
===================================== */
.about-page section {
  padding: 100px 20px;
}

/* =====================================
   1. STATYSTYKI
===================================== */
.about-page .stats {
  background: linear-gradient(135deg, #0b2540, #123b63);
  color: #fff;
}

.about-page .stats h3,
.about-page .stats p {
  color: #fff;
}

/* =====================================
   2. KIM JESTEŚMY
===================================== */
.about-page .about-short {
  background-color: #f6f8fb;
}

.about-page .about-short h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
}

.about-page .about-short p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

/* =====================================
   3. CO NAS WYRÓŻNIA
===================================== */
.about-page .features {
  background-color: #ffffff;
}

.about-page .features h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* KAFELKI */
.about-page .features .feature {
  background: #f6f8fb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-page .features .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.about-page .features h3 {
  color: #0b2540;
  margin-bottom: 15px;
}

.about-page .features p {
  color: #333;
  line-height: 1.6;
}
.about-page .stats {
  border-bottom: none !important;
}
/* =========================
   ABOUT PAGE – CLEAN LAYER
========================= */

.about-page section {
  padding: 100px 20px;
}

.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-page .narrow {
  max-width: 900px;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #0b2540, #123b63);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat strong {
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
}

.stat span {
  opacity: 0.9;
}

/* ABOUT TEXT */
.about-short {
  background: #fff;
  color: #0b2540;
  text-align: center;
}

.about-short p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  background: #f7f9fc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* PROCESS */
.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  padding: 30px;
  background: #f7f9fc;
  border-radius: 10px;
  font-weight: 500;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0b2540, #123b63);
  color: #fff;
  text-align: center;
}
.about-hero {
  min-height: 70vh; /* było de facto ~100vh */
  max-height: 820px; /* zabezpieczenie na duże monitory */
  display: flex;
  align-items: center;
}
.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(11, 37, 64, 0) 0%, #0b2540 100%);
}
.stats {
  position: relative;
  margin-top: -80px;
  padding-top: 120px;
}
/* === ABOUT HERO – HARD FIX === */
.about-page .about-hero {
  position: relative;
  min-height: 70vh !important;
  max-height: 780px;
  height: auto !important;
  overflow: hidden;
}
/* === STATS – FINAL OVERRIDE === */
.about-page .stats {
  padding: 60px 20px 70px !important;
  margin-top: -60px;
}
/* === FIX: STATS SIZE (FINAL) === */
.about-page section.stats {
  padding: 60px 20px !important;
}
.about-page .stats-grid {
  gap: 32px;
}
.about-page section.stats {
  padding: 60px 20px !important;
}
/* 🔥 REAL FIX — STATS HEIGHT */
.about-page .stats > .container {
  padding: 0 !important;
}
.about-page .stats {
  padding: 40px 20px !important;
}

.about-page .stat strong {
  font-size: 40px;
}
.about-page .stats {
  margin-top: -40px; /* było za głęboko / za płasko */
}
/* === ABOUT: separator jak na stronie głównej === */
.about-page .about-short h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.about-page .about-short h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  background: #ffb703; /* brandowy żółty */
  border-radius: 2px;
}
.about-page .about-short {
  background: #f8fafc; /* prawie biały */
}
.about-page .features {
  background: #f3f6fa; /* zamiast czystej bieli */
}
.about-page .feature {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 40px 32px;
  box-shadow: 0 10px 24px rgba(11, 37, 64, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.about-page .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 37, 64, 0.12);
}
.about-page .feature h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #0b2540;
}

.about-page .features {
  background: linear-gradient(135deg, #0b2540, #123b63);
  padding: 120px 20px;
}
.about-page .features h2 {
  color: #ffffff;
  position: relative;
  margin-bottom: 80px;
}

.about-page .features h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: #ffb703;
  margin: 20px auto 0;
  border-radius: 2px;
}
.about-page .feature {
  background: #ffffff;
  border-radius: 16px;
  padding: 42px 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.about-page .feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}
.about-page section.features h2 {
  color: #ffffff !important;
}
.about-page .features h2::after {
  background: #ffb703;
}
.about-page .features {
  background: linear-gradient(180deg, #071b2e 0%, #0b2a44 100%);
  padding: 120px 0;
}
.about-page .features h2 {
  color: #ffffff !important;
  text-align: center;
}

.about-page .features h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: #ffb703;
  margin: 18px auto 0;
  border-radius: 3px;
}
.about-page .features .feature {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  border-radius: 16px;
  padding: 40px 32px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.about-page .features .feature h3 {
  color: #ffb703 !important;
  margin-bottom: 14px;
}

.about-page .features .feature p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
}
.about-page .features .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
}
.about-page .about-short {
  background: #f6f8fb;
  padding: 120px 20px;
}
.about-page .about-short {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.about-page .about-short .container {
  background: #ffffff;
  padding: 64px 72px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.about-page .about-short {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.about-page .about-short {
  background: #f6f8fb;
  padding: 100px 20px 120px;
}
.about-page .about-short {
  margin-top: -60px;
  padding-top: 140px;
}
.about-page .about-short .container {
  max-width: 900px;
}
.about-page .about-short p {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3748;
}
.about-page .about-short h2::after {
  width: 48px;
  height: 3px;
  background: #ffb703;
  margin: 16px auto 0;
}
.about-page .about-short {
  background: #f5f7fa;
  padding: 120px 20px 140px;
  margin-top: -40px; /* delikatne połączenie z liczbami */
}
.about-page .about-short .container {
  max-width: 860px;
}

.about-page .about-short p {
  font-size: 18px;
  line-height: 1.9;
  color: #2d3748;
}
.about-page .about-short h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2540;
}
.about-page .about-short {
  background: #f7f9fc; /* nie czysta biel */
  border-radius: 16px; /* było za duże */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06); /* lżejszy cień */
  padding: 80px 80px; /* MNIEJ powietrza */
}
.about-page .about-short {
  margin-top: -60px;
}
.about-page .about-short h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.about-page .about-short .section-line {
  width: 36px;
  height: 3px;
  margin-bottom: 32px;
}
.about-page .about-short p {
  font-size: 17px;
  line-height: 1.85;
  color: #2d3748;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-short p {
  max-width: 720px; /* było za szeroko */
  margin: 0 auto 18px;
  text-align: center;
}
.about-page .stats {
  padding: 60px 20px 70px; /* było ~100+ */
}
.about-page .stats {
  padding-top: 60px;
  padding-bottom: 70px;
}
.stats .stat strong {
  font-size: 44px; /* zamiast ~48–52 */
}
.about-page .stats {
  padding: 60px 20px 70px;
}
.page-id-9 section.stats {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.page-id-9 .stats .stat strong {
  font-size: 44px !important;
}
/* FIX: ucinanie sekcji liczb */
.page-id-9 section.stats {
  padding-top: 70px !important;
  padding-bottom: 90px !important;
  overflow: visible !important;
}
.page-id-9 section.stats {
  padding-top: 50px !important;
  padding-bottom: 70px;
}
/* === FINAL FIX: STATS HEIGHT (TYLKO TO) === */
.page-id-9 section.stats {
  padding-top: 40px !important;
  padding-bottom: 60px !important;
  margin-top: 0 !important;
}
.page-id-9 .stats .stat strong {
  font-size: 42px !important;
}
/* === REAL FIX: ZMNIEJSZENIE GRANATU NAD LICZBAMI === */
.page-id-9 section.stats {
  margin-top: 0 !important; /* USUWA rozciąganie */
  padding-top: 40px !important; /* było 80–120 */
  padding-bottom: 50px !important; /* było 70–100 */
}
.page-id-9 .stats .stat strong {
  font-size: 40px !important;
}
/* delikatniejsze przejście hero -> stats */
.about-page .stats {
  box-shadow: inset 0 40px 40px -40px rgba(0, 0, 0, 0.35);
}
.about-page .about-short {
  margin-top: -20px; /* było -40 / -60 */
}
.about-page .about-short {
  padding-top: 90px; /* było ~120 */
}
.page-id-9 .stats .stat strong {
  font-size: 38px !important;
}
.clients {
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(ellipse at center, #0f2d4a 0%, #081c30 100%);
}

.clients h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.clients .section-line {
  display: block;
  width: 50px;
  height: 3px;
  background: #f7b500;
  margin: 16px auto 60px;
}

.clients-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px 40px;
}

.client-item {
  text-align: left;
}

.client-item .icon {
  font-size: 34px;
  color: #f7b500;
  margin-bottom: 14px;
  display: inline-block;
}

.client-item h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.client-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.client-item:hover .icon {
  transform: translateY(-3px);
  transition: 0.3s ease;
}
.client-item i {
  font-size: 28px;
  color: #f7b500;
  margin-bottom: 10px;
  display: block;
}
.client-item i {
  font-size: 28px;
  color: #f7b500;
  margin-bottom: 10px;
  display: block;
}
.client-item {
  padding-left: 16px;
  border-left: 2px solid rgba(247, 181, 0, 0.25);
}
.clients-lead {
  max-width: 680px;
  margin: 0 auto 70px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.6;
}
/* CTA button – kopiujemy zachowanie headera */
section.cta a {
  background: #ffd200;
  color: #0b2a45;
  border: 2px solid #ffd200;
  border-radius: 10px;
  padding: 16px 36px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(255, 210, 0, 0.35);
}

section.cta a:hover {
  background: transparent;
  color: #ffd200;
  box-shadow: none;
}
section.cta a {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
/* CTA – przycisk główny (jak reszta strony) */
.btn-primary {
  background-color: #ffd200; /* żółte tło */
  color: #000000; /* czarny tekst */
  border: 2px solid #ffd200; /* żółta ramka */
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* HOVER – czarne/granatowe wnętrze + żółta ramka */
.btn-primary:hover {
  background-color: #0b1c2d; /* 🔥 CIEMNE W ŚRODKU (jak na screenie) */
  color: #ffd200; /* żółty tekst */
  border-color: #ffd200; /* żółta ramka */
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
/* USUŃ BIAŁY PAS NAD CTA */
.about-page .cta {
  margin-top: -80px;
}
.about-page {
  padding-bottom: 0;
}

.about-page .cta {
  padding-top: 80px; /* kontrolowany odstęp */
}
.services .box h3,
.services .box p,
.services-preview .box h3,
.services-preview .box p {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
/* ===== FIX TEKSTU W KAFELKACH USŁUG ===== */

.services .service-card h3 {
  color: #0b1c2d !important;
}

.services .service-card p {
  color: #4a5568 !important;
}
.service-card:hover h3,
.service-card:hover p {
  color: #fff !important;
}
/* ==================================================
   GLOBAL RESET
================================================== */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================================================
   HEADER
================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 28, 45, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 28, 45, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

/* ==================================================
   BUTTONS
================================================== */
.btn-primary {
  background: #ffd200;
  color: #000;
  border: 2px solid #ffd200;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #0b1c2d;
  color: #ffd200;
  transform: translateY(-2px);
}

/* ==================================================
   HERO SECTION
================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("../img/hero-tir-logistyka.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(6, 20, 40, 0.85), rgba(6, 20, 40, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* ==================================================
   SERVICES SECTION
================================================== */
.services {
  padding: 120px 0;
  background: #f5f7fa;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.service-card h3 {
  color: #0b1c2d;
}
.service-card p {
  color: #4a5568;
}

.service-card:hover {
  background: #000;
  color: #fff;
  border-color: #ffd200;
  transform: translateY(-6px);
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

/* ==================================================
   WHY US
================================================== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
}

/* ==================================================
   CONTACT CTA
================================================== */
.contact-cta {
  background: linear-gradient(#0b1c2d, #0f2a44);
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

/* ==================================================
   FOOTER
================================================== */
.site-footer {
  background: linear-gradient(#061a2d, #041321);
  color: #cfd8e3;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 900px) {
  .services-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.stat p {
  font-size: 14px;
  opacity: 0.8;
}
/* ===== FIX SEKCJI STATYSTYK ===== */

.stats {
  margin-top: 0 !important;
  padding: 60px 0 !important;
  background: linear-gradient(135deg, #0b2540, #123b63) !important;
  color: #fff !important;
}

.stats h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.stats p {
  font-size: 14px;
  opacity: 0.85;
}
.stats {
  background: linear-gradient(135deg, #0b2540, #123b63);
  padding: 70px 0;
}

.stats .stat {
  text-align: center;
}

.stats .stat strong {
  font-size: 42px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.stats .stat span {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.4;
}
.stats-grid > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats .stat strong {
  font-size: 38px;
}
.stats .stat span {
  opacity: 0.75;
}
.stats .stat {
  transition: transform 0.25s ease;
}

.stats .stat:hover {
  transform: translateY(-3px);
}
.stats-directions {
  line-height: 1.6;
}
.about-highlights {
  margin-top: 25px;
  padding-left: 18px;
}

.about-highlights li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.about-highlights strong {
  color: #0b2540;
}
.about-highlights {
  list-style-position: inside;
  padding-left: 0;
  margin: 20px auto 0;
  max-width: 500px;
  text-align: left;
}
.about-highlights li::marker {
  color: #ffc400;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}
.service-icon {
  background: rgba(255, 200, 0, 0.12);
  padding: 14px;
  border-radius: 12px;
}
.why-icon {
  margin-bottom: 15px;
}

.why-icon svg {
  width: 38px;
  height: 38px;
  stroke: #ffd200;
  stroke-width: 1.8;
}
.why-item {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.why-icon {
  margin-bottom: 20px;
}
.services .service-card:hover {
  background: linear-gradient(135deg, #0e2438, #14324d);
  color: #fff;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero {
  min-height: 90vh;
  padding: 80px 20px;
}
.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}
.hero {
  overflow: hidden;
}
/* ===== OPINIE KLIENTÓW ===== */

.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  color: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonials-sub {
  opacity: 0.8;
  margin-bottom: 50px;
}

/* GRID */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* KARTA OPINII */

.testimonial-card {
  background: #ffffff;
  color: #0b1c2d;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* GWIAZDKI */

.stars {
  color: #ffd200;
  font-size: 20px;
  margin-bottom: 15px;
}

/* TEKST OPINII */

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

/* ROLA KLIENTA */

.client-role {
  font-weight: 600;
  color: #14324d;
}
.contact-section {
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  padding: 100px 20px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-left h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-left p {
  color: #b6c2cf;
  margin-bottom: 15px;
}

.contact-details p {
  margin: 6px 0;
}

.map-link {
  color: #ffd200;
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 15px;
}

.contact-form textarea {
  height: 120px;
}

.file-label {
  display: block;
  color: #fff;
  margin-bottom: 15px;
  cursor: pointer;
}

.file-label input {
  display: none;
}

.checkbox {
  color: #cbd6e2;
  font-size: 13px;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #ffd200;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* HERO */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  color: #fff;
}

/* FORMULARZ */
.contact-page {
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  padding: 60px 0 100px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 140px;
}

.file-label {
  display: block;
  color: #fff;
  margin-bottom: 15px;
  cursor: pointer;
}

.file-label input {
  display: none;
}

.checkbox {
  font-size: 13px;
  color: #cbd6e2;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-primary {
  background: #ffd200;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* ALERTY */
.form-success {
  background: #1b5e20;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.form-error {
  background: #c62828;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* DANE KONTAKTOWE */
.contact-details {
  margin-top: 50px;
  text-align: center;
  color: #fff;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffd200;
  text-decoration: none;
}
/* === PREMIUM KONTAKT === */

.contact-premium {
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  padding: 100px 20px;
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.contact-left {
  background: #1e3a54;
  padding: 40px;
  border-radius: 18px;
}

.contact-left h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-left p {
  opacity: 0.8;
  margin-bottom: 25px;
}

/* INPUTY */

.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-left textarea {
  height: 160px;
}

/* FILE */

.file-upload {
  display: block;
  margin: 15px 0;
  cursor: pointer;
  color: #ffd200;
}

.file-upload input {
  display: none;
}

/* RODO */

.rodo {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin: 20px 0;
}

.rodo input {
  width: 18px;
}

/* BUTTON */

.contact-left button {
  width: 100%;
  padding: 16px;
  background: #ffd200;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.contact-left button:hover {
  background: #ffc400;
}

/* PRAWA STRONA */

.contact-right {
  padding: 40px 0;
}

.contact-right h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.map-btn {
  display: inline-block;
  margin-top: 20px;
  color: #ffd200;
  text-decoration: none;
  font-weight: 600;
}

/* ALERTY */

.form-success {
  background: #28a745;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-error {
  background: #dc3545;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.kontakt-premium {
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  padding: 100px 20px;
}

.kontakt-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.kontakt-form {
  background: #243c52;
  padding: 40px;
  border-radius: 20px;
}

.kontakt-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border: none;
  border-radius: 10px;
}

.kontakt-form textarea {
  height: 140px;
}

.kontakt-btn {
  background: #ffd200;
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.kontakt-info {
  color: white;
}

.kontakt-info iframe {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  border: 0;
  margin-top: 20px;
}

.form-success {
  background: #1fa463;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-error {
  background: #c0392b;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.contact-side-logo {
  width: 220px;
  margin-bottom: 25px;
  display: block;
}

.contact-info iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
  margin-top: 20px;
}
/* =========================
   KONTAKT PREMIUM FINAL
   ========================= */

.kontakt-premium {
  background: linear-gradient(180deg, #071b2e, #0b2a44);
  padding: 120px 20px;
}

.kontakt-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* FORMULARZ */

.kontakt-form {
  background: #2a4156;
  padding: 50px;
  border-radius: 20px;
}

.kontakt-form h2 {
  color: #fff;
  margin-bottom: 10px;
}

.kontakt-form p {
  color: #cbd6e2;
  margin-bottom: 25px;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  margin-bottom: 18px;
  font-size: 15px;
}

.kontakt-form textarea {
  height: 140px;
}

.kontakt-form button {
  width: 100%;
  background: #ffd200;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* PRAWA STRONA */

.kontakt-info {
  color: #fff;
}

.kontakt-logo {
  max-width: 260px;
  margin-bottom: 25px;
}

.kontakt-info h3 {
  color: #fff;
  margin-bottom: 10px;
}

.kontakt-info p {
  color: #d6e0ea;
  margin-bottom: 14px;
}

/* MAPA */

.kontakt-mapa iframe {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  border: none;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {
  .kontakt-wrapper {
    grid-template-columns: 1fr;
  }

  .kontakt-logo {
    margin-top: 30px;
  }
}
.kontakt-logo {
  background: transparent;
  mix-blend-mode: lighten;
}
.logo-svg {
  height: 55px;
  width: auto;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
}
/* LOGO TEKSTOWE HEADER */
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.brand span {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 2px;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}
/* ===== MOBILE HEADER CLEAN ===== */

@media (max-width: 900px) {
  /* hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px;
    border: none;
    z-index: 1000;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  /* menu */
  .main-nav {
    display: none;
    background: #081a2c;
    padding: 15px 20px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .main-nav a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }
}
@media (max-width: 900px) {
  .header-cta {
    margin-left: auto;
    margin-right: 10px;
  }
}
/* ===== HERO MOBILE FIX ONLY ===== */

@media (max-width: 900px) {
  .hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll !important;
  }

  .hero-inner {
    padding: 60px 20px 40px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }
}
/* ===== HERO FINAL MOBILE FIX ===== */

@media (max-width: 900px) {
  /* mniejsza wysokość hero */
  .hero {
    min-height: 60vh;
    padding-top: 80px;
    background-position: center;
  }

  /* overlay mniej ciemny */
  .hero-overlay {
    opacity: 0.55;
  }

  /* tekst bardziej centralnie */
  .hero-inner {
    padding: 40px 20px;
  }
}
/* ===== STOPKA ===== */

.site-footer {
  background: #0b1d2a;
  color: #d6dde3;
  padding: 50px 0 25px;
  font-size: 15px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
}

.site-footer p {
  margin: 6px 0;
  opacity: 0.9;
}

/* Linki – neutralne (bez czerwieni) */
.site-footer a {
  display: block;
  color: #cbd5df;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.2s;
}

.site-footer a:hover {
  color: #ffffff;
}

/* Telefon + mail trochę mocniejsze */
.footer-contact-link {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Adres i godziny */
.footer-address,
.footer-hours {
  margin-top: 10px;
}

/* Dolna belka */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 35px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom {
    margin-top: 25px;
  }
}
/* STOPKA */

.site-footer {
  background: #0b1d2a;
  color: #d6dde3;
  padding: 50px 0 25px;
  font-size: 15px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.site-footer a {
  color: #cbd5df;
  text-decoration: none;
  transition: 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

/* Ikony SVG */

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-item svg {
  width: 18px;
  height: 18px;
  fill: #9fb3c8;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Dolna belka */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 35px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Mobile */

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 25px;
  }
}
.footer-grid {
  gap: 60px;
}
.footer-item svg {
  fill: #b8c7d6;
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.footer-bottom {
  opacity: 0.6;
  font-size: 13px;
}
/* ===== MOBILE FOOTER FIX ===== */

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 20px;
    text-align: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }

  .footer-col {
    width: 100%;
    max-width: 320px;
  }

  .site-footer h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* Elementy z ikonami */
  .footer-item {
    justify-content: center;
    text-align: left;
    gap: 8px;
  }

  .footer-item svg {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  /* Linki kontaktowe */
  .footer-contact-link {
    justify-content: center;
  }

  /* Dane firmy bardziej zwarte */
  .site-footer p,
  .site-footer a {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Dolna belka */
  .footer-bottom {
    margin-top: 30px;
    font-size: 13px;
  }
}
/* ===== FINAL MOBILE FOOTER FIX ===== */

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 18px 20px;
    text-align: center;
  }

  /* Kolumny */

  .footer-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .footer-col {
    width: 100%;
    max-width: 340px;
  }

  /* Nagłówki sekcji */

  .site-footer h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  /* Elementy z ikonami */

  .footer-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-bottom: 12px;
  }

  .footer-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
  }

  /* Dane tekstowe */

  .site-footer p,
  .site-footer a {
    font-size: 15px;
    line-height: 1.55;
  }

  /* Linki informacyjne wyśrodkowane */

  .footer-col:last-child a {
    text-align: center;
  }

  /* Dolna belka */

  .footer-bottom {
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.7;
  }
}
/* ===== HERO MOBILE FIX ===== */

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 70px;
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero .btn-primary {
    padding: 14px 26px;
    font-size: 16px;
    border-radius: 8px;
  }
}
/* ===== HERO PREMIUM MOBILE FIX ===== */

@media (max-width: 768px) {
  /* jaśniejszy overlay na telefonie */
  .hero::before {
    background: rgba(0, 20, 40, 0.45) !important;
  }

  /* lepsze kadrowanie zdjęcia */
  .hero {
    background-size: cover;
    background-position: center center;
  }

  /* trochę większy tekst */
  .hero h1 {
    font-size: 30px;
    font-weight: 700;
  }

  .hero p {
    font-size: 16px;
    opacity: 0.95;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 20px;
    background-position: center;
  }

  .hero h1 {
    font-size: 28px;
  }
}
/* =================================
   HERO MOBILE FINAL FIX – 2026
================================= */

@media (max-width: 768px) {
  /* HERO */
  .hero {
    min-height: 75vh !important;
    padding: 100px 20px 60px !important;

    background-position: center !important;
    background-size: cover !important;
    background-attachment: scroll !important;
  }

  /* overlay dużo jaśniejszy */
  .hero::before {
    background: rgba(6, 20, 40, 0.45) !important;
  }

  .hero-overlay {
    display: none !important;
  }

  /* tekst */
  .hero h1 {
    font-size: 30px !important;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px !important;
    opacity: 0.95;
  }

  /* przycisk */
  .hero .btn-primary {
    padding: 14px 28px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 20, 40, 0.7),
      rgba(6, 20, 40, 0.55)
    ) !important;
  }
}
/* usuwa dziurę pod hero */

.hero {
  margin-bottom: 0 !important;
}

.hero + section {
  margin-top: 0 !important;
  padding-top: 60px;
}
.hero {
  padding-bottom: 140px !important;
}
.hero + section {
  margin-top: -40px;
}
.hamburger {
  box-shadow: 0 0 12px rgba(255, 200, 0, 0.25);
}
.about-hero {
  position: relative;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 40, 0.6);
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* HEADER NAD WSZYSTKIM */
.site-header {
  position: relative;
  z-index: 9999;
}
/* =================================
   STATS MOBILE FIX
================================= */

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
  }

  .stat strong {
    font-size: 32px;
    display: block;
  }

  .stat span {
    font-size: 14px;
  }
}
/* ===== HEADER RESET ===== */

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
}

/* przy scrollu (jak miałeś wcześniej) */
.site-header.scrolled {
  background: rgba(10, 25, 45, 0.95) !important;
  backdrop-filter: blur(6px);
}
/* ===== FOOTER IKONKI ===== */

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  line-height: 1.5;
}

.footer-item svg {
  width: 18px;
  height: 18px;
  fill: #f4c400;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Linki */
.footer-col a.footer-item {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-col a.footer-item:hover {
  opacity: 0.75;
}

/* Subtekst */
.footer-sub {
  opacity: 0.7;
  margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-item svg {
    width: 16px;
    height: 16px;
  }
}
/* ===== FOOTER FIX FINAL ===== */

.site-footer {
  background: linear-gradient(180deg, #061a2d, #041321) !important;
  color: #d6dde3 !important;
  padding: 60px 0 25px !important;
  font-size: 15px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Kolumny */
.footer-col h4 {
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Ikonki */
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  line-height: 1.5;
}

.footer-item svg {
  width: 18px;
  height: 18px;
  fill: #ffd200;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Linki */
.footer-col a {
  color: #d6dde3;
  text-decoration: none;
  display: block;
  margin: 8px 0;
}

.footer-col a:hover {
  color: #ffd200;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}
/* ===== FOOTER FIX FINAL ===== */

.site-footer {
  background: linear-gradient(180deg, #061a2d, #041321);
  color: #cfd8e3;
  padding: 60px 0 25px;
  font-size: 15px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-col {
    padding: 0 10px;
  }
}
/* checkbox RODO CF7 */
.wpcf7-acceptance input[type="checkbox"] {
display:inline-block !important;
opacity:1 !important;
position:relative !important;
width:18px;
height:18px;
margin-right:10px;
accent-color:#f2c200;
cursor:pointer;
}
input[type="checkbox"] {
display:inline-block !important;
opacity:1 !important;
visibility:visible !important;
}

