@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables - DOSTOSOWANE DO CIEMNEGO TŁA
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Chakra Petch", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Barlow Condensed", "Oswald", sans-serif;
  --nav-font: "Inter", "Poppins", sans-serif;
}

/* Global Colors - DOSTOSOWANE DO CIEMNEGO TŁA */
:root { 
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #e52a2c;
  --surface-color: rgba(255, 255, 255, 0.05);
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - DOSTOSOWANE */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #e52a2c;
  --nav-mobile-background-color: #1a1a1a;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #e52a2c;
}

/* Color Presets */
.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.05);
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# GLOBALNE USTAWIENIA DLA CIEMNEGO TŁA
--------------------------------------------------------------*/

/* Główne tło strony - JEDNOLITE CIEMNE */
body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1a1f 100%);
  background-attachment: fixed;
  color: #ffffff;
  font-family: var(--default-font);
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/* Wszystkie sekcje przezroczyste */
section, .section {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

/* Nagłówki */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
}

/* Teksty */
p, .description, .lead, span:not(.badge):not(.principle-num):not(.value-icon) {
  color: rgba(255, 255, 255, 0.8);
}

/* Linki */
a {
  color: #e52a2c;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: #ff6b6b;
}

/*--------------------------------------------------------------
# STICKY HEADER - POPRAWIONY
--------------------------------------------------------------*/

/* GŁÓWNA ZMIANA: Wymuszamy pozycję sticky na nagłówku */
header#header.header {
  position: fixed !important;  /* Zmieniamy na fixed dla pewności */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;    /* Bardzo wysoki z-index, aby był nad wszystkim */
  background-color: #ffffff !important; /* Białe tło */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

/* Dodajemy padding, żeby treść nie chowała się pod nagłówkiem */
body {
  padding-top: 140px !important; /* Wysokość Twojego headera - do dostosowania */
}

/* Opcjonalnie: mniejszy header po scrollu */
header#header.header.scrolled {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Poprawka dla mobile */
@media (max-width: 991px) {
  body {
    padding-top: 120px !important; /* Mniejszy padding na mobile */
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #183152;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: 997;
  transition: all 0.4s ease;
}

.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 14px;
}

.header .header-top .contact-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .contact-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .social-links {
  gap: 16px;
}

.header .header-top .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  transition: 0.3s;
}

.header .header-top .social-links a:hover {
  color: var(--accent-color);
}

.header .header-main {
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.header .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.header .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header .header-main .logo {
    order: 1;
  }

  .header .header-main .navmenu {
    order: 3;
  }
}

@media (max-width: 992px) {
  .header .header-top .social-links {
    width: 100%;
    justify-content: center;
  }
}

.scrolled .header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.scrolled .header .header-top {
  display: none !important;
}

.scrolled .header .header-main {
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu>ul>li>a:hover::after,
  .navmenu>ul>li>.active::after,
  .navmenu>ul>li>.active:focus::after {
    opacity: 1;
    transform: scale(1);
  }

  .navmenu>ul>li:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }

  .navmenu .dropdown ul a::after {
    display: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 10px;
  }

  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }

  .navmenu .dropdown ul a:hover::before {
    width: 12px;
  }

  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }

  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before {
    width: 12px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 30px 24px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    color: var(--accent-color);
  }

  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu a:hover::before {
    width: 40px;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active::before,
  .navmenu .active:focus::before {
    width: 40px;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--accent-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
  }

  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 14px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    max-height: 100vh;
  }
}
/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 42, 44, 0.2);
}

.page-title::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-title-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {
  .page-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.page-title .title-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-title .title-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e52a2c;
  background: rgba(229, 42, 44, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
  border: 1px solid rgba(229, 42, 44, 0.2);
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .page-title h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .page-title h1 {
    font-size: 1.5rem;
  }
}

.page-title .title-accent {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e52a2c, transparent);
  border-radius: 3px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 8px 18px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 40px;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(5px);
}

.page-title .breadcrumbs ol li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.page-title .breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-title .breadcrumbs ol li a i {
  font-size: 0.9rem;
  color: #e52a2c;
}

.page-title .breadcrumbs ol li a:hover {
  color: #e52a2c;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(229, 42, 44, 0.4);
  font-weight: 300;
}

.page-title .breadcrumbs ol li.current {
  color: #e52a2c;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: #e52a2c;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(229, 42, 44, 0.3);
}

.section-title p {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, rgba(229, 42, 44, 0.03) 0px, rgba(229, 42, 44, 0.03) 2px, transparent 2px, transparent 10px),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 8px);
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(229, 42, 44, 0.1) 0%, transparent 60%);
  z-index: 3;
}

.hero .hero-block {
  padding: 60px 0 80px;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .hero .hero-block {
    padding: 40px 0 60px;
    text-align: center;
  }
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 5px 15px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hero-logo-badge:hover {
  background: rgba(229, 42, 44, 0.15);
  border-color: rgba(229, 42, 44, 0.4);
  transform: scale(1.02);
}

.hero-logo {
  height: 35px;
  width: auto;
  transition: all 0.3s ease;
}

.hero .hero-block .hero-copy h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero .hero-block .hero-copy p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.hero .hero-block .hero-copy .stats-strip {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item {
  flex: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #e52a2c;
  font-family: var(--heading-font);
  line-height: 1.1;
}

.hero .hero-block .hero-copy .stats-strip .s-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero .hero-block .hero-copy .stats-strip .s-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-divider {
    display: none;
  }
}

.hero .hero-block .hero-copy .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy .hero-btns {
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .hero-btns a {
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .hero-btns a {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
  }
}

.hero .hero-block .hero-copy .hero-btns .btn-apply {
  background: #e52a2c;
  border: 2px solid #e52a2c;
  color: #ffffff;
}

.hero .hero-block .hero-copy .hero-btns .btn-apply:hover {
  background: transparent;
  color: #e52a2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 42, 44, 0.3);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(5px);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour i {
  color: #e52a2c;
  font-size: 1.1rem;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour:hover {
  transform: translateY(-3px);
  background: rgba(229, 42, 44, 0.1);
  border-color: #e52a2c;
  color: #ffffff;
}

.hero .hero-block .hero-visual {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual {
    max-width: 85%;
    margin: 0 auto;
  }
}

.hero .hero-block .hero-visual .campus-photo {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero .hero-block .hero-visual .campus-photo {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .campus-photo {
    height: 350px;
  }
}

.hero .hero-block .hero-visual .accred-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #e52a2c;
  border: 1px solid rgba(229, 42, 44, 0.3);
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .accred-card {
    left: 15px;
    bottom: 20px;
  }
}

.hero .hero-block .hero-visual .accred-card i {
  font-size: 2rem;
  color: #e52a2c;
}

.hero .hero-block .hero-visual .accred-card div {
  display: flex;
  flex-direction: column;
}

.hero .hero-block .hero-visual .accred-card div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.hero .hero-block .hero-visual .accred-card div span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Dodatkowy czerwony akcent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}
/*--------------------------------------------------------------
# Oferta Section - Z BAJERAMI W TLE (POPRAWIONY Z-INDEX)
--------------------------------------------------------------*/
.oferta {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* GŁÓWNE TŁO Z EFEKTAMI */
.oferta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

.oferta::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite reverse;
}

/* ISKRY / CZĄSTECZKI */
.oferta .sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.oferta .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: sparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.oferta .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.3) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.oferta .sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.oferta .sparkle:nth-child(2) { top: 65%; left: 15%; animation-delay: 1.2s; }
.oferta .sparkle:nth-child(3) { top: 35%; left: 85%; animation-delay: 2.4s; }
.oferta .sparkle:nth-child(4) { top: 75%; left: 80%; animation-delay: 3.6s; }
.oferta .sparkle:nth-child(5) { top: 20%; left: 92%; animation-delay: 4.8s; }
.oferta .sparkle:nth-child(6) { top: 85%; left: 25%; animation-delay: 6s; }
.oferta .sparkle:nth-child(7) { top: 45%; left: 40%; animation-delay: 1.8s; }
.oferta .sparkle:nth-child(8) { top: 55%; left: 60%; animation-delay: 3.2s; }
.oferta .sparkle:nth-child(9) { top: 10%; left: 45%; animation-delay: 5.4s; }
.oferta .sparkle:nth-child(10) { top: 90%; left: 70%; animation-delay: 7s; }

/* GEOMETRYCZNE KSZTAŁTY */
.oferta .shape {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

/* KWADRATY */
.oferta .shape.square {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: rotateSlow 25s linear infinite;
}

.oferta .shape.square-1 {
  top: 5%;
  right: 8%;
  width: 80px;
  height: 80px;
}

.oferta .shape.square-2 {
  bottom: 8%;
  left: 5%;
  width: 120px;
  height: 120px;
  border-color: rgba(229, 42, 44, 0.1);
  animation: rotateSlow 30s linear infinite reverse;
}

.oferta .shape.square-3 {
  top: 30%;
  left: 15%;
  width: 60px;
  height: 60px;
  border-style: dotted;
  border-color: rgba(229, 42, 44, 0.2);
  animation: rotateSlow 20s linear infinite;
}

/* KOŁA */
.oferta .shape.circle {
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: rotateSlow 35s linear infinite;
}

.oferta .shape.circle-1 {
  bottom: 10%;
  right: 12%;
}

.oferta .shape.circle-2 {
  top: 15%;
  left: 20%;
  width: 120px;
  height: 120px;
  border-style: dotted;
  border-color: rgba(229, 42, 44, 0.15);
  animation: rotateSlow 40s linear infinite reverse;
}

/* TRÓJKĄTY */
.oferta .shape.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(229, 42, 44, 0.1);
  opacity: 0.2;
  transform: rotate(10deg);
  animation: floatTriangle 15s ease-in-out infinite;
}

.oferta .shape.triangle-1 {
  top: 20%;
  right: 25%;
}

.oferta .shape.triangle-2 {
  bottom: 15%;
  left: 20%;
  transform: rotate(45deg);
  animation: floatTriangle 18s ease-in-out infinite reverse;
}

/* MAŁE KROPKI (DODATKOWE) */
.oferta .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.oferta .dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(229, 42, 44, 0.15);
  border-radius: 50%;
  animation: pulseDot 4s ease-in-out infinite;
}

.oferta .dot:nth-child(1) { top: 25%; left: 30%; animation-delay: 0s; }
.oferta .dot:nth-child(2) { top: 70%; left: 45%; animation-delay: 1s; }
.oferta .dot:nth-child(3) { top: 40%; left: 75%; animation-delay: 2s; }
.oferta .dot:nth-child(4) { top: 85%; left: 15%; animation-delay: 3s; }
.oferta .dot:nth-child(5) { top: 15%; left: 85%; animation-delay: 4s; }

/* ANIMACJE */
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes sparkleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translate(25px, -20px) scale(1.5);
    opacity: 0.5;
  }
  50% {
    transform: translate(35px, 20px) scale(1);
    opacity: 0.2;
  }
  75% {
    transform: translate(-20px, 25px) scale(1.3);
    opacity: 0.4;
  }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatTriangle {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.8); opacity: 0.3; }
}

/* RESZTA STYLÓW - KAFELKI */
.oferta .features-block {
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.oferta .feat-card {
  display: block;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 0px solid rgba(229, 42, 44, 0.15);
  transition: all 0.35s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  z-index: 20;
}

/* WARSTWA PRZYKRYWAJĄCA - CAŁE ZDJĘCIE ZAKRYTE */
.oferta .feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

/* NA HOVER - LEKKIE ROZJAŚNIENIE, ALE WCIĄŻ ZAKRYWA CAŁE ZDJĘCIE */
.oferta .feat-card:hover::before {
  background: linear-gradient(180deg, rgba(229,42,44,0.85) 0%, rgba(0,0,0,0.75) 100%);
}

/* DOLNY CZERWONY PASEK */
.oferta .feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e52a2c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}

.oferta .feat-card:hover::after {
  transform: scaleX(1);
}

/* EFEKT UNOSZENIA */
.oferta .feat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* NUMER (opcjonalny) */
.oferta .feat-card .feat-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--heading-font);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 3;
}

/* IKONA */
.oferta .feat-card .feat-icon {
  width: 65px;
  height: 65px;
  background: rgba(229, 42, 44, 0.6);
  backdrop-filter: blur(5px);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
}

.oferta .feat-card:hover .feat-icon {
  background: #e52a2c;
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.05);
}

/* TYTUŁ */
.oferta .feat-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 3;
}

/* OPIS */
.oferta .feat-card p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: relative;
  z-index: 3;
}

.oferta .feat-card p strong {
  color: #ffffff;
  font-weight: 700;
}

/* LINK / PRZYCISK */
.oferta .feat-card .feat-link {
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 42, 44, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 3;
}

.oferta .feat-card .feat-link i {
  transition: transform 0.3s ease;
}

.oferta .feat-card .feat-link:hover {
  background: #e52a2c;
  border-color: #e52a2c;
}

.oferta .feat-card .feat-link:hover i {
  transform: translateX(5px);
}

/* PODKAFELKI DLA OBRÓBKI SKRAWANIEM */
.oferta .feat-card .service-subitems {
  margin-top: 1.5rem;
}

.oferta .feat-card .service-subitems .subitem-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.oferta .feat-card .service-subitems .subitem-card i {
  color: #e52a2c;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.oferta .feat-card .service-subitems .subitem-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
}

.oferta .feat-card .service-subitems .subitem-card:hover {
  background: rgba(229, 42, 44, 0.5);
  transform: translateY(-3px);
  border-color: #e52a2c;
}

.oferta .feat-card .service-subitems .subitem-card:hover i {
  color: #ffffff;
}

.oferta .feat-card .service-subitems .subitem-link {
  text-decoration: none;
  display: block;
}

/* Klikalne kafelki */
.feat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 0.3s ease;
}

.feat-card-link:hover {
  transform: translateY(-5px);
}

.feat-card-link .feat-card {
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feat-card-link:hover .feat-card {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(229, 42, 44, 0.3);
}

/* Dla kafelka z obróbką skrawaniem (ma wewnętrzne linki) */
.feat-card-wrapper {
  display: block;
  height: 100%;
}

.feat-card-wrapper .feat-card {
  height: 100%;
}

/* Styl dla linków wewnątrz kafelka z obróbką */
.feat-card .subitem-link {
  text-decoration: none;
  display: block;
}

.feat-card .subitem-link:hover .subitem-card {
  background: rgba(229, 42, 44, 0.5);
  transform: translateY(-3px);
  border-color: #e52a2c;
}

/* Usuń podkreślenie z głównego linku */
.feat-card-link:hover .feat-link {
  background: #e52a2c;
  border-color: #e52a2c;
}

.feat-card-link .feat-link i {
  transition: transform 0.3s ease;
}

.feat-card-link:hover .feat-link i {
  transform: translateX(5px);
}
/*--------------------------------------------------------------
# Sekcja O FIRMIE - Z BAJERAMI W TLE
--------------------------------------------------------------*/
.o-firmie {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* GŁÓWNE TŁO Z EFEKTAMI */
.o-firmie::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

/* DRUGI GRADIENT (lewy dolny) */
.o-firmie::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite reverse;
}

/* INDUSTRIALNE LINIE (poziome) */
.o-firmie .bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.o-firmie .bg-lines span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  left: 0;
}

.o-firmie .bg-lines span:nth-child(1) { top: 15%; }
.o-firmie .bg-lines span:nth-child(2) { top: 30%; }
.o-firmie .bg-lines span:nth-child(3) { top: 45%; }
.o-firmie .bg-lines span:nth-child(4) { top: 60%; }
.o-firmie .bg-lines span:nth-child(5) { top: 75%; }
.o-firmie .bg-lines span:nth-child(6) { top: 90%; }

/* INDUSTRIALNE LINIE (pionowe) */
.o-firmie .bg-lines span.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  top: 0;
}

.o-firmie .bg-lines span.vertical:nth-child(7) { left: 10%; }
.o-firmie .bg-lines span.vertical:nth-child(8) { left: 30%; }
.o-firmie .bg-lines span.vertical:nth-child(9) { left: 50%; }
.o-firmie .bg-lines span.vertical:nth-child(10) { left: 70%; }
.o-firmie .bg-lines span.vertical:nth-child(11) { left: 90%; }

/* ISKRY / CZĄSTECZKI */
.o-firmie .sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.o-firmie .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: sparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.o-firmie .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.3) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.o-firmie .sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.o-firmie .sparkle:nth-child(2) { top: 70%; left: 20%; animation-delay: 1s; }
.o-firmie .sparkle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; }
.o-firmie .sparkle:nth-child(4) { top: 80%; left: 85%; animation-delay: 3s; }
.o-firmie .sparkle:nth-child(5) { top: 15%; left: 95%; animation-delay: 4s; }
.o-firmie .sparkle:nth-child(6) { top: 55%; left: 30%; animation-delay: 5s; }
.o-firmie .sparkle:nth-child(7) { top: 85%; left: 45%; animation-delay: 6s; }
.o-firmie .sparkle:nth-child(8) { top: 25%; left: 65%; animation-delay: 7s; }

/* GEOMETRYCZNE KSZTAŁTY */
.o-firmie .shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.o-firmie .shape.square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: rotateSlow 20s linear infinite;
}

.o-firmie .shape.square-1 {
  top: 10%;
  right: 5%;
}

.o-firmie .shape.square-2 {
  bottom: 15%;
  left: 2%;
  width: 120px;
  height: 120px;
  border-color: rgba(229, 42, 44, 0.1);
  animation: rotateSlow 25s linear infinite reverse;
}

.o-firmie .shape.circle {
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}

.o-firmie .shape.circle-1 {
  bottom: 5%;
  right: 10%;
}

.o-firmie .shape.circle-2 {
  top: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
  border-style: dotted;
  border-color: rgba(229, 42, 44, 0.15);
}

.o-firmie .shape.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(229, 42, 44, 0.1);
  opacity: 0.3;
  transform: rotate(10deg);
  animation: floatTriangle 12s ease-in-out infinite;
}

.o-firmie .shape.triangle-1 {
  top: 15%;
  right: 20%;
}

.o-firmie .shape.triangle-2 {
  bottom: 10%;
  left: 25%;
  transform: rotate(45deg);
  animation: floatTriangle 15s ease-in-out infinite reverse;
}

/* ANIMACJE - użyte wcześniej */

/* RESZTA STYLÓW */
.o-firmie-visual {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  z-index: 10;
}

.o-firmie-visual .main-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.o-firmie-visual .image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 60px solid rgba(229, 42, 44, 0.2);
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}

.o-firmie-visual::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: rgba(229, 42, 44, 0.15);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.o-firmie-intro {
  padding-left: 20px;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .o-firmie-intro {
    padding-left: 0;
    margin-top: 30px;
  }
}

.o-firmie-intro .badge {
  display: inline-block;
  background: rgba(229, 42, 44, 0.1);
  color: #e52a2c;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border: 1px solid rgba(229, 42, 44, 0.2);
}

.o-firmie-intro h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.o-firmie-intro .lead {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.o-firmie-intro .lead strong {
  color: #e52a2c;
}

.o-firmie-intro p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Cards */
.services-grid {
  margin: 40px 0;
}

.service-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #e52a2c;
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  height: 100%;
}

.service-card.service-card-featured {
  border: 1px solid rgba(229, 42, 44, 0.4);
  background: rgba(229, 42, 44, 0.05);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.service-card:hover .service-icon {
  background: #e52a2c;
}

.service-icon i {
  font-size: 2rem;
  color: #e52a2c;
}

.service-card:hover .service-icon i {
  color: #ffffff;
}

.service-card h4 {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-details {
  margin-bottom: 20px;
}

.service-details span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.service-details i {
  color: #e52a2c;
  font-size: 0.8rem;
  margin-right: 5px;
}

.service-link {
  color: #e52a2c;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  gap: 8px;
  color: #ff6b6b;
}

.service-btn {
  background: #e52a2c;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  padding: 8px 15px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  border: 2px solid #e52a2c;
}

.service-btn:hover {
  background: transparent;
  color: #e52a2c;
  transform: translateY(-2px);
}

/* Machine Park */
.machine-park-row {
  margin: 30px 0 40px;
}

.machine-park-box {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.machine-park-box:hover {
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.machine-icon {
  font-size: 3rem;
  color: #e52a2c;
  opacity: 0.8;
}

.machine-park-box h4 {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.machine-park-box p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

.machine-badge {
  display: inline-block;
  background: #e52a2c;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Milestones */
.milestones-section {
  margin: 40px 0;
  position: relative;
}

.milestones-track {
  position: relative;
  padding: 20px 0;
}

.milestones-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(to right, transparent, #e52a2c, transparent);
}

@media (max-width: 992px) {
  .milestones-track::before {
    display: none;
  }
}

.milestone-card {
  text-align: center;
  padding: 30px 15px 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.milestone-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.milestone-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #e52a2c;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 2px rgba(229, 42, 44, 0.3);
}

@media (max-width: 992px) {
  .milestone-card::before {
    display: none;
  }
}

.milestone-card .milestone-year {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  font-family: var(--heading-font);
  color: #e52a2c;
  line-height: 1;
  margin-bottom: 10px;
}

.milestone-card h5 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.milestone-card p {
  font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Key Principles */
.principles-section {
  margin: 40px 0;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.principle-item:hover {
  transform: translateX(5px);
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.principle-item .principle-num {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 800;
  font-family: var(--heading-font);
  color: rgba(229, 42, 44, 0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 45px;
  transition: color 0.3s ease;
}

.principle-item:hover .principle-num {
  color: #e52a2c;
}

.principle-item .principle-body h4 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.principle-item .principle-body p {
  font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  margin-top: 20px;
}

.subtitle-small {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e52a2c;
  margin-bottom: 5px;
}

.values-title {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.motto-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-bottom: 30px;
}

.motto-badge {
  padding: 8px 20px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 50px;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 700;
  color: #e52a2c;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.motto-badge:hover {
  background: #e52a2c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(229, 42, 44, 0.3);
}

.value-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.value-card .value-icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 42, 44, 0.1);
  color: #e52a2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 12px;
}

.value-card h4 {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.value-card p {
  font-size: clamp(0.8rem, 2.2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

.value-card-highlight {
  border: 1px solid rgba(229, 42, 44, 0.4);
  background: rgba(229, 42, 44, 0.05);
}

/* Quote Footer */
.quote-footer {
  margin-top: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 15px;
  border-left: 4px solid #e52a2c;
}

.quote-footer i {
  font-size: 2rem;
  color: #e52a2c;
  opacity: 0.3;
  margin-bottom: 10px;
  display: block;
}

.quote-footer p {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 15px;
}

.quote-footer .signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quote-footer .signature span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e52a2c;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 2px solid #e52a2c;
}

.quote-footer .signature i {
  color: #e52a2c;
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Sekcja DLACZEGO MY
--------------------------------------------------------------*/
.dlaczego-my {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.dlaczego-my .dlaczego-visual {
  position: relative;
  height: 100%;
  min-height: 450px;
}

.dlaczego-my .dlaczego-visual .primary-visual {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.dlaczego-my .dlaczego-visual:hover .primary-visual {
  transform: scale(1.02);
}

.dlaczego-my .dlaczego-visual .akcent-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 4px solid #e52a2c;
  border-radius: 30px 80px 30px 80px;
  z-index: -1;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.dlaczego-my .dlaczego-visual .doswiadczenie-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #e52a2c, #ff4d4f);
  color: #ffffff;
  padding: 25px;
  border-radius: 30px 30px 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.dlaczego-my .dlaczego-visual .doswiadczenie-badge .badge-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.dlaczego-my .dlaczego-visual .doswiadczenie-badge .badge-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .dlaczego-my .dlaczego-visual {
    min-height: 350px;
  }
  
  .dlaczego-my .dlaczego-visual .doswiadczenie-badge {
    padding: 20px;
    bottom: -15px;
    left: -15px;
  }
  
  .dlaczego-my .dlaczego-visual .doswiadczenie-badge .badge-number {
    font-size: 2.5rem;
  }
}

.dlaczego-my .dlaczego-content {
  padding-left: 2rem;
  border-left: 4px solid #e52a2c;
  position: relative;
}

.dlaczego-my .dlaczego-content::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 0;
  background: #e52a2c;
  animation: slideLine 1.5s ease forwards;
}

@keyframes slideLine {
  to { height: 100%; }
}

.dlaczego-my .dlaczego-content .label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e52a2c;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  padding: 5px 15px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 30px;
}

.dlaczego-my .dlaczego-content .label-tag i {
  font-size: 1.2rem;
}

.dlaczego-my .dlaczego-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.dlaczego-my .dlaczego-content .description {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .dlaczego-my .dlaczego-content {
    padding-left: 1.5rem;
    margin-top: 2.5rem;
  }
}

/* Atuty */
.dlaczego-my .atuty-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.dlaczego-my .atuty-row .atut-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.dlaczego-my .atuty-row .atut-box:hover {
  transform: translateX(10px) scale(1.02);
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.dlaczego-my .atuty-row .atut-box .atut-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #e52a2c, #ff4d4f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.dlaczego-my .atuty-row .atut-box .atut-icon i {
  color: #ffffff;
  font-size: 1.5rem;
}

.dlaczego-my .atuty-row .atut-box .atut-text strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.dlaczego-my .atuty-row .atut-box .atut-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Przyciski akcji */
.dlaczego-my .action-buttons {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.dlaczego-my .action-buttons .btn-poznaj {
  background: linear-gradient(135deg, #e52a2c, #ff4d4f);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.dlaczego-my .action-buttons .btn-poznaj:hover {
  background: transparent;
  border-color: #e52a2c;
  color: #e52a2c;
  transform: translateY(-3px);
}

.dlaczego-my .action-buttons .btn-kontakt {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.dlaczego-my .action-buttons .btn-kontakt i {
  font-size: 1.3rem;
  color: #e52a2c;
  transition: transform 0.3s ease;
}

.dlaczego-my .action-buttons .btn-kontakt:hover {
  color: #e52a2c;
  background: rgba(229, 42, 44, 0.1);
  border-color: #e52a2c;
  transform: translateY(-2px);
}

.dlaczego-my .action-buttons .btn-kontakt:hover i {
  transform: scale(1.2) rotate(10deg);
}

@media (max-width: 576px) {
  .dlaczego-my .action-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* Kafelki z powodami */
.dlaczego-my .powody-grid {
  margin-top: 4rem;
  position: relative;
}

.dlaczego-my .powody-grid .powod-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(229, 42, 44, 0.15);
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}

.dlaczego-my .powody-grid .powod-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dlaczego-my .powody-grid .powod-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: #e52a2c;
}

.dlaczego-my .powody-grid .powod-card:hover .card-icon-wrapper i {
  color: #ffffff;
}

.dlaczego-my .powody-grid .powod-card .card-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.dlaczego-my .powody-grid .powod-card .card-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px dashed rgba(229, 42, 44, 0.3);
  position: relative;
  z-index: 2;
}

.dlaczego-my .powody-grid .powod-card .card-icon-wrapper i {
  font-size: 3rem;
  color: #e52a2c;
  transition: all 0.4s ease;
}

.dlaczego-my .powody-grid .powod-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.dlaczego-my .powody-grid .powod-card .card-body h5 {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.dlaczego-my .powody-grid .powod-card .card-body h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e52a2c, transparent);
  transition: width 0.3s ease;
}

.dlaczego-my .powody-grid .powod-card:hover .card-body h5::after {
  width: 80px;
}

.dlaczego-my .powody-grid .powod-card .card-body p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 0.5rem;
}

/* Efekt glow na hover */
.dlaczego-my .powody-grid .powod-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(229, 42, 44, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.dlaczego-my .powody-grid .powod-card:hover .card-glow {
  opacity: 1;
}

/* Animacje wejścia */
[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(-100deg);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="flip-left"].aos-animate {
  transform: perspective(2500px) rotateY(0);
  opacity: 1;
}

/* Responsywność */
@media (max-width: 992px) {
  .dlaczego-my .powody-grid .powod-card .card-icon-wrapper {
    width: 90px;
    height: 90px;
  }
  
  .dlaczego-my .powody-grid .powod-card .card-icon-wrapper i {
    font-size: 2.5rem;
  }
  
  .dlaczego-my .powody-grid .powod-card .card-body h5 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .dlaczego-my .powody-grid {
    margin-top: 3rem;
  }
  
  .dlaczego-my .powody-grid .powod-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .dlaczego-my .powody-grid .powod-card .card-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .dlaczego-my .powody-grid .powod-card .card-icon-wrapper i {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# CTA MEGA BAJERANCKI
--------------------------------------------------------------*/
.cta-mega {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-mega-wrapper {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(229, 42, 44, 0.2),
    inset 0 0 30px rgba(229, 42, 44, 0.1);
}

/* Animowane cząsteczki */
.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: float-particle 8s infinite ease-in-out;
  animation-delay: var(--delay);
  opacity: 0.3;
}

.particle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229,42,44,0.4) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -20px) scale(1.5);
    opacity: 0.6;
  }
  50% {
    transform: translate(50px, 20px) scale(1);
    opacity: 0.3;
  }
  75% {
    transform: translate(-20px, 30px) scale(1.2);
    opacity: 0.5;
  }
}

.cta-mega-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  color: #ffffff;
}

.tag-pulse {
  width: 10px;
  height: 10px;
  background: #e52a2c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cta-mega-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.title-gradient {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 5px 20px rgba(229, 42, 44, 0.3);
}

.cta-mega-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 90%;
}

.text-highlight {
  color: #e52a2c;
  font-weight: 700;
}

.text-glow {
  display: inline-block;
  animation: textGlow 2s infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(229, 42, 44, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(229, 42, 44, 0.8);
  }
}

.cta-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #e52a2c;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #e52a2c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(229, 42, 44, 0.3);
  transform: rotate(15deg);
}

.cta-mega-actions {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.btn-mega-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e52a2c, #ff4d4d);
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(229, 42, 44, 0.4);
}

.btn-mega-primary .btn-text,
.btn-mega-primary .btn-icon i {
  color: white !important;
}

.btn-mega-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-mega-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(229, 42, 44, 0.6);
}

.btn-mega-primary:hover::before {
  left: 100%;
}

.btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-mega-primary:hover .btn-glow {
  opacity: 1;
}

.cta-secondary-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-mega-phone, .btn-mega-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(229, 42, 44, 0.3);
  color: white;
}

.btn-mega-phone {
  background: rgba(229, 42, 44, 0.1);
}

.btn-mega-phone:hover {
  background: #e52a2c;
  transform: scale(1.05);
  border-color: #e52a2c;
}

.btn-mega-chat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-mega-chat:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: scale(1.05);
}

.chat-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cta-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.cta-deadline i {
  color: #e52a2c;
  animation: hourglass 2s infinite;
}

@keyframes hourglass {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.cta-trust-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(229, 42, 44, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.trust-item i {
  color: #e52a2c;
  font-size: 1.2rem;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 991px) {
  .cta-mega-wrapper {
    padding: 30px;
  }
  
  .cta-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-mega-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .cta-secondary-actions {
    flex-direction: column;
  }
  
  .cta-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stat-divider {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sekcja ŚLEDŹ NAS
--------------------------------------------------------------*/
.sledz-nas {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.sledz-nas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(229, 42, 44, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(229, 42, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.sledz-nas .container {
  position: relative;
  z-index: 2;
}

.sledz-nas .social-card {
  display: block;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(229, 42, 44, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.sledz-nas .social-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(229, 42, 44, 0.4);
}

.sledz-nas .social-facebook:hover {
  background: rgba(24, 119, 242, 0.3);
}

.sledz-nas .social-instagram:hover {
  background: rgba(225, 48, 108, 0.3);
}

.sledz-nas .social-linkedin:hover {
  background: rgba(10, 102, 194, 0.3);
}

.sledz-nas .social-youtube:hover {
  background: rgba(255, 0, 0, 0.3);
}

.sledz-nas .social-card:hover .social-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(360deg);
}

.sledz-nas .social-card:hover .social-icon-wrapper i {
  color: #ffffff;
}

.sledz-nas .social-card:hover .social-content h3,
.sledz-nas .social-card:hover .social-content p,
.sledz-nas .social-card:hover .social-link {
  color: #ffffff;
}

.sledz-nas .social-card:hover .social-link i {
  transform: translateX(5px);
}

.sledz-nas .social-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
  border: 2px dashed rgba(229, 42, 44, 0.3);
}

.sledz-nas .social-icon-wrapper i {
  font-size: 3.5rem;
  color: #ffffff;
}

.sledz-nas .social-content h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.sledz-nas .social-content p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.sledz-nas .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  color: #e52a2c;
  transition: all 0.3s ease;
  padding: 5px 15px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50px;
}

.sledz-nas .social-link i {
  transition: transform 0.3s ease;
}

.sledz-nas .social-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.sledz-nas .social-card:hover .social-glow {
  opacity: 0.2;
}

.sledz-nas .social-bottom-text {
  margin-top: 3rem;
  padding: 1rem;
}

.sledz-nas .social-bottom-text p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(10px);
}

.sledz-nas .social-bottom-text i {
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 992px) {
  .sledz-nas .social-icon-wrapper {
    width: 90px;
    height: 90px;
  }
  
  .sledz-nas .social-icon-wrapper i {
    font-size: 3rem;
  }
  
  .sledz-nas .social-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .sledz-nas {
    padding: 40px 0;
  }
  
  .sledz-nas .social-card {
    padding: 2rem 1rem;
  }
  
  .sledz-nas .social-bottom-text p {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .sledz-nas .social-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .sledz-nas .social-icon-wrapper i {
    font-size: 2.5rem;
  }
  
  .sledz-nas .social-content h3 {
    font-size: 1.2rem;
  }
  
  .sledz-nas .social-content p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# CTA z wystającymi zdjęciami
--------------------------------------------------------------*/
.cta-wyjscie {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.cta-wyjscie .cta-low-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 280px;
  background-image: url('../img/cta-intech.jpg');
  background-size: cover;
  background-position: center;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(229, 42, 44, 0.3);
  border-bottom: 2px solid rgba(229, 42, 44, 0.3);
}

.cta-wyjscie .cta-low-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 40, 0.6);
  z-index: 2;
  pointer-events: none;
}

.cta-wyjscie .cta-low-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e52a2c, transparent);
  z-index: 3;
}

.cta-wyjscie .cta-low-bg .bottom-line {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e52a2c, transparent);
  z-index: 3;
}

.cta-wyjscie-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 10;
  min-height: 600px;
  width: 100%;
}

@media (max-width: 992px) {
  .cta-wyjscie-wrapper {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
}

.cta-wyjscie-content {
  flex: 1;
  max-width: 450px;
  position: relative;
  z-index: 15;
  background: rgba(10, 25, 40, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(229, 42, 44, 0.3);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .cta-wyjscie-content {
    max-width: 100%;
    text-align: center;
  }
}

.cta-wyjscie-content .cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 42, 44, 0.2);
  color: #e52a2c;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(229, 42, 44, 0.4);
}

.cta-wyjscie-content .cta-tag i {
  font-size: 1rem;
  color: #e52a2c;
}

.cta-wyjscie-content .cta-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-wyjscie-content .cta-title .accent {
  color: #e52a2c;
  position: relative;
  display: inline-block;
}

.cta-wyjscie-content .cta-text {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.cta-wyjscie-content .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .cta-wyjscie-content .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-wyjscie-content .cta-buttons {
    flex-direction: column;
  }
  
  .cta-wyjscie-content .btn-wyjscie-primary,
  .cta-wyjscie-content .btn-wyjscie-secondary {
    width: 100%;
    justify-content: center;
  }
}

.cta-wyjscie-content .btn-wyjscie-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e52a2c;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e52a2c;
  box-shadow: 0 5px 20px rgba(229, 42, 44, 0.3);
}

.cta-wyjscie-content .btn-wyjscie-primary i {
  transition: transform 0.3s ease;
}

.cta-wyjscie-content .btn-wyjscie-primary:hover {
  background: transparent;
  color: #e52a2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 42, 44, 0.2);
}

.cta-wyjscie-content .btn-wyjscie-primary:hover i {
  transform: translateX(5px);
}

.cta-wyjscie-content .btn-wyjscie-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.cta-wyjscie-content .btn-wyjscie-secondary i {
  color: #e52a2c;
  transition: all 0.3s ease;
}

.cta-wyjscie-content .btn-wyjscie-secondary:hover {
  border-color: #e52a2c;
  background: rgba(229, 42, 44, 0.15);
  transform: translateY(-3px);
}

.cta-wyjscie-content .btn-wyjscie-secondary:hover i {
  transform: scale(1.2);
}

.cta-wyjscie-grid {
  flex: 1;
  max-width: 850px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  height: 650px;
  z-index: 20;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .cta-wyjscie-grid {
    max-width: 750px;
    height: 600px;
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .cta-wyjscie-grid {
    max-width: 650px;
    height: 550px;
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .cta-wyjscie-grid {
    max-width: 100%;
    height: 400px;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .cta-wyjscie-grid {
    height: 350px;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .cta-wyjscie-grid {
    height: 250px;
    gap: 8px;
  }
}

.wyjscie-item {
  position: relative;
  width: 240px;
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 1400px) {
  .wyjscie-item {
    width: 210px;
    height: 320px;
  }
}

@media (max-width: 1200px) {
  .wyjscie-item {
    width: 190px;
    height: 290px;
  }
}

@media (max-width: 992px) {
  .wyjscie-item {
    width: 150px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .wyjscie-item {
    width: 120px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .wyjscie-item {
    width: 90px;
    height: 140px;
  }
}

.wyjscie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.item-left {
  transform: translateY(-10px) translateX(-10px);
  z-index: 3;
}

.item-center {
  width: 280px;
  height: 420px;
  transform: translateY(-10px) translateX(0);
  z-index: 5;
  border: 3px solid #e52a2c;
  box-shadow: 0 45px 70px rgba(229, 42, 44, 0.4);
}

@media (max-width: 1400px) {
  .item-center {
    width: 250px;
    height: 380px;
  }
}

@media (max-width: 1200px) {
  .item-center {
    width: 220px;
    height: 340px;
  }
}

@media (max-width: 992px) {
  .item-center {
    width: 180px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .item-center {
    width: 140px;
    height: 210px;
  }
}

@media (max-width: 576px) {
  .item-center {
    width: 110px;
    height: 160px;
  }
}

.item-right {
  transform: translateY(-10px) translateX(10px);
  z-index: 3;
}

.wyjscie-item:hover {
  transform: scale(1.08) translateY(-15px) translateX(0);
  z-index: 10;
  border-color: #e52a2c;
  box-shadow: 0 50px 80px rgba(229, 42, 44, 0.5);
}

.wyjscie-item:hover img {
  transform: scale(1.1);
}

.wyjscie-item:hover .wyjscie-overlay {
  opacity: 1;
}

.item-center:hover {
  transform: scale(1.08) translateY(-15px) translateX(0);
  border-color: #e52a2c;
  box-shadow: 0 55px 90px rgba(229, 42, 44, 0.6);
}

.wyjscie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(229, 42, 44, 0.9), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wyjscie-item:hover .wyjscie-overlay {
  opacity: 1;
}

.wyjscie-overlay span {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 15px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.wyjscie-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(229, 42, 44, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wyjscie-item:hover .wyjscie-glow {
  opacity: 1;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer-simple {
  position: relative;
  color: #ffffff;
  padding: 60px 0 30px;
  overflow: hidden;
}

.footer-simple .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-simple .footer-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.9) 0%, rgba(14, 36, 57, 0.9) 100%);
  z-index: 2;
}

.footer-simple .container {
  position: relative;
  z-index: 10;
}

.footer-simple .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-simple .footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(229, 42, 44, 0.3);
}

.footer-simple .footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-simple .footer-logo:hover {
  opacity: 1;
}

.footer-simple .company-name {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

.footer-simple .company-name strong {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #ffffff;
  font-weight: 700;
}

.footer-simple .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .footer-simple .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .footer-simple .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-simple .footer-section {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(229, 42, 44, 0.15);
  transition: all 0.3s ease;
}

.footer-simple .footer-section:hover {
  border-color: rgba(229, 42, 44, 0.4);
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.footer-simple .footer-title {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: #e52a2c;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(229, 42, 44, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-simple .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-simple .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-simple .contact-item i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.footer-simple .contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
  display: inline-block;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.footer-simple .contact-item a:hover {
  color: #e52a2c;
}

.footer-simple .footer-address {
  display: flex;
  gap: 12px;
}

.footer-simple .footer-address i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.footer-simple .footer-address div {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.footer-simple .footer-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-simple .footer-data div {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.footer-simple .footer-data strong {
  color: #e52a2c;
  font-weight: 600;
  margin-right: 5px;
}

.footer-simple .footer-social-simple {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-simple .social-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-simple .social-simple:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.footer-simple .footer-links-simple {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin: 30px 0 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-simple .footer-links-simple a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  transition: color 0.3s ease;
  padding: 0 5px;
}

.footer-simple .footer-links-simple a:hover {
  color: #e52a2c;
}

.footer-simple .footer-links-simple .sep {
  color: rgba(229, 42, 44, 0.4);
  font-size: 0.9rem;
}

.footer-simple .footer-bottom-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

@media (max-width: 768px) {
  .footer-simple .footer-bottom-simple {
    flex-direction: column;
    text-align: center;
  }
}

.footer-simple .copyright strong {
  color: #e52a2c;
  font-weight: 600;
}

.footer-simple .created-by-simple a {
  color: #e52a2c;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer-simple .created-by-simple a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e52a2c;
  transition: width 0.3s ease;
}

.footer-simple .created-by-simple a:hover {
  color: #ff6b6b;
}

.footer-simple .created-by-simple a:hover::after {
  width: 100%;
}

#current-year {
  color: #e52a2c;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #0a0a0a;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #e52a2c transparent #e52a2c transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #e52a2c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #b32123;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #e52a2c;
  border-top-color: transparent;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}






/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Chakra Petch", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Barlow Condensed", "Oswald", sans-serif;
  --nav-font: "Inter", "Poppins", sans-serif;
  
  --background-color: #ffffff;
  --default-color: #394757;
  --heading-color: #183152;
  --accent-color: #e52a2c;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  --nav-color: #e9f0f7;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #394757;
  --nav-dropdown-hover-color: #e52a2c;
}

.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #183152;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #183152;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 997;
  transition: all 0.4s ease;
}

.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 14px;
}

.header .header-top .contact-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a,
.header .header-top .contact-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .social-links {
  gap: 16px;
}

.header .header-top .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.header .header-top .social-links a:hover {
  color: var(--accent-color);
}

.header .header-main {
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.header .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.header .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header .header-main .logo { order: 1; }
  .header .header-main .navmenu { order: 3; }
}

@media (max-width: 992px) {
  .header .header-top .social-links {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu (zostawiamy oryginalny z szablonu)
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu>ul>li>a:hover::after,
  .navmenu>ul>li>.active::after,
  .navmenu>ul>li>.active:focus::after {
    opacity: 1;
    transform: scale(1);
  }
  .navmenu>ul>li:hover>a i { transform: rotate(180deg); }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }
  .navmenu .dropdown ul li { min-width: 100%; }
  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }
  .navmenu .dropdown ul a::after { display: none; }
  .navmenu .dropdown ul a i { font-size: 10px; }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }
  .navmenu .dropdown ul a:hover::before { width: 12px; }
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }
  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before { width: 12px; }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .mobile-nav-toggle:hover { color: var(--accent-color); }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 30px 24px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }
  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover { color: var(--accent-color); }
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu a:hover::before { width: 40px; }
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active::before,
  .navmenu .active:focus::before { width: 40px; }
  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--accent-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }
  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
  }
  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }
  .navmenu .dropdown>.dropdown-active { display: block; }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 14px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
    max-height: 100vh;
  }
}

/*--------------------------------------------------------------
# Hero Section (index)
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .hero-block {
  padding: 80px 0 60px;
}

@media (max-width: 992px) {
  .hero .hero-block {
    padding: 60px 0 40px;
    text-align: center;
  }
}

.hero .hero-block .hero-copy .top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero .hero-block .hero-copy .top-badge i { font-size: 1rem; }

.hero .hero-block .hero-copy h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy h1 { font-size: 2.4rem; }
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy h1 { font-size: 1.9rem; }
}

.hero .hero-block .hero-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.75rem;
}

.hero .hero-block .hero-copy .stats-strip {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px color-mix(in srgb, #000, transparent 94%);
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item {
  flex: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1.1;
}

.hero .hero-block .hero-copy .stats-strip .s-item span {
  display: block;
  font-size: 0.75rem;

  letter-spacing: 0.6px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 4px;
}

.hero .hero-block .hero-copy .stats-strip .s-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-divider { display: none; }
}

.hero .hero-block .hero-copy .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy .hero-btns { justify-content: center; }
}

.hero .hero-block .hero-copy .hero-btns a {
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .hero-btns a {
    width: 100%;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .hero-btns .btn-apply {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-block .hero-copy .hero-btns .btn-apply:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 4px 15px color-mix(in srgb, #000, transparent 94%);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, #000, transparent 88%);
  color: var(--accent-color);
}

.hero .hero-block .hero-visual {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual {
    max-width: 85%;
    margin: 0 auto;
  }
}

.hero .hero-block .hero-visual .campus-photo {
  border-radius: 20px;
  box-shadow: 0 25px 60px color-mix(in srgb, #000, transparent 82%);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero .hero-block .hero-visual .campus-photo { height: 400px; }
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .campus-photo { height: 350px; }
}

.hero .hero-block .hero-visual .accred-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--surface-color);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 35px color-mix(in srgb, #000, transparent 88%);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .accred-card {
    left: 15px;
    bottom: 20px;
  }
}

.hero .hero-block .hero-visual .accred-card i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-block .hero-visual .accred-card div { display: flex; flex-direction: column; }
.hero .hero-block .hero-visual .accred-card div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}
.hero .hero-block .hero-visual .accred-card div span {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 2px;
}

/*--------------------------------------------------------------
# Features Block (kafelki na stronie głównej i w ofercie)
--------------------------------------------------------------*/
.features-block {
  padding-bottom: 40px;
}

.feat-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.feat-card {
  display: block;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, #000, transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.35s ease;
  background-size: cover;
  background-position: center;
  color: var(--default-color);
}

.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feat-card:hover,
.feat-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px color-mix(in srgb, #000, transparent 90%);
}

.feat-card:hover::after,
.feat-card.featured::after {
  transform: scaleX(1);
}

.feat-card:hover .feat-icon,
.feat-card.featured .feat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.feat-card.featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.feat-card .feat-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--default-color), transparent 93%);
  font-family: var(--heading-font);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.feat-card .feat-icon {
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}

.feat-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
  color: var(--heading-color);
}

.feat-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.feat-card .feat-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feat-card .feat-link i {
  transition: transform 0.3s ease;
}

.feat-card .feat-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Service page (cięcie plazmą i podobne) – tło gradientowe jak w index
--------------------------------------------------------------*/
.service-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  border-bottom: 1px solid rgba(229, 42, 44, 0.3);
}

/* Breadcrumbs */
.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb-custom {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
}

.breadcrumb-item-custom {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.breadcrumb-item-custom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.breadcrumb-item-custom a i {
  font-size: 1rem;
  color: #e52a2c;
  transition: transform 0.3s ease;
}

.breadcrumb-item-custom a:hover {
  color: #fff;
  background: rgba(229, 42, 44, 0.2);
}

.breadcrumb-item-custom a:hover i {
  transform: scale(1.1);
}

.breadcrumb-item-custom.active {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(229, 42, 44, 0.3);
  border-radius: 30px;
}

.breadcrumb-item-custom.active i {
  color: #e52a2c;
}

.breadcrumb-item-custom + .breadcrumb-item-custom::before {
  content: "›";
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  font-weight: 300;
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 15px 0 15px;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(229, 42, 44, 0.3);
}

.service-hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Service Main Content (layout 8/4)
--------------------------------------------------------------*/
.service-main {
  padding: 60px 0;
}

.service-main-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Specyfikacje */
.machine-specs-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  border-left: 4px solid #e52a2c;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.machine-specs-card h3 {
  color: #183152;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  height: 100%;
}

.spec-item i {
  font-size: 2rem;
  color: #e52a2c;
}

.spec-item strong {
  display: block;
  font-weight: 700;
  color: #183152;
  margin-bottom: 3px;
}

.spec-item span {
  color: #6c757d;
  font-size: 0.9rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.spec-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-list i {
  color: #e52a2c;
}

.agregat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #e52a2c 0%, #c41f1f 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
}

.agregat-box i {
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
}

.agregat-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.agregat-box span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Tabela zakresów */
.table-cutting-range {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.table-cutting-range thead {
  background: #e52a2c;
  color: white;
}

.table-cutting-range thead th {
  padding: 15px;
  font-weight: 600;
  border: none;
}

.table-cutting-range tbody td {
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.table-cutting-range tbody td:first-child {
  font-weight: 500;
}

.table-cutting-range tbody td small {
  color: #6c757d;
  font-size: 0.85rem;
}

/* Highlight box z nowościami */
.service-highlight-box {
  background: linear-gradient(135deg, #fff8e7 0%, #fff 100%);
  border: 2px solid #e52a2c;
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.service-highlight-box h4 {
  color: #e52a2c;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-highlight-box h4 i {
  font-size: 1.5rem;
}

.service-highlight-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 8px;
  font-weight: 500;
}

.benefit-item i {
  color: #e52a2c;
  font-size: 1.2rem;
}

/* Sidebar widgets */
.sidebar-widget {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(229, 42, 44, 0.2);
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #183152;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e52a2c;
  display: inline-block;
}

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

.services-nav li {
  margin-bottom: 5px;
}

.services-nav li a {
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  color: #394757;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.services-nav li a i {
  color: #e52a2c;
  margin-right: 8px;
  width: 22px;
}

.services-nav li a:hover {
  background: #f8f9fa;
  border-left-color: #e52a2c;
}

.services-nav li.active > a {
  background: #e52a2c;
  color: #fff;
  border-left-color: #fff;
}

.services-nav li.active > a i {
  color: #fff;
}

.services-nav .submenu {
  list-style: none;
  padding-left: 35px;
  margin-top: 5px;
  display: none;
}

.services-nav .submenu-parent:hover .submenu,
.services-nav .submenu-parent.active .submenu {
  display: block;
}

.services-nav .submenu li a {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.services-nav .submenu li a:hover {
  background: #f1f3f5;
}

/* Kontakt widget */
.contact-widget .contact-intro {
  font-size: 1rem;
  color: #183152;
  font-weight: 500;
  margin-bottom: 20px;
}

.agregat-info,
.support-info,
.docs-info,
.profiles-info {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.agregat-info:hover,
.support-info:hover,
.docs-info:hover,
.profiles-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.1);
  border-left: 3px solid #e52a2c;
}

.agregat-info i,
.support-info i,
.docs-info i,
.profiles-info i {
  font-size: 1.8rem;
  color: #e52a2c;
  flex-shrink: 0;
}

.agregat-info strong,
.support-info strong,
.docs-info strong,
.profiles-info strong {
  display: block;
  color: #183152;
  margin-bottom: 3px;
}

.agregat-info span,
.support-info span,
.docs-info span,
.profiles-info span {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-details div {
  margin-bottom: 10px;
}

.contact-details i {
  color: #e52a2c;
  width: 22px;
  margin-right: 8px;
}

.contact-details a {
  color: #394757;
  text-decoration: none;
}

.contact-details a:hover {
  color: #e52a2c;
}

/* Przyciski */
.service-cta .btn-cta-custom {
  background: #e52a2c;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  margin-right: 15px;
}

.service-cta .btn-cta-custom:hover {
  background: #c41f1f;
}

.service-cta .btn-outline-secondary {
  border: 2px solid #e52a2c;
  color: #e52a2c;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
}

.service-cta .btn-outline-secondary:hover {
  background: #e52a2c;
  color: #fff;
}

/*--------------------------------------------------------------
# About Section (index)
--------------------------------------------------------------*/
.about .campus-showcase {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.about .campus-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.about .campus-showcase .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .campus-showcase .experience-badge .years {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
}

.about .campus-showcase .experience-badge .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .campus-showcase {
    min-height: 350px;
  }
}

.about .story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about .story-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.about .story-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
}

.about .story-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about .story-content>p {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .about .story-content h2 {
    font-size: 1.7rem;
  }
}

.about .purpose-block {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .purpose-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .purpose-block i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 14px;
  display: block;
}

.about .purpose-block h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .purpose-block p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .milestones-section {
  margin-top: 70px;
  margin-bottom: 60px;
}

.about .milestones-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.about .milestones-section .milestones-track {
  position: relative;
}

.about .milestones-section .milestones-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 3px;
  background: linear-gradient(to right, color-mix(in srgb, var(--accent-color), transparent 80%), var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 80%));
}

@media (max-width: 992px) {
  .about .milestones-section .milestones-track::before {
    display: none;
  }
}

.about .milestones-section .milestone-card {
  text-align: center;
  padding: 40px 20px 24px;
  position: relative;
}

.about .milestones-section .milestone-card::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 3px solid var(--background-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .about .milestones-section .milestone-card::before {
    display: none;
  }
}

.about .milestones-section .milestone-card .milestone-year {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}

.about .milestones-section .milestone-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .milestones-section .milestone-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.about .principle-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .principle-item:hover {
  border-left-color: var(--accent-color);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .principle-item .principle-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.about .principle-item:hover .principle-num {
  color: var(--accent-color);
}

.about .principle-item .principle-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about .principle-item .principle-body p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# CTA MEGA BAJERANCKI
--------------------------------------------------------------*/
.cta-mega {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-mega-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(229, 42, 44, 0.2), inset 0 0 30px rgba(229, 42, 44, 0.1);
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: float-particle 8s infinite ease-in-out;
  animation-delay: var(--delay);
  opacity: 0.3;
}

.particle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229,42,44,0.4) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(30px, -20px) scale(1.5); opacity: 0.6; }
  50% { transform: translate(50px, 20px) scale(1); opacity: 0.3; }
  75% { transform: translate(-20px, 30px) scale(1.2); opacity: 0.5; }
}

.cta-mega-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.tag-pulse {
  width: 10px;
  height: 10px;
  background: #e52a2c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.cta-mega-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.title-gradient {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 5px 20px rgba(229, 42, 44, 0.3);
}

.cta-mega-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 90%;
}

.text-highlight {
  color: #e52a2c;
  font-weight: 700;
  position: relative;
}

.text-glow {
  display: inline-block;
  animation: textGlow 2s infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(229, 42, 44, 0.3); }
  50% { text-shadow: 0 0 20px rgba(229, 42, 44, 0.8); }
}

.cta-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #e52a2c;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #e52a2c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(229, 42, 44, 0.3);
  transform: rotate(15deg);
}

.cta-mega-actions {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.btn-mega-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e52a2c, #ff4d4d);
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(229, 42, 44, 0.4);
}

.btn-mega-primary .btn-text,
.btn-mega-primary .btn-icon i {
  color: white !important;
}

.btn-mega-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-mega-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(229, 42, 44, 0.6);
  background: linear-gradient(135deg, #c41f1f, #e52a2c);
}

.btn-mega-primary:hover .btn-text,
.btn-mega-primary:hover .btn-icon i {
  color: white !important;
}

.btn-mega-primary:hover::before {
  left: 100%;
}

.btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-mega-primary:hover .btn-glow {
  opacity: 1;
}

.cta-secondary-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-mega-phone, .btn-mega-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(229, 42, 44, 0.3);
}

.btn-mega-phone {
  background: rgba(229, 42, 44, 0.1);
  color: white;
}

.btn-mega-phone i,
.btn-mega-phone span {
  color: white;
}

.btn-mega-phone:hover {
  background: #e52a2c;
  transform: scale(1.05);
  border-color: #e52a2c;
}

.btn-mega-phone:hover i,
.btn-mega-phone:hover span {
  color: white !important;
}

.btn-mega-chat {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-mega-chat i,
.btn-mega-chat span {
  color: white;
}

.btn-mega-chat:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: scale(1.05);
}

.btn-mega-chat:hover i,
.btn-mega-chat:hover span {
  color: white !important;
}

.chat-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cta-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.cta-deadline i {
  color: #e52a2c;
  animation: hourglass 2s infinite;
}

@keyframes hourglass {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.cta-trust-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(229, 42, 44, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.trust-item i {
  color: #e52a2c;
  font-size: 1.2rem;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/*--------------------------------------------------------------
# Footer (prosty z index.html)
--------------------------------------------------------------*/
.footer-simple {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  padding: 60px 0 30px;
}

.footer-simple .footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-simple .footer-logo {
  max-height: 60px;
  width: auto;
}

.footer-simple .company-name {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-simple .company-name strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-simple .company-name span {
  color: rgba(255,255,255,0.7);
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e52a2c;
}

.footer-contact .contact-item,
.footer-address,
.footer-data {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact .contact-item i,
.footer-address i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-contact .contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact .contact-item a:hover {
  color: #e52a2c;
}

.footer-data div {
  color: rgba(255,255,255,0.8);
  margin-bottom: 5px;
}

.footer-data strong {
  color: #fff;
  font-weight: 600;
}

.footer-social-simple {
  display: flex;
  gap: 15px;
}

.social-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-simple:hover {
  background: #e52a2c;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-simple {
  text-align: center;
  margin: 30px 0 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links-simple a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-links-simple a:hover {
  color: #e52a2c;
}

.footer-links-simple .sep {
  color: rgba(255,255,255,0.3);
}

.footer-bottom-simple {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-bottom-simple .copyright strong {
  color: #fff;
}

.footer-bottom-simple .created-by-simple {
  margin-top: 10px;
}

.footer-bottom-simple .created-by-simple a {
  color: #e52a2c;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-simple .created-by-simple a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Responsywność
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .cta-mega-wrapper {
    padding: 30px;
  }
  .title-gradient {
    font-size: 2.5rem;
  }
  .cta-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-mega-text {
    max-width: 100%;
  }
  .service-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .cta-secondary-actions {
    flex-direction: column;
  }
  .cta-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-divider {
    display: none;
  }
  .service-hero-title {
    font-size: 2rem;
  }
  .service-hero-subtitle {
    font-size: 1rem;
  }
  .breadcrumb-item-custom {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Subitem cards (dla obróbki skrawaniem)
--------------------------------------------------------------*/
.service-subitems {
  margin-top: 1.5rem;
}

.subitem-link {
  text-decoration: none;
  display: block;
}

.subitem-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.subitem-card i {
  font-size: 1.5rem;
  color: #e52a2c;
  display: block;
  margin-bottom: 8px;
}

.subitem-card span {
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.subitem-card:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.2);
}

.subitem-card:hover i,
.subitem-card:hover span {
  color: white;
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Helper classes
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Chakra Petch", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Barlow Condensed", "Oswald", sans-serif;
  --nav-font: "Inter", "Poppins", sans-serif;
  
  --background-color: #ffffff;
  --default-color: #394757;
  --heading-color: #183152;
  --accent-color: #e52a2c;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  --nav-color: #e9f0f7;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #394757;
  --nav-dropdown-hover-color: #e52a2c;
}

.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #183152;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# POPRAWKA: Nawigacja na BIAŁO (wymuszenie)
--------------------------------------------------------------*/
.navmenu ul li a,
.navmenu ul li a:focus,
.navmenu ul li a:hover,
.navmenu .dropdown ul li a,
.navmenu .dropdown ul li a:focus,
.navmenu .dropdown ul li a:hover,
.navmenu .dropdown ul li.active a,
.navmenu > ul > li > a {
  color: #ffffff !important;
}

/* Dla aktywnego elementu i hover - pozostawiamy czerwony akcent */
.navmenu ul li a:hover,
.navmenu ul li a.active,
.navmenu ul li a.active:focus,
.navmenu .dropdown ul li a:hover,
.navmenu .dropdown ul li.active a {
  color: #e52a2c !important;
}

/* Poprawka dla mobile menu - tło ciemne, tekst biały */
@media (max-width: 1199px) {
  .navmenu ul {
    background-color: #1a1a1a !important;
  }
  
  .navmenu a,
  .navmenu a:focus,
  .navmenu .dropdown ul a {
    color: #ffffff !important;
  }
  
  .navmenu a:hover,
  .navmenu a.active,
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li.active a {
    color: #e52a2c !important;
  }
  
  .mobile-nav-toggle {
    color: #ffffff !important;
  }
}
/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #183152;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 997;
  transition: all 0.4s ease;
}

.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 14px;
}

.header .header-top .contact-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a,
.header .header-top .contact-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .social-links {
  gap: 16px;
}

.header .header-top .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.header .header-top .social-links a:hover {
  color: var(--accent-color);
}

.header .header-main {
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.header .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.header .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header .header-main .logo { order: 1; }
  .header .header-main .navmenu { order: 3; }
}

@media (max-width: 992px) {
  .header .header-top .social-links {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu>ul>li>a:hover::after,
  .navmenu>ul>li>.active::after,
  .navmenu>ul>li>.active:focus::after {
    opacity: 1;
    transform: scale(1);
  }
  .navmenu>ul>li:hover>a i { transform: rotate(180deg); }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }
  .navmenu .dropdown ul li { min-width: 100%; }
  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }
  .navmenu .dropdown ul a::after { display: none; }
  .navmenu .dropdown ul a i { font-size: 10px; }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }
  .navmenu .dropdown ul a:hover::before { width: 12px; }
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }
  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before { width: 12px; }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .mobile-nav-toggle:hover { color: var(--accent-color); }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 30px 24px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }
  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover { color: var(--accent-color); }
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu a:hover::before { width: 40px; }
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active::before,
  .navmenu .active:focus::before { width: 40px; }
  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--accent-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }
  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
  }
  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }
  .navmenu .dropdown>.dropdown-active { display: block; }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 14px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
    max-height: 100vh;
  }
}

/*--------------------------------------------------------------
# Hero Section (index)
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .hero-block {
  padding: 80px 0 60px;
}

@media (max-width: 992px) {
  .hero .hero-block {
    padding: 60px 0 40px;
    text-align: center;
  }
}

.hero .hero-block .hero-copy .top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero .hero-block .hero-copy .top-badge i { font-size: 1rem; }

.hero .hero-block .hero-copy h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy h1 { font-size: 2.4rem; }
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy h1 { font-size: 1.9rem; }
}

.hero .hero-block .hero-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.75rem;
}

.hero .hero-block .hero-copy .stats-strip {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px color-mix(in srgb, #000, transparent 94%);
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item {
  flex: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1.1;
}

.hero .hero-block .hero-copy .stats-strip .s-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 4px;
}

.hero .hero-block .hero-copy .stats-strip .s-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-divider { display: none; }
}

.hero .hero-block .hero-copy .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy .hero-btns { justify-content: center; }
}

.hero .hero-block .hero-copy .hero-btns a {
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .hero-btns a {
    width: 100%;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .hero-btns .btn-apply {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-block .hero-copy .hero-btns .btn-apply:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 55%);
  color: #fff;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 4px 15px color-mix(in srgb, #000, transparent 94%);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, #000, transparent 88%);
  color: var(--accent-color);
}

.hero .hero-block .hero-visual {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual {
    max-width: 85%;
    margin: 0 auto;
  }
}

.hero .hero-block .hero-visual .campus-photo {
  border-radius: 20px;
  box-shadow: 0 25px 60px color-mix(in srgb, #000, transparent 82%);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero .hero-block .hero-visual .campus-photo { height: 400px; }
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .campus-photo { height: 350px; }
}

.hero .hero-block .hero-visual .accred-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--surface-color);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 35px color-mix(in srgb, #000, transparent 88%);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .accred-card {
    left: 15px;
    bottom: 20px;
  }
}

.hero .hero-block .hero-visual .accred-card i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-block .hero-visual .accred-card div { display: flex; flex-direction: column; }
.hero .hero-block .hero-visual .accred-card div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}
.hero .hero-block .hero-visual .accred-card div span {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 2px;
}

/*--------------------------------------------------------------
# Features Block (kafelki na stronie głównej)
--------------------------------------------------------------*/
.features-block {
  padding-bottom: 40px;
}

.feat-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.feat-card {
  display: block;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, #000, transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.35s ease;
  background-size: cover;
  background-position: center;
  color: var(--default-color);
}

.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feat-card:hover,
.feat-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px color-mix(in srgb, #000, transparent 90%);
}

.feat-card:hover::after,
.feat-card.featured::after {
  transform: scaleX(1);
}

.feat-card:hover .feat-icon,
.feat-card.featured .feat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.feat-card.featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.feat-card .feat-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--default-color), transparent 93%);
  font-family: var(--heading-font);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.feat-card .feat-icon {
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}

.feat-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
  color: var(--heading-color);
}

.feat-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.feat-card .feat-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feat-card .feat-link i {
  transition: transform 0.3s ease;
}

.feat-card .feat-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Usługa - Cięcie plazmą i inne podstrony usług
# WSZYSTKIE ELEMENTY mają styl JAK W CTA MEGA
# Nagłówki: białe lub czerwone (#e52a2c)
--------------------------------------------------------------*/

/* Hero sekcja */
.usluga-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  border-bottom: 1px solid rgba(229, 42, 44, 0.3);
}

/* Breadcrumbs */
.usluga-breadcrumb-nav {
  margin-bottom: 30px;
}

.usluga-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
}

.usluga-breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.usluga-breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.usluga-breadcrumb-item a i {
  font-size: 1rem;
  color: #e52a2c;
  transition: transform 0.3s ease;
}

.usluga-breadcrumb-item a:hover {
  color: #fff;
  background: rgba(229, 42, 44, 0.2);
}

.usluga-breadcrumb-item.active {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(229, 42, 44, 0.3);
  border-radius: 30px;
}

.usluga-breadcrumb-item + .usluga-breadcrumb-item::before {
  content: "›";
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}

.usluga-hero-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 15px 0 15px;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.usluga-hero-subtitle {
  text-align: center;

  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
}

/* Główna sekcja */
.usluga-main {
  padding: 60px 0;
  background: #1a1a1a;
}

/* WSZYSTKIE kafelki mają styl JAK .cta-mega-wrapper */
.usluga-machine-card,
.usluga-widget,
.usluga-highlight-box,
.usluga-machine-spec,
.usluga-contact-item,
.usluga-spec-list li {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(229, 42, 44, 0.2),
              inset 0 0 30px rgba(229, 42, 44, 0.1);
  color: #fff;
  margin-bottom: 20px;
}

/* Mniejsze elementy */
.usluga-machine-spec,
.usluga-contact-item,
.usluga-spec-list li {
  padding: 15px 20px;
}

/* NAGŁÓWKI - WSZYSTKIE BIAŁE LUB CZERWONE */
.usluga-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e52a2c !important;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.usluga-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #e52a2c;
}

.usluga-subsection-title {
  font-size: 1.3rem;
  color: #fff !important;
  margin: 20px 0 15px;
}

/* Nagłówki wewnątrz kafelków */
.usluga-machine-card h2,
.usluga-machine-card h3,
.usluga-machine-card h4,
.usluga-widget h3,
.usluga-widget-title,
.usluga-highlight-box h4,
.usluga-machine-spec strong,
.usluga-contact-item strong {
  color: #fff !important;
}

/* Specjalne wyróżnienia */
.usluga-machine-header h3 strong {
  color: #e52a2c !important;
}

/* Poprawiony układ ikona + tekst (LEWO DO PRAWEJ) */
.usluga-machine-spec {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  flex-direction: row !important;
}

.usluga-machine-spec i {
  font-size: 2rem;
  color: #e52a2c;
  flex-shrink: 0;
  margin-bottom: 0 !important;
}

.usluga-spec-text {
  display: flex;
  flex-direction: column;
}

.usluga-spec-text strong {
  color: #fff !important;
  margin-bottom: 3px;
}

.usluga-spec-text span {
  color: rgba(255,255,255,0.7);
}

/* Poprawka dla nagłówka maszyny */
.usluga-machine-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.usluga-machine-header i {
  font-size: 2.5rem;
  color: #e52a2c;
  flex-shrink: 0;
}

.usluga-machine-header h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}
/*--------------------------------------------------------------
# NOWE STYLE DLA KAFELKÓW W SIDEBARZE (2x2)
# W pełni zgodne ze stylem .usluga-widget i .cta-mega-wrapper
--------------------------------------------------------------*/

/* Siatka dla 4 kafelków (2x2) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dwie kolumny */
  gap: 1rem; /* Odstęp między kafelkami */
  margin-top: 1rem;
}

/* Styl pojedynczego kafelka - DZIEDZICZY PO .usluga-widget */
.info-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 20px; /* Trochę mniejsze zaokrąglenie, ale wciąż pasujące */
  padding: 1.2rem 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(229, 42, 44, 0.2);
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: #e52a2c;
  box-shadow: 0 15px 30px rgba(229, 42, 44, 0.3);
}

.info-card i {
  font-size: 2rem;
  color: #e52a2c;
  margin-bottom: 0.5rem;
}

.info-card strong {
  color: #fff !important;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.info-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Mała poprawka do istniejącego widgetu kontaktowego, żeby ładnie wyglądał pod kafelkami */
.usluga-contact-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(229, 42, 44, 0.2);
}
.usluga-contact-details div {
  margin-bottom: 0.5rem;
}
.usluga-contact-details i {
  margin-right: 0.5rem;
  color: #e52a2c;
}
/* NOWY KAFELEK DLA NEWSÓW */
.usluga-news-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 20px;
  padding: 25px;
  margin: 20px 0 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.usluga-news-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.usluga-news-header i {
  font-size: 2rem;
  color: #e52a2c;
}

.usluga-news-header h5 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.usluga-news-description {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 1rem;
}

.usluga-news-description strong {
  color: #e52a2c;
}

/* Agregat box */
.usluga-agregat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #e52a2c 0%, #c41f1f 100%);
  color: white;
  padding: 25px;
  border-radius: 30px;
  margin-top: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(229,42,44,0.5);
}

.usluga-agregat-box i {
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.usluga-agregat-box strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}

.usluga-agregat-box span {
  font-size: 0.95rem;
  opacity: 0.9;
  color: rgba(255,255,255,0.9);
}

/* Lista specyfikacji */
.usluga-spec-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.usluga-spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #fff;
  padding: 8px 15px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  border-left: 3px solid #e52a2c;
}

.usluga-spec-list li i {
  color: #e52a2c;
  font-size: 1.2rem;
}

/* Nawigacja w sidebarze */
.usluga-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usluga-nav-item {
  margin-bottom: 5px;
}

.usluga-nav-item a {
  display: block;
  padding: 12px 15px;
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: 0.3s;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(229,42,44,0.2);
}

.usluga-nav-item a i {
  color: #e52a2c;
  margin-right: 8px;
  width: 22px;
}

.usluga-nav-item a:hover {
  background: rgba(229,42,44,0.3);
  color: #fff;
  border-color: #e52a2c;
}

.usluga-nav-item.active a {
  background: #e52a2c;
  color: #fff;
  border-color: #e52a2c;
}

.usluga-nav-item.active a i {
  color: #fff;
}

/* Submenu */
.usluga-nav-submenu .usluga-submenu {
  list-style: none;
  padding-left: 30px;
  margin-top: 5px;
  display: none;
}

.usluga-nav-submenu:hover .usluga-submenu {
  display: block;
}

.usluga-submenu li a {
  background: rgba(0,0,0,0.3);
  border: none;
  border-left: 2px solid rgba(229,42,44,0.3);
  border-radius: 0;
  margin-bottom: 2px;
}

/* Tabela */
.usluga-table-wrapper {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229,42,44,0.2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.usluga-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

.usluga-table thead {
  background: #e52a2c;
}

.usluga-table thead th {
  padding: 15px;
  color: white;
  font-weight: 600;
}

.usluga-table tbody td {
  padding: 15px;
  border-bottom: 1px solid rgba(229,42,44,0.2);
  color: rgba(255,255,255,0.9);
}

.usluga-table tbody td:last-child {
  border-bottom: none;
}

.usluga-table tbody td small {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* Benefits grid */
.usluga-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.usluga-benefit-item {
  background: rgba(229,42,44,0.15);
  border: 1px solid rgba(229,42,44,0.3);
  border-radius: 15px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  backdrop-filter: blur(5px);
}

.usluga-benefit-item i {
  color: #e52a2c;
  font-size: 1.2rem;
}

/* Kontakt widget */
.usluga-contact-intro {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 20px;
}

.usluga-contact-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.usluga-contact-item:hover {
  transform: translateY(-2px);
  border-color: #e52a2c;
  box-shadow: 0 10px 25px rgba(229,42,44,0.3);
}

.usluga-contact-item i {
  font-size: 1.8rem;
  color: #e52a2c;
  flex-shrink: 0;
}

.usluga-contact-item span {
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.usluga-contact-details div {
  margin-bottom: 10px;
}

.usluga-contact-details i {
  color: #e52a2c;
  width: 22px;
  margin-right: 8px;
}

.usluga-contact-details a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: 0.3s;
}

.usluga-contact-details a:hover {
  color: #e52a2c;
}

/* Przyciski */
.usluga-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.usluga-btn-primary {
  background: #e52a2c;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.usluga-btn-primary:hover {
  background: #c41f1f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229,42,44,0.5);
}

.usluga-btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e52a2c;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.usluga-btn-secondary:hover {
  background: #e52a2c;
  color: white;
  transform: translateY(-3px);
}

/* Główne zdjęcie */
.usluga-main-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(229,42,44,0.2);
}

/*--------------------------------------------------------------
# About Section (index)
--------------------------------------------------------------*/
.about .campus-showcase {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.about .campus-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.about .campus-showcase .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .campus-showcase .experience-badge .years {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
}

.about .campus-showcase .experience-badge .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .campus-showcase {
    min-height: 350px;
  }
}

.about .story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about .story-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.about .story-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
}

.about .story-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about .story-content>p {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .about .story-content h2 {
    font-size: 1.7rem;
  }
}

.about .purpose-block {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .purpose-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .purpose-block i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 14px;
  display: block;
}

.about .purpose-block h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .purpose-block p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .milestones-section {
  margin-top: 70px;
  margin-bottom: 60px;
}

.about .milestones-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.about .milestones-section .milestones-track {
  position: relative;
}

.about .milestones-section .milestones-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 3px;
  background: linear-gradient(to right, color-mix(in srgb, var(--accent-color), transparent 80%), var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 80%));
}

@media (max-width: 992px) {
  .about .milestones-section .milestones-track::before {
    display: none;
  }
}

.about .milestones-section .milestone-card {
  text-align: center;
  padding: 40px 20px 24px;
  position: relative;
}

.about .milestones-section .milestone-card::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 3px solid var(--background-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .about .milestones-section .milestone-card::before {
    display: none;
  }
}

.about .milestones-section .milestone-card .milestone-year {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}

.about .milestones-section .milestone-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .milestones-section .milestone-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.about .principle-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .principle-item:hover {
  border-left-color: var(--accent-color);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .principle-item .principle-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.about .principle-item:hover .principle-num {
  color: var(--accent-color);
}

.about .principle-item .principle-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about .principle-item .principle-body p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# CTA MEGA BAJERANCKI
--------------------------------------------------------------*/
.cta-mega {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-mega-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(229, 42, 44, 0.2),
              inset 0 0 30px rgba(229, 42, 44, 0.1);
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: float-particle 8s infinite ease-in-out;
  animation-delay: var(--delay);
  opacity: 0.3;
}

.particle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229,42,44,0.4) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(30px, -20px) scale(1.5); opacity: 0.6; }
  50% { transform: translate(50px, 20px) scale(1); opacity: 0.3; }
  75% { transform: translate(-20px, 30px) scale(1.2); opacity: 0.5; }
}

.cta-mega-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  color: white;
}

.tag-pulse {
  width: 10px;
  height: 10px;
  background: #e52a2c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.cta-mega-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.title-gradient {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 5px 20px rgba(229, 42, 44, 0.3);
}

.cta-mega-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 90%;
}

.text-highlight {
  color: #e52a2c;
  font-weight: 700;
  position: relative;
}

.text-glow {
  display: inline-block;
  animation: textGlow 2s infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(229, 42, 44, 0.3); }
  50% { text-shadow: 0 0 20px rgba(229, 42, 44, 0.8); }
}

.cta-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #e52a2c;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #e52a2c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(229, 42, 44, 0.3);
  transform: rotate(15deg);
}

.cta-mega-actions {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.btn-mega-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e52a2c, #ff4d4d);
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(229, 42, 44, 0.4);
}

.btn-mega-primary .btn-text,
.btn-mega-primary .btn-icon i {
  color: white !important;
}

.btn-mega-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-mega-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(229, 42, 44, 0.6);
  background: linear-gradient(135deg, #c41f1f, #e52a2c);
}

.btn-mega-primary:hover .btn-text,
.btn-mega-primary:hover .btn-icon i {
  color: white !important;
}

.btn-mega-primary:hover::before {
  left: 100%;
}

.btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-mega-primary:hover .btn-glow {
  opacity: 1;
}

.cta-secondary-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-mega-phone, .btn-mega-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(229, 42, 44, 0.3);
}

.btn-mega-phone {
  background: rgba(229, 42, 44, 0.1);
  color: white;
}

.btn-mega-phone i,
.btn-mega-phone span {
  color: white;
}

.btn-mega-phone:hover {
  background: #e52a2c;
  transform: scale(1.05);
  border-color: #e52a2c;
}

.btn-mega-phone:hover i,
.btn-mega-phone:hover span {
  color: white !important;
}

.btn-mega-chat {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-mega-chat i,
.btn-mega-chat span {
  color: white;
}

.btn-mega-chat:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: scale(1.05);
}

.btn-mega-chat:hover i,
.btn-mega-chat:hover span {
  color: white !important;
}

.chat-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cta-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.cta-deadline i {
  color: #e52a2c;
  animation: hourglass 2s infinite;
}

@keyframes hourglass {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.cta-trust-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(229, 42, 44, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.trust-item i {
  color: #e52a2c;
  font-size: 1.2rem;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-simple {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  padding: 60px 0 30px;
}

.footer-simple .footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-simple .footer-logo {
  max-height: 60px;
  width: auto;
}

.footer-simple .company-name {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-simple .company-name strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-simple .company-name span {
  color: rgba(255,255,255,0.7);
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e52a2c;
}

.footer-contact .contact-item,
.footer-address,
.footer-data {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact .contact-item i,
.footer-address i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-contact .contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact .contact-item a:hover {
  color: #e52a2c;
}

.footer-data div {
  color: rgba(255,255,255,0.8);
  margin-bottom: 5px;
}

.footer-data strong {
  color: #fff;
  font-weight: 600;
}

.footer-social-simple {
  display: flex;
  gap: 15px;
}

.social-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-simple:hover {
  background: #e52a2c;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-simple {
  text-align: center;
  margin: 30px 0 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links-simple a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-links-simple a:hover {
  color: #e52a2c;
}

.footer-links-simple .sep {
  color: rgba(255,255,255,0.3);
}

.footer-bottom-simple {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-bottom-simple .copyright strong {
  color: #fff;
}

.footer-bottom-simple .created-by-simple {
  margin-top: 10px;
}

.footer-bottom-simple .created-by-simple a {
  color: #e52a2c;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-simple .created-by-simple a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Subitem cards (dla obróbki skrawaniem)
--------------------------------------------------------------*/
.service-subitems {
  margin-top: 1.5rem;
}

.subitem-link {
  text-decoration: none;
  display: block;
}

.subitem-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.subitem-card i {
  font-size: 1.5rem;
  color: #e52a2c;
  display: block;
  margin-bottom: 8px;
}

.subitem-card span {
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.subitem-card:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.2);
}

.subitem-card:hover i,
.subitem-card:hover span {
  color: white;
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Helper classes
--------------------------------------------------------------*/


/* Responsywność */
@media (max-width: 991px) {
  .cta-mega-wrapper {
    padding: 30px;
  }
  
  .title-gradient {
    font-size: 2.5rem;
  }
  
  .cta-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-mega-text {
    max-width: 100%;
  }
  
  .usluga-hero-title {
    font-size: 2.5rem;
  }
  
  .usluga-machine-card,
  .usluga-widget,
  .usluga-highlight-box {
    padding: 25px;
  }
  
  .usluga-section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .cta-secondary-actions {
    flex-direction: column;
  }
  
  .cta-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stat-divider {
    display: none;
  }
  
  .usluga-hero-title {
    font-size: 2rem;
  }
  
  .usluga-hero-subtitle {
    font-size: 1rem;
  }
  
  .usluga-machine-header {
    flex-direction: row;
    text-align: left;
  }
  
  .usluga-machine-spec {
    flex-direction: row !important;
  }
  
  .usluga-news-header {
    flex-direction: row;
  }
  
  .usluga-agregat-box {
    flex-direction: column;
    text-align: center;
  }
  
  .usluga-benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* Poprawka dla dropdown menu w navbarze - ciemne tło */
.navmenu .dropdown ul {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(229, 42, 44, 0.3) !important;
  border-radius: 15px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}

.navmenu .dropdown ul li {
  background: transparent !important;
}

.navmenu .dropdown ul a {
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(229, 42, 44, 0.1) !important;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul a:focus {
  color: #e52a2c !important;
  background: rgba(229, 42, 44, 0.1) !important;
  padding-left: 25px !important;
}

/* Dropdown drugiego poziomu */
.navmenu .dropdown .dropdown ul {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(229, 42, 44, 0.3) !important;
  left: 100%;
  top: 0;
}

/* Styl dla nagłówka "Obróbka skrawaniem:" w dropdownie */
.navmenu .dropdown ul .dropdown a {
  font-weight: 600;
  color: #fff !important;
}

.navmenu .dropdown ul .dropdown a i {
  color: #e52a2c;
}

/* Ikona w dropdownie */
.navmenu .dropdown ul a i {
  transition: transform 0.3s ease;
}

.navmenu .dropdown ul a:hover i {
  transform: translateX(5px);
}





/*--------------------------------------------------------------
# Galeria w sidebarze
--------------------------------------------------------------*/
.usluga-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.usluga-gallery-item {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(229, 42, 44, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.usluga-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.usluga-gallery-item:hover {
  border-color: #e52a2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 42, 44, 0.3);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 42, 44, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.usluga-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Przycisk "Zobacz więcej" */
.usluga-btn-secondary.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.feat-card h3 {
  font-size: 1.2rem !important;
  line-height: 1.3 !important;
}


/*--------------------------------------------------------------
# Certyfikaty Section (z prefiksem .certyfikaty)
--------------------------------------------------------------*/

.certyfikaty {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

/* Tło z liniami */
.certyfikaty-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.certyfikaty-bg-lines span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  left: 0;
}

.certyfikaty-bg-lines span:nth-child(1) { top: 10%; }
.certyfikaty-bg-lines span:nth-child(2) { top: 25%; }
.certyfikaty-bg-lines span:nth-child(3) { top: 40%; }
.certyfikaty-bg-lines span:nth-child(4) { top: 55%; }
.certyfikaty-bg-lines span:nth-child(5) { top: 70%; }
.certyfikaty-bg-lines span:nth-child(6) { top: 85%; }

.certyfikaty-bg-lines span.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  top: 0;
}

.certyfikaty-bg-lines span.vertical:nth-child(7) { left: 10%; }
.certyfikaty-bg-lines span.vertical:nth-child(8) { left: 30%; }
.certyfikaty-bg-lines span.vertical:nth-child(9) { left: 50%; }
.certyfikaty-bg-lines span.vertical:nth-child(10) { left: 70%; }
.certyfikaty-bg-lines span.vertical:nth-child(11) { left: 90%; }

/* Sparkles */
.certyfikaty-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.certyfikaty-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: certyfikatySparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.certyfikaty-sparkles .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.3) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.certyfikaty-sparkles .sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.certyfikaty-sparkles .sparkle:nth-child(2) { top: 65%; left: 15%; animation-delay: 1.2s; }
.certyfikaty-sparkles .sparkle:nth-child(3) { top: 35%; left: 85%; animation-delay: 2.4s; }
.certyfikaty-sparkles .sparkle:nth-child(4) { top: 75%; left: 80%; animation-delay: 3.6s; }
.certyfikaty-sparkles .sparkle:nth-child(5) { top: 20%; left: 92%; animation-delay: 4.8s; }
.certyfikaty-sparkles .sparkle:nth-child(6) { top: 55%; left: 30%; animation-delay: 6s; }
.certyfikaty-sparkles .sparkle:nth-child(7) { top: 85%; left: 45%; animation-delay: 7.2s; }
.certyfikaty-sparkles .sparkle:nth-child(8) { top: 25%; left: 65%; animation-delay: 8.4s; }

@keyframes certyfikatySparkleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(25px, -20px) scale(1.5); opacity: 0.5; }
  50% { transform: translate(35px, 20px) scale(1); opacity: 0.2; }
  75% { transform: translate(-20px, 25px) scale(1.3); opacity: 0.4; }
}

/* Kształty geometryczne */
.certyfikaty-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.certyfikaty-shape.square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: certyfikatyRotateSlow 20s linear infinite;
}

.certyfikaty-shape.square-1 { top: 10%; right: 5%; }
.certyfikaty-shape.square-2 { bottom: 15%; left: 2%; width: 120px; height: 120px; border-color: rgba(229, 42, 44, 0.1); animation: certyfikatyRotateSlow 25s linear infinite reverse; }

.certyfikaty-shape.circle {
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: certyfikatyRotateSlow 30s linear infinite;
}

.certyfikaty-shape.circle-1 { bottom: 5%; right: 10%; }
.certyfikaty-shape.circle-2 { top: 20%; left: 15%; width: 100px; height: 100px; border-style: dotted; border-color: rgba(229, 42, 44, 0.15); }

.certyfikaty-shape.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(229, 42, 44, 0.1);
  opacity: 0.3;
  transform: rotate(10deg);
  animation: certyfikatyFloatTriangle 12s ease-in-out infinite;
}

.certyfikaty-shape.triangle-1 { top: 15%; right: 20%; }
.certyfikaty-shape.triangle-2 { bottom: 10%; left: 25%; transform: rotate(45deg); animation: certyfikatyFloatTriangle 15s ease-in-out infinite reverse; }

@keyframes certyfikatyRotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes certyfikatyFloatTriangle {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}

/* Nagłówki sekcji */
.certyfikaty-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e52a2c;
  margin-bottom: 10px;
  background: rgba(229, 42, 44, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
}

.certyfikaty-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.certyfikaty-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Główna karta certyfikatu (lewa strona) */
.certyfikaty-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(229, 42, 44, 0.2), inset 0 0 30px rgba(229, 42, 44, 0.1);
  height: 100%;
}

.certyfikaty-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(229, 42, 44, 0.3);
}

.certyfikaty-card-header i {
  font-size: 2rem;
  color: #e52a2c;
}

.certyfikaty-card-header span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.certyfikaty-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.certyfikaty-issuer,
.certyfikaty-director,
.certyfikaty-date {
  text-align: center;
}

.certyfikaty-issuer strong,
.certyfikaty-director strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.certyfikaty-issuer span,
.certyfikaty-director span,
.certyfikaty-date span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.certyfikaty-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(229, 42, 44, 0.1);
  padding: 12px;
  border-radius: 10px;
  border-left: 3px solid #e52a2c;
}

.certyfikaty-note i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 2px;
}

.certyfikaty-note span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
}

.certyfikaty-logo {
  text-align: center;
  margin-top: 10px;
}

.pcc-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e52a2c;
  letter-spacing: 3px;
  padding: 10px 20px;
  border: 2px solid #e52a2c;
  border-radius: 10px;
  background: rgba(229, 42, 44, 0.05);
}

/* Karta informacyjna (prawa strona) */
.certyfikaty-info-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(229, 42, 44, 0.2), inset 0 0 30px rgba(229, 42, 44, 0.1);
  height: 100%;
}

.certyfikaty-info-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e52a2c;
  margin-bottom: 20px;
  text-align: center;
}

.certyfikaty-confirm {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 15px;
}

.certyfikaty-company {
  background: rgba(229, 42, 44, 0.15);
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.certyfikaty-company strong {
  color: #fff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.certyfikaty-company span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.certyfikaty-statement {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.certyfikaty-statement strong {
  color: #e52a2c;
}

.certyfikaty-scope {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(229, 42, 44, 0.1);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.certyfikaty-scope i {
  color: #e52a2c;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.certyfikaty-scope span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Szczegóły certyfikatu */
.certyfikaty-details .detail-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.certyfikaty-details .detail-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certyfikaty-details .detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.certyfikaty-details .detail-value.highlight {
  color: #e52a2c;
  font-size: 1.1rem;
}

/* Małe karty (atuty) */
.certyfikaty-small-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.certyfikaty-small-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 42, 44, 0.5);
  background: rgba(0, 0, 0, 0.4);
}

.small-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(229, 42, 44, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.small-card-icon i {
  font-size: 1.8rem;
  color: #e52a2c;
}

.certyfikaty-small-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.certyfikaty-small-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsywność */
@media (max-width: 991px) {
  .certyfikaty-title {
    font-size: 1.8rem;
  }
  
  .certyfikaty-card,
  .certyfikaty-info-card {
    padding: 25px;
  }
  
  .certyfikaty-info-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .certyfikaty-title {
    font-size: 1.5rem;
  }
  
  .certyfikaty-description {
    font-size: 1rem;
  }
  
  .certyfikaty-card-header span {
    font-size: 1rem;
  }
  
  .certyfikaty-info-card h3 {
    font-size: 1.3rem;
  }
}

/* Zdjęcie certyfikatu */
.certyfikaty-image {
  margin: 15px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(229, 42, 44, 0.2);
}

.certyfikaty-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.certyfikaty-image img:hover {
  transform: scale(1.02);
}

/* Przycisk do pobierania */
.certyfikaty-download {
  text-align: center;
  margin: 15px 0 10px;
}

.btn-cert-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e52a2c, #c41f1f);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.btn-cert-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 42, 44, 0.5);
  background: linear-gradient(135deg, #c41f1f, #a01818);
  color: #fff;
}

.btn-cert-download i {
  font-size: 1.2rem;
}


/*--------------------------------------------------------------
# Produkty - Strona w budowie (z prefiksem .produkty-)
--------------------------------------------------------------*/

.produkty-w-budowie {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Tło z liniami */
.produkty-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.produkty-bg-lines span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  left: 0;
}

.produkty-bg-lines span:nth-child(1) { top: 10%; }
.produkty-bg-lines span:nth-child(2) { top: 25%; }
.produkty-bg-lines span:nth-child(3) { top: 40%; }
.produkty-bg-lines span:nth-child(4) { top: 55%; }
.produkty-bg-lines span:nth-child(5) { top: 70%; }
.produkty-bg-lines span:nth-child(6) { top: 85%; }

.produkty-bg-lines span.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  top: 0;
}

.produkty-bg-lines span.vertical:nth-child(7) { left: 10%; }
.produkty-bg-lines span.vertical:nth-child(8) { left: 30%; }
.produkty-bg-lines span.vertical:nth-child(9) { left: 50%; }
.produkty-bg-lines span.vertical:nth-child(10) { left: 70%; }
.produkty-bg-lines span.vertical:nth-child(11) { left: 90%; }

/* Sparkles */
.produkty-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.produkty-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: produktySparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.produkty-sparkles .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.3) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.produkty-sparkles .sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.produkty-sparkles .sparkle:nth-child(2) { top: 65%; left: 15%; animation-delay: 1.2s; }
.produkty-sparkles .sparkle:nth-child(3) { top: 35%; left: 85%; animation-delay: 2.4s; }
.produkty-sparkles .sparkle:nth-child(4) { top: 75%; left: 80%; animation-delay: 3.6s; }
.produkty-sparkles .sparkle:nth-child(5) { top: 20%; left: 92%; animation-delay: 4.8s; }
.produkty-sparkles .sparkle:nth-child(6) { top: 55%; left: 30%; animation-delay: 6s; }
.produkty-sparkles .sparkle:nth-child(7) { top: 85%; left: 45%; animation-delay: 7.2s; }
.produkty-sparkles .sparkle:nth-child(8) { top: 25%; left: 65%; animation-delay: 8.4s; }

@keyframes produktySparkleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(25px, -20px) scale(1.5); opacity: 0.5; }
  50% { transform: translate(35px, 20px) scale(1); opacity: 0.2; }
  75% { transform: translate(-20px, 25px) scale(1.3); opacity: 0.4; }
}

/* Kształty geometryczne */
.produkty-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.produkty-shape.square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: produktyRotateSlow 20s linear infinite;
}

.produkty-shape.square-1 { top: 10%; right: 5%; }
.produkty-shape.square-2 { bottom: 15%; left: 2%; width: 120px; height: 120px; border-color: rgba(229, 42, 44, 0.1); animation: produktyRotateSlow 25s linear infinite reverse; }

.produkty-shape.circle {
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: produktyRotateSlow 30s linear infinite;
}

.produkty-shape.circle-1 { bottom: 5%; right: 10%; }
.produkty-shape.circle-2 { top: 20%; left: 15%; width: 100px; height: 100px; border-style: dotted; border-color: rgba(229, 42, 44, 0.15); }

.produkty-shape.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(229, 42, 44, 0.1);
  opacity: 0.3;
  transform: rotate(10deg);
  animation: produktyFloatTriangle 12s ease-in-out infinite;
}

.produkty-shape.triangle-1 { top: 15%; right: 20%; }
.produkty-shape.triangle-2 { bottom: 10%; left: 25%; transform: rotate(45deg); animation: produktyFloatTriangle 15s ease-in-out infinite reverse; }

@keyframes produktyRotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes produktyFloatTriangle {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}

/* Główna zawartość */
.produkty-icon-main {
  margin-bottom: 30px;
}

.produkty-icon-main i {
  font-size: 5rem;
  color: #e52a2c;
  animation: produktyPulse 2s ease-in-out infinite;
}

@keyframes produktyPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.produkty-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.produkty-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.produkty-status {
  margin: 30px 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 42, 44, 0.15);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  padding: 10px 25px;
  color: #fff;
  font-weight: 500;
}

.status-badge i {
  color: #e52a2c;
  font-size: 1.2rem;
}

.produkty-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-home,
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-home {
  background: #e52a2c;
  color: #fff;
  border: 2px solid #e52a2c;
}

.btn-home:hover {
  background: transparent;
  color: #e52a2c;
  transform: translateY(-3px);
}

.btn-contact {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-contact:hover {
  border-color: #e52a2c;
  color: #e52a2c;
  transform: translateY(-3px);
}

.produkty-info {
  border-top: 1px solid rgba(229, 42, 44, 0.2);
  padding-top: 30px;
  margin-top: 30px;
}

.produkty-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.produkty-info a {
  color: #e52a2c;
  text-decoration: none;
  font-weight: 500;
}

.produkty-info a:hover {
  text-decoration: underline;
}

/* Responsywność */
@media (max-width: 768px) {
  .produkty-title {
    font-size: 2rem;
  }
  
  .produkty-description {
    font-size: 1rem;
  }
  
  .produkty-icon-main i {
    font-size: 4rem;
  }
  
  .produkty-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-home,
  .btn-contact {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}










/*--------------------------------------------------------------
# Kariera - Formularz aplikacyjny (z prefiksem .kariera-)
--------------------------------------------------------------*/

.kariera {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Tło z liniami - takie same jak w innych sekcjach */
.kariera-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.kariera-bg-lines span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  left: 0;
}

.kariera-bg-lines span:nth-child(1) { top: 10%; }
.kariera-bg-lines span:nth-child(2) { top: 25%; }
.kariera-bg-lines span:nth-child(3) { top: 40%; }
.kariera-bg-lines span:nth-child(4) { top: 55%; }
.kariera-bg-lines span:nth-child(5) { top: 70%; }
.kariera-bg-lines span:nth-child(6) { top: 85%; }

.kariera-bg-lines span.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  top: 0;
}

.kariera-bg-lines span.vertical:nth-child(7) { left: 10%; }
.kariera-bg-lines span.vertical:nth-child(8) { left: 30%; }
.kariera-bg-lines span.vertical:nth-child(9) { left: 50%; }
.kariera-bg-lines span.vertical:nth-child(10) { left: 70%; }
.kariera-bg-lines span.vertical:nth-child(11) { left: 90%; }

/* Sparkles */
.kariera-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.kariera-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: karieraSparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.kariera-sparkles .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.3) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.kariera-sparkles .sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.kariera-sparkles .sparkle:nth-child(2) { top: 65%; left: 15%; animation-delay: 1.2s; }
.kariera-sparkles .sparkle:nth-child(3) { top: 35%; left: 85%; animation-delay: 2.4s; }
.kariera-sparkles .sparkle:nth-child(4) { top: 75%; left: 80%; animation-delay: 3.6s; }
.kariera-sparkles .sparkle:nth-child(5) { top: 20%; left: 92%; animation-delay: 4.8s; }
.kariera-sparkles .sparkle:nth-child(6) { top: 55%; left: 30%; animation-delay: 6s; }
.kariera-sparkles .sparkle:nth-child(7) { top: 85%; left: 45%; animation-delay: 7.2s; }
.kariera-sparkles .sparkle:nth-child(8) { top: 25%; left: 65%; animation-delay: 8.4s; }

@keyframes karieraSparkleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(25px, -20px) scale(1.5); opacity: 0.5; }
  50% { transform: translate(35px, 20px) scale(1); opacity: 0.2; }
  75% { transform: translate(-20px, 25px) scale(1.3); opacity: 0.4; }
}

/* Kształty geometryczne */
.kariera-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.kariera-shape.square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: karieraRotateSlow 20s linear infinite;
}

.kariera-shape.square-1 { top: 10%; right: 5%; }
.kariera-shape.square-2 { bottom: 15%; left: 2%; width: 120px; height: 120px; border-color: rgba(229, 42, 44, 0.1); animation: karieraRotateSlow 25s linear infinite reverse; }

.kariera-shape.circle {
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: karieraRotateSlow 30s linear infinite;
}

.kariera-shape.circle-1 { bottom: 5%; right: 10%; }
.kariera-shape.circle-2 { top: 20%; left: 15%; width: 100px; height: 100px; border-style: dotted; border-color: rgba(229, 42, 44, 0.15); }

.kariera-shape.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(229, 42, 44, 0.1);
  opacity: 0.3;
  transform: rotate(10deg);
  animation: karieraFloatTriangle 12s ease-in-out infinite;
}

.kariera-shape.triangle-1 { top: 15%; right: 20%; }
.kariera-shape.triangle-2 { bottom: 10%; left: 25%; transform: rotate(45deg); animation: karieraFloatTriangle 15s ease-in-out infinite reverse; }

@keyframes karieraRotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes karieraFloatTriangle {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}

/* Nagłówki sekcji */
.kariera-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e52a2c;
  margin-bottom: 10px;
  background: rgba(229, 42, 44, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
}

.kariera-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.kariera-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Karta formularza */
.kariera-form-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(229, 42, 44, 0.2), inset 0 0 30px rgba(229, 42, 44, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header i {
  font-size: 2.5rem;
  color: #e52a2c;
  margin-bottom: 10px;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Style formularza */
.kariera-form-card .form-group {
  margin-bottom: 20px;
}

.kariera-form-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.kariera-form-card .required {
  color: #e52a2c;
}

.kariera-form-card .form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.kariera-form-card .form-control:focus {
  outline: none;
  border-color: #e52a2c;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(229, 42, 44, 0.2);
}

.kariera-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.kariera-form-card textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.kariera-form-card input[type="file"] {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.kariera-form-card .form-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  display: block;
}

/* RODO checkboxes */
.rodo-checkboxes {
  margin-top: 20px;
  padding: 15px;
  background: rgba(229, 42, 44, 0.05);
  border-radius: 12px;
  border-left: 3px solid #e52a2c;
}

.form-check {
  margin-bottom: 12px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.5);
}

.form-check-input:checked {
  background-color: #e52a2c;
  border-color: #e52a2c;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  cursor: pointer;
}

.form-check-label a {
  color: #e52a2c;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* Przycisk submit */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e52a2c, #c41f1f);
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 42, 44, 0.5);
  background: linear-gradient(135deg, #c41f1f, #a01818);
}

/* Komunikaty */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.9rem;
}

.php-email-form .loading {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.php-email-form .error-message {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
  color: #ff6b6b;
}

.php-email-form .sent-message {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  color: #6fcf97;
}

/* Info box */
.kariera-info-box {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 20px;
  padding: 25px;
  margin-top: 30px;
}

.kariera-info-box i {
  font-size: 3rem;
  color: #e52a2c;
}

.kariera-info-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.kariera-info-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.kariera-info-box strong {
  color: #fff;
}

/* Responsywność */
@media (max-width: 991px) {
  .kariera-title {
    font-size: 1.8rem;
  }
  
  .kariera-form-card {
    padding: 30px;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .kariera-title {
    font-size: 1.5rem;
  }
  
  .kariera-description {
    font-size: 1rem;
  }
  
  .kariera-form-card {
    padding: 20px;
  }
  
  .kariera-info-box {
    text-align: center;
  }
  
  .kariera-info-box .col-md-4 {
    margin-bottom: 15px;
  }
  
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* COOKIES BANNER STYLES */
.cookie-consent-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #e52a2c;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-family: 'Poppins', 'Roboto', sans-serif;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

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

.cookie-container-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px;
}

.cookie-layout-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
}

.cookie-text-v2 {
    flex: 2;
    min-width: 260px;
}

.cookie-text-v2 p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.cookie-text-v2 a {
    color: #e52a2c;
    text-decoration: none;
    font-weight: 500;
}

.cookie-text-v2 a:hover {
    text-decoration: underline;
}

.cookie-buttons-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cookie-btn-v2 {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept-v2 {
    background: #e52a2c;
    color: white;
}

.cookie-btn-accept-v2:hover {
    background: #b81f21;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.cookie-btn-settings-v2 {
    background: transparent;
    border: 1px solid #e52a2c;
    color: #e52a2c;
}

.cookie-btn-settings-v2:hover {
    background: rgba(229, 42, 44, 0.1);
    transform: translateY(-2px);
}

.cookie-btn-decline-v2 {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
}

.cookie-btn-decline-v2:hover {
    border-color: #e52a2c;
    color: #e52a2c;
    transform: translateY(-2px);
}

/* MODAL USTAWIEŃ */
.cookie-modal-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', 'Roboto', sans-serif;
}

.cookie-modal-v2.show {
    display: flex;
}

.cookie-modal-content-v2 {
    background: #111;
    border: 1px solid rgba(229, 42, 44, 0.3);
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content-v2::-webkit-scrollbar {
    width: 6px;
}

.cookie-modal-content-v2::-webkit-scrollbar-track {
    background: #222;
    border-radius: 3px;
}

.cookie-modal-content-v2::-webkit-scrollbar-thumb {
    background: #e52a2c;
    border-radius: 3px;
}

.cookie-modal-header-v2 {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(229, 42, 44, 0.2);
}

.cookie-modal-header-v2 h3 {
    color: #e52a2c;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-modal-header-v2 p {
    color: #888;
    font-size: 0.8rem;
}

.cookie-option-v2 {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid rgba(229, 42, 44, 0.1);
    transition: all 0.2s ease;
}

.cookie-option-v2:hover {
    border-color: rgba(229, 42, 44, 0.3);
}

.cookie-option-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-option-info-v2 {
    flex: 1;
}

.cookie-option-info-v2 h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.cookie-option-info-v2 p {
    color: #888;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-option-required-v2 {
    color: #e52a2c;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(229, 42, 44, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* TOGGLE SWITCH */
.cookie-toggle-v2 {
    width: 48px;
    height: 26px;
    background: #333;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.cookie-toggle-v2.active {
    background: #e52a2c;
}

.cookie-toggle-v2.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle-slider-v2 {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.cookie-toggle-v2.active .cookie-toggle-slider-v2 {
    transform: translateX(22px);
}

.cookie-modal-footer-v2 {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-modal-btn-v2 {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.cookie-modal-btn-save-v2 {
    background: #e52a2c;
    color: white;
}

.cookie-modal-btn-save-v2:hover {
    background: #b81f21;
}

.cookie-modal-btn-close-v2 {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
}

.cookie-modal-btn-close-v2:hover {
    border-color: #e52a2c;
    color: #e52a2c;
}

@media (max-width: 768px) {
    .cookie-container-v2 {
        padding: 18px 20px;
    }
    .cookie-layout-v2 {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons-v2 {
        justify-content: center;
    }
    .cookie-modal-content-v2 {
        padding: 20px;
    }
    .cookie-option-row-v2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*--------------------------------------------------------------
# Pozostałe usługi - Strona w budowie (z prefiksem .pozostale-uslugi-)
--------------------------------------------------------------*/

.pozostale-uslugi-w-budowie {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Tło z liniami */
.pozostale-uslugi-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pozostale-uslugi-bg-lines span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  left: 0;
}

.pozostale-uslugi-bg-lines span:nth-child(1) { top: 10%; }
.pozostale-uslugi-bg-lines span:nth-child(2) { top: 25%; }
.pozostale-uslugi-bg-lines span:nth-child(3) { top: 40%; }
.pozostale-uslugi-bg-lines span:nth-child(4) { top: 55%; }
.pozostale-uslugi-bg-lines span:nth-child(5) { top: 70%; }
.pozostale-uslugi-bg-lines span:nth-child(6) { top: 85%; }

.pozostale-uslugi-bg-lines span.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  top: 0;
}

.pozostale-uslugi-bg-lines span.vertical:nth-child(7) { left: 10%; }
.pozostale-uslugi-bg-lines span.vertical:nth-child(8) { left: 30%; }
.pozostale-uslugi-bg-lines span.vertical:nth-child(9) { left: 50%; }
.pozostale-uslugi-bg-lines span.vertical:nth-child(10) { left: 70%; }
.pozostale-uslugi-bg-lines span.vertical:nth-child(11) { left: 90%; }

/* Sparkles */
.pozostale-uslugi-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.pozostale-uslugi-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: pozostaleUslugiSparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.pozostale-uslugi-sparkles .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.3) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.pozostale-uslugi-sparkles .sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(2) { top: 65%; left: 15%; animation-delay: 1.2s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(3) { top: 35%; left: 85%; animation-delay: 2.4s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(4) { top: 75%; left: 80%; animation-delay: 3.6s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(5) { top: 20%; left: 92%; animation-delay: 4.8s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(6) { top: 55%; left: 30%; animation-delay: 6s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(7) { top: 85%; left: 45%; animation-delay: 7.2s; }
.pozostale-uslugi-sparkles .sparkle:nth-child(8) { top: 25%; left: 65%; animation-delay: 8.4s; }

@keyframes pozostaleUslugiSparkleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(25px, -20px) scale(1.5); opacity: 0.5; }
  50% { transform: translate(35px, 20px) scale(1); opacity: 0.2; }
  75% { transform: translate(-20px, 25px) scale(1.3); opacity: 0.4; }
}

/* Kształty geometryczne */
.pozostale-uslugi-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.pozostale-uslugi-shape.square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: pozostaleUslugiRotateSlow 20s linear infinite;
}

.pozostale-uslugi-shape.square-1 { top: 10%; right: 5%; }
.pozostale-uslugi-shape.square-2 { bottom: 15%; left: 2%; width: 120px; height: 120px; border-color: rgba(229, 42, 44, 0.1); animation: pozostaleUslugiRotateSlow 25s linear infinite reverse; }

.pozostale-uslugi-shape.circle {
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: pozostaleUslugiRotateSlow 30s linear infinite;
}

.pozostale-uslugi-shape.circle-1 { bottom: 5%; right: 10%; }
.pozostale-uslugi-shape.circle-2 { top: 20%; left: 15%; width: 100px; height: 100px; border-style: dotted; border-color: rgba(229, 42, 44, 0.15); }

.pozostale-uslugi-shape.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(229, 42, 44, 0.1);
  opacity: 0.3;
  transform: rotate(10deg);
  animation: pozostaleUslugiFloatTriangle 12s ease-in-out infinite;
}

.pozostale-uslugi-shape.triangle-1 { top: 15%; right: 20%; }
.pozostale-uslugi-shape.triangle-2 { bottom: 10%; left: 25%; transform: rotate(45deg); animation: pozostaleUslugiFloatTriangle 15s ease-in-out infinite reverse; }

@keyframes pozostaleUslugiRotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pozostaleUslugiFloatTriangle {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-25px) rotate(15deg); }
}

/* Główna zawartość */
.pozostale-uslugi-icon-main {
  margin-bottom: 30px;
}

.pozostale-uslugi-icon-main i {
  font-size: 5rem;
  color: #e52a2c;
  animation: pozostaleUslugiPulse 2s ease-in-out infinite;
}

@keyframes pozostaleUslugiPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.pozostale-uslugi-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pozostale-uslugi-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Zakres usług */
.pozostale-uslugi-zakres {
  margin: 40px 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 30px;
}

.pozostale-uslugi-zakres h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

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

.zakres-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.zakres-item:hover {
  transform: translateY(-3px);
  background: rgba(229, 42, 44, 0.2);
  border: 1px solid rgba(229, 42, 44, 0.3);
}

.zakres-item i {
  font-size: 2rem;
  color: #e52a2c;
}

.zakres-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.pozostale-uslugi-status {
  margin: 30px 0;
}

.pozostale-uslugi-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 42, 44, 0.15);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  padding: 10px 25px;
  color: #fff;
  font-weight: 500;
}

.pozostale-uslugi-status .status-badge i {
  color: #e52a2c;
  font-size: 1.2rem;
}

.pozostale-uslugi-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pozostale-uslugi-buttons .btn-home,
.pozostale-uslugi-buttons .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pozostale-uslugi-buttons .btn-home {
  background: #e52a2c;
  color: #fff;
  border: 2px solid #e52a2c;
}

.pozostale-uslugi-buttons .btn-home:hover {
  background: transparent;
  color: #e52a2c;
  transform: translateY(-3px);
}

.pozostale-uslugi-buttons .btn-contact {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pozostale-uslugi-buttons .btn-contact:hover {
  border-color: #e52a2c;
  color: #e52a2c;
  transform: translateY(-3px);
}

.pozostale-uslugi-info {
  border-top: 1px solid rgba(229, 42, 44, 0.2);
  padding-top: 30px;
  margin-top: 30px;
}

.pozostale-uslugi-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.pozostale-uslugi-info a {
  color: #e52a2c;
  text-decoration: none;
  font-weight: 500;
}

.pozostale-uslugi-info a:hover {
  text-decoration: underline;
}

/* Responsywność */
@media (max-width: 768px) {
  .pozostale-uslugi-title {
    font-size: 2rem;
  }
  
  .pozostale-uslugi-description {
    font-size: 1rem;
  }
  
  .pozostale-uslugi-icon-main i {
    font-size: 4rem;
  }
  
  .pozostale-uslugi-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pozostale-uslugi-buttons .btn-home,
  .pozostale-uslugi-buttons .btn-contact {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .zakres-lista {
    grid-template-columns: 1fr;
  }
}