/* ==================================================
   ZMIENNE
================================================== */

:root {
  --bg-color: #0d0d0d;
  --text-color: #ffffff;
  --text-secondary: #a3a3a3;
  --accent-color: #e60000;
  --accent-hover: #b10000;
  --card-bg: #1a1a1a;
  --border-color: #262626;
}

/* ==================================================
   RESET I PODSTAWY
================================================== */

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

html {
  font-size: 17px;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background-color: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid var(--border-color);

  backdrop-filter: blur(10px);
}

.header-content {
  position: relative;

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

  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

/* Logo */

.logo {
  flex-shrink: 0;

  color: var(--text-color);
  text-decoration: none;

  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-color);
}

/* ==================================================
   NAWIGACJA
================================================== */

.nav-menu {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 18px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;

  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

/* ==================================================
   DROPDOWN - NASZE USŁUGI
================================================== */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;

  width: min(850px, calc(100vw - 40px));
  padding: 25px;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);

  visibility: hidden;
  opacity: 0;

  transform: translate(-50%, 10px);

  pointer-events: none;

  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Otwieranie dropdownu */

.dropdown.open .dropdown-menu {
  visibility: visible;
  opacity: 1;

  transform: translate(-50%, 0);

  pointer-events: auto;
}

/* Strzałka */

.arrow {
  display: inline-block;

  transition: transform 0.2s ease;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Grupy usług */

.dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-group h3 {
  margin: 0 0 10px;
  padding-bottom: 8px;

  color: var(--text-color);
  border-bottom: 2px solid var(--accent-color);

  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-group .list {
  display: block;

  padding: 5px 0;

  color: var(--text-secondary);

  font-size: 0.78rem;
  line-height: 1.4;

  white-space: normal;
  overflow-wrap: break-word;

  transition: color 0.2s ease, transform 0.2s ease;
}

.dropdown-group .list:hover {
  color: var(--text-color);
  transform: translateX(5px);
}

/* ==================================================
   PRZYCISKI JĘZYKÓW
================================================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-picker {
  display: flex;
  flex-shrink: 0;
  gap: 4px;
}

.lang-btn {
  padding: 4px 8px;

  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 4px;

  color: var(--text-color);

  cursor: pointer;

  font-size: 0.75rem;
  font-weight: 600;

  transition: all 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* ==================================================
   HAMBURGER
================================================== */

.mobile-toggle {
  display: none;

  flex-direction: column;
  justify-content: center;
  gap: 5px;

  padding: 5px;

  background: transparent;
  border: none;

  cursor: pointer;
}

.mobile-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  background-color: var(--text-color);
  border-radius: 2px;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X */

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero {
  padding: 3rem 1.5rem;
  background-color: var(--bg-color);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;

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

/* Badge */

.hero-badge {
  display: inline-block;

  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;

  color: var(--text-secondary);

  font-size: 0.85rem;
  font-weight: 600;
}

/* Nagłówek */

.hero h1 {
  margin-bottom: 1rem;

  color: var(--text-color);

  font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

/* Tekst */

.hero p {
  margin-bottom: 2rem;

  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin-bottom: 2rem;
}

.btn {
  display: inline-block;

  padding: 0.9rem 1.8rem;

  border-radius: 6px;

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

  font-weight: 600;

  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);

  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
}

/* ==================================================
   ZALETY
================================================== */

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  color: var(--text-secondary);

  font-size: 0.95rem;
  font-weight: 500;
}

/* ==================================================
   ZDJĘCIE HERO
================================================== */

.hero-image img {
  width: 100%;
  height: auto;

  border: 1px solid var(--border-color);
  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.services-section {
  padding: 6rem 2rem;

  background-color: #111111;
}

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

/* Nagłówek sekcji */

.section-heading {
  max-width: 700px;
  margin: 0 auto 5rem;

  text-align: center;
}

.section-label {
  display: inline-block;

  margin-bottom: 0.8rem;

  color: var(--accent-color);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 1rem;

  color: var(--text-color);

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-heading p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 1rem;
  line-height: 1.7;
}

/* Pojedyncza usługa */

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;

  align-items: center;

  margin-bottom: 7rem;
}

.service-feature:last-child {
  margin-bottom: 0;
}

/* Naprzemienny układ */

.service-feature-reverse .service-feature-image {
  order: 2;
}

.service-feature-reverse .service-feature-content {
  order: 1;
}

/* Zdjęcie */

.service-feature-image {
  overflow: hidden;

  border: 1px solid var(--border-color);
  border-radius: 10px;

  background-color: var(--card-bg);
}

.service-feature-image img {
  display: block;

  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.service-feature-image:hover img {
  transform: scale(1.03);
}

/* Treść */

.service-feature-content {
  max-width: 500px;
}

.service-number {
  display: block;

  margin-bottom: 0.8rem;

  color: var(--accent-color);

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-feature-content h3 {
  margin: 0 0 1rem;

  color: var(--text-color);

  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
}

.service-feature-content p {
  margin: 0 0 1.5rem;

  color: var(--text-secondary);

  font-size: 0.95rem;
  line-height: 1.7;
}

/* Lista */

.service-feature-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;

  margin: 0 0 1.7rem;
  padding: 0;

  list-style: none;
}

.service-feature-content li {
  position: relative;

  padding-left: 1.3rem;

  color: var(--text-secondary);

  font-size: 0.9rem;
}

.service-feature-content li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.65em;

  width: 5px;
  height: 5px;

  background-color: var(--accent-color);
  border-radius: 50%;
}

/* Link */

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  color: var(--text-color);

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 600;

  transition: color 0.2s ease, gap 0.2s ease;
}

.service-link span {
  color: var(--accent-color);

  transition: transform 0.2s ease;
}

.service-link:hover {
  color: var(--accent-color);
}

.service-link:hover span {
  transform: translateX(4px);
}

/* ==================================================
   JAK WYGLĄDA REALIZACJA
================================================== */

.process-section {
  padding: 7rem 2rem;

  background-color: var(--bg-color);
}

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

/* Nagłówek */

.process-section .section-heading {
  margin-bottom: 5rem;
}

/* Kroki */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Pojedynczy krok */

.process-step {
  position: relative;

  padding: 2rem 1.5rem;

  border-top: 1px solid var(--border-color);

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

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

/* Numer */

.process-number {
  display: block;

  margin-bottom: 1.5rem;

  color: var(--accent-color);

  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Treść */

.process-content h3 {
  margin: 0 0 0.8rem;

  color: var(--text-color);

  font-size: 1.3rem;
  font-weight: 700;
}

.process-content p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==================================================
   DLACZEGO 4MTRANS
================================================== */

.why-section {
  padding: 7rem 2rem;

  background-color: #111111;
}

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

/* Nagłówek */

.why-section .section-heading {
  margin-bottom: 5rem;
}

/* Siatka */

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

  background-color: var(--border-color);
  border: 1px solid var(--border-color);
}

/* Karta */

.why-card {
  position: relative;

  min-height: 220px;
  padding: 2.2rem;

  background-color: #111111;

  transition: background-color 0.2s ease;
}

.why-card:hover {
  background-color: #161616;
}

/* Numer */

.why-card-number {
  display: block;

  margin-bottom: 2rem;

  color: var(--accent-color);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Nagłówek */

.why-card h3 {
  margin: 0 0 0.8rem;

  color: var(--text-color);

  font-size: 1.15rem;
  font-weight: 700;
}

/* Tekst */

.why-card p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==================================================
   GALERIA
================================================== */

.gallery-section {
  padding: 7rem 2rem;

  background-color: var(--bg-color);
}

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

.gallery-section .section-heading {
  margin-bottom: 5rem;
}

/* Siatka */

.gallery-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;

  gap: 12px;
}

/* Zdjęcie */

.gallery-item {
  position: relative;

  overflow: hidden;

  min-width: 0;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* Duże zdjęcie */

.gallery-item-large {
  grid-row: span 2;
}

/* Szerokie zdjęcie */

.gallery-item-wide {
  grid-column: span 2;
}

/* Obraz */

.gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

/* Efekt */

.gallery-item:hover img {
  transform: scale(1.04);
}

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

.cta-section {
  padding: 7rem 2rem;

  background-color: #111111;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;

  text-align: center;
}

.cta-label {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--accent-color);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-container h2 {
  margin: 0 0 1.2rem;

  color: var(--text-color);

  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.cta-container p {
  max-width: 650px;
  margin: 0 auto 2.5rem;

  color: var(--text-secondary);

  font-size: 1rem;
  line-height: 1.7;
}

/* Przyciski */

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-actions .btn {
  min-width: 190px;
}

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

.footer {
  background-color: #090909;
  border-top: 1px solid var(--border-color);

  padding: 4rem 2rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 3rem;

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

/* ==================================================
   KOLUMNY
================================================== */

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  margin: 0 0 1rem;

  color: var(--text-color);

  font-size: 0.9rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  margin: 0 0 0.6rem;

  color: var(--text-secondary);

  font-size: 0.85rem;
  line-height: 1.7;
}

/* ==================================================
   LOGO
================================================== */

.footer-logo {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--text-color);

  text-decoration: none;

  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-description {
  max-width: 320px;
}

/* ==================================================
   LINKI
================================================== */

.footer-column a:not(.footer-logo) {
  width: fit-content;

  margin-bottom: 0.5rem;

  color: var(--text-secondary);

  text-decoration: none;

  font-size: 0.9rem;

  transition: color 0.2s ease;
}

.footer-column a:not(.footer-logo):hover {
  color: var(--accent-color);
}

/* ==================================================
   TELEFONY
================================================== */

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-phone {
  display: inline-block;

  color: var(--text-secondary);

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;

  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: var(--accent-color);
}

/* ==================================================
   OBSZAR DZIAŁANIA
================================================== */

.footer-area {
  max-width: 250px;
}

/* ==================================================
   DOLNA CZĘŚĆ FOOTERA
================================================== */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1200px;

  margin: 3rem auto 0;
  padding: 1.5rem 0;

  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  margin: 0;

  color: #666666;

  font-size: 0.75rem;
}

/* ==================================================
   FOOTER - TELEFONY / TABLETY
================================================== */

@media (max-width: 900px) {
  .footer {
    padding: 3.5rem 1.5rem 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;

    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-description {
    max-width: 600px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 0.4rem;
  }
}

/* ==================================================
   FOOTER - MAŁE TELEFONY
================================================== */

@media (max-width: 480px) {
  .footer {
    padding: 3rem 1rem 0;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 2.5rem;
    padding: 1.3rem 0;
  }
}
/* ==================================================
   RESPONSYWNOŚĆ - TELEFONY
================================================== */

@media (max-width: 900px) {
  /* ==================================================
     HEADER
  ================================================== */

  .mobile-toggle {
    display: flex;
  }

  .lang-picker {
    margin-left: auto;
    margin-right: 12px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.7rem;
  }

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    max-height: calc(100vh - 70px);

    padding: 30px 25px;

    background-color: var(--bg-color);

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .nav-menu ul {
    width: 100%;

    flex-direction: column;
    align-items: flex-start;

    gap: 15px;
  }

  .nav-menu a {
    display: block;

    width: 100%;

    font-size: 1.1rem;
  }

  /* ==================================================
     DROPDOWN - NASZE USŁUGI
  ================================================== */

  .dropdown-menu {
    position: static;

    top: auto;
    left: auto;

    display: block;

    width: 100%;
    max-width: 100%;
    max-height: 0;

    margin: 0;
    padding: 0 15px;

    overflow: hidden;

    background-color: #141414;

    border: none;
    border-left: 2px solid var(--accent-color);
    border-radius: 0 4px 4px 0;

    opacity: 0;
    visibility: hidden;

    transform: none !important;

    pointer-events: none;

    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease,
      margin-top 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    width: 100%;
    max-width: 100%;
    max-height: 900px;

    margin-top: 8px;
    padding: 15px;

    opacity: 1;
    visibility: visible;

    transform: none !important;

    pointer-events: auto;
  }

  /* Grupy usług w menu */

  .dropdown-group {
    gap: 2px;
    margin-bottom: 20px;
  }

  .dropdown-group:last-child {
    margin-bottom: 0;
  }

  .dropdown-group h3 {
    margin: 0 0 8px;
    padding-bottom: 6px;

    font-size: 0.8rem;
  }

  .dropdown-group .list {
    padding: 4px 0;

    font-size: 0.9rem;
  }

  .dropdown-group .list:hover {
    color: var(--text-color);
  }

  /* ==================================================
     NASZE USŁUGI - TELEFON
  ================================================== */

  .services-section {
    padding: 4rem 1rem;
  }

  .services-container {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  /* Jedna kolumna zamiast dwóch */

  .service-feature {
    grid-template-columns: 1fr;

    gap: 2rem;

    margin-bottom: 4.5rem;
  }

  /* Na telefonie kolejność zawsze:
     zdjęcie → tekst */

  .service-feature-reverse .service-feature-image {
    order: 1;
  }

  .service-feature-reverse .service-feature-content {
    order: 2;
  }

  /* Zdjęcia */

  .service-feature-image {
    width: 100%;
  }

  .service-feature-image img {
    aspect-ratio: 16 / 10;
  }

  /* Treść */

  .service-feature-content {
    max-width: none;
  }

  .service-feature-content h3 {
    font-size: 1.6rem;
  }

  .service-feature-content p {
    font-size: 0.95rem;
  }

  .service-feature-content li {
    font-size: 0.9rem;
  }

  /* ==================================================
     REALIZACJA - TELEFON
  ================================================== */

  .process-section {
    padding: 5rem 1.5rem;
  }

  .process-section .section-heading {
    margin-bottom: 3.5rem;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;

    padding: 1.5rem 0;

    border-top: 1px solid var(--border-color);
  }

  .process-number {
    margin: 0;

    font-size: 1.5rem;
  }

  .process-content h3 {
    font-size: 1.15rem;
  }

  .process-content p {
    font-size: 0.9rem;
  }

  /* ==================================================
     DLACZEGO 4MTRANS - TELEFON
  ================================================== */

  .why-section {
    padding: 5rem 1.5rem;
  }

  .why-section .section-heading {
    margin-bottom: 3.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;

    gap: 1px;
  }

  .why-card {
    min-height: auto;
    padding: 1.8rem;
  }

  .why-card-number {
    margin-bottom: 1.2rem;
  }

  /* ==================================================
     GALERIA - TELEFON
  ================================================== */

  .gallery-section {
    padding: 5rem 1.5rem;
  }

  .gallery-section .section-heading {
    margin-bottom: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 220px;

    gap: 8px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  /* ==================================================
     CTA - TELEFON
  ================================================== */

  .cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-container p {
    font-size: 0.95rem;
  }

  .cta-actions {
    flex-direction: column;

    width: 100%;
    max-width: 400px;

    margin: 0 auto;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* ==================================================
     FOOTER - TELEFON
  ================================================== */

  .footer {
    padding: 3.5rem 1.5rem 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 2.5rem;

    padding-bottom: 2.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 0.4rem;
  }
}

/* ==================================================
   RESPONSYWNOŚĆ - TABLETY
================================================== */

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ==================================================
   RESPONSYWNOŚĆ - KOMPUTERY
================================================== */

@media (min-width: 900px) {
  .hero {
    padding: 5rem 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==================================================
   WIĘKSZA CZCIONKA
================================================== */

@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}

/* ==================================================
   MAŁE TELEFONY
================================================== */

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  /* Usługi na bardzo małych ekranach */

  .services-section {
    padding: 3.5rem 1rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .service-feature {
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .service-feature-content h3 {
    font-size: 1.45rem;
  }
}

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

.contact-section {
  padding: 6rem 2rem;
  background-color: var(--bg-color);
}

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

/* Nagłówek */

.contact-heading {
  margin-bottom: 4rem;
}

.contact-heading h1 {
  margin: 0 0 1rem;

  color: var(--text-color);

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

/* ==================================================
   UKŁAD KONTAKTU
================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;

  align-items: start;
}

/* ==================================================
   FORMULARZ
================================================== */

.contact-form-wrapper {
  padding: 2.5rem;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.contact-form-wrapper h2 {
  margin: 0 0 0.7rem;

  color: var(--text-color);

  font-size: 1.6rem;
  font-weight: 800;
}

.contact-form-description {
  margin: 0 0 2rem;

  color: var(--text-secondary);

  font-size: 0.9rem;
  line-height: 1.7;
}

/* Pola */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  color: var(--text-color);

  font-size: 0.85rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 0.85rem 1rem;

  background-color: #111111;
  border: 1px solid var(--border-color);
  border-radius: 6px;

  color: var(--text-color);

  font-size: 0.9rem;

  outline: none;

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);

  box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.12);
}

/* Przycisk formularza */

.form-submit {
  width: 100%;
  margin-top: 0.5rem;

  border: none;

  cursor: pointer;

  font-family: inherit;
  font-size: 0.9rem;
}

/* ==================================================
   INFORMACJE KONTAKTOWE
================================================== */

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

  padding-top: 0.5rem;
}

.contact-info-block {
  padding-bottom: 2rem;

  border-bottom: 1px solid var(--border-color);
}

.contact-info-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-label {
  display: block;

  margin-bottom: 0.7rem;

  color: var(--accent-color);

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-block h2 {
  margin: 0 0 1rem;

  color: var(--text-color);

  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-info-block p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.95rem;
  line-height: 1.7;
}

/* Numery telefonów */

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-phones a {
  color: var(--text-color);

  text-decoration: none;

  font-size: 1.05rem;
  font-weight: 600;

  transition: color 0.2s ease;
}

.contact-phones a:hover {
  color: var(--accent-color);
}

.contact-area-text {
  max-width: 500px;
}

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

.contact-cta {
  padding: 6rem 2rem;

  background-color: #111111;

  border-top: 1px solid var(--border-color);
}

.contact-cta-container {
  max-width: 800px;
  margin: 0 auto;

  text-align: center;
}

.contact-cta h2 {
  margin: 0 0 1rem;

  color: var(--text-color);

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.contact-cta p {
  max-width: 650px;
  margin: 0 auto 2rem;

  color: var(--text-secondary);

  font-size: 1rem;
  line-height: 1.7;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ==================================================
   KONTAKT - RESPONSYWNOŚĆ
================================================== */

@media (max-width: 900px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-info {
    gap: 2rem;
  }

  .contact-cta {
    padding: 4rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ==================================================
   KONTAKT - MAŁE TELEFONY
================================================== */

@media (max-width: 480px) {
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-heading {
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.4rem;
  }

  .contact-cta {
    padding: 3.5rem 1rem;
  }

  .contact-cta-actions {
    flex-direction: column;
  }

  .contact-cta-actions .btn {
    width: 100%;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;

  padding: 1.25rem;

  background: #111;
  color: #fff;

  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;

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

.cookie-content h3 {
  margin: 0 0 0.5rem;
}

.cookie-content p {
  margin: 0;
  max-width: 750px;
  line-height: 1.5;
  color: #ccc;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font: inherit;
}

.cookie-btn-primary {
  background: #fff;
  color: #111;
}

.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
}

@media (max-width: 700px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ==================================================
   POLITYKA PRYWATNOŚCI
================================================== */

.privacy-page {
  padding: 6rem 2rem 8rem;
  background-color: var(--bg-color);
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ==================================================
   NAGŁÓWEK STRONY
================================================== */

.privacy-page .section-heading {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.privacy-page .section-heading h1 {
  margin: 0 0 1rem;
  color: var(--text-color);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.privacy-page .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* ==================================================
   TREŚĆ POLITYKI
================================================== */

.privacy-section {
  margin-bottom: 1.5rem;
  padding: 2.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

/* ==================================================
   NAGŁÓWKI
================================================== */

.privacy-section h2 {
  position: relative;

  margin: 0 0 1.5rem;
  padding-left: 1rem;

  color: var(--text-color);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
}

.privacy-section h2::before {
  content: "";

  position: absolute;
  top: 0.15em;
  left: 0;

  width: 3px;
  height: 1.2em;

  background-color: var(--accent-color);
  border-radius: 2px;
}

/* ==================================================
   TEKST
================================================== */

.privacy-section p {
  margin: 0 0 1rem;

  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section strong {
  color: var(--text-color);
  font-weight: 600;
}

/* ==================================================
   LISTY
================================================== */

.privacy-section ul {
  margin: 1.2rem 0 1.2rem;
  padding-left: 1.4rem;

  color: var(--text-secondary);
}

.privacy-section li {
  margin-bottom: 0.7rem;
  padding-left: 0.3rem;

  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-section li:last-child {
  margin-bottom: 0;
}

.privacy-section li::marker {
  color: var(--accent-color);
}

/* ==================================================
   LINKI
================================================== */

.privacy-section a {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;

  transition: color 0.2s ease;
}

.privacy-section a:hover {
  color: var(--accent-color);
}

/* ==================================================
   OSTATNIA AKTUALIZACJA
================================================== */

.privacy-section:last-child p:last-child {
  margin-top: 1.5rem;
  padding-top: 1.25rem;

  border-top: 1px solid var(--border-color);

  color: var(--text-color);
  font-size: 0.85rem;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 768px) {
  .privacy-page {
    padding: 4.5rem 1.25rem 6rem;
  }

  .privacy-page .section-heading {
    margin-bottom: 3rem;
  }

  .privacy-section {
    padding: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.2rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.92rem;
  }
}

/* ==================================================
   TELEFONY
================================================== */

@media (max-width: 480px) {
  .privacy-page {
    padding: 3.5rem 1rem 5rem;
  }

  .privacy-page .section-heading h1 {
    font-size: 2rem;
  }

  .privacy-page .section-heading p {
    font-size: 0.9rem;
  }

  .privacy-section {
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 6px;
  }

  .privacy-section h2 {
    margin-bottom: 1.2rem;
    padding-left: 0.85rem;
    font-size: 1.1rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .privacy-section ul {
    padding-left: 1.2rem;
  }
}

/* ==================================================
   O NAS
================================================== */

.about-section {
  padding: 6rem 2rem;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

/* Nagłówek */

.about-heading {
  margin-bottom: 4rem;
}

.about-heading h2 {
  margin-bottom: 1.5rem;
}

.about-heading p {
  color: var(--text-secondary);
}

/* Główna zawartość */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Lewa strona */

.about-text h3 {
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.about-text p {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Prawa strona */

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.about-card-number {
  flex-shrink: 0;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.about-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Dolny pasek */

.about-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-bottom-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.75rem 2rem;
}

.about-bottom-item + .about-bottom-item {
  border-left: 1px solid var(--border-color);
}

.about-bottom-item strong {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.about-bottom-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 4rem 1.25rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-bottom {
    grid-template-columns: 1fr;
  }

  .about-bottom-item + .about-bottom-item {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }

  .about-bottom-item {
    padding: 1.25rem 0;
  }
}

.butonas {
  text-align: center;
  margin-top: 2rem;
}

/* ==================================================
   CENNIK / INDYWIDUALNA WYCENA
================================================== */

.pricing-section {
  padding: 6rem 2rem;
  background-color: #111111;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

/* ==================================================
   NAGŁÓWEK
================================================== */

.pricing-heading {
  margin-bottom: 4rem;
}

.pricing-heading p {
  color: var(--text-secondary);
}

/* ==================================================
   GŁÓWNA KARTA WYCENY
================================================== */

.pricing-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 300px;
  padding: 3rem;
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.pricing-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-color);
}

.pricing-main-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.pricing-eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.pricing-main h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
}

.pricing-main p {
  max-width: 650px;
  margin: 0 0 2rem;
  color: var(--text-secondary);
}

/* Logo / znak */

.pricing-main-mark {
  position: absolute;
  right: 3rem;
  bottom: -1.5rem;
  display: flex;
  align-items: baseline;
  opacity: 0.08;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.pricing-main-mark span {
  color: var(--text-color);
}

.pricing-main-mark strong {
  color: var(--accent-color);
}

/* ==================================================
   PRZYCISK
================================================== */

.pricing-button,
.pricing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  color: var(--text-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.pricing-button:hover,
.pricing-cta-button:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* ==================================================
   CZYNNIKI WYCENY
================================================== */

.pricing-details {
  margin-top: 5rem;
}

.pricing-details-heading {
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.pricing-details-heading h3 {
  margin: 0.75rem 0 0;
  font-size: 1.7rem;
}

.pricing-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.pricing-factor {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--bg-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-factor-number {
  flex-shrink: 0;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-factor h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-factor p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==================================================
   PROCES WYCENY
================================================== */

.pricing-process {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.pricing-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-process-step span {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-process-step strong {
  font-size: 1rem;
}

.pricing-process-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.pricing-process-line {
  width: 60px;
  height: 1px;
  margin: 0 1.5rem;
  background-color: var(--border-color);
}

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

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background-color: var(--accent-color);
}

.pricing-cta-label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pricing-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
}

.pricing-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-cta-button {
  flex-shrink: 0;
  color: var(--text-color);
  background-color: var(--bg-color);
  border-color: var(--bg-color);
}

.pricing-cta-button:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

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

@media (max-width: 900px) {
  .pricing-main {
    padding: 2.5rem;
  }

  .pricing-main-mark {
    display: none;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-process-line {
    width: 35px;
    margin: 0 1rem;
  }
}

@media (max-width: 700px) {
  .pricing-section {
    padding: 4rem 1.25rem;
  }

  .pricing-main {
    padding: 2rem;
  }

  .pricing-main h3 {
    font-size: 1.6rem;
  }

  .pricing-factors {
    grid-template-columns: 1fr;
  }

  .pricing-process {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .pricing-process-line {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .pricing-cta {
    padding: 2rem;
  }
}

/* ==================================================
   GALERIA
================================================== */

.gallery-section {
  padding: 6rem 2rem;
  background-color: var(--bg-color);
}

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

/* ==================================================
   NAGŁÓWEK
================================================== */

.gallery-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

/* ==================================================
   GRID
================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

/* ==================================================
   ELEMENT GALERII
================================================== */

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* ==================================================
   ZDJĘCIA
================================================== */

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

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

/* ==================================================
   HOVER
================================================== */

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.05) 60%
  );

  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ==================================================
   OPIS ZDJĘCIA
================================================== */

.gallery-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;

  padding: 1.25rem;

  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 600;

  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Czerwony detal */

.gallery-overlay::before {
  content: "";
  display: inline-block;

  width: 24px;
  height: 2px;

  margin-right: 0.6rem;
  margin-bottom: 3px;

  background-color: var(--accent-color);
}

/* ==================================================
   DOLNA INFORMACJA
================================================== */

.gallery-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;

  max-width: 850px;
  margin: 3rem auto 0;

  text-align: center;
}

.gallery-note p {
  margin: 0;

  color: var(--text-secondary);
  font-size: 0.9rem;
}

.gallery-note-line {
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
}

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

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 4.5rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 0.75rem;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-note {
    gap: 0.75rem;
  }

  .gallery-note-line {
    display: none;
  }

  .gallery-note p {
    font-size: 0.85rem;
  }
}

/* ==================================================
   BLOG
================================================== */

.blog-section {
  padding: 6rem 2rem;
  background-color: #111111;
}

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

/* ==================================================
   NAGŁÓWEK
================================================== */

.blog-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

/* ==================================================
   GRID
================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==================================================
   KARTA
================================================== */

.blog-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;

  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #3a3a3a;
}

/* ==================================================
   ZDJĘCIE
================================================== */

.blog-image {
  position: relative;

  height: 230px;
  overflow: hidden;

  background-color: #101010;
}

.blog-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.04);
}

/* ==================================================
   KATEGORIA
================================================== */

.blog-category {
  position: absolute;
  left: 1rem;
  bottom: 1rem;

  padding: 0.35rem 0.7rem;

  background-color: var(--accent-color);
  color: #ffffff;

  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;

  border-radius: 3px;
}

/* ==================================================
   TREŚĆ
================================================== */

.blog-content {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 1.5rem;
}

.blog-date {
  margin-bottom: 0.65rem;

  color: var(--text-secondary);

  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-content h3 {
  margin: 0 0 0.75rem;

  color: var(--text-color);

  font-size: 1.25rem;
  line-height: 1.3;
}

.blog-content p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.9rem;
  line-height: 1.65;
}

/* ==================================================
   LINK
================================================== */

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  width: fit-content;

  margin-top: auto;
  padding-top: 1.5rem;

  color: var(--text-color);

  font-size: 0.85rem;
  font-weight: 700;

  text-decoration: none;

  transition: color 0.25s ease;
}

.blog-arrow {
  color: var(--accent-color);

  font-size: 1.1rem;

  transition: transform 0.25s ease;
}

.blog-link:hover {
  color: var(--accent-color);
}

.blog-link:hover .blog-arrow {
  transform: translateX(4px);
}

/* ==================================================
   DOLNA INFORMACJA
================================================== */

.blog-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;

  max-width: 850px;

  margin: 3rem auto 0;

  text-align: center;
}

.blog-bottom p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.85rem;
}

.blog-bottom-line {
  flex: 1;

  height: 1px;

  background-color: var(--border-color);
}

/* ==================================================
   TABLET
================================================== */

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

  .blog-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.75rem);
    width: 100%;
    justify-self: center;
  }
}

/* ==================================================
   TELEFON
================================================== */

@media (max-width: 600px) {
  .blog-section {
    padding: 4.5rem 1rem;
  }

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

  .blog-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .blog-image {
    height: 220px;
  }

  .blog-bottom {
    gap: 0.75rem;
  }

  .blog-bottom-line {
    display: none;
  }
}

/* ==================================================
   BLOG - ARTYKUŁ
================================================== */

.article-page {
  padding: 7rem 2rem;
  background-color: var(--bg-color);
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER ARTYKUŁU */

.article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.article-back {
  display: inline-block;
  margin-bottom: 2rem;

  color: var(--text-secondary);
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 500;

  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--accent-color);
}

.article-category {
  display: inline-block;

  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;

  border: 1px solid var(--accent-color);

  color: var(--accent-color);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.article-header h1 {
  margin: 0;

  color: var(--text-color);

  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.article-meta {
  display: flex;
  gap: 0.7rem;

  margin-top: 1.5rem;

  color: var(--text-secondary);

  font-size: 0.9rem;
}

/* ZDJĘCIE */

.article-image {
  width: 100%;
  margin-bottom: 4rem;

  overflow: hidden;

  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

.article-image img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* TREŚĆ */

.article-content {
  max-width: 760px;
  margin: 0 auto;

  color: var(--text-secondary);

  font-size: 1.05rem;
  line-height: 1.9;
}

.article-content p {
  margin-bottom: 1.8rem;
}

.article-content .article-lead {
  margin-bottom: 3rem;

  color: var(--text-color);

  font-size: 1.2rem;
  line-height: 1.8;
}

.article-content h2 {
  margin: 3.5rem 0 1.2rem;

  color: var(--text-color);

  font-size: 1.7rem;
  line-height: 1.3;
}

.article-content ul {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.7rem;
}

/* CTA */

.article-cta {
  margin-top: 5rem;
  padding: 3rem;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);

  text-align: center;
}

.article-cta-label {
  display: block;

  margin-bottom: 0.8rem;

  color: var(--accent-color);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.article-cta h2 {
  margin: 0 0 1rem;

  font-size: 2rem;
}

.article-cta p {
  max-width: 550px;
  margin: 0 auto 2rem;
}

.article-cta-button {
  display: inline-block;

  padding: 0.9rem 1.5rem;

  background-color: var(--accent-color);
  color: #ffffff;

  text-decoration: none;
  font-weight: 600;

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

.article-cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 700px) {
  .article-page {
    padding: 4rem 1.2rem;
  }

  .article-header {
    margin-bottom: 2rem;
  }

  .article-header h1 {
    font-size: 2.2rem;
  }

  .article-image {
    margin-bottom: 2.5rem;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-content .article-lead {
    font-size: 1.1rem;
  }

  .article-cta {
    padding: 2rem 1.3rem;
  }

  .article-cta h2 {
    font-size: 1.6rem;
  }
}

/* ==================================================
   STRONY USŁUG
================================================== */

.service-page {
  background-color: var(--bg-color);
}

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

.service-hero {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.service-hero-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-label,
.service-cta-label {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--accent-color);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-hero h1 {
  max-width: 700px;
  margin: 0 0 1.5rem;

  color: var(--text-color);

  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-hero-text {
  max-width: 650px;

  margin-bottom: 2rem;

  color: var(--text-secondary);

  font-size: 1.1rem;
  line-height: 1.8;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-primary-button,
.service-secondary-button,
.service-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 1.4rem;

  text-decoration: none;
  font-weight: 600;

  transition: 0.2s ease;
}

.service-primary-button,
.service-cta-button {
  background-color: var(--accent-color);
  color: #fff;
}

.service-primary-button:hover,
.service-cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.service-secondary-button {
  border: 1px solid var(--border-color);

  color: var(--text-color);
}

.service-secondary-button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.service-hero-image {
  overflow: hidden;

  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

.service-hero-image img {
  display: block;

  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;
}

/* ==================================================
   WSPÓLNY KONTENER
================================================== */

.service-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-description-section,
.service-scope-section,
.service-process-section,
.service-for-section {
  padding: 7rem 2rem;
}

.service-section-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

.service-section-heading h2 {
  margin: 0;

  color: var(--text-color);

  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* ==================================================
   OPIS
================================================== */

.service-description-section {
  background-color: #111111;
}

.service-description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.service-description-grid p {
  margin: 0 0 1.5rem;

  color: var(--text-secondary);

  font-size: 1.05rem;
  line-height: 1.9;
}

/* ==================================================
   ZAKRES
================================================== */

.service-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-scope-card {
  padding: 2rem;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);

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

.service-scope-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.service-scope-card > span,
.service-process-item > span {
  display: block;

  margin-bottom: 2rem;

  color: var(--accent-color);

  font-size: 0.8rem;
  font-weight: 700;
}

.service-scope-card h3,
.service-process-item h3 {
  margin: 0 0 0.8rem;

  color: var(--text-color);

  font-size: 1.2rem;
}

.service-scope-card p,
.service-process-item p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================================================
   PROCES
================================================== */

.service-process-section {
  background-color: #111111;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-process-item {
  padding: 2rem;

  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.service-process-item:first-child {
  border-left: 1px solid var(--border-color);
}

/* ==================================================
   DLA KOGO
================================================== */

.service-for-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;

  padding: 4rem;

  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.service-for-box h2 {
  margin: 0;

  color: var(--text-color);

  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.service-for-list {
  display: grid;
  gap: 1rem;

  color: var(--text-secondary);
}

.service-for-list div {
  padding-bottom: 1rem;

  border-bottom: 1px solid var(--border-color);
}

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

.service-cta-section {
  padding: 7rem 2rem;

  background-color: var(--accent-color);

  text-align: center;
}

.service-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-cta-section .service-cta-label {
  color: rgba(255, 255, 255, 0.75);
}

.service-cta-section h2 {
  margin: 0 0 1rem;

  color: #fff;

  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.service-cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;

  color: rgba(255, 255, 255, 0.85);

  font-size: 1.05rem;
  line-height: 1.8;
}

.service-cta-button {
  background-color: #fff;
  color: #0d0d0d;
}

.service-cta-button:hover {
  background-color: #0d0d0d;
  color: #fff;
}

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

@media (max-width: 900px) {
  .service-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .service-process-item {
    border-left: 1px solid var(--border-color);
  }

  .service-for-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .service-hero {
    padding: 4rem 1.2rem;
  }

  .service-description-section,
  .service-scope-section,
  .service-process-section,
  .service-for-section {
    padding: 4rem 1.2rem;
  }

  .service-cta-section {
    padding: 4rem 1.2rem;
  }

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

  .service-description-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-for-box {
    padding: 2rem 1.3rem;
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-primary-button,
  .service-secondary-button {
    width: 100%;
  }
}

/* .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
} */

.logo img {
  height: 200px;
  width: 300px;
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
    max-width: 145px;
  }
}

@media (max-width: 400px) {
  .logo img {
    height: 45px;
    max-width: 130px;
  }
}
