/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* BODY */
body {
  background: #0f172a;
  color: white;
  font-family: Arial, sans-serif;
  
}

/* HEADER */
.header {
  text-align: center;
  padding: 40px 20px 80px;
  position: relative;
  z-index: 10;
  background: #0f172a;
}


.header-inner h1 {
  font-size: 48px;
  letter-spacing: 2px;
}

.header-inner p {
  margin-top: 10px;
  color: #ffc218;
}

/* LINIA */
.header-line {
  position: relative;
  height: 6px;
  width: 70%;
  margin: 150px auto 0;

  background: linear-gradient(
    to right,
    transparent,
    #ffc218,
    transparent
  );

  overflow: hidden; /* 🔥 ważne */
}
.header-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  height: 100%;
  width: 30%;

  background: linear-gradient(
    90deg,
    transparent,
    #fff,
    #ffc218,
    #fff,
    transparent
  );

  filter: blur(2px);
  animation: electric-flow 4s linear infinite;
}

.header-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  pointer-events: none;

  background: radial-gradient(circle, #fff 2px, transparent 3px),
              radial-gradient(circle, #ffc218 2px, transparent 3px),
              radial-gradient(circle, #fff 1px, transparent 2px);

  background-size: 60px 6px, 90px 6px, 120px 6px;

  animation: sparks 0.8s linear infinite;
  opacity: 0.3;
}
@keyframes sparks {
  0% {
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.3;
  }
  50% {
    background-position: 30px 0, 45px 0, 60px 0;
    opacity: 1;
  }
  100% {
    background-position: 60px 0, 90px 0, 120px 0;
    opacity: 0.3;
  }
}

@keyframes electric-flow {
  0% {
    left: -30%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -30%;
  }
}


/* ROBOTNIK */
.robot-wrapper {
  position: absolute;
  
  left: 50%;
  top: 100%;
  transform: translate(-50%, -96%);
}

.robot-wrapper img {
  max-width: 220px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.6));
}

/* SIDEBAR */

.sidebar {
  position: fixed;
  left: 0;
  top: 320px;
  bottom: 0;

  align-self: flex-start; /* 🔥 ważne */

  width: 220px;
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 6px;

  background: linear-gradient(
    to bottom,
    transparent,
    #ffc218,
    transparent
  );
}

.sidebar a {
  margin: 12px 0;
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #ffc218;
  transform: translateX(5px);
}
/* AKTYWNY LINK */
.sidebar a.active {
  color: #ffc218;
  transform: translateX(8px);
}

/* opcjonalnie glow */
.sidebar a.active::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 4px;
  height: 100%;
  background: #ffc218;
}

/* CONTENT */
.content {
  margin-left: 240px; /* dokładnie tyle co sidebar */
  padding: 10px 40px 40px; /* 🔥 mniej miejsca u góry */
  display: flex;
  justify-content: center;
}
.content-inner {
  max-width: 1000px;
  margin: 0 auto;
  transform: translateX(-120px); /* 🔥 KLUCZ */
}


/* TEST */
.test-box {
  height: 300px;
  background: #1f2937;
  margin: 20px 0;
  border-radius: 10px;
}

/* ================= */
/* KONTAKT */
/* ================= */

.contact-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 10px;
}

/* ANIMACJA PULSOWANIA */
.contact-inner {
  animation: pulse 3s infinite;
}

/* OBRAZ */
.contact-inner img {
  width: 250px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER (powiększenie + obrót + glow) */
.contact-inner:hover img {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 0 20px #ffc218);
}

/* KLIK (efekt wciśnięcia) */
.contact-inner:active img {
  transform: scale(0.92) rotate(0deg);
}
/* ANIMACJA */
@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #ffc218);
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px #ffc218);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #ffc218);
  }
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: 0.3s;
  z-index: 999;
}

.popup.active {
  display: block;
  opacity: 1;
}

.popup-content {
  background: #1f2937;
  padding: 40px;
  border-radius: 12px;

  position: fixed; /* 🔥 zmiana */
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;

  width: 90%;
  max-width: 500px;
  text-align: center;

  transition: 0.3s;
}

.popup.active .popup-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.phone {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

/* BUTTON */
.call-btn {
  display: block;
  margin: 15px 0;
  padding: 12px;
  background: #ffc218;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: none;
}

button {
  padding: 12px;
  background: #1e2b57;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
/* ================= */
/* SEKCJA USŁUG */
/* ================= */

.services {
  margin-top: 0px; /* 🔥 dużo bliżej headera */
  text-align: center;
  position: relative;
  z-index: 20; /* 🔥 KLUCZ */
}

.services-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 jak w why */
  gap: 30px;

  max-width: 1100px;
  margin: 0 auto;
}

/* IKONA */
.icon {
  margin-bottom: 15px;
}

/* OBRAZ IKONY */
.icon img {
  width: 140px;
  
 filter: brightness(0.9);
   object-fit: contain; /* 🔥 klucz */
  

}

/* KAFELKI */

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  background: radial-gradient(circle, rgba(255,194,24,0.1), transparent);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}
.service-card {
  background: #1f2937;
  border-radius: 12px;
  padding: 30px;
  

  text-align: center;
  text-decoration: none;
  color: white;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  background: #273549;
}

/* IKONA HOVER (🔥 ważne) */
.service-card:hover .icon img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px #ffc218) brightness(1.2);
}

.services-subtitle {
  color: #d1d5db;
  margin-bottom: 20px;
  font-size: 16px;
}

/* ================= */
/* DLACZEGO MY */
/* ================= */

.why-us {
  margin-top: 80px;
  text-align: center;
}

.why-title {
  font-size: 28px;
  margin-bottom: 40px;
}

/* GRID */
.why-grid {
  
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 4 kafelki */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* KAFELKI */
.why-card {
 
 background: #1f2937;
  border-radius: 12px;
  padding: 30px;
  

  text-align: center;
  text-decoration: none;
  color: white;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER */


/* IKONA */

.why-icon {
  margin-bottom: 15px;
 
}



.why-icon img {

  width: 160px; /* 🔥 taka sama wielkość jak w usługach */
  transition: 0.3s;
}


/* IKONA HOVER */


/* EFEKT ŚWIATŁA */
.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  background: radial-gradient(circle, rgba(255,194,24,0.1), transparent);
  opacity: 0;
  transition: 0.3s;
}




/* ================= */
/* PROCES + OBSZAR */
/* ================= */

.process-area {
  margin-top: 80px;
  text-align: center;
}

.process-title {
  font-size: 28px;
  margin-bottom: 40px;
}

/* UKŁAD */
.process-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* LEWA STRONA */
.process-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

/* KROKI */

.process-step {
  background: #1f2937;
  padding: 20px;
  border-radius: 10px;

  display: grid;
  grid-template-columns: 50px 1fr; /* 🔥 KLUCZ */
  column-gap: 15px;
  align-items: start;

  transition: 0.3s;
}

.process-step h3 {
  margin: 0;
}

.process-step p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #d1d5db;
}



/* IKONA */
.step-icon {
  font-size: 28px;
  color: #ffc218;

  grid-row: span 2; /* 🔥 ikona zajmuje 2 rzędy */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRAWA STRONA */
.area-box {
  background: #1f2937;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 10px; /* 🔥 TU kontrolujesz odstępy */

  transition: 0.3s;
}



/* LISTA */


.area-box li {
  margin-bottom: 8px;
}
.area-box p,
.area-box ul,
.area-box h3 {
  margin: 0;
}

/* CTA */
.area-cta {
  margin-top: 15px;
  color: #ffc218;
  font-weight: bold;
}

/* OBRAZ OBSZARU */
.area-image {
  width: 100%;
  border-radius: 10px;
  margin: 0;
}

/* HOVER */
.area-image:hover {
  opacity: 1;
  transform: scale(1.02);
}

/* KONTAINER */
.nav-item {
  position: relative;
  margin: 12px 0;
}

/* DROPDOWN */
.dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  display: flex;
  flex-direction: column;

  background: #1f2937;
  border-radius: 8px;

  transition: 0.3s;
}

/* LINKI */
.dropdown a {
  padding: 8px 15px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.dropdown a:hover {
  background: #273549;
  color: #ffc218;
}

/* POKAZANIE */
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 300px; /* 🔥 rozwija się w dół */
}











/* ================= */
/* FOOTER */
/* ================= */

.footer {
  background: #020617;
  margin-top: 80px;
  padding: 25px 20px 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* UKŁAD */
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;

  max-width: 900px;
  margin: 0 auto;
}

/* KOLUMNY */
.footer-col {
  

  display: flex;
  flex-direction: column;
  gap: 8px;

  transition: 0.3s;
}

/* LOGO */
.footer-logo {
  width: 160px;
}

/* NAGŁÓWEK */
.footer-col h4 {
  color: #ffc218;
  margin: 0;
}


/* TEKST */
.footer-col p {
  margin: 0;
  color: white;
  font-size: 14px;
}


/* DÓŁ */
.footer-bottom {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  font-size: 13px;
  color: #aaa;
}





/* POPUP */
.service-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.8);
  z-index: 999;

  opacity: 0;
  transition: 0.3s;
}

.service-popup.active {
  display: block;
  opacity: 1;
}

/* CONTENT */
.service-popup-content {
  background: #1f2937;
  padding: 40px;
  border-radius: 12px;

  position: fixed; /* 🔥 zamiast absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);

  text-align: center;
  max-width: 500px;
  width: 90%;

  opacity: 0;
  transition: 0.3s;
}

.service-popup.active .service-popup-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* TEKST */
.service-popup h2 {
  color: #ffc218;
  margin-bottom: 15px;
}

.service-popup p {
  margin-bottom: 15px;
  color: #d1d5db;
}
/* BADGE 24/7 */
.service-badge {
  position: absolute;
  top: -10px;
  left: -10px;

  background: #ffc218;
  color: black;
  font-weight: bold;
  font-size: 12px;

  padding: 5px 10px;
  border-radius: 6px;

  box-shadow: 0 0 15px rgba(255,194,24,0.6);
}

/* WYRÓŻNIONY TEKST */
.service-highlight {
  color: #ffc218;
  font-weight: bold;
}


/* PRZYCISK PRO */
.service-call {
  display: block;
  margin-top: 20px;
  padding: 18px;

  background: #ffc218;
  color: black;
  text-decoration: none;
  border-radius: 10px;

  font-weight: bold;
  font-size: 18px;

  transition: 0.3s;
  position: relative;
  overflow: hidden;

  animation: pulseCall 2s infinite;
}

/* PULSOWANIE */
@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0px rgba(255,194,24,0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(255,194,24,1);
  }
  100% {
    box-shadow: 0 0 0px rgba(255,194,24,0.6);
  }
}

/* HOVER */
.service-call:hover {
  transform: scale(1.07);
  background: #ffd84d;
}

/* ZAMKNIĘCIE */
.service-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.service-popup-content::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle, rgba(255,194,24,0.15), transparent);
  opacity: 0.3;
  pointer-events: none;
}

/* BŁYSK */
.service-flash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: radial-gradient(circle, rgba(255,194,24,0.6), transparent);
  pointer-events: none;

  opacity: 0;
  z-index: 998;
}

.service-flash.active {
  animation: flashAnim 0.4s ease-out;
}

@keyframes flashAnim {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}








/* ===== PODSTRONA PRO ELEKTRYKA ===== */

/* UKŁAD */
.elektryka-page .intro-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEKST */
.elektryka-page .intro-text {
  flex: 1;
}

/* OBRAZ */
.elektryka-page .intro-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* 🔥 OBRAZEK ELEKTRYKA */
.elektryka-page .intro-image img {
  max-width: 380px;

  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
  animation: float 4s ease-in-out infinite;
}

/* ANIMACJA */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* LISTA */
.elektryka-page .services-list-pro {
  display: grid;
  gap: 20px;
}

/* KAFELKI */
.elektryka-page .service-item {
  background: #1f2937;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}




/* CTA - ELEKTRYKA */
.elektryka-page .page-cta {
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centrowanie */
  margin-top: 100px; /* 🔥 większy odstęp */
}

.elektryka-page .cta-btn {
  display: inline-block;
  margin-top: 20px;

  padding: 14px 28px;
  background: #ffc218;
  color: black;
  text-decoration: none;

  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;

  transition: 0.3s;
}

/* HOVER */
.elektryka-page .cta-btn:hover {
  background: #ffd84d;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255,194,24,0.4);
}

/* ================= */
/* DLACZEGO MY MINI - ELEKTRYKA */
/* ================= */

.elektryka-page .why-mini {
  margin-top: 50px;
  text-align: center;
}

.elektryka-page .why-mini-title {
  margin-bottom: 25px;
  color: #ffc218;
  font-size: 22px;
}

/* GRID */
.elektryka-page .why-mini-grid {
  display: grid;
  
  gap: 20px;

  max-width: 900px;
  margin: 0 auto;
}

/* KAFELKI */
.elektryka-page .why-mini-card {
  background: #1f2937;
  border-radius: 10px;
  padding: 18px;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}



/* IKONA */
.elektryka-page .why-mini-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OBRAZ IKONY */
.elektryka-page .why-mini-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;

  transition: 0.3s;
}



/* TEKST */
.elektryka-page .why-mini-card h3 {
  font-size: 15px;
  margin: 10px 0 5px;
  margin-top: 2px; /* 🔥 zmniejszamy odstęp po większej ikonie */
}


.elektryka-page .why-mini-card p {
  font-size: 12.5px;
  color: #d1d5db;
}



/* ================= */
/* MONITORING PAGE */
/* ================= */

.monitoring-page .intro-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.monitoring-page .intro-image img {
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

.monitoring-page .services-list-pro {
  display: grid;
  gap: 20px;
}

.monitoring-page .service-item {
  background: #1f2937;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}






/* CTA */
.monitoring-page .page-cta {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.monitoring-page .cta-btn {
  margin-top: 20px;
  padding: 14px 28px;
  background: #ffc218;
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.monitoring-page .cta-btn:hover {
  background: #ffd84d;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255,194,24,0.4);
}


/* animacja */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ================= */
/* DLACZEGO MY MINI - MONITORINGI */
/* ================= */

.monitoring-page .why-mini {
  margin-top: 50px;
  text-align: center;
}

.monitoring-page .why-mini-title {
  margin-bottom: 25px;
  color: #ffc218;
  font-size: 22px;
}

/* GRID */
.monitoring-page .why-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  max-width: 900px;
  margin: 0 auto;
}

/* KAFELKI */
.monitoring-page .why-mini-card {
  background: #1f2937;
  border-radius: 10px;
  padding: 18px;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER */


/* IKONA */
.monitoring-page .why-mini-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OBRAZ IKONY */
.monitoring-page .why-mini-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;

  transition: 0.3s;
}



/* TEKST */
.monitoring-page .why-mini-card h3 {
  font-size: 15px;
  margin: 10px 0 5px;
  margin-top: 2px; /* 🔥 zmniejszamy odstęp po większej ikonie */
}


.monitoring-page .why-mini-card p {
  font-size: 12.5px;
  color: #d1d5db;
}







/* ================= */
/* SWIATLOWODY PAGE */
/* ================= */

.swiatlowody-page .intro-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.swiatlowody-page .intro-image img {
  max-width: 580px;
  transform: translateX(20px); /* 🔥 lekkie przesunięcie w prawo */
  animation: float 4s ease-in-out infinite;
}
/* ODSTĘP NAD "ZAKRES USŁUG" */
.swiatlowody-page .page-section {
  margin-top: 60px; /* 🔥 zwiększ */
}

.swiatlowody-page .services-list-pro {
  
  display: grid;
  gap: 20px;
}

.swiatlowody-page .service-item {
  background: #1f2937;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}



/* CTA */
.swiatlowody-page .page-cta {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiatlowody-page .cta-btn {
  margin-top: 20px;
  padding: 14px 28px;
  background: #ffc218;
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.swiatlowody-page .cta-btn:hover {
  background: #ffd84d;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255,194,24,0.4);
}

/* animacja */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ================= */
/* DLACZEGO MY MINI - MONITORINGI */
/* ================= */

.swiatlowody-page .why-mini {
  margin-top: 50px;
  text-align: center;
}

.swiatlowody-page .why-mini-title {
  margin-bottom: 25px;
  color: #ffc218;
  font-size: 22px;
}

/* GRID */
.swiatlowody-page .why-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  max-width: 900px;
  margin: 0 auto;
}

/* KAFELKI */
.swiatlowody-page .why-mini-card {
  background: #1f2937;
  border-radius: 10px;
  padding: 18px;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}



/* IKONA */
.swiatlowody-page .why-mini-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OBRAZ IKONY */
.swiatlowody-page .why-mini-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;

  transition: 0.3s;
}



/* TEKST */
.swiatlowody-page .why-mini-card h3 {
  font-size: 15px;
  margin: 10px 0 5px;
  margin-top: 2px; /* 🔥 zmniejszamy odstęp po większej ikonie */
}


.swiatlowody-page .why-mini-card p {
  font-size: 12.5px;
  color: #d1d5db;
}







/* ================= */
/* TELETECHNIKA PAGE */
/* ================= */

.teletechnika-page .intro-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.teletechnika-page .intro-image img {
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

.teletechnika-page .page-section {
  margin-top: 60px;
}

.teletechnika-page .services-list-pro {
  display: grid;
  gap: 20px;
}

.teletechnika-page .service-item {
  background: #1f2937;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}



/* CTA */
.teletechnika-page .page-cta {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teletechnika-page .cta-btn {
  margin-top: 20px;
  padding: 14px 28px;
  background: #ffc218;
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.teletechnika-page .cta-btn:hover {
  background: #ffd84d;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255,194,24,0.4);
}

/* animacja */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ================= */
/* DLACZEGO MY MINI - teletechnika */
/* ================= */

.teletechnika-page .why-mini {
  margin-top: 50px;
  text-align: center;
}

.teletechnika-page .why-mini-title {
  margin-bottom: 25px;
  color: #ffc218;
  font-size: 22px;
}

/* GRID */
.teletechnika-page .why-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  max-width: 900px;
  margin: 0 auto;
}

/* KAFELKI */
.teletechnika-page .why-mini-card {
  background: #1f2937;
  border-radius: 10px;
  padding: 18px;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}



/* IKONA */
.teletechnika-page .why-mini-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OBRAZ IKONY */
.teletechnika-page .why-mini-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;

  transition: 0.3s;
}



/* TEKST */
.teletechnika-page .why-mini-card h3 {
  font-size: 15px;
  margin: 10px 0 5px;
  margin-top: 2px; /* 🔥 zmniejszamy odstęp po większej ikonie */
}


.teletechnika-page.why-mini-card p {
  font-size: 12.5px;
  color: #d1d5db;
}




/* ================= */
/* WSPOLPRACA PAGE */
/* ================= */

.wspolpraca-page .page-title {
  margin-bottom: 70px;
}

.wspolpraca-page .page-intro {
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}
/* NAGŁÓWKI */
.wspolpraca-page .page-section h2 {
  margin-bottom: 35px;
}
.wspolpraca-page .page-section {
  margin-top: 80px; /* 🔥 większy odstęp między sekcjami */
}


/* KAFELKI USŁUG */
.wspolpraca-page .services-list-pro {
  margin-top: 20px;
  gap: 25px;
}

.wspolpraca-page .service-item {
  padding: 20px;
}

.wspolpraca-page .service-item p {
  margin-top: 8px;
  line-height: 1.5;
}

/* GRID B2B */
.wspolpraca-page .b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.wspolpraca-page .b2b-item {
  background: #1f2937;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
}
/* ================= */
/* CTA - WSPOLPRACA (2 BUTTONY) */
/* ================= */

.wspolpraca-page .page-cta {
  margin-top: 100px;

  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centrowanie */
}

/* BUTTONY */
.wspolpraca-page .cta-btn {
  margin-top: 15px;
  padding: 14px 28px;
  min-width: 260px;

  display: block;
  text-align: center;

  background: #ffc218;
  color: black;
  text-decoration: none;

  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;

  transition: 0.3s;
}

/* HOVER */
.wspolpraca-page .cta-btn:hover {
  background: #ffd84d;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255,194,24,0.4);
}

/* ================= */
/* DLACZEGO MY MINI - teletechnika */
/* ================= */

.wspolpraca-page .why-mini {
  margin-top: 50px;
  text-align: center;
}

.wspolpraca-page .why-mini-title {
  margin-bottom: 25px;
  color: #ffc218;
  font-size: 22px;
}

/* GRID */
.wspolpraca-page .why-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  max-width: 900px;
  margin: 0 auto;
}

/* KAFELKI */
.wspolpraca-page .why-mini-card {
  background: #1f2937;
  border-radius: 10px;
  padding: 18px;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}



/* IKONA */
.wspolpraca-page .why-mini-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OBRAZ IKONY */
.wspolpraca-page .why-mini-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;

  transition: 0.3s;
}



/* TEKST */
.wspolpraca-page .why-mini-card h3 {
  font-size: 15px;
  margin: 10px 0 5px;
  margin-top: 2px; /* 🔥 zmniejszamy odstęp po większej ikonie */
}


.wspolpraca-page.why-mini-card p {
  font-size: 12.5px;
  color: #d1d5db;
}


body {
  opacity: 0;
  transition: 0.6s ease-out;
}

body.loaded {
  opacity: 1;
  
}

body.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header {
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.7s ease;
}

body.loaded .header {
  opacity: 1;
  transform: translateY(0);
}
.content {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

body.loaded .content {
  opacity: 1;
  transform: translateY(0);
}

.robot-wrapper {
  opacity: 0;
  transform: translate(-50%, -80%) scale(0.9);
  transition: 0.8s ease;
}

body.loaded .robot-wrapper {
  opacity: 1;
  transform: translate(-50%, -96%) scale(1);
}




.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn {
  transition: transform 0.2s ease;
}

.scroll-anim {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.6s ease;
}

.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================= */
/* STRONA W BUDOWIE */
/* ================= */

.construction {
  text-align: center;
  margin-top: 80px;
}

.construction-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.construction-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.construction-text {
  color: #d1d5db;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.construction-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffc218;
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.construction-btn:hover {
  background: #ffd84d;
  transform: scale(1.05);
}



.elektryka-page .more-text p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}




























/* ========================= */
/* UKRYTE NA DESKTOP */
/* ========================= */
.mobile-top,
.mobile-menu,
.mobile-bottom {
  display: none;
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  /* 🔥 POKAZUJEMY MOBILE */
  .mobile-top {
    display: flex;
  }

  .mobile-bottom {
    display: flex;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
  }

  .mobile-menu.active {
    display: flex;
  }

  /* ================= */
  /* USUWAMY DESKTOP */
  /* ================= */

  .sidebar,
  .robot-wrapper,
  .contact-btn {
    display: none !important;
  }

  /* ================= */
  /* HEADER FIX */
  /* ================= */

  .header {
    padding: 80px 15px 40px;
  }

  .header-line {
    margin: 40px auto 0;
  }

  /* ================= */
  /* CONTENT FIX */
  /* ================= */

  .content {
    margin-left: 0 !important;
    padding: 20px 15px 80px;
  }

  .content-inner {
    transform: none !important;
    max-width: 100%;
  }

  /* ================= */
  /* TOP BAR */
  /* ================= */

  .mobile-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #020617;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }

  .mobile-logo {
    text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  }

  .mobile-actions {
    display: flex;
    gap: 8px;
  }

 .btn-call,
.btn-sms,
.btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

/* KOLORY */
.btn-call {
  background: #22c55e; /* zielony */
  color: white;
}

.btn-sms {
  background: #3b82f6; /* niebieski */
  color: white;
}

.btn-mail {
  background: #f97316; /* pomarańcz */
  color: white;
}

  .hamburger {
    font-size: 22px;
    cursor: pointer;
  }

  /* ================= */
  /* MENU */
  /* ================= */

  .mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1f2937;
    z-index: 999;
  }

  .mobile-menu a {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: white;
    text-decoration: none;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .icon img {
    width: 80px;
  }

  /* ================= */
  /* WHY */
  /* ================= */

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-icon img {
    width: 80px;
  }

  /* ================= */
  /* PROCESS */
  /* ================= */

  .process-container {
    flex-direction: column;
  }

  .process-box {
    max-width: 100%;
  }

  .area-box {
    max-width: 100%;
  }

  /* ================= */
  /* PODSTRONY */
  /* ================= */

  .intro-layout {
    flex-direction: column;
  }

  .intro-image img {
    max-width: 100%;
  }

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

  /* ================= */
  /* BOTTOM BAR */
  /* ================= */

  .mobile-bottom {
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
  }

  .mobile-bottom a {
    display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

    flex: 1;
    padding: 15px;
    text-align: center;
    background: #ffc218;
    color: black;
    font-weight: bold;
    text-decoration: none;
  }
/* KOLORY */
.bottom-call {
  background: #22c55e;
}

.bottom-sms {
  background: #3b82f6;
}

.bottom-mail {
  background: #f97316;
}

.mobile-bottom a:active,
.btn-call:active,
.btn-sms:active,
.btn-mail:active {
  transform: scale(0.9);
}
}

.service-badge-mobile {
  background: #ffc218;
  color: black;

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

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

  display: flex;
  align-items: center;
  gap: 5px;

  cursor: pointer;

  animation: pulseService 2s infinite;
}

/* 🔥 animacja */
@keyframes pulseService {
  0% {
    box-shadow: 0 0 0px rgba(255,194,24,0.6);
  }
  50% {
    box-shadow: 0 0 15px rgba(255,194,24,1);
  }
  100% {
    box-shadow: 0 0 0px rgba(255,194,24,0.6);
  }
}

/* klik */
.service-badge-mobile:active {
  transform: scale(0.95);
}

/* DROPDOWN */
.mobile-dropdown-toggle {
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #333;
  font-weight: bold;
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: #111827;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

/* linki */
.mobile-dropdown-content a {
  padding: 12px 20px;
  font-size: 14px;
  color: #d1d5db;
  text-decoration: none;
}

/* AKTYWNE */
.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 300px;
}


.mobile-dropdown-toggle::after {
  content: "▾";
  float: right;
  transition: 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}



/* ================= */
/* USŁUGI - MOBILE ANIM */
/* ================= */

@media (max-width: 768px) {

  .service-card {
    position: relative;
    overflow: hidden;
    animation: servicePulse 3s ease-in-out infinite;
  }

  /* DELIKATNY PULSE */
  @keyframes servicePulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }

  /* TAP (klik palcem) */
  .service-card:active {
    transform: scale(0.95);
    transition: 0.1s;
  }

  @media (max-width: 768px) {

  .service-card::after {
    content: "›";
    position: absolute;
    right: 12px;
    bottom: 10px;

    font-size: 18px;
    color: #ffc218;

    opacity: 0.7;
  }

}

}
@media (max-width: 768px) {

  .service-card {
    box-shadow: 0 0 0 rgba(255,194,24,0);
  }

  .service-card:nth-child(odd) {
    animation-delay: 0.3s;
  }

  .service-card:nth-child(even) {
    animation-delay: 0.6s;
  }

}


@media (max-width: 768px) {

  .mobile-top {
    transition: all 0.3s ease;
    padding: 12px 15px;
  }

  /* 🔥 SHRNK */
  .mobile-top.shrink {
    padding: 6px 15px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(6px);
  }

  /* LOGO */
  .mobile-logo {
    transition: 0.3s;
    font-size: 18px;
  }

  .mobile-top.shrink .mobile-logo {
    font-size: 15px;
  }

  /* SERWIS */
  .service-badge-mobile {
    transition: 0.3s;
  }

  .mobile-top.shrink .service-badge-mobile {
    padding: 6px 10px;
    font-size: 11px;
  }

}.construction-icon {
  font-size: 60px;
}

.construction-title {
  font-size: 24px;
}

.read-more-btn {
  display: none;
}






/* ================= */
/* MOBILE ELEKTRYKA */
/* ================= */

@media (max-width: 768px) 
{



  /* ❌ WYŁĄCZENIE DESKTOP */
  .elektryka-page .sidebar,
  .elektryka-page .contact-btn,
  .elektryka-page .robot-wrapper {
    display: none;
  }


    .mobile-top {
    z-index: 9999;
  }

  .elektryka-page .header {
    margin-top: 60px; /* 🔥 klucz */
  }



.elektryka-page .robot-wrapper img {
    max-width: 120px;
  }


  /* HEADER */
  .elektryka-page .header {
    padding: 20px 10px 40px;
  }

  .elektryka-page .header-inner h1 {
    font-size: 28px;
  }

  /* CONTENT */
  .elektryka-page .content {
    margin-left: 0;
    padding: 20px 15px;
  }

  .elektryka-page .content-inner {
    transform: none;
  }

  /* INTRO */
  .elektryka-page .intro-layout {
    flex-direction: column;
    gap: 20px;
  }

  .elektryka-page .intro-image img {
    max-width: 100%;
  }

  .elektryka-page .page-title {
    font-size: 24px;
  }

  .elektryka-page .page-intro {
    font-size: 14px;
  }

  /* USŁUGI */
  .elektryka-page .service-item {
    padding: 12px;
  }

  .elektryka-page .service-item p {
    font-size: 13px;
  }

  /* WHY MINI */
  .elektryka-page .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .elektryka-page .why-mini-icon {
    height: 100px;
  }

  .elektryka-page .why-mini-icon img {
    width: 90px;
    height: 90px;
  }

  .elektryka-page .why-mini-card h3 {
    font-size: 13px;
  }

  .elektryka-page .why-mini-card p {
    font-size: 11px;
  }

  /* CTA */
  .elektryka-page .cta-btn {
    width: 100%;
    text-align: center;
  }


  .more-text {
    display: none;
  }

  .more-text.active {
    display: block;
    margin-top: 10px;
  }
  .elektryka-page .more-text p {
    font-size: 14px;
  }


  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 1px solid #ffc218;
    color: #ffc218;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  .read-more-btn:hover {
  background: #ffc218;
  color: black;
}
}

/* ================= */
/* MOBILE SLIDER WHY */
/* ================= */

@media (max-width: 768px) {

  /* INDEX */
  .why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .why-grid::-webkit-scrollbar {
    display: none;
  }

  .why-card {
    min-width: 60%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .why-card .why-icon img {
    width: 130px;
  }

  /* ELEKTRYKA */
  .elektryka-page .why-mini-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .elektryka-page .why-mini-grid::-webkit-scrollbar {
    display: none;
  }

  .elektryka-page .why-mini-card {
    min-width: 60%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .why-grid,
  .elektryka-page .why-mini-grid,
  .monitoring-page .why-mini-grid  {
    scroll-behavior: smooth;
  }
  .elektryka-page .why-mini-icon img {
    width: 120px;
    height: 120px;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }

  .slider-dots span {
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
    transition: 0.3s;
  }

  .slider-dots span.active {
    background: #ffc218;
    transform: scale(1.2);
  }


  
}

/* ================= */
/* UNIWERSALNY SLIDER WHY (INDEX + ELEKTRYKA) */
/* ================= */

/* 🔹 DESKTOP – grid */
.why-grid,
.elektryka-page .why-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* 🔹 UKRYJ DOTS NA DESKTOP */
.slider-dots {
  display: none;
}

/* 🔹 MOBILE */
@media (max-width: 768px) {

  /* GRID → SLIDER */
  .why-grid,
  .elektryka-page .why-mini-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    padding-right: 15px;
  }

  /* ukrycie scrolla */
  .why-grid::-webkit-scrollbar,
  .elektryka-page .why-mini-grid::-webkit-scrollbar {
    display: none;
  }

  /* KAFELKI – IDENTYCZNE */
  .why-card,
  .elektryka-page .why-mini-card,
  .monitoring-page .why-mini-card {
    min-width: 70%;
    flex: 0 0 auto;
    scroll-snap-align: start;
    text-align: center;
  }
.why-grid::after,
.elektryka-page .why-mini-grid::after {
  content: "";
  min-width: 15px;
}

  /* IKONY – IDENTYCZNE */
  .why-icon img,
  .elektryka-page .why-mini-icon img,
  .monitoring-page .why-mini-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  /* TEKST – IDENTYCZNY */
  .why-card h3,
  .elektryka-page .why-mini-card h3,
  .monitoring-page .why-mini-card h3 {
    font-size: 14px;
    margin-top: 5px;
  }

  .why-card p,
  .elektryka-page .why-mini-card p,
  .monitoring-page .why-mini-card p {
    font-size: 12px;
    color: #d1d5db;
  }

  /* DOTS */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
  }

  .slider-dots span {
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
    transition: 0.3s;
  }

  .slider-dots span.active {
    background: #ffc218;
    transform: scale(1.2);
  }

}






/* ================= */
/* MOBILE MONITORING */
/* ================= */

@media (max-width: 768px) {

  /* ❌ WYŁĄCZENIE DESKTOP */
  .monitoring-page .sidebar,
  .monitoring-page .contact-btn,
  .monitoring-page .robot-wrapper {
    display: none;
  }

  .mobile-top {
    z-index: 9999;
  }

  .monitoring-page .header {
    margin-top: 60px;
  }

  .monitoring-page .robot-wrapper img {
    max-width: 120px;
  }

  /* HEADER */
  .monitoring-page .header {
    padding: 20px 10px 40px;
  }

  .monitoring-page .header-inner h1 {
    font-size: 28px;
  }

  /* CONTENT */
  .monitoring-page .content {
    margin-left: 0;
    padding: 20px 15px;
  }

  .monitoring-page .content-inner {
    transform: none;
  }

  /* INTRO */
  .monitoring-page .intro-layout {
    flex-direction: column;
    gap: 20px;
  }

  .monitoring-page .intro-image img {
    max-width: 100%;
  }

  .monitoring-page .page-title {
    font-size: 24px;
  }

  .monitoring-page .page-intro {
    font-size: 14px;
  }

  /* USŁUGI */
  .monitoring-page .service-item {
    padding: 12px;
  }

  .monitoring-page .service-item p {
    font-size: 13px;
  }

  /* WHY MINI */
  .monitoring-page .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .monitoring-page .why-mini-icon {
    height: 100px;
  }

  .monitoring-page .why-mini-icon img {
    width: 90px;
    height: 90px;
  }

  .monitoring-page .why-mini-card h3 {
    font-size: 13px;
  }

  .monitoring-page .why-mini-card p {
    font-size: 11px;
  }

  /* CTA */
  .monitoring-page .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* READ MORE */
  .monitoring-page .more-text {
    display: none;
  }

  .monitoring-page .more-text.active {
    display: block;
    margin-top: 10px;
  }

  .monitoring-page .more-text p {
    font-size: 14px;
  }

  .monitoring-page .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 1px solid #ffc218;
    color: #ffc218;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .monitoring-page .read-more-btn:hover {
    background: #ffc218;
    color: black;
  }

}

/* ================= */
/* SLIDER – MONITORING */
/* ================= */

@media (max-width: 768px) {

  .monitoring-page .why-mini-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .monitoring-page .why-mini-grid::-webkit-scrollbar {
    display: none;
  }

  .monitoring-page .why-mini-card {
    min-width: 60%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .monitoring-page .why-mini-icon img {
    width: 120px;
    height: 120px;
  }

}




/* ================= */
/* MOBILE ŚWIATŁOWODY */
/* ================= */

@media (max-width: 768px) {

  /* ❌ WYŁĄCZENIE DESKTOP */
  .swiatlowody-page .sidebar,
  .swiatlowody-page .contact-btn,
  .swiatlowody-page .robot-wrapper {
    display: none;
  }

  .mobile-top {
    z-index: 9999;
  }

  .swiatlowody-page .header {
    margin-top: 60px;
  }

  .swiatlowody-page .robot-wrapper img {
    max-width: 120px;
  }

  /* HEADER */
  .swiatlowody-page .header {
    padding: 20px 10px 40px;
  }

  .swiatlowody-page .header-inner h1 {
    font-size: 28px;
  }

  /* CONTENT */
  .swiatlowody-page .content {
    margin-left: 0;
    padding: 20px 15px;
  }

  .swiatlowody-page .content-inner {
    transform: none;
  }

  /* INTRO */
  .swiatlowody-page .intro-layout {
    flex-direction: column;
    gap: 20px;
  }

  .swiatlowody-page .intro-image img {
    max-width: 100%;
  }

  .swiatlowody-page .page-title {
    font-size: 24px;
  }

  .swiatlowody-page .page-intro {
    font-size: 14px;
  }

  /* USŁUGI */
  .swiatlowody-page .service-item {
    padding: 12px;
  }

  .swiatlowody-page .service-item p {
    font-size: 13px;
  }

  /* WHY MINI */
  .swiatlowody-page .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .swiatlowody-page .why-mini-icon {
    height: 100px;
  }

  .swiatlowody-page .why-mini-icon img {
    width: 90px;
    height: 90px;
  }

  .swiatlowody-page .why-mini-card h3 {
    font-size: 13px;
  }

  .swiatlowody-page .why-mini-card p {
    font-size: 11px;
  }

  /* CTA */
  .swiatlowody-page .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* READ MORE */
  .swiatlowody-page .more-text {
    display: none;
  }

  .swiatlowody-page .more-text.active {
    display: block;
    margin-top: 10px;
  }

  .swiatlowody-page .more-text p {
    font-size: 14px;
  }

  .swiatlowody-page .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 1px solid #ffc218;
    color: #ffc218;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .swiatlowody-page .read-more-btn:hover {
    background: #ffc218;
    color: black;
  }

}

/* ================= */
/* SLIDER – ŚWIATŁOWODY */
/* ================= */

@media (max-width: 768px) {

  .swiatlowody-page .why-mini-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .swiatlowody-page .why-mini-grid::-webkit-scrollbar {
    display: none;
  }

  .swiatlowody-page .why-mini-card {
    min-width: 60%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .swiatlowody-page .why-mini-icon img {
    width: 120px;
    height: 120px;
  }

}




/* ================= */
/* MOBILE TELETECHNIKA */
/* ================= */

@media (max-width: 768px) {

  /* ❌ WYŁĄCZENIE DESKTOP */
  .teletechnika-page .sidebar,
  .teletechnika-page .contact-btn,
  .teletechnika-page .robot-wrapper {
    display: none;
  }

  .mobile-top {
    z-index: 9999;
  }

  .teletechnika-page .header {
    margin-top: 60px;
  }

  .teletechnika-page .robot-wrapper img {
    max-width: 120px;
  }

  /* HEADER */
  .teletechnika-page .header {
    padding: 20px 10px 40px;
  }

  .teletechnika-page .header-inner h1 {
    font-size: 28px;
  }

  /* CONTENT */
  .teletechnika-page .content {
    margin-left: 0;
    padding: 20px 15px;
  }

  .teletechnika-page .content-inner {
    transform: none;
  }

  /* INTRO */
  .teletechnika-page .intro-layout {
    flex-direction: column;
    gap: 20px;
  }

  .teletechnika-page .intro-image img {
    max-width: 100%;
  }

  .teletechnika-page .page-title {
    font-size: 24px;
  }

  .teletechnika-page .page-intro {
    font-size: 14px;
  }

  /* USŁUGI */
  .teletechnika-page .service-item {
    padding: 12px;
  }

  .teletechnika-page .service-item p {
    font-size: 13px;
  }

  /* WHY MINI */
  .teletechnika-page .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .teletechnika-page .why-mini-icon {
    height: 100px;
  }

  .teletechnika-page .why-mini-icon img {
    width: 90px;
    height: 90px;
  }

  .teletechnika-page .why-mini-card h3 {
    font-size: 13px;
  }

  .teletechnika-page .why-mini-card p {
    font-size: 11px;
  }

  /* CTA */
  .teletechnika-page .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* READ MORE */
  .teletechnika-page .more-text {
    display: none;
  }

  .teletechnika-page .more-text.active {
    display: block;
    margin-top: 10px;
  }

  .teletechnika-page .more-text p {
    font-size: 14px;
  }

  .teletechnika-page .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 1px solid #ffc218;
    color: #ffc218;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .teletechnika-page .read-more-btn:hover {
    background: #ffc218;
    color: black;
  }

}

/* ================= */
/* SLIDER – TELETECHNIKA */
/* ================= */

@media (max-width: 768px) {

  .teletechnika-page .why-mini-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .teletechnika-page .why-mini-grid::-webkit-scrollbar {
    display: none;
  }

  .teletechnika-page .why-mini-card {
    min-width: 60%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .teletechnika-page .why-mini-icon img {
    width: 120px;
    height: 120px;
  }

}






/* ================= */
/* MOBILE WSPÓŁPRACA */
/* ================= */

@media (max-width: 768px) {

  /* ❌ WYŁĄCZENIE DESKTOP */
  .wspolpraca-page .sidebar,
  .wspolpraca-page .contact-btn,
  .wspolpraca-page .robot-wrapper {
    display: none;
  }

  .mobile-top {
    z-index: 9999;
  }

  .wspolpraca-page .header {
    margin-top: 60px;
  }

  .wspolpraca-page .robot-wrapper img {
    max-width: 120px;
  }

  /* HEADER */
  .wspolpraca-page .header {
    padding: 20px 10px 40px;
  }

  .wspolpraca-page .header-inner h1 {
    font-size: 28px;
  }

  /* CONTENT */
  .wspolpraca-page .content {
    margin-left: 0;
    padding: 20px 15px;
  }

  .wspolpraca-page .content-inner {
    transform: none;
  }

  /* INTRO */
  .wspolpraca-page .intro-layout {
    flex-direction: column;
    gap: 20px;
  }

  .wspolpraca-page .intro-image img {
    max-width: 100%;
  }

  .wspolpraca-page .page-title {
    font-size: 24px;
  }

  .wspolpraca-page .page-intro {
    font-size: 14px;
  }

  /* USŁUGI / BLOKI */
  .wspolpraca-page .b2b-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wspolpraca-page .service-item,
  .wspolpraca-page .b2b-item {
    text-align: center;
    padding: 15px;
  }

  .wspolpraca-page .service-item p,
  .wspolpraca-page .b2b-item p {
    font-size: 12px;
    
  }
    .wspolpraca-page .b2b-item img {
    width: 70px;
    margin-bottom: 10px;
  }
.wspolpraca-page .b2b-item h3 {
    font-size: 14px;
  }

  /* WHY MINI (jeśli używasz) */
  .wspolpraca-page .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .wspolpraca-page .why-mini-icon {
    height: 100px;
  }

  .wspolpraca-page .why-mini-icon img {
    width: 90px;
    height: 90px;
  }

  .wspolpraca-page .why-mini-card h3 {
    font-size: 13px;
  }

  .wspolpraca-page .why-mini-card p {
    font-size: 11px;
  }

  /* CTA */
  .wspolpraca-page .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* READ MORE */
  .wspolpraca-page .more-text {
    display: none;
  }

  .wspolpraca-page .more-text.active {
    display: block;
    margin-top: 10px;
  }

  .wspolpraca-page .more-text p {
    font-size: 14px;
  }

  .wspolpraca-page .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 1px solid #ffc218;
    color: #ffc218;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .wspolpraca-page .read-more-btn:hover {
    background: #ffc218;
    color: black;
  }

}

/* ================= */
/* SLIDER – WSPÓŁPRACA */
/* ================= */

@media (max-width: 768px) {

  .wspolpraca-page .why-mini-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .wspolpraca-page .why-mini-grid::-webkit-scrollbar {
    display: none;
  }

  .wspolpraca-page .why-mini-card {
    min-width: 60%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .wspolpraca-page .why-mini-icon img {
    width: 120px;
    height: 120px;
  }

}




