:root {
  --bg-dark: #0a0a0c;
  --card-bg: rgba(255, 255, 255, 0.05);
  --accent: #ff2d55;
  --accent-glow: #ff3b6a;
  --text-light: #f2f2f2;
  --text-muted: #b7b7b7;
  --radius: 1.2rem;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  scroll-behavior: smooth;
}

/* === HEADER === */
.header {
  padding: 6rem 2rem;
  background: radial-gradient(circle at 30% 20%, #170808 0%, #0a0a0c 80%);
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: center;
}
.header-text { text-align: left; }
.title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 5px rgba(255, 45, 85, 0.4);
  margin-bottom: 1.5rem;
}
.intro { color: var(--text-muted); max-width: 700px; margin-bottom: 2.5rem; }
.header-logo img { width: 100%; max-width: 320px; filter: drop-shadow(0 0 10px rgba(255, 45, 85, 0.15)); }

/* === BUTTON === */
.support-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: #fff;
  padding: 0.9rem 1.8rem; border-radius: 50px;
  font-weight: 600; letter-spacing: 0.3px; text-decoration: none;
  transition: all var(--transition); box-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}
.support-btn:hover { background: var(--accent-glow); box-shadow: 0 0 25px rgba(255, 45, 85, 0.5); transform: translateY(-3px); }

/* === STATYSTYKI === */
#stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 5rem auto 6rem; padding: 0 1.5rem; }
.stat-box { background: var(--card-bg); border: 1px solid rgba(255, 45, 85, 0.2); border-radius: var(--radius); padding: 2rem; text-align: center; transition: all var(--transition); }
.stat-box:hover { transform: translateY(-5px); box-shadow: 0 0 25px rgba(255, 45, 85, 0.15); }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: 0.4rem; }

/* === FAQ === */
#faq { max-width: 900px; margin: 0 auto 6rem; padding: 0 1.5rem; }
.faq-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 2rem; color: var(--accent); text-shadow: 0 0 10px rgba(255,45,85,0.1); }
.faq-container { background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,45,85,0.05)); border: 1px solid rgba(255,45,85,0.15); border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 20px rgba(255,45,85,0.1); transition: all var(--transition); }
.faq-item { border-bottom: 1px solid rgba(255,45,85,0.12); transition: background var(--transition); }
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: rgba(255,45,85,0.03); }
.faq-question { width: 100%; padding: 1.3rem 1.8rem; background: transparent; color: var(--text-light); font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: color var(--transition); }
.faq-question:hover { color: var(--accent); }
.faq-item.active .faq-answer { max-height: 600px; opacity: 1; padding: 1rem 1.8rem 1.5rem; background: rgba(255,45,85,0.03); }
.faq-item.active .faq-question .material-icons { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; color: var(--text-muted); transition: all 0.5s ease; }
.faq-answer ul { list-style: none; padding-left: 0; }
.faq-answer li { margin: 0.3rem 0; }

/* === TikTok === */
#tiktok { background: linear-gradient(180deg, rgba(20,20,20,1) 0%, rgba(30,10,10,1) 100%); padding: 5rem 2rem; display: flex; justify-content: center; align-items: center; }
.tiktok-content { max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.tiktok-text h2 { font-size: 2.2rem; color: var(--accent); margin-bottom: 1rem; text-shadow: 0 0 10px rgba(255, 45, 85, 0.2); }
.tiktok-text .intro { font-size: 1.1rem; line-height: 1.7; color: var(--text-light); margin-bottom: 2rem; }
.tiktok-text .intro span { color: var(--accent); font-weight: 600; }
.tiktok-highlights { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.highlight { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,45,85,0.15); border-radius: var(--radius); text-align: center; padding: 1.2rem 0.8rem; box-shadow: 0 0 10px rgba(255,45,85,0.05); transition: all var(--transition); }
.highlight:hover { transform: translateY(-3px); box-shadow: 0 0 20px rgba(255,45,85,0.15); }
.highlight .material-icons { font-size: 2rem; color: var(--accent); margin-bottom: 0.3rem; }
.highlight div { color: var(--text-light); font-size: 0.95rem; }
.tiktok-text .desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }
.tiktok-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: #fff; padding: 0.9rem 1.6rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; transition: all var(--transition); box-shadow: 0 0 15px rgba(255,45,85,0.2); }
.tiktok-btn:hover { background: #ff2a55; transform: translateY(-2px); box-shadow: 0 0 25px rgba(255,45,85,0.3); }
.tiktok-btn .material-icons { font-size: 1.6rem; }
.video-mockup { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 0 40px rgba(255,45,85,0.15); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,45,85,0.15); display: flex; justify-content: center; align-items: center; padding: 1rem; animation: float 4s ease-in-out infinite; }
.video-mockup img { width: 100%; border-radius: 1rem; opacity: 0.9; transition: opacity var(--transition); }
.video-mockup img:hover { opacity: 1; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* === Zarząd === */
#zarzad { background: linear-gradient(180deg, #0a0a0c 0%, #1a0a0a 100%); padding: 5rem 2rem; color: var(--text-light); }
.zarzad-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.zarzad-container h2 { font-size: 2.2rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; text-shadow: 0 0 10px rgba(255,45,85,0.2); }
.zarzad-intro { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 3rem; }
.zarzad-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.zarzad-card { display: block; background: var(--card-bg); border: 1px solid rgba(255,45,85,0.15); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); text-decoration: none; color: inherit; box-shadow: 0 0 15px rgba(255,45,85,0.05); }
.zarzad-card:hover { transform: translateY(-5px); box-shadow: 0 0 25px rgba(255,45,85,0.15); border-color: var(--accent); }
.zarzad-card img { width: 100%; display: block; object-fit: cover; height: 250px; }
.zarzad-info { padding: 1rem; }
.zarzad-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--accent); margin-bottom: 0.3rem; }
.zarzad-info p { font-size: 0.95rem; color: var(--text-muted); }

/* === FOOTER === */
.footer { text-align: center; padding: 2rem 1rem; color: var(--text-muted); font-size: 0.9rem; }

/* === RESPONSYWNE === */
@media (max-width: 800px) {
  .header-content { grid-template-columns: 1fr; text-align: center; }
  .tiktok-content { grid-template-columns: 1fr; text-align: center; }
  .tiktok-highlights { justify-content: center; flex-wrap: wrap; }
}
/* Animacja przy scrollowaniu */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a0a0c;
  padding: 0.8rem 1rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255,45,85,0.2);
}

.nav-toggle {
  display: none; /* ukryj hamburger na desktopie */
}


/* kontener */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(-90px); /* przesunięcie tylko desktop */
}

/* Logo */
.nav-logo img {
  height: 115px;
  display: block;
}

/* Menu linków */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.nav-item .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.nav-item .nav-link:hover {
  color: #ff2a55;
}

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

  /* navbar pozostaje taki sam — zawsze fixed */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a0a0c;
    padding: 0.8rem 1rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255,45,85,0.2);
  }

  .nav-container {
    justify-content: space-between;
    transform: none; /* bez przesunięcia na mobile */
  }

  /* przesunięcie logo i hamburgera */
  .nav-logo {
	display: block;
    margin-left: -140px; /* logo trochę w lewo */
  }

  .nav-toggle {
    display: block;
    margin-right: -150px; /* burger trochę w prawo */
  }

  .nav-menu {
    position: fixed;
    top: 115px; /* poniżej paska */
    left: -35px;
    width: 100%;
    background: #0a0a0c;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
  }

  .nav-menu.active {
    max-height: 60vh; /* rozwinięcie */
  }

  .nav-item {
    padding: 1rem 0;
    text-align: center;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}

/* desktopowa wysokość navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px; /* STAŁA wysokość */
  background: #0a0a0c;
  padding: 0; /* usuń zmienne paddingi */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255,45,85,0.2);
}

/* Margines, by treść nie chowała się pod navbar */
body {
  padding-top: 130px;
}
/* === SEKCJA: DLACZEGO WARTO === */
#dlaczego-warto {
  background: linear-gradient(180deg, #0b0b0d 0%, #141217 100%);
  padding: 100px 40px;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

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

#dlaczego-warto h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff204e;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 45, 85, 0.3);
}

.warto-intro {
  font-size: 1.2rem;
  color: #cfcfcf;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID — 3 kolumny na komputerze, 2 na tabletach, 1 na telefonie */
.warto-grid {
  display: grid;
  column-gap: 100px; /* większy poziomy odstęp między kartami */
  row-gap: 40px;    /* pionowy odstęp między kartami */
  justify-items: center;
  align-items: stretch;
  margin-bottom: 80px;
}

.warto-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 32, 78, 0.1);
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 32, 78, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 240px; /* ciut mniejsze karty */
}

.warto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 32, 78, 0.35);
  border-color: rgba(255, 32, 78, 0.3);
}

/* Ikony */
.warto-item .material-icons {
  font-size: 45px;
  color: #ff204e;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 32, 78, 0.4);
}

.warto-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.warto-item p {
  color: #bdbdbd;
  line-height: 1.6;
  font-size: 1rem;
}

/* Przycisk pod kartami */
.warto-btn {
  display: inline-block;
  background: #ff204e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 32, 78, 0.3);
  margin-top: 10px;
  width: auto;
}

.warto-btn:hover {
  background: #ff335d;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 32, 78, 0.5);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  .warto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .warto-grid {
    grid-template-columns: 1fr;
  }
  .warto-item {
    width: 80%; /* karta mniejsza na telefonie */
  }
  .warto-btn {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}

/* Responsywność */
@media (max-width: 1024px) {
  .warto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #dlaczego-warto {
    padding: 80px 20px;
  }

  #dlaczego-warto h2 {
    font-size: 2rem;
  }

  .warto-intro {
    font-size: 1.05rem;
  }

  .warto-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .warto-btn {
    width: 90%;
    font-size: 1rem;
  }
}

/* === SEKCJA DOŁĄCZ === */
.dolacz-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px 18px;
  text-align: center;
  width: 100%;
  max-width: 330px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 32, 78, 0.08);
  transition: all 0.3s ease;
}

.dolacz-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 32, 78, 0.3);
}

.dolacz-item .material-icons {
  font-size: 38px;
  color: #ff204e;
  margin-bottom: 10px;
}

.procedura-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
}

/* KROKI */
.procedura-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #ff2a55;
  border-radius: 12px;
  padding: 25px 30px;
  width: 100%;
  max-width: 600px;
  text-align: left;
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.25);
}

.step-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff2a55;
  min-width: 35px;
  text-align: center;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: #bbb;
  line-height: 1.5;
}

/* Przycisk */
.procedura-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  background: #ff204e;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 32, 78, 0.3);
}

.procedura-btn:hover {
  background: #ff3a64;
  box-shadow: 0 0 25px rgba(255, 45, 85, 0.5);
  transform: translateY(-3px);
}

/* === SEKCJA: DLACZEGO WARTO === */
#dlaczego-warto {
  background: linear-gradient(180deg, #0b0b0d 0%, #141217 100%);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.warto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

#dlaczego-warto h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ff204e;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 45, 85, 0.3);
  line-height: 1.3;
  word-break: break-word;
}

.warto-intro {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* GRID */
.warto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-bottom: 60px;
}

.warto-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 32, 78, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 370px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 32, 78, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.warto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 32, 78, 0.35);
  border-color: rgba(255, 32, 78, 0.3);
}

.warto-item .material-icons {
  font-size: 42px;
  color: #ff204e;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 32, 78, 0.4);
}

.warto-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.warto-item p {
  color: #bdbdbd;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Przycisk */
.warto-btn {
  display: inline-block;
  background: #ff204e;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 32, 78, 0.4);
  margin-top: 10px;
}

.warto-btn:hover {
  background: #ff335d;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 32, 78, 0.6);
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 900px) {
  #dlaczego-warto {
    padding: 70px 15px;
  }

  #dlaczego-warto h2 {
    font-size: 1.9rem;
  }

  .warto-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .warto-grid {
    gap: 20px;
  }

  .warto-item {
    padding: 25px 15px;
  }
}

@media (max-width: 600px) {
  #dlaczego-warto {
    padding: 60px 10px;
  }

  .warto-item {
    max-width: 100%;
    width: 100%;
  }

  .warto-item p {
    font-size: 0.9rem;
  }

  .warto-btn {
    width: 90%;
    font-size: 1rem;
  }
}


/* 🔧 Przesunięcie logo lekko w lewo na telefonach */
@media (max-width: 768px) {
  .nav-logo img {
    position: relative;
    left: -40px/* możesz zmienić np. na -15px lub -20px */
  }
}