/* ================================
   DARK MODE – Styl główny strony
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
  background: #000000ff;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

/* ================================
   NAGŁÓWEK
================================ */
.site-header {
  background: linear-gradient(135deg, #1a1a1ab3, #a5a5a5ff);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 4px 15px #000000ff;
  position: sticky;
  top: 20px;
  margin: 10px auto;
  max-width: 1200px;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between; /* logo po lewej, menu po prawej */
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  box-sizing: border-box;
}

.site-header .logo h1 {
  font-size: 1.8rem;
  color: #fff;
}

.site-header .main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center; /* wyśrodkowanie linków w pionie */
}

.site-header .main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

.site-header .main-nav ul li a:hover {
  background-color: #6c5ce725;
}

/* styl przycisku w menu */
.site-header .main-nav ul li a.btn {
  border: 2px solid #919191;
  color: #ffffffff;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  background: transparent;
}

.site-header .main-nav ul li a.btn:hover {
  background-color: #6c5ce746;
  color: #ffffffff;

}

btn btn-gold1 {
    border: 2px solid #919191;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;

}

.btn-container {
    display: flex;       /* układa przyciski w poziomie */
    gap: 12px;           /* odstęp między przyciskami */
    flex-wrap: wrap;     /* zawija przyciski przy małych ekranach */
    justify-content: center; /* opcjonalnie: wyśrodkowanie przycisków */
}



/* ================================
   SEKCJE OGÓLNE
================================ */
section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 80px auto;
  background: #1a1a1ab3;
  backdrop-filter: blur(12px);
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1a1ab3, #a5a5a5ff);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    box-shadow: 0 4px 15px  #919191;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

section.hide-up {
  opacity: 0;
  transform: translateY(-40px);
}

section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

section p,
section li {
  font-size: 1.1rem;
  color: #e9e9e9ff;
}

section ul {
  margin-top: 15px;
  list-style: disc inside;
}

section p {
  margin-bottom: 1.2em;
  line-height: 1.8;
}

section h4 {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 15px;
  text-align: center;
}


/* ================================
   SEKCJA O E-BOOKU
   ================================ */
#about {
  max-width: 1100px;
  margin: 80px auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #747474ff, #0c0c0cb3);
  backdrop-filter: blur(12px);
  border-radius: 16px;
    box-shadow: 0 4px 15px  #919191;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

.about-text p {
 color: #e6e6e6;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: disc inside;
  color: #ddd;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 350px;
  max-width: 300%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* ✅ Responsywność — na telefonach tekst nad obrazkiem */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-top: 25px;
  }
}

/* ================================
   KORZYŚCI
================================ */
.benefit {
  margin-bottom: 25px;
  background: linear-gradient(135deg, #0c0c0cb3, #747474ff);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px  #919191;
  transition: transform 0.2s ease;
}

.benefit:hover {
  transform: translateY(-4px);
}

/* ================================
   OPINIE
================================ */
.review {
  background: linear-gradient(135deg, #0c0c0cb3, #747474ff);
  backdrop-filter: blur(8px);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px  #919191;
}

.review p {
  font-style: italic;
  margin-bottom: 10px;
}

.review span {
  font-size: 0.9rem;
  color: #aaa;
}

/* Formularz opinii */
.review-form {
  background-color: linear-gradient(135deg, #0c0c0cb3, #747474ff);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px linear-gradient(135deg, #0c0c0cb3, #747474ff);
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: #ffffff;
  font-size: 1rem;
}

.review-form textarea {
  resize: vertical;
  min-height: 100px;
}

.review-form button {
    border: 2px solid #919191;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;

}

.review-form button:hover {
  background-color: #9292927c;
  transform: translateY(-2px);


}
.opinie-section p {
  text-align: center;
}


.opinie {
  background: ;
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px; /* odstęp od sekcji */
  text-align: center;
}

/* ================================
   CTA
================================ */
#cta {
  text-align: center;
  background: linear-gradient(135deg, #747474ff, #0c0c0cb3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px  #919191;
}

.podium-item.bestseller.wersja1 a.btn.btn-gold1 {
    display: inline-block;    /* blok do centrowania z text-align/flex */
    width: max-content;       /* dopasowuje szerokość do tekstu */
    margin: 0 auto;           /* centruje przycisk poziomo */
  padding: 8px 16px;
    border: 2px solid #919191;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
background-color: transparent;
  font-weight: 600;
    text-align: center;
}

.btn:hover {
  background-color: #6c5ce746;
  color: #ffffffff;

}

/* ================================
   PODIUM – z eleganckim licznikiem na środku
================================ */
#podium {
  display: flex;               /* kontener flex – licznik + karty */
  flex-direction: column;      /* licznik nad kartami */
  align-items: center;         /* wyśrodkowanie */
  gap: 40px;                   /* odstęp między licznikiem a kartami */
  margin: 40px auto 60px;
  text-align: center;
}

/* 🔥 LICZNIK PROMOCJI */
#promo-timer {
  display: flex;
  flex-direction: column;      /* napis nad cyframi */
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1ab3, #a5a5a5ff);
  padding: 30px 20px; /* wpływa na finalną szerokość */
  border-radius: 18px;
  color: #ffffffff;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid #919191;
}

#promo-timer:hover {
  transform: scale(1.03);
    background: linear-gradient(135deg, #1a1a1ab3, #a5a5a5ff);
  background: #3b3b3b5d;
}

/* 🕒 Napis "Promocja kończy się" */
#promo-timer #slowo {
  font-size: 1.9rem;
  color: #ffffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

/* 🔢 Właściwy licznik – poziomy układ */
#promo-timer .time-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* odstęp między sekcjami */
  font-family: "Courier New", monospace;
  font-size: 1.8rem;
  color: #ffffffff;
  font-weight: bold;
  line-height: 1;
}

/* 🧱 Ramki z cyframi */
#promo-timer .time-row span {
  font-size: 3rem;             /* duże cyfry */
  line-height: 1;
  background: #919191;
  border-radius: 16px;
  padding: 18px 25px;          /* powiększone pole wokół cyfr */
  min-width: 80px;             /* szersze prostokąty */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.7);
  transition: transform 0.3s ease, background 0.3s ease;
}

#promo-timer .time-row span:hover {
  background: rgba(255, 255, 255, 0);
  transform: scale(1.08);
}

/* Migające dwukropki */
#promo-timer .separator {
  animation: blink 1s infinite;
}

#promo-timer {
  width: 900px;
  margin: 0 auto;

}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

/* 📱 RESPONSYWNOŚĆ – TELEFONY */
@media (max-width: 700px) {

  #promo-timer {
    width: 100%;
    padding: 20px 15px;
    border-radius: 14px;
  }

  #promo-timer #slowo {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  #promo-timer .time-row {
    gap: 8px;
    font-size: 1.4rem;
  }

  #promo-timer .time-row span {
    font-size: 2rem;
    padding: 12px 15px;
    min-width: 55px;
    border-radius: 12px;
  }
}

/* 📱 Bardzo małe ekrany (np. stare iPhone SE) */
@media (max-width: 400px) {

  #promo-timer #slowo {
    font-size: 1.2rem;
  }

  #promo-timer .time-row {
    gap: 6px;
  }

  #promo-timer .time-row span {
    font-size: 1.6rem;
    padding: 10px 12px;
    min-width: 45px;
  }
}

/* 📱 TELEFONY: układ pionowy */
@media (max-width: 600px) {

  #promo-timer .time-row {
    flex-direction: column;
    gap: 12px;
  }

  #promo-timer .time-row span {
    width: 100%;
    min-width: 0;
  }

  #promo-timer .separator {
    display: none; /* dwukropki są zbędne w układzie pionowym */
  }
}




/* ================================
   KONTENER KART PRODUKTÓW
================================ */
.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 35px;
  margin-top: 50px;
}

/* ================================
   KARTY PRODUKTÓW
================================ */
.podium-item {
 background: linear-gradient(135deg, #1a1a1ab3, #a5a5a5ff);
  backdrop-filter: blur(12px);
  border: 2px solid linear-gradient(135deg, #1a1a1ab3, #a5a5a5ff);;
  border-radius: 20px;
  padding: 45px;
  width: 400px;
  color: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.podium-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Środkowa karta (bestseller) */
.podium-item.bestseller {
  transform: translateY(-px);
  border: 2px solid #6C5CE7;
}

/* Dwie boczne – lekko niżej */
.podium-item.second {
  transform: translateY(20px);
}

.podium-item.bestseller.wersja1 {
   max-width: auto;
   width: 100%;
    border: 2px solid #545454;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;   /* układ pionowy: nagłówek, tekst, przycisk */
    align-items: center;      /* wyśrodkowanie poziome */
    gap: 15px;              /* odstęp między elementami */
   
}

.podium-item.bestseller.wersja1 a.btn.btn-gold1 {
    display: inline-block;    /* blok do centrowania z text-align/flex */
    width: max-content;       /* dopasowuje szerokość do tekstu */
    margin: 0 auto;           /* centruje przycisk poziomo */
  padding: 8px 16px;
    border: 2px solid #919191;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
background-color: transparent;
  font-weight: 600;
    text-align: center;
}

/* ================================
   CENY
================================ */
.old-price {
  text-decoration: line-through;
  color: #a8a8a8ff;
  font-size: 14px;
}

.new-price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-top: 5px;
  margin-bottom: 15px;
}

/* ================================
   PRZYCISK "KUP TERAZ"
================================ */
.btn:hover {
  background-color: #6c5ce746;
  color: #ffffffff;

}

.btn {
  border: 2px solid #6C5CE7;
  color: #ffffffff;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  background: transparent;
}
/* ================================about-image
   STOPKA
================================ */
footer {
 background: #1a1a1ab3;
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

footer nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

footer nav a {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

footer nav a:hover {
  color: #fff;
}

footer hr {
  width: 80%;
  border: 0;
  border-top: 1px solid #222;
  margin: 15px 0;
}

footer p.copy {
  font-size: 0.9rem;
  color: #bbbbbbff;
}
 /*===============================
   //RESPONSYWNOŚĆ
=============================== */
@media (max-width: 700px) {
  #about {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image {
    margin-top: 20px;
  }

  .ebook-image {
    width: 280px;
  }

  header h1 {
    font-size: 2rem;
  }

  #podium {
    flex-direction: column;
    align-items: center;
  }

  .podium-item {
    width: 80%;
    margin-bottom: 20px;
  }
  
  section h2 {
    font-size: 1.6rem;
  }

  section p,
  section li {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }
  @media (max-width: 700px) {
  #promo-timer {
    padding: 20px 30px;
    border-radius: 14px;
  }

  #promo-timer #slowo {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  #promo-timer .time-row {
    gap: 8px;
    font-size: 1.3rem;
  }

  #promo-timer .time-row span {
    font-size: 2rem;
    padding: 12px 18px;
    min-width: 60px;
  }
  /* ================================
   📱 RESPONSYWNOŚĆ LICZNIKA
   ================================ */

/* 🔹 700px — mniejsze tablety i duże telefony */
@media (max-width: 700px) {

  #promo-timer {
    width: 100%;
    padding: 20px 15px;
    border-radius: 14px;
  }

  #promo-timer #slowo {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  #promo-timer .time-row {
    gap: 8px;
    font-size: 1.4rem;
  }

  #promo-timer .time-row span {
    font-size: 2rem;
    padding: 12px 15px;
    min-width: 55px;
    border-radius: 12px;
  }
}

/* 🔹 600px — telefony: układ pionowy */
@media (max-width: 600px) {

  /* przejście w kolumnę */
  #promo-timer .time-row {
    flex-direction: column;
    gap: 12px;
  }

  #promo-timer .time-row span {
    width: 100%;
    min-width: 0;
  }

  #promo-timer .separator {
    display: none;
  }
}

/* 🔹 400px — bardzo małe telefony */
@media (max-width: 400px) {

  #promo-timer #slowo {
    font-size: 1.2rem;
  }

  #promo-timer .time-row {
    gap: 6px;
  }

  #promo-timer .time-row span {
    font-size: 1.6rem;
    padding: 10px 12px;
    border-radius: 10px;
  }
}
@media (max-width: 700px) {
  #promo-timer {
    max-width: 90%;
    margin: 0 auto;
  }
}


}


  /* ================================
     UKRYWANIE MENU I PRZYCISKÓW NAGŁÓWKA NA TELEFONIE
  ================================= */
  .site-header .main-nav,
  .site-header .header-buttons,
  .site-header .signup {
    display: none;
  }

  .site-header {
    justify-content: center; /* wyśrodkowanie samego logo */
  }
}


/* ================================
   UKŁAD DWUKOLUMNOWY DLA OPINII
   ================================ */
#opinie-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

#opinie-list .review {
  background: rgba(30, 30, 30, 0.8);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#opinie-list .review:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.05);
}


#form-status {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#form-status:empty {
  opacity: 0;
}

#form-status:not(:empty) {
  opacity: 1;
}

#faq-accordion-widget {
        max-width: 600px;
        width: 100%;
        margin: 20px auto;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        border-top: 1px solid #919191;
    }
    .faq-item {
        border-bottom: 1px solid #919191;
    }
    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 15px 0;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: #e9e9e9ff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .faq-question:hover {
        color: #a29fd3ff; /* Kolor akcentu przy najechaniu */
    }
    .faq-icon {
        font-size: 20px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        color: #4b5563;
        font-size: 15px;
        line-height: 1.5;
    }
    .faq-answer p {
        margin: 0 0 15px 0;
    }
    /* Klasa aktywna */
    .faq-item.active .faq-icon {
        transform: rotate(45deg); /* Obraca plus w krzyżyk */
    }
    .faq-item.active .faq-answer {
        max-height: 200px; /* Wystarczająco dużo na tekst */
    }