			:root {
			  --navy: #001841;
			  --white: #fff;
			  --gray-light: #f0f0f0;
			  --green: #a6ff00;
			  --pink: #ff00a8;
			  --blue: #00c2ff;
			  --whitesmoke: #f8f8f8;
			}
			* {
			  box-sizing: border-box;
			  margin: 0;
			  padding: 0;
			}
			body {
			  font-family: "Lato", sans-serif;
			  color: #222;
			  line-height: 1.5;
			  overflow-x: hidden;
			}
			a {
			  color: inherit;
			  text-decoration: none;
			}

			/* FULLSCREEN LOGO */
			.fullscreen-logo {
			  position: fixed;
			  top: 0;
			  left: 0;
			  width: 100vw;
			  height: 100vh;
			  background: var(--navy);
			  display: flex;
			  align-items: center;
			  justify-content: center;
			  flex-direction: column;
			  z-index: 1000;
			  transition: all 0.5s ease;
			}

			.fullscreen-logo img {
			  max-width: 50%;
			  transition: all 0.5s ease;
			}

			.fullscreen-logo .tagline {
			  color: #fff;
			  margin-top: 1rem;
			  opacity: 0.9;
			  transition: all 0.5s ease;
			}

			/* STAN PO SCROLLOWANIU - HEADER */
			.fullscreen-logo.scrolled {
			  height: 80px;
			  flex-direction: row;
			  justify-content: space-between;
			  align-items: center;
			  padding: 0 2rem;
			}

			.fullscreen-logo.scrolled img {
			  max-width: 140px;
			  max-height: 60px;
			}

			.fullscreen-logo.scrolled .tagline {
			  display: none;
			}

			/* NAWIGACJA */
			.fullscreen-logo nav {
			  opacity: 0;
			  visibility: hidden;
			  transition: all 0.5s ease;
			}

			.fullscreen-logo.scrolled nav {
			  opacity: 1;
			  visibility: visible;
			}

			nav ul {
			  display: flex;
			  gap: 1.5rem;
			  list-style: none;
			}

			nav a {
			  color: #fff;
			  font-weight: 700;
			  font-size: 0.9rem;
			  transition: 0.3s;
			}

			nav a:hover {
			  color: var(--green);
			}

			/* CTA BUTTON */
			.cta-btn {
			  background: var(--green);
			  color: var(--navy);
			  padding: 0.6rem 1.2rem;
			  border-radius: 30px;
			  font-weight: 700;
			  transition: 0.3s;
			  opacity: 0;
			  visibility: hidden;
			}

			.fullscreen-logo.scrolled .cta-btn {
			  opacity: 1;
			  visibility: visible;
			}

			.cta-btn:hover {
    transform: scale(1.1);
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 0, 168, 0.3);
}


			.main-content {
    padding-top: 50vh;
				position: relative; 
    z-index: 10; 
    background var(--white); 
}

			section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

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

			/* FEATURES SECTION */
			.features {
			  display: grid;
			  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
			  gap: 2rem;
			  margin-top: 2rem;
			}

			.feature {
			  background: #fff;
			  padding: 1.5rem;
			  border-radius: 8px;
			  text-align: center;
			  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			}

			.feature-icon {
			  font-size: 2rem;
			  color: var(--green);
			  margin-bottom: 0.8rem;
			}

			.feature h4 {
			  margin-bottom: 0.5rem;
			  font-weight: 700;
			}

			/* PORTFOLIO SECTION */
.portfolio {
  text-align: center;
  color: #fff;
  background: var(--navy);
  padding: 4rem 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.portfolio-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .label {
  transform: translateY(0);
}

/* PORTFOLIO VIDEO PLACEHOLDERS */
.portfolio-item .video-placeholder {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
}

.portfolio-item .video-placeholder .play-button {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(166, 255, 0, 0.3);
}

.portfolio-item .video-placeholder .play-button:hover {
    transform: scale(1.1);
}

.portfolio-item .video-placeholder .play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid var(--navy);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.portfolio-item iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 6px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}


			/* WORKFLOW SECTION */
			.workflow {
			  margin-top: 2rem;
			}

			.workflow .step {
			  display: flex;
			  align-items: flex-start;
			  gap: 1rem;
			  margin-bottom: 2rem;
			}

			.workflow .num {
			  font-size: 2rem;
			  font-weight: 700;
			  color: var(--green);
			}

			.workflow .desc h4 {
			  margin-bottom: 0.5rem;
			  font-weight: 700;
			}

			/* SERVICES SECTION */
			.services {
			  display: grid;
			  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			  gap: 1.5rem;
			  margin-top: 2rem;
			}

			.card {
			  padding: 1.5rem;
			  border-radius: 8px;
			  color: #222;
			  display: flex;
			  flex-direction: column;
			  justify-content: space-between;
			}

			.card.green {
			  background: var(--green);
			  color: var(--navy);
			}

			.card.dark {
			  background: #222;
			  color: #fff;
			}

			.card.light {
			  background: #fff;
			  border: 1px solid var(--gray-light);
			}

			.card h4 {
			  margin-bottom: 0.6rem;
			  font-weight: 700;
			}

			.card p {
			  flex: 1;
			  margin-bottom: 1rem;
			  font-size: 0.9rem;
			}

			.card a {
			  align-self: start;
			  padding: 0.5rem 1rem;
			  border-radius: 20px;
			  border: 2px solid currentColor;
			  font-weight: 700;
			  font-size: 0.85rem;
			  transition: 0.3s;
			}

			.card a:hover {
			  background: var(--white);
			  color: var(--navy);
			}

			/* HISTORY SECTION */
			.history {
			  display: flex;
			  gap: 2rem;
			  align-items: center;
			}

			.history img {
			  flex: 1;
			  border-radius: 6px;
			  max-width: 100%;
			}

			.history .txt {
			  flex: 1;
			}

			.history .txt h3 {
			  font-size: 1.5rem;
			  margin-bottom: 0.8rem;
			  color: var(--navy);
			}

			.history .txt p {
			  margin-bottom: 1rem;
			}

			.socials {
			  display: flex;
			  gap: 1rem;
			}

			.socials a {
			  font-size: 1.2rem;
			  color: var(--navy);
			}

			/* STATISTICS */
			.stats {
			  display: flex;
			  gap: 1rem;
			  text-align: center;
			  padding: 4rem 2rem;
			}

			.stat {
			  flex: 1;
			  padding: 2rem;
			  background: var(--green);
			  border-radius: 6px;
			  color: var(--navy);
			}

			.stat h4 {
			  font-size: 2rem;
			  margin-bottom: 0.5rem;
			  font-weight: 700;
			}

			/* STATS SECTION ENHANCEMENTS */
.stats-section {
    padding: 4rem 2rem;
    background: var(--whitesmoke);
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat {
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.stat.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Efekt hover dla całej karty */
.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(166, 255, 0, 0.2);
}

.stat:hover .stat-number {
    color: var(--green) !important;
    transform: scale(1.1);
}


			/* TESTIMONIALS */
			.testimonials {
			  display: grid;
			  grid-template-columns: 1fr 1fr;
			  gap: 2rem;
			  margin-top: 2rem;
			}

			.testimonial {
			  padding: 1.5rem;
			  background: var(--navy);
			  color: #fff;
			  border-radius: 8px;
			  position: relative;
			}

			.testimonial::before {
			  content: """;
			  font-size: 3rem;
			  position: absolute;
			  top: 10px;
			  left: 10px;
			  color: var(--green);
			}

			.testimonial p {
			  margin: 1.5rem 0;
			  font-size: 0.9rem;
			}

			.testimonial .author {
			  text-align: right;
			  font-weight: 700;
			  font-size: 0.9rem;
			}

			/* FINAL CTA */
			.final-cta {
			  background: var(--navy);
			  color: #fff;
			  padding: 3rem 2rem;
			  text-align: center;
			}

			.final-cta h2 {
			  margin-bottom: 1rem;
			  font-size: 1.5rem;
			}

			.final-cta a {
			margin: 10px;  
			color: var(--green);
			  font-weight: 700;
			}

			/* FOOTER */
			footer {
			  background: var(--navy);
			  color: #bbb;
			  padding: 2rem;
			  text-align: center;
			  font-size: 0.85rem;
			}

			/* RESPONSIVE */
			@media (max-width: 768px) {
			  .portfolio-grid {
			    grid-template-columns: 1fr;
			  }
			  .testimonials {
			    grid-template-columns: 1fr;
			  }
			  .history {
			    flex-direction: column;
			  }
			  .fullscreen-logo.scrolled nav {
			    display: none;
			  }
			  .fullscreen-logo.scrolled {
			    justify-content: center;
			  }
			  .stats {
			    flex-direction: column;
			  }
			}
		
			/* RESPONSYWNY YOUTUBE EMBED */
    .video-hero {
      background: var(--whitesmoke);
      padding: 2rem 0;
	  position: relative; /* Dodane */
    z-index: 1;
    }
    
    .video-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
	  z-index: 2;
    }
    
    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	  z-index: 3;
    }
    
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
	  z-index: 4;
    }
    
    /* LAZY LOADING PLACEHOLDER */
    .video-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: opacity 0.3s ease;
      border-radius: 12px;
	  z-index: 5;
    }
    
    .video-placeholder.loaded {
      opacity: 0;
      pointer-events: none;
	  z-index: 1;
    }
    
    .play-button {
      width: 80px;
      height: 80px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }
    
    .play-button:hover {
      transform: scale(1.1);
    }
    
    .play-button::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 20px solid var(--navy);
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      margin-left: 4px;
    }
    
    .video-title {
      color: #fff;
      text-align: center;
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      font-weight: 700;
    }
    
    /* RESPONSIVE */
    @media (max-width: 768px) {
      .video-container {
        padding: 0 1rem;
      }
      
      .video-title {
        font-size: 1rem;
      }
      
      .play-button {
        width: 60px;
        height: 60px;
      }
      
      .play-button::after {
        border-left: 15px solid var(--navy);
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
      }
    }

	/* SECTION TAGLINES */
.section-tagline {
    display: inline-block;
    background: var(--green);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(166, 255, 0, 0.2);
}

.tagline-title {
	margin-bottom: 10px;
	padding-bottom: 10px;
}


/* Wariant dla ciemnych sekcji */
.portfolio .section-tagline {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

/* Animacja hover */
.section-tagline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 255, 0, 0.3);
    transition: all 0.3s ease;
}

/* Responsywność */
@media (max-width: 768px) {
    .section-tagline {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* WORKFLOW SECTION */
.workflow-section {
    padding: 4rem 2rem;
    background: var(--whitesmoke);
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

/* LEWA KOLUMNA Z GRAFIKĄ */
.workflow-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workflow-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.workflow-image:hover {
    transform: translateY(-5px);
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--navy);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(166, 255, 0, 0.3);
}

.schedule-btn::before {
    content: "📅";
    margin-right: 0.5rem;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 194, 255, 0.4);
}

/* PRAWA KOLUMNA Z KROKAMI */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.workflow-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workflow-left {
        order: 2;
    }
    
    .workflow-right {
        order: 1;
    }
    
    .step-number {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .schedule-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .workflow-step {
        gap: 1rem;
    }
    
    .step-number {
        font-size: 1.8rem;
        min-width: 40px;
    }
}

/* SOCIAL MEDIA ICONS */
.social-media-section {
    margin-top: 3rem;
    text-align: left;
}

.social-media-section h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* LINKEDIN */
.social-icon.linkedin {
    background: linear-gradient(135deg, var(--blue), #0077b5);
    color: var(--white);
}

.social-icon.linkedin::before {
    background: var(--navy);
}

.social-icon.linkedin:hover {
    color: var(--blue);
}

/* INSTAGRAM */
.social-icon.instagram {
    background: linear-gradient(135deg, var(--pink), #e4405f, #fd5949, #fccc63);
    color: var(--white);
}

.social-icon.instagram::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.instagram:hover {
    color: var(--white);
}

/* YOUTUBE */
.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--white);
}

.social-icon.youtube::before {
    background: var(--navy);
}

.social-icon.youtube:hover {
    color: #ff6b6b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-media-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}