 @import url('https://fonts.googleapis.com/css2?family=Crimson+Text&family=Dancing+Script&family=Playfair+Display:wght@600&display=swap');

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}
html {
              scroll-behavior: smooth;
            }
.main {
  font-family: 'Helvetica Neue', sans-serif;
  background-image: url('tlo.avif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #333;
  min-height: 100%;
  display: flex;
  flex-direction: column;
    position: relative;
  width: 100%;
  overflow: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  top: 0;
  z-index: 1000;
}
/* Sticky header tylko na mobile */
        @media (max-width: 768px) {
            .header {
                position: sticky;
                top: 0;
                height: 60px;
            }
        }
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transform: translateX(70px);
}

.logoImage {
  max-height: 150px;  /* Zmień w zależności od pożądanego rozmiaru logo */
  width: auto;
}

.centerNav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.nav {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  justify-content: center;
  font-family: 'Crimson Text', serif;
}

.navButton {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: transparent;
  color: #000;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.7rem;
  text-decoration: none;
  font-family: var(--font-serif);
}

.navButton:hover {
  color: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(169, 116, 88, 2);
}
/* Burger menu - ukryte na desktop */
        /* Burger menu - ukryte na desktop */
        .burger {
            display: none;
            cursor: pointer;
            margin-left: 0.5rem;
            font-size: 1.3rem;
            color: #333;
        }

        /* Menu mobilne - ukryte domyślnie */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 105px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 0.5rem 0;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav {
            flex-direction: column;
            padding: 0 1rem;
        }

        .mobile-nav li {
            margin: 0.3rem 0;
        }
        
@media (max-width: 768px) {
            /* Ukrywamy oryginalne menu na mobile */
            .centerNav > .nav:not(.mobile-nav) {
                display: none;
            }

            /* Pokazujemy burger menu */
            .burger {
                display: block;
              position: relative;
        top: 3px; /* Przesuwa burger menu 3px w dół */
        margin-left: 0.5rem;
        align-self: center; /* Dodatkowe wyrównanie */
            }
            .buybtn {
        align-self: center; /* Wyrównanie przycisku */
        margin-top: -2px; /* Lekkie przesunięcie w górę jeśli potrzebne */
    }

            /* Zmniejszone logo na mobile */
            .logoImage {
                height: 70px;
                align-self: center;
            }
        }
/* Animacja burgera */
        .burger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

.cta {
  transform: translateX(-120px);
}
.buybtn {
  background: linear-gradient(135deg, #e0aa6f, #c58b47);
  color: white;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: pulse 2.5s infinite ease-in-out;
}

.buybtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(212, 165, 116, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
  }
}

.buybtn:hover::before {
  left: 130%;
}

.buybtn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(212, 165, 116, 0.5);
}


.loginButton {
  background: none;
  border: none;
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  transition: all 0.3s ease;
}

.loginButton:hover {
  color: #d4a574;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .logo {
    transform: none;
  }

  .cta {
    transform: none;
    margin-top: 1rem;
  }

  .centerNav {
    order: 2;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 0; /* Usunięcie paddingu */
  background: rgba(0, 0, 0, 0.9);
  font-family: var(--font-display);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative; /* Dodane dla pozycjonowania przycisku */
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  background-color: rgba(0,0,0,0.4); /* Zmniejszona przezroczystość z 0.5 na 0.4 */
  backdrop-filter: blur(8px); /* Dodany efekt rozmycia */
  -webkit-backdrop-filter: blur(8px); /* Dla Safari */
  border-radius: 15px;
  padding: 30px;
  position: relative;
  z-index: 2; /* Wyższy z-index niż przycisk */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Delikatna ramka */
}

.hero-content h1 {
  font-size: 2.5rem !important; /* Specyficzny selektor dla hero-content */
  font-family: 'Playfair Display', serif !important;
  margin-bottom: 1rem !important;
  margin-block-start: 0 !important;
  margin-block-end: 1rem !important;
  color: #fff !important;
  line-height: 1.1 !important;
}

/* Nowe pozycjonowanie przycisku CTA */
.herocta {
  position: absolute;
  bottom: 80px; /* Odległość od dołu */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3; /* Najwyższy z-index */
  padding: 0; /* Usunięcie poprzedniego paddingu */
}

.ctabtn {
  background: linear-gradient(135deg, #d4a574, #c9975b);
  color: white;
  padding: 18px 36px; /* Zwiększony padding dla lepszej widoczności */
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem; /* Zwiększona czcionka */
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
  display: inline-block;
  cursor: pointer;
  backdrop-filter: blur(10px); /* Dodany efekt blur dla lepszej czytelności */
  border: 2px solid rgba(255, 255, 255, 0.2); /* Delikatna ramka */
}

.ctabtn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.6);
  background: linear-gradient(135deg, #e0aa6f, #d4a574);
}

/* Dots navigation - przesunięte wyżej żeby nie kolidowały z przyciskiem */
.hero-slider-dots {
  position: absolute;
  bottom: 30px; /* Przesunięte wyżej */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4; /* Najwyższy z-index */
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid rgba(255,255,255,0.3); /* Dodana ramka dla lepszej widoczności */
}

.hero-slider-dots .dot.active {
  background-color: white;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Responsywność dla mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh; /* Pełna wysokość na mobile */
  }

  .hero-slide {
    width: 100%;
    height: 100%;
    background-size: 85% auto !important; /* Mniejsze skalowanie - więcej zdjęcia widoczne */
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: rgba(0, 0, 0, 0.3); /* Delikatne ciemne tło dla obszarów nie pokrytych zdjęciem */
  }

  .hero-content {
    position: absolute;
    top: 50%; /* ZMIANA: Przesunięte na środek */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 380px;
    padding: 20px; /* Zmniejszony padding */
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-content h1 {
    font-size: 2.2rem !important; /* Lekko zmniejszone żeby się zmieściło */
    line-height: 1.1 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0.5rem !important; /* Zmniejszony margines */
  }

  .hero-content p {
    font-size: 1rem; /* Zmniejszone */
    margin-bottom: 0.5rem; /* Zmniejszony margines */
  }

  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0.5rem !important;
  }

  /* Przycisk CTA na mobile - przesunięty w dół i zmniejszony */
  .herocta {
    bottom: 15%; /* ZMIANA: Przesunięte niżej */
    left: 50%;
    transform: translateX(-50%);
  }

  .ctabtn {
    padding: 12px 24px; /* ZMIANA: Zmniejszony padding */
    font-size: 1rem; /* ZMIANA: Zmniejszona czcionka */
  }

  /* Dots na mobile - na dole */
  .hero-slider-dots {
    bottom: 40px; /* Na dole ekranu */
    gap: 8px;
  }

  .hero-slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}

/* Dla bardzo małych ekranów - ZAKTUALIZOWANE */
@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
  }

  .hero-slide {
    background-size: cover !important; /* Jeszcze więcej zdjęcia widoczne na małych ekranach */
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  .hero-content {
    top: 45%; /* ZMIANA: Lekko wyżej niż środek na małych ekranach */
    padding: 15px; /* Mniejszy padding */
  }

  .hero-content h1 {
    font-size: 1.8rem !important; /* ZMIANA: Jeszcze bardziej zmniejszone na małych ekranach */
    margin-block-start: 0 !important;
    margin-block-end: 0.5rem !important;
  }

  .hero-content p {
    font-size: 0.9rem; /* Zmniejszone */
  }

  .hero h1 {
    font-size: 1.8rem !important; /* ZMIANA: Dopasowane do hero-content h1 */
    margin-block-start: 0 !important;
    margin-block-end: 0.5rem !important;
  }

  .herocta {
    bottom: 12%; /* ZMIANA: Jeszcze niżej na małych ekranach */
  }

  .ctabtn {
    position: relative !important;
    padding: 10px 15px !important; /* ZMIANA: Jeszcze mniejszy przycisk */
    font-size: 0.7rem !important; /* ZMIANA: Mniejsza czcionka */
    bottom: -120px !important; 
  }

  .hero-slider-dots {
    bottom: 25px; /* ZMIANA: Bliżej dołu */
  }
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.ctaButtons button {
  background-color: #a97458;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: var(--font-serif);
}

.ctaButtons .outline {
  background-color: white;
  color: #a97458;
  border: 2px solid #a97458;
}

.ctaButtons button:hover {
  background-color: #8a5a3c;
}

.ctaButtons .outline:hover {
  background-color: #f1dfd1;
}

/* How It Works */
.howItWorks {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem;
  text-align: center;
  font-family: var(--font-display);
}

.howItWorks h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #5e4433;
}
.book > .stepBack,
.book > .stepContent {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 1s;
  pointer-events: none;
}

.book:hover > .stepBack,
.book:hover > .stepContent {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.1s; /* pojawia się po 1 sekundzie */
  pointer-events: auto;
}

.steps {
   display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px;
  padding: 40px 0;
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.step {
  perspective: 2000px;
}

.book {
  position: relative;
  border-radius: 10px;
  width: 220px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-perspective: 2000px;
  perspective: 2000px;
   -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  font-family: 'Inter', sans-serif;
}

.cover {
  top: 0;
  left: 0;
  position: absolute;
  width: 99%; /* lekko mniejsza szerokość */
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px; 
  box-shadow: 1px 1px 5px #000;
  cursor: pointer;
  transition: transform 0.5s ease;
  transform-origin: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  backface-visibility: hidden;
  z-index: 2;
  font-weight: 700;
}

.book:hover .cover {
  transform: rotateY(-80deg);
}

.stepContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stepIcon {
  font-size: 32px;
  color: #333;
}

.stepNumber {
  font-size: 20px;
  font-weight: bold;
  color: #666;
}

.stepBack {
  position: absolute;
  left: 2%; /* odsunięcie w prawo kompensujące .cover */
  width: 96%;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  backface-visibility: hidden;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.stepBack p {
  font-size: 16px;
  font-weight: normal;
  color: #333;
}



/* CTA Block */
.ctaBlock {
  background: linear-gradient(to right, #fcf3e6, #f2dfce);
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
}

.ctaBlock h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #5e4433;
}

.ctaDescription {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #444;
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.bigButton {
  background-color: #d63384;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bigButton:hover {
  background-color: #c21875;
}

/* Footer */
.footer {
  background-color: rgba(255, 255, 255, 255);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  color: #5e4433;
  margin-top: auto;
}

@media (max-width: 768px) {
  .main {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .header {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .logo {
    transform: none;
  }

  .centerNav {
    order: 2;
  }

  .loginButton {
    transform: none;
    order: 3;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .navButton{
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }
  .contactInfo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buybtn,
  .ctabtn {
    padding: 0.4rem 0.7rem;
                font-size: 0.8rem;
                margin-left: 0.5rem;
  }

.contactRow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: center;
}
}

.wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.heading {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.contactSection {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.contactWrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contactWrapper h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contactWrapper p {
  margin-bottom: 30px;
  color: #555;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactForm input,
.contactForm textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contactForm button {
  padding: 12px;
  background-color: #000;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contactForm button:hover {
  background-color: #333;
}
.contactContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contactLink {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  gap: 8px;
}

.contactLink:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .contactContent {
    flex-direction: row;
    justify-content: space-between;
  }

  .contactForm, .contactInfo {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contactRow {
  align-items: center;
  color: inherit;
  text-decoration: none;
  gap: 8px;
  text-align: left;
}
}
.footerLinks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footerLinks a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.footerLinks a:hover {
  text-decoration: underline;
}
 /* Sekcja cennikowa */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.7;
}

.pricing .sectiontitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-size: 3.2rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Toggle Switch */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toggle-option {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.toggle-option.active {
    background: linear-gradient(135deg, #d4a574, #e0aa6f);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transform: translateY(-2px);
}

.toggle-option:not(.active):hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.toggle-option .icon {
    margin-right: 8px;
    font-size: 1rem;
}

/* Pricing grids */
.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem; /* Zwiększony padding dla badge'a */
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pricing-grid.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible; /* Zmienione z hidden na visible */
    border: 1px solid rgba(255,255,255,0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4a574, #c9975b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
    z-index: 1;
    transform-origin: center; /* Dodane dla lepszego skalowania */
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Dla karty popularnej przy hover nie pokazujemy ::before bo ma już border-top */
.pricing-card.popular:hover::before {
    transform: scaleX(0);
    display: none;
}

.pricing-card.popular {
    transform: scale(1.08);
    border: 3px solid #d4a574;
    border-top: 8px solid #d4a574;
    box-shadow: 0 30px 80px rgba(212, 165, 116, 0.3);
    background: linear-gradient(145deg, #ffffff 0%, #fdf8f3 100%);
    overflow: visible;
}

.pricing-card.popular::before {
    display: none; /* Ukrywamy ::before dla popularnej karty */
}

.popular-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a574, #e0aa6f);
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    animation: pulse-badge 3s infinite;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 100;
    white-space: nowrap;
    border: 3px solid white;
    backdrop-filter: blur(10px);
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    }
    50% { 
        transform: translateX(-50%) scale(1.08); 
        box-shadow: 0 12px 35px rgba(212, 165, 116, 0.7);
    }
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4a574, #c9975b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-family: 'Playfair Display', serif;
}

.plan-description {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.price-period {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

.price-features {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
    text-align: left;
}

.price-features li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.4;
    border-bottom: 1px solid #f7fafc;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #d4a574;
    font-weight: 900;
    font-size: 1.1rem;
}

.price-features li.premium {
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.1), transparent);
    border-radius: 8px;
    margin: 0.3rem 0;
    padding: 1rem 0 1rem 2rem;
    font-weight: 600;
    color: #2d3748;
}

.price-features li.premium::before {
    content: "⭐";
    font-size: 1rem;
}

.price-features li.exclusive {
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.1), transparent);
    border-radius: 8px;
    margin: 0.3rem 0;
    padding: 1rem 0 1rem 2rem;
    font-weight: 600;
    color: #2d3748;
    border-left: 4px solid #8b4513;
}

.price-features li.exclusive::before {
    content: "💎";
    font-size: 1rem;
}

.price-features li.not-included {
    color: #cbd5e0;
    text-decoration: line-through;
}

.price-features li.not-included::before {
    content: "✗";
    color: #e53e3e;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem 4rem 2.5rem; /* Zwiększony padding-bottom */
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.buy-button {
    background: linear-gradient(135deg, #d4a574, #c9975b);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: calc(100% - 1rem); /* Trochę węższa żeby nie dotykała krawędzi */
    margin: 0 0.5rem; /* Marginesy po bokach */
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(0); /* Bez dodatkowego przesunięcia */
    left: -40px;
}

.buy-button:hover {
    transform: translateY(-2px); /* Mniejsze przesunięcie przy hover */
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e0aa6f, #d4a574);
}

.buy-button::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;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e0aa6f, #d4a574);
}

.buy-button.secondary {
    background: linear-gradient(135deg, #718096, #4a5568);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
}

.buy-button.secondary:hover {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    box-shadow: 0 12px 35px rgba(74, 85, 104, 0.4);
}

.buy-button.premium {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.buy-button.premium:hover {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

/* USUNIĘTE WSZYSTKIE STYLE ::before - ZASTĄPIONE PRZEZ border-top */

/* Differences indicator */
.pricing-differences {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-differences {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.differences-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny w rzędzie */
    gap: 2rem;
    margin-top: 1.5rem;
}

.difference-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.difference-item h4 {
    color: #d4a574;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.difference-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsywność cennika */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }
    
    .pricing-card.popular {
        transform: scale(1.03);
    }
}

@media (max-width: 768px) {
    .pricing .sectiontitle {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-toggle {
        padding: 6px;
        gap: 6px;
    }
    
    .toggle-option {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem 3.5rem 2rem; /* Dostosowany padding dla mobile */
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin: 1.5rem 0;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .plan-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .popular-badge {
        top: -25px;
        padding: 12px 28px;
        font-size: 0.9rem;
        border: 2px solid white;
    }

    .differences-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem 3rem 1.5rem; /* Dostosowany padding dla małych ekranów */
        
    }
    
    .pricing .sectiontitle {
        font-size: 2.2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    .buy-button {
    padding: 1rem 1.7rem;
    font-size: 1rem;
    width: calc(100% - 0.5rem);
    margin-left: 1.05rem; /* Bardziej w prawo */
} 
    .popular-badge {
        font-size: 0.85rem;
        padding: 10px 22px;
        top: -22px;
        border: 2px solid white;
    }

    .toggle-option {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

 .ctabtn {
  background: linear-gradient(135deg, #d4a574, #c9975b);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  display: inline-block;
  cursor: pointer;
}

.ctabtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}
        .sectiontitle {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c2c2c;
            position: relative;
            font-family: 'Playfair Display', serif;
        }

        .sectiontitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #d4a574, #c9975b);
            border-radius: 2px;
        }
/* Benefits */
 .benefits {
            padding: 6rem 0;
            background: #fff;
        }

        .benefitsgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit:hover {
            background: #f8f6f4;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .benefiticon {
            font-size: 2rem;
            color: #d4a574;
            flex-shrink: 0;
        }

        .benefitcontent h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2c2c2c;
        }

        @media (max-width: 900px) {
  .benefitsgrid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
  }
}

@media (max-width: 600px) {
  .benefitsgrid {
    grid-template-columns: 1fr; /* 1 kolumna na telefonach */
  }
  .sectiontitle {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2c2c2c;
            position: relative;
            font-family: 'Playfair Display', serif;
        }

        .sectiontitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #d4a574, #c9975b);
            border-radius: 2px;
        }
        .pricingcard {
            max-width: 300px;
            margin: 4rem auto 0;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem 2rem;
            border: 1px solid rgba(255,255,255,0.2);
        }
}.howItWorks {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem;
  text-align: center;
}


 .sectiontitle {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c2c2c;
            position: relative;
        }

        .sectiontitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #d4a574, #c9975b);
            border-radius: 2px;
        }

.logoContainer {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px; /* Adjust height as needed */
}

.logoText {
  font-size: 2.5rem;
  font-weight: bold;
  color: #5e4433;
}

/* Logo inside the pages */
.pageLogo {
  position: absolute;
  max-width: 80%;
  max-height: 80%;
  opacity: 1;
  visibility: visible;
  z-index: 10;
  pointer-events: none;
  transform: scaleX(-1);
}

/* Usuń poprzednie style kolorowych ikon */

/* Podstawowa widoczność elementów */
.book > .stepBack { /* Usunięto .stepContent z tej reguły */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 1s; /* Ta tranzycja dotyczy powrotu do stanu ukrytego, np. po odjechaniu myszką */
  pointer-events: none;
}
/* .stepContent (elementy na okładce) będzie teraz domyślnie widoczny, jeśli .cover jest widoczny */

.book:hover > .stepBack { /* Usunięto .stepContent z tej reguły */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease 0.5s, visibility 0s linear 0.4s; /* Tranzycja dla pojawienia się treści wewnętrznej */
  pointer-events: auto;
}
.book:hover .cover .stepContent {
  opacity: 0;
  transition: opacity 0.2s ease 0.4s; /* Płynne znikanie podczas obracania */
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px;
  padding: 40px 0;
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 600;;
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
  .book.book-interaction-active {
  /* Przesunięcie w prawo. Wartość translateX musi być dostosowana.
     Chcemy, aby środek przesuniętej książki był tak, aby jej prawa krawędź była blisko prawej krawędzi ekranu.
     Szerokość przeskalowanej książki: 220px * 0.70 = 154px.
     Przesunięcie = (szerokość ekranu / 2) - (szerokość książki / 2) - mały margines od prawej.
     Przykład: (50vw - (154px / 2) - 10px) = 50vw - 77px - 10px = 50vw - 87px
  */
  transform: translateX(calc(50vw - 87px)) scale(0.70);
}
  .steps {
    max-width: 100%; /* Kontener .steps zajmuje pełną dostępną szerokość */
    gap: 60px; /* Zmniejszony odstęp między książkami na mobilnych */
    padding: 20px 10px; /* Zmniejszony padding kontenera .steps */
    justify-content: right; /* Wyśrodkowanie .step jeśli jest węższy niż .steps */
    transform: translateX(25%);
    transform: scale(0.85);
  }
  
  .step {
    width: 100%;
    display: flex;
    justify-content: center; /* NOWOŚĆ: książka domyślnie na środku */
    /* padding-right: 5px; /* Usunąć lub dostosować, bo książka nie jest już na stałe przy prawej krawędzi */
  }
  
  .book {
    /* Zachowujemy oryginalne wymiary jako bazę do skalowania */
    width: 220px;
    height: 300px;
    /* Skalowanie książki, aby była mniejsza na mobilnych */
    transform: scale(0.85); /* Możesz dostosować wartość skali (np. 0.65, 0.75) */
    /* Skalowanie od prawej krawędzi, aby utrzymać pozycję przy justifiy-content: flex-end */
    transform-origin: center; 
    justify-content: center;
    margin: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative; /* Usuwamy marginesy, które mogłyby zakłócać pozycjonowanie */
    margin-right: -125px;
  }
  .book.book-interaction-active .page[data-page="1"] {
  opacity: 1; visibility: visible; transform: rotateY(-179deg);
  /* Bazowe opóźnienie 0.5s (przesunięcie) + oryginalne opóźnienie kartki (0.1s) */
  transition: transform 0.8s ease (0.5s + 0.1s), opacity 0.2s ease (0.5s + 0.1s), visibility 0s linear (0.5s + 0.1s);
}
.book.book-interaction-active .page[data-page="2"] {
  opacity: 1; visibility: visible; transform: rotateY(-178deg);
  transition: transform 0.8s ease (0.5s + 0.2s), opacity 0.2s ease (0.5s + 0.2s), visibility 0s linear (0.5s + 0.2s);
}
.book.book-interaction-active .page[data-page="3"] {
  opacity: 1; visibility: visible; transform: rotateY(-177deg);
  transition: transform 0.8s ease (0.5s + 0.3s), opacity 0.2s ease (0.5s + 0.3s), visibility 0s linear (0.5s + 0.3s);
}
.book.book-interaction-active .cover {
  transform: rotateY(-180deg);
}

  
.stepBack {
  /* ... inne style .stepBack ... */
  /* Oryginalne opóźnienie 1.2s. Jeśli przesunięcie trwa 0.5s, a chcemy by treść pojawiła się podobnie jak wcześniej:
     0.5s (przesunięcie) + 0.7s (oczekiwanie na częściowe otwarcie) = 1.2s
  */
  transition: opacity 0.3s ease (0.5s + 0.7s), visibility 0s linear (0.5s + 0.7s);
}
.book.book-interaction-active > .stepBack {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
  /* Dostosowanie rozmiarów czcionek wewnątrz książki na mobilnych */
  /* (jeśli skalowanie .book nie wystarcza lub chcesz precyzyjniej) */
  .stepBack p {
    font-size: 14px; /* Np. zmniejszona z 16px */
    line-height: 1.4;
  }
  .stepContent p { /* Tytuł na okładce */
    font-size: 0.9em; /* Dostosuj proporcjonalnie */
  }
  .stepIcon {
    font-size: 26px; /* Np. zmniejszona z 32px */
  }
  .stepNumber {
    font-size: 16px; /* Np. zmniejszona z 20px */
  }
.reverse {
    margin-left: -450px; /* lub -40px, dostosuj */
  }
  .sectiontitle {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2c2c2c;
            position: relative;
        }

        .sectiontitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #d4a574, #c9975b);
            border-radius: 2px;
        }
        
}
.step {
  width: 220px; /* Szerokość kroku równa szerokości książki */
  perspective: 2000px; /* Zachowujemy perspektywę dla efektu 3D */
}

.book {
  position: relative;
  border-radius: 10px;
  width: 220px;
  height: 300px;
  box-shadow: 1px 1px 5px #000;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  /* Added transition for smooth mobile movement */
}
.cover {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 1px 1px 5px #000;
  transform-origin: left;
  transition: transform 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  box-sizing: border-box;
  z-index: 5;
}

.book:hover .cover {
  transform: rotateY(-180deg); /* Zmieniono kąt na pełne otwarcie */
}

/* Animowane kartki - białe i połączone z cover */
.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  transform-origin: left;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.2s ease, visibility 0s linear 0.2s;
  box-sizing: border-box;
  display: flex; /* To center the logo */
  align-items: center; /* To center the logo */
  justify-content: center; /* To center the logo */
}

.page[data-page="1"] { z-index: 4; }
.page[data-page="2"] { z-index: 3; }
.page[data-page="3"] { z-index: 2; }

/* Animacja kartek przy najechaniu (z poprzednich porad) */
.book:hover .page[data-page="1"] {
  opacity: 1; visibility: visible; transform: rotateY(-179deg);
  transition: transform 0.8s ease 0.1s, opacity 0.2s ease 0.1s, visibility 0s linear 0.1s;
}
.book:hover .page[data-page="2"] {
  opacity: 1; visibility: visible; transform: rotateY(-178deg);
  transition: transform 0.8s ease 0.2s, opacity 0.2s ease 0.2s, visibility 0s linear 0.2s;
}
.book:hover .page[data-page="3"] {
  opacity: 1; visibility: visible; transform: rotateY(-177deg);
  transition: transform 0.8s ease 0.3s, opacity 0.2s ease 0.3s, visibility 0s linear 0.3s;
}

/* Animacja przewracania i znikania kartek */
/*@keyframes pageFlipAndDisappear {
  0% {
    transform: rotateY(0deg);
    opacity: 1;
  }
  50% {
    transform: rotateY(-80deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(-160deg);
    opacity: 0;
    visibility: hidden;
  }
} */

.stepContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stepIcon {
  font-size: 32px;
  transition: transform 0.3s ease;
}

.stepIcon:hover {
  transform: scale(1.1);
}

.stepNumber {
  font-size: 20px;
  font-weight: bold;
  color: #666;
}
.stepContent p {
    font-size: 1em; /* Dostosuj wg potrzeb, jeśli jest inny niż w .stepBack p */
    margin-bottom: 0; /* Przykładowe dostosowanie */
}

.stepBack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 1.2s, visibility 0s linear 1.2s;
  pointer-events: none;
  box-shadow: 1px 1px 5px #000;
}

.stepBack p {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  line-height: 1.5;
   font-family: 'Inter', sans-serif;
   font-weight: 500;
}

.book.reverse .cover {
  transform-origin: right;
}

.book.reverse:hover .cover {
  transform: rotateY(180deg);
}

.book.reverse .page {
  transform-origin: right;
}

/* Animacja kartek dla reverse */
.book.reverse:hover .page[data-page="1"] {
  opacity: 1; visibility: visible; transform: rotateY(179deg);
  transition: transform 0.8s ease 0.1s, opacity 0.2s ease 0.1s, visibility 0s linear 0.1s;
}
.book.reverse:hover .page[data-page="2"] {
  opacity: 1; visibility: visible; transform: rotateY(178deg);
  transition: transform 0.8s ease 0.2s, opacity 0.2s ease 0.2s, visibility 0s linear 0.2s;
}
.book.reverse:hover .page[data-page="3"] {
  opacity: 1; visibility: visible; transform: rotateY(177deg);
  transition: transform 0.8s ease 0.3s, opacity 0.2s ease 0.3s, visibility 0s linear 0.3s;
}

.mediaWrapper {
    margin-top: 10px;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 12px;
}
/* DODAJ DO SWOJEGO styles.css - IKONA ŁADOWANIA PENTRU VIDEO */

/* Kontener ładowania - pokazuje się nad video podczas ładowania */
.video-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Spinner z większym kontrastem */
.video-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4a574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Alternatywny spinner z gradientem (bardziej elegancki) */
.video-spinner-elegant {
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: 
        conic-gradient(from 0deg, #d4a574, #c9975b, #d4a574) border-box;
    animation: spin 1.5s linear infinite;
    position: relative;
}

.video-spinner-elegant::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: white;
    border-radius: 50%;
}

/* Spinner z trzema kropkami */
.video-dots-spinner {
    display: flex;
    gap: 4px;
    align-items: center;
}

.video-dots-spinner .dot {
    width: 8px;
    height: 8px;
    background: #d4a574;
    border-radius: 50%;
    animation: dots-bounce 1.4s infinite ease-in-out both;
}

.video-dots-spinner .dot:nth-child(1) { animation-delay: -0.32s; }
.video-dots-spinner .dot:nth-child(2) { animation-delay: -0.16s; }
.video-dots-spinner .dot:nth-child(3) { animation-delay: 0s; }

/* Tekst ładowania (opcjonalny) */
.video-loading-text {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Animacje */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dots-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ukryj overlay gdy video jest gotowe */
.video-loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsywność dla mobile */
@media (max-width: 768px) {
    .video-spinner,
    .video-spinner-elegant {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    
    .video-dots-spinner .dot {
        width: 6px;
        height: 6px;
    }
    
    .video-loading-text {
        font-size: 11px;
    }
}

/* Smooth fade dla lepszego UX */
.stepMedia {
    transition: opacity 0.3s ease;
}

.stepMedia.loading {
    opacity: 0.7;
}

/* Ikona play dla video (opcjonalna) */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}
.media-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important; 
}
.stepMedia.loading {
    opacity: 0.3 !important;
    filter: blur(2px) !important;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.video-loading-overlay.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}
.video-loading-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 200;
    font-family: 'Inter', sans-serif;
}

.stepMedia:hover + .video-play-icon {
    opacity: 1;
}
.stepMedia {
    width: 62%;
    height: auto;
    object-fit: cover;
    transform: scaleX(-1);
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    cursor: pointer; /* Dodano wskaźnik kursora */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stepMedia:hover {
    transform: scaleX(-1) scale(1.05); /* Zachowujemy odbicie lustrzane i dodajemy zoom */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.mediaModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mediaModalOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* Powiększone media */
.mediaModalContent {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background-color: #000;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.mediaModalOverlay.active .mediaModalContent {
    transform: scale(1);
}

/* Przycisk zamknięcia */
.mediaModalClose {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mediaModalClose:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Informacja o zamykaniu (opcjonalnie) */
.mediaModalInfo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Responsywność dla mobile */
@media (max-width: 768px) {
    .mediaModalContent {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .mediaModalClose {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .mediaModalInfo {
        bottom: 10px;
        font-size: 12px;
        padding: 0 20px;
    }
}

.previewContainer {
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .themeSwitcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .themeSwitcher button {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: white;
    transition: all 0.2s ease;
  }
  
  .themeSwitcher button:hover {
    background-color: #f9f9f9;
  }
  
  .themeSwitcher .active {
    background-color: #f472b6;
    color: white;
    border-color: #f472b6;
  }
  
  .entryPreview img {
    width: 100%;
    max-width: 400px;
    border-radius: 0.75rem;
    margin: 0 auto;
  }
  
  .theme-classic {
    background-color: #fffaf0;
  }
  .theme-boho {
    background-color: #fef6f0;
  }
  .theme-elegant {
    background-color: #f4f4f4;
  }
  .theme-romantic {
    background-color: #fff0f5;
  }
  .previewBox {
    transition: background-color 0.3s, color 0.3s;
  }
  
  /* Przykładowe style motywów */
  .theme_klasyczny {
    background-color: #fff;
    color: #333;
  }
  
  .theme_romantyczny {
    background-color: #fff0f5;
    color: #b03060;
  }
  
  .theme_boho {
    background-color: #f5f5dc;
    color: #8b4513;
  }
  
  .theme_elegancki {
    background-color: #f0f0f0;
    
    color: #222;
  }
  .previewImage {
    max-height: 460px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 1rem;
    border: 1px solid #e5e7eb; /* Tailwind border-gray-200 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Tailwind-like shadow */
    margin: 0 auto;
    display: block;
  }
  .themeButtonsWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 równe kolumny */
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    max-width: 1000px; /* Maksymalna szerokość kontenera */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}
/* Responsywność - 2 w rzędzie na tabletach */
@media (max-width: 1024px) {
    .themeButtonsWrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }
}

/* 1 w rzędzie na telefonach */
@media (max-width: 768px) {
    .themeButtonsWrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
}

/* Bardzo małe ekrany */
@media (max-width: 480px) {
    .themeButtonsWrapper {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
}
  
  .themeButton {
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }
  
  .themeButton:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  .themeButtonSelected {
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
  }
  .backButtonWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
  }
  
  .backButton {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 1rem;
    border: 2px solid currentColor;
    background-color: transparent;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }
  
  .backButton:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .theme-nav-arrows {
            display: none;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .theme-nav-arrow {
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .theme-nav-arrow:hover {
            background: rgba(0,0,0,0.9);
        }
        
        @media (max-width: 768px) {
            .theme-nav-arrows {
                display: flex;
            }
        }
  @media (max-width: 768px) {
    .backButton {
      font-size: 1.25rem;  /* Mniejszy tekst na telefonach */
      padding: 0.8rem 2rem;  /* Mniejsze pady */
    }
    .modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modalImage {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: white;
}
  }
  .demoPageWrapper {
    background-image: url('/floral.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;  /* Aby wypełnić ekran */
  }
  
  .demoPageWrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: blur(10px); /* Zamazanie tylko tła */
    z-index: -1; /* Ustawiamy tło pod resztą strony */
  }
  
  .demoPageWrapperContent {
    position: relative;
    z-index: 1;  /* Ustawiamy zawartość nad tłem */
    color: #222; /* Kolor tekstu, w razie potrzeby dostosuj */
    text-align: center; /* Opcjonalnie: wyśrodkowanie tekstu */
  }
  
  .demoPageTitle {
    color: #333;  /* Zmień kolor tekstu tytułu, jeśli to konieczne */
    font-size: 2.5rem;
  }
  
  @media (max-width: 768px) {
    .demoPageTitle {
      font-size: 2rem;  /* Mniejszy tekst na telefonach */
    }
    
    
  }
  .overlay {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.85);
    min-height: 100%;
    padding: 1rem;
    color: #5e4433;
    font-size: 2rem;
 }
 .headerTitle {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c2c2c;
  position: relative;
}
.headerTitle::after{
   content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #d4a574, #c9975b);
            border-radius: 2px;
}
.headerTitle2 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.demoSection {
  background-color: #fff;
}


.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modalImage {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}
.themeButtonCard {
  width: 100%;
  max-width: 300px;
  height: auto; /* Zmiana ze stałej wysokości */
  min-height: 320px;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
}
.themeButtonCard:hover {
   transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.themeButtonSelected {
  border-color: #000;
  transform: scale(1.03);
}

.themeCardTop {
  flex: 2;
  min-height: 120px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;     /* wyśrodkowanie */
  gap: .25rem;
  position: relative;      /*  potrzebne do ::before  */
}

.themeCardTop::before {
  content: '';
  position: absolute;
  inset: 0;                /* pełne pokrycie */
  background: linear-gradient(
      135deg,               /* z lewego górnego do prawego dolnego */
      rgba(255,255,255,0.1) 0%,   /* pół-przezroczysta biel */
      transparent 60%
  );
  pointer-events: none;    /* nie blokuje kliknięć */
}

.themeEmoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.themeTitle {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
}

.themeCardBottom {
  flex: 1;
  background-color: #ffffff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; /* to dodajemy */
  gap: 0.5rem;
}

.themeDescription {
  font-size: 0.9rem;
  color: #4B5563;
  text-align: left;
  line-height: 1.3;
}
.themeBottomTitle {
  font-size: 1.25rem;      /* powiększamy */
  font-weight: 600;
  color: #111827;
}
@media (max-width: 768px) {
  .themeCardTop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;  /* CENTRUJE w poziomie */
  justify-content: center; /* CENTRUJE w pionie */
  text-align: center;
  }
  .themeEmoji, .themeTitle {
  width: 100%;
  transform: translateX(-15px);
}
}

/* Główny kontener FAQ */
.faqSection{
background-color: #fff;
}

.space-y-4 {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Pojedynczy element FAQ */
.faqItem {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faqItem:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Pytanie FAQ */
.faqQuestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.faqQuestion:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.faqQuestion h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

/* Przycisk toggle */
.faqToggle {
    background: #e9ae7a;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faqToggle:hover {
    background: #e9c4a4;
    transform: scale(1.1);
}

.faqToggle:active {
    transform: scale(0.95);
}

/* Odpowiedź FAQ */
.faqAnswer {
    padding: 0 24px 24px 24px;
    background: #ffffff;
    animation: fadeIn 0.3s ease-in-out;
    margin-top: 15px;
}

.faqAnswer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* Animacja pojawiania się */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .space-y-4 {
        padding: 16px;
    }
    
    .faqQuestion {
        padding: 16px 20px;
    }
    
    .faqQuestion h3 {
        font-size: 16px;
        padding-right: 16px;
    }
    
    .faqAnswer {
        padding: 0 20px 20px 20px;
    }
    
    .faqAnswer p {
        font-size: 15px;
    }
    
    .faqToggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faqQuestion {
        padding: 14px 16px;
    }
    
    .faqQuestion h3 {
        font-size: 15px;
    }
    
    .faqAnswer {
        padding: 0 16px 16px 16px;
    }
    
    .faqAnswer p {
        font-size: 14px;
    }
}



.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: visible;
}


.icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.open .icon {
  transform: rotate(180deg);
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal {
  background-color: #fcf3e6;
  color: #4e342e;
  padding: 2rem;
  border-radius: 1.5rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
  overflow: visible;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #c7a17a;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: white;
  font-size: 1rem;
  box-sizing: border-box;
}

.cancelButton {
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: #6d4c41;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
}

.cancelButton:hover {
  text-decoration: underline;
}

.closeButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6d4c41;
  cursor: pointer;
}

.error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.inputWrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.inputIcon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-95%);
  color: #6b7280; /* gray-500 */
  pointer-events: none;
  transition: color 0.2s ease;
}

.iconError {
  color: #dc2626; /* red-600 */
  transform: translateY(-170%);
}

.input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem; /* padding-left dla ikony */
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.input:focus {
  border-color: #a16207; /* example highlight color */
}

.errorText {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.fadeIn {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.inputError {
  animation: shake 0.3s;
  border-color: #ef4444;
}




/* Responsywność */
@media (max-width: 480px) {
  .modal {
    padding: 1.5rem;
    max-width: 95%;
  }

  .title {
    font-size: 1.25rem;
  }

  .input,
  .loginButton,
  .cancelButton {
    font-size: 1rem;
  }
}.ctaBlock {
  background: linear-gradient(to right, #fcf3e6, #f2dfce);
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
}

.ctaBlock h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #5e4433;
}

.ctaDescription {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #444;
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.ctaButtons button {
  background-color: #a97458;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: var(--font-serif);
}

.ctaButtons .outline {
  background-color: white;
  color: #a97458;
  border: 2px solid #a97458;
}

.ctaButtons button:hover {
  background-color: #8a5a3c;
}

.ctaButtons .outline:hover {
  background-color: #f1dfd1;
}
.footer {
  background-color: rgba(255, 255, 255, 255);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  color: #5e4433;
  margin-top: auto;
}
.footerLinks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footerLinks a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.footerLinks a:hover {
  text-decoration: underline;
}
.hero-nav-area {
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  opacity: 0;
}

.hero-nav-area:hover {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.hero-nav-area.left {
  left: 0;
  justify-content: flex-start;
  padding-left: 20px;
}

.hero-nav-area.right {
  right: 0;
  justify-content: flex-end;
  padding-right: 20px;
}

/* Strzałki nawigacyjne */
.hero-nav-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8);
}

.hero-nav-area:hover .hero-nav-arrow {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsywność */
@media (max-width: 768px) {
  .hero-nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .hero-nav-area {
    width: 40%;
  }

  .hero-nav-area.left {
    padding-left: 10px;
  }

  .hero-nav-area.right {
    padding-right: 10px;
  }
}
/* Cookies Modal Styles */
        .cookies-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-top: 3px solid #d4a574;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
            border-radius: 20px 20px 0 0;
        }

        .cookies-modal.show {
            transform: translateY(0);
        }

        .cookies-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookies-text {
            flex: 1;
            min-width: 300px;
        }

        .cookies-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cookies-description {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.5;
            font-family: 'Inter', sans-serif;
        }

        .cookies-description a {
            color: #d4a574;
            text-decoration: none;
            font-weight: 600;
        }

        .cookies-description a:hover {
            text-decoration: underline;
        }

        .cookies-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .cookies-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }

        .cookies-btn-accept {
            background: linear-gradient(135deg, #d4a574, #c9975b);
            color: white;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }

        .cookies-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
            background: linear-gradient(135deg, #e0aa6f, #d4a574);
        }

        .cookies-btn-settings {
            background: transparent;
            color: #4a5568;
            border: 2px solid #e2e8f0;
        }

        .cookies-btn-settings:hover {
            background: #f7fafc;
            border-color: #cbd5e1;
            transform: translateY(-1px);
        }

        .cookies-btn-reject {
            background: transparent;
            color: #718096;
            border: 2px solid #e2e8f0;
        }

        .cookies-btn-reject:hover {
            background: #fed7d7;
            border-color: #feb2b2;
            color: #e53e3e;
        }

        .cookies-icon {
            font-size: 1.5rem;
            color: #d4a574;
        }

        .cookies-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #718096;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .cookies-close:hover {
            background: #f7fafc;
            color: #4a5568;
            transform: rotate(90deg);
        }

        /* Settings Modal */
        .cookies-settings-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            padding: 1rem;
        }

        .cookies-settings-modal.show {
            display: flex;
        }

        .cookies-settings-content {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .cookies-settings-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
        }

        .cookie-category {
            margin-bottom: 1.5rem;
            padding: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            background: #f8fafc;
        }

        .cookie-category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .cookie-category-title {
            font-weight: 600;
            color: #2d3748;
            font-size: 1.1rem;
        }

        .cookie-category-description {
            color: #4a5568;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .cookie-toggle {
            position: relative;
            width: 50px;
            height: 25px;
            background: #cbd5e1;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookie-toggle.active {
            background: #d4a574;
        }

        .cookie-toggle.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .cookie-toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 21px;
            height: 21px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .cookie-toggle.active::after {
            transform: translateX(25px);
        }

        .cookies-settings-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookies-modal {
                padding: 1rem;
            }

            .cookies-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .cookies-text {
                min-width: auto;
            }

            .cookies-title {
                font-size: 1.1rem;
                justify-content: center;
            }

            .cookies-description {
                font-size: 0.9rem;
            }

            .cookies-actions {
                justify-content: center;
                width: 100%;
            }

            .cookies-btn {
                flex: 1;
                justify-content: center;
                min-width: 120px;
            }

            .cookies-settings-content {
                padding: 1.5rem;
                margin: 1rem;
            }

            .cookies-settings-actions {
                flex-direction: column;
            }

            .cookies-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .cookies-actions {
                flex-direction: column;
            }

            .cookies-btn {
                width: 100%;
            }

            .cookie-category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

/* Przełączniki dla sekcji "Jak to działa" i "Motywy" */
.how-it-works-toggle-container,
.demo-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.how-it-works-toggle,
.demo-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.how-it-works-toggle:hover,
.demo-toggle:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.how-it-works-toggle .toggle-option,
.demo-toggle .toggle-option {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #5e4433;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-toggle .toggle-option::before,
.demo-toggle .toggle-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.how-it-works-toggle .toggle-option:hover::before,
.demo-toggle .toggle-option:hover::before {
    left: 100%;
}

.how-it-works-toggle .toggle-option.active,
.demo-toggle .toggle-option.active {
    background: linear-gradient(135deg, #d4a574, #e0aa6f);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transform: translateY(-2px);
}

.how-it-works-toggle .toggle-option:not(.active):hover,
.demo-toggle .toggle-option:not(.active):hover {
    background: rgba(212, 165, 116, 0.1);
    color: #4a3728;
}

.how-it-works-toggle .toggle-option .icon,
.demo-toggle .toggle-option .icon {
    margin-right: 8px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.how-it-works-toggle .toggle-option.active .icon,
.demo-toggle .toggle-option.active .icon {
    transform: scale(1.1);
}

/* Animacja przejścia dla przełączników */
.how-it-works-toggle .toggle-option.active::after,
.demo-toggle .toggle-option.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .how-it-works-toggle-container,
    .demo-toggle-container {
        margin: 1.5rem 0;
    }

    .how-it-works-toggle,
    .demo-toggle {
        padding: 6px;
        gap: 6px;
    }

    .how-it-works-toggle .toggle-option,
    .demo-toggle .toggle-option {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-toggle .toggle-option,
    .demo-toggle .toggle-option {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .how-it-works-toggle .toggle-option .icon,
    .demo-toggle .toggle-option .icon {
        margin-right: 6px;
        font-size: 0.9rem;
    }
}

/* ============================================================================
   AKTUALIZACJA ISTNIEJĄCYCH STYLÓW PRZEŁĄCZNIKA CENNIKOWEGO
   ============================================================================ */

/* Jednolity wygląd wszystkich przełączników */
.pricing-toggle-container .pricing-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-toggle-container .pricing-toggle:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Stylizacja dla przełączników w różnych sekcjach */
.how-it-works-toggle-container {
    background: rgba(212, 165, 116, 0.05);
    padding: 1rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 500px;
}

.demo-toggle-container {
    background: rgba(212, 165, 116, 0.05);
    padding: 1rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 500px;
}

/* Efekt hover dla kontenerów */
.how-it-works-toggle-container:hover,
.demo-toggle-container:hover {
    background: rgba(212, 165, 116, 0.08);
    transform: scale(1.02);
}

/* Dodatkowe style dla lepszej integracji z istniejącym designem */
.how-it-works-toggle-container .toggle-option,
.demo-toggle-container .toggle-option {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Focus states dla accessibility */
.how-it-works-toggle .toggle-option:focus,
.demo-toggle .toggle-option:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

/* Loading state dla przełączników */
.how-it-works-toggle .toggle-option.loading,
.demo-toggle .toggle-option.loading {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
}

.how-it-works-toggle .toggle-option.loading::after,
.demo-toggle .toggle-option.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth transitions dla zmiany treści */
.steps,
.themeButtonsWrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.steps.changing,
.themeButtonsWrapper.changing {
    opacity: 0;
    transform: translateY(20px);
}

/* Dark mode support (opcjonalnie) */
@media (prefers-color-scheme: dark) {
    .how-it-works-toggle,
    .demo-toggle {
        background: rgba(0, 0, 0, 0.7);
        border-color: rgba(212, 165, 116, 0.5);
    }
    
    .how-it-works-toggle .toggle-option,
    .demo-toggle .toggle-option {
        color: #e2e8f0;
    }
    
    .how-it-works-toggle .toggle-option:not(.active):hover,
    .demo-toggle .toggle-option:not(.active):hover {
        background: rgba(212, 165, 116, 0.2);
        color: #f1f5f9;
    }
}

/* ============================================================================
   DODATKOWE OBRAZKI DO DODANIA (UTWÓRZ TE PLIKI)
   ============================================================================ */

/*
Musisz dodać te obrazki do folderu themes/:
- themes/simple.avif (zrzut ekranu motywu simple)
- themes/colorful.avif (zrzut ekranu motywu colorful)

Możesz też zmienić rozszerzenia na .jpg lub .png jeśli wolisz.
*/

/* ============================================================================
   INTEGRACJA Z ISTNIEJĄCYMI STYLAMI
   ============================================================================ */

/* Upewnij się że przełączniki są spójne z resztą designu */
.how-it-works-toggle-container,
.demo-toggle-container,
.pricing-toggle-container {
    position: relative;
    z-index: 1;
}

/* Dodaj subtelną animację dla całych sekcji podczas przełączania */
.howItWorks,
.demoSection {
    transition: background-color 0.5s ease;
}

/* Style dla przejść między stanami */
.fade-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.fade-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dodatkowe style dla nowych motywów w galerii */
.theme-simple-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #495057;
}

.theme-colorful-preview {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%);
    border: 2px solid #1565c0;
}

/* Hover effects dla kart motywów */
.themeButtonCard.theme-simple:hover {
    box-shadow: 0 8px 32px rgba(73, 80, 87, 0.2);
}

.themeButtonCard.theme-colorful:hover {
    box-shadow: 0 8px 32px rgba(21, 101, 192, 0.2);
}

/* Dodatkowe style dla responsywności */
@media (max-width: 1024px) {
    .how-it-works-toggle-container,
    .demo-toggle-container {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .how-it-works-toggle-container,
    .demo-toggle-container {
        padding: 0.5rem;
    }
    
    .how-it-works-toggle,
    .demo-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .how-it-works-toggle .toggle-option,
    .demo-toggle .toggle-option {
        flex: 1;
        text-align: center;
    }
}

/* Poprawki dla accessibility */
.how-it-works-toggle .toggle-option[aria-pressed="true"],
.demo-toggle .toggle-option[aria-pressed="true"] {
    background: linear-gradient(135deg, #d4a574, #e0aa6f);
    color: white;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .how-it-works-toggle,
    .demo-toggle {
        border: 3px solid currentColor;
    }
    
    .how-it-works-toggle .toggle-option.active,
    .demo-toggle .toggle-option.active {
        background: currentColor;
        color: white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .how-it-works-toggle .toggle-option,
    .demo-toggle .toggle-option,
    .steps,
    .themeButtonsWrapper {
        transition: none;
    }
    
    .ripple,
    .fade-transition {
        animation: none;
    }
}        
/* PROSTE ZMNIEJSZENIE MENU NA LAPTOPACH - DODAJ DO CSS */

/* Laptopy i mniejsze ekrany desktopowe */
@media (max-width: 1400px) {
  .navButton {
    font-size: 1.5rem; /* z 1.7rem */
    padding: 0.4rem 0.8rem; /* z 0.5rem 1rem */
  }
  
  .loginButton {
    font-size: 1.2rem; /* z 1.4rem */
  }
  
  .buybtn {
    padding: 0.8rem 1.8rem; /* z 1rem 2.2rem */
    font-size: 1.4rem; /* z 1.6rem */
  }
  
  /* Przesuń przycisk "Kup Księgę" w lewo */
  .cta {
    transform: translateX(-50px);
  }
}

/* Średnie laptopy */
@media (max-width: 1200px) {
  .nav {
    gap: 0.8rem; /* z 1rem */
  }
  
  .navButton {
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
  }
  
  .loginButton {
    font-size: 1.1rem;
  }
  
  .buybtn {
    padding: 0.7rem 1.5rem;
    font-size: 1.3rem;
  }
  
  /* Jeszcze bardziej przesuń w lewo */
  .cta {
    transform: translateX(-60px);
  }
}

/* Małe laptopy */
@media (max-width: 1024px) {
  .nav {
    gap: 0.6rem;
  }
  
  .navButton {
    font-size: 1.1rem;
    padding: 0.3rem 0.5rem;
  }
  
  .loginButton {
    font-size: 1rem;
  }
  
  .buybtn {
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
  }
  
  .logoImage {
    max-height: 120px; /* z 150px */
  }
  
  /* Resetuj transform przed mobile */
  .cta {
    transform: translateX(-45px);
  }
}

/* Przed mobile - resetuj transform */
@media (max-width: 768px) {
  .cta {
    transform: none; /* usuń przesunięcie na mobile */
  }
}