@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  color: #ffffff;

  background-color: #2e2e2e;
  background-image: url("img/texture-subtle-256.png");
  background-repeat: repeat;
}

/* =========================
   TOPBAR – FULL WIDTH TŁO
   ========================= */

.topbar {
  /* USUNIĘTE – to była szara linia */
  border-bottom: none;


}

/* ZAWARTOŚĆ TOPA – OGRANICZONA DO HERO */
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  background: #2f2f2f;

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

/* LOGO */
.topbar .logo img {
  height: 42px;
  display: block;
}

/* TELEFON */
.top-phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.top-phone:hover {
  color: #ff3b3b;
}

/* HERO */
.hero {
  border-bottom: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 460px;
  background: url("img/hero.jpg") center right / cover no-repeat;
  position: relative;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(43,43,43,0.95),
    rgba(43,43,43,0.45),
    rgba(43,43,43,0)
  );
}

.hero-content {
  position: relative;
    transform: translateY(-8px);

  z-index: 2;
  padding: 26px 32px 64px;
  max-width: 560px;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.local {
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero p {
  color: #d0d0d0;
  margin-bottom: 28px;
}

.cta {
  display: inline-block;
  background: #e53935;
  padding: 16px 36px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.call-now {
  margin-top: 10px;
  font-size: 13px;
  color: #bdbdbd;
}

/* SECTIONS – poprawiony rytm */
.section {
  max-width: 1280px;
  margin: 0 auto;          /* KLUCZ */
  border-top: 1px solid #3a3a3a;
}


.section h2 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 600;
}

.section h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.section h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}




/* =========================
   AWARIE – FINAL FIX
   ========================= */

.awarie.section {
  padding: 5px 0px 16px; /* JEDYNE źródło pionowych odstępów */
}

.awarie h2 {
  margin: 0 0 16px 0; /* brak dodatkowego luzu od góry */
}

.awarie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0; /* kluczowe – NIE dokładamy odstępu */
}

.awaria {
  display: flex;
  align-items: center;
  gap: 16px;

  background: #242424;
  border: 1px solid #3a3a3a;
  padding: 22px 24px;
}

.awaria img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.awaria-text {
  display: flex;
  flex-direction: column;
}

.awaria-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.awaria-text p {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
  line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .awarie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* PROCESS */
.process {
  padding: 5px 0px 16px; /* JEDYNE źródło pionowych odstępów */
}
.process h2 {
  margin: 0 0 16px 0; /* brak dodatkowego luzu od góry */
}

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

.process-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #242424;
  border: 1px solid #3a3a3a;
  padding: 20px 22px;
}

.process-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7ac943;
  color: #1e1e1e;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.process-step p {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #bdbdbd;
}

/* ===== FAQ ===== */

.faq {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
}

.faq h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.faq-list {
}

.faq-item {
  margin-bottom: 22px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #cfcfcf;
}

/* mobile */
@media (max-width: 767px) {
  .faq {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .faq h2 {
    font-size: 22px;
  }

  .faq-item h3 {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 14px;
  }
}


/* INFO / OTHER */
.info,
.other {
  color: #c0c0c0;
  font-size: 14px;
}

.other ul {
  padding-left: 20px;
}

/* STICKY CTA */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e53935;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  text-decoration: none;
  font-weight: 600;
}
@media (min-width: 1280px) {
  .hero-inner {
    min-height: auto;
  }
}


@media (min-width: 769px) {
  .sticky {
    display: none;
  }
}

/* TABLET */
@media (max-width: 1023px) {

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

/* MOBILE */
@media (max-width: 767px) {
  .section {
    padding: 28px 0;
  }

  .awarie-grid,
  .process-grid {
    margin-top: 16px;
  }

  .awarie-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .awaria,
  .process-step {
    padding: 18px 20px;
  }

  .awaria img {
    width: 36px;
    height: 36px;
  }

  .process-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
/* =========================
   USUNIĘCIE LINII MIĘDZY SEKCJAMI
   ========================= */

.hero {
  border-bottom: none !important;
}

.section {
  border-top: none !important;
}

/* jeśli masz warianty sekcji */
.awarie,
.process,
.info,
.other
.faq {
  border-top: none !important;
}
/* STOPKA – DANE FORMALNE (NIE SPRZEDAŻOWE) */
.footer {
  background: transparent;
  color: #b5b5b5;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 48px 24px;
}

.footer-company,
.footer-contact {
  margin-bottom: 16px;
}

.footer-links a {
  color: #b5b5b5;
  text-decoration: underline;
}

.footer-links a:hover {
  color: #ffffff;
}
/* ===== SEK CJA FORMALNA – DANE PRAWNE ===== */

.legal-footer {
  padding: 28px 0 24px;
  font-size: 12.5px;
  color: #b8b8b8;
}

.legal-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-services {
  margin-bottom: 14px;
}

.legal-services strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: #cfcfcf;
}

.legal-services ul {
  margin: 0;
  padding-left: 16px;
}

.legal-services li {
  margin: 2px 0;
}

.legal-data {
  margin-top: 10px;
  line-height: 1.4;
  white-space: normal;
}

.legal-links {
  margin-top: 8px;
}

.legal-links a {
  font-size: 12px;
  color: #b8b8b8;
  text-decoration: underline;
}

.legal-links a:hover {
  color: #ffffff;
}
/* ===== SEKCJA OPISOWA POD HERO (SEO / INFORMACYJNA) ===== */

.hero-description {
  max-width: 1280px;
  margin: 12px auto 20px;   /* KLUCZ: małe odstępy */
  padding: 0 32px;

  font-size: 15px;
  line-height: 1.55;
  color: #d0d0d0;
}

.hero-description p {
  margin: 0;               /* USUWA NADMIAROWĄ WYSOKOŚĆ */
}

/* delikatne dopasowanie mobile */
@media (max-width: 767px) {
  .hero-description {
    margin: 10px auto 18px;
    font-size: 14px;
    line-height: 1.5;
  }
}
/* FAQ SECTION */
.faq-section {
  padding: 32px 0 24px; /* było za dużo */
}
.faq-section .container {
  /* dziedziczy globalny max-width */
}

.faq-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.faq-title-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb84d, #ff8a00);
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(255, 138, 0, 0.6);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 16px;

  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;        /* było ~18–22 */
  border-radius: 6px;
}

  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 138, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.15);
}

.faq-icon {
  width: 40px;
  height: 40px;
}

.faq-content h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
}

.faq-content p {
  margin: 0;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.4;
}

.faq-arrow {
  font-size: 22px;
  color: #ffb84d;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-item {
    grid-template-columns: 40px 1fr;
  }

  .faq-arrow {
    display: none;
  }
}
* ===== FAQ – INTERAKCJE (HOVER / FOCUS) ===== */

.faq-item {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 18px 56px 18px 64px;
  transition: 
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

/* HOVER */
.faq-item:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 170, 60, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 170, 60, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

/* IKONA – delikatny glow */
.faq-item:hover .faq-icon img {
  filter: drop-shadow(0 0 6px rgba(255, 170, 60, 0.6));
}

/* STRZAŁKA */
.faq-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ffb347;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.6;
}

.faq-item:hover .faq-arrow {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
}

/* FOCUS (klik / tab) */
.faq-item:focus-within {
  outline: none;
  border-color: rgba(255, 170, 60, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 170, 60, 0.25);
}


/* HEADER DOKUMENTÓW PRAWNYCH */
.legal-header {
  background: #2f2f2f;
  border-bottom: 1px solid #3a3a3a;
}

.legal-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;

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

.legal-logo img {
  height: 28px;
  display: block;
  opacity: 0.9;
}

.legal-back {
  font-size: 14px;
  color: #b5b5b5;
  text-decoration: none;
}

.legal-back:hover {
  color: #ffffff;
}

/* COOKIE BAR */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #242424;
  border-top: 1px solid #3a3a3a;
  z-index: 9999;
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  font-size: 13px;
  color: #cfcfcf;
}

.cookie-inner a {
  color: #cfcfcf;
  text-decoration: underline;
}

.cookie-inner button {
  background: #e53935;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}