* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 20% 10%, #111 0%, #000 40%),
    radial-gradient(circle at 80% 90%, #111 0%, #000 40%);
  color: #fff;
  text-align: center;
}

.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 25px;
}

button {
    background: linear-gradient(135deg, #f5f5f5, #bfbfbf, #8a8a8a);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    color: black;
    font-weight: 600;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

.hero h1,
.hero p,
.hero button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255,255,255,0.15);
}

.hero p {
    animation-delay: 0.6s;
}

.hero button {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,192,192,0.12), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
}

body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,192,192,0.12), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}

.logo {
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: silver;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 16px;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}

.logo {
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: silver;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== PROCESS SECTION ===== */

.process {
    padding: 120px 20px;
    background: #050505;
}

.process h2 {
    font-size: 32px;
    margin-bottom: 60px;
}

.process-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    max-width: 280px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-6px);
    border-color: silver;
}

.number {
    font-size: 28px;
    color: silver;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

.nav-links a {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .nav-links {
        gap: 14px;
        font-size: 13px;
    }
}

/* ===== WHY SECTION ===== */

.why {
    padding: 120px 20px;
}

.why-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.why-text {
    max-width: 520px;
    text-align: left;
}

.why-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.why-text p {
    color: #bdbdbd;
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    padding: 22px 26px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.highlight-box:hover {
    border-color: silver;
    transform: translateX(6px);
}

.highlight-box h3 {
    margin-bottom: 6px;
    color: silver;
}

/* ===== TARGET SECTION ===== */

.target {
    padding: 120px 20px;
    background: #050505;
}

.target h2 {
    font-size: 32px;
    margin-bottom: 60px;
}

.target-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: auto;
}

.target-box {
    padding: 26px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.target-box:hover {
    border-color: silver;
    transform: translateY(-6px);
}

.target-box h3 {
    color: silver;
    margin-bottom: 10px;
}

.target-box p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TARGET SECTION ===== */

.target {
    padding: 100px 20px;
    background: #050505;
    text-align: center;
}

.target h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.target-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.target-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 14px;
    transition: 0.3s;
}

.target-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.target-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffffff;
}

.target-box p {
    color: #bfbfbf;
    font-size: 15px;
}

/* ===== STEPS ===== */

.steps {
    padding: 100px 20px;
    text-align: center;
}

.steps h2 {
    font-size: 34px;
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.step-box {
    background: rgba(255,255,255,0.03);
    padding: 35px 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
    position: relative;
}

.step-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.step-number {
    width: 42px;
    height: 42px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e5e5, #bfbfbf);
    color: black;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-box h3 {
    margin-bottom: 10px;
}

.step-box p {
    color: #c0c0c0;
    font-size: 14px;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
    padding: 100px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 34px;
    margin-bottom: 60px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-box {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    font-style: italic;
    transition: 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.testimonial-box span {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 14px;
    color: silver;
}

/* ===== OFFER ===== */

.offer {
    padding: 100px 20px;
    text-align: center;
}

.offer h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.offer-box {
    max-width: 420px;
    margin: auto;
    padding: 40px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    color: silver;
}

.offer-box ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.offer-box li {
    margin: 10px 0;
    color: #ccc;
}

.offer-box button {
    margin-top: 15px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* ===== FAQ ===== */

.faq {
    padding: 100px 20px;
    max-width: 800px;
    margin: auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
    width: 100%;
    padding: 18px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    color: #ccc;
}

/* ===== FOOTER ===== */

.footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
}

.footer p,
.footer a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer a:hover {
    color: silver;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== CTA SECTION ===== */

.cta {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(192,192,192,0.08), transparent 70%);
}

.cta-container {
    max-width: 700px;
    margin: auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    color: #bbb;
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-price {
    font-size: 28px;
    margin-bottom: 25px;
}

.cta-price span {
    color: silver;
    font-weight: 700;
    font-size: 36px;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff, #cfcfcf);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* ===== FOOTER ===== */

.footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 80px;
}

.footer-logo {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-text {
    color: #aaa;
    margin-bottom: 25px;
}

.footer-socials {
    margin-bottom: 25px;
}

.footer-socials a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

.footer-socials a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    left: 0;
    bottom: -4px;
    background: silver;
    transition: 0.3s;
}

.footer-socials a:hover::after {
    width: 100%;
}

.footer-copy {
    font-size: 13px;
    color: #666;
}

/* ===== SCROLL REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== */
/* 📱 MOBILE RESPONSIVE  */
/* ===================== */

@media (max-width: 900px) {

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none; /* na razie ukrywamy menu */
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 15px;
  }

  .why-container,
  .target-container,
  .steps-container,
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .highlight-box,
  .target-box,
  .step-box,
  .testimonial-box {
    margin-bottom: 15px;
  }

  .offer-box {
    padding: 25px;
  }

  .cta-container h2 {
    font-size: 28px;
  }

  .cta-container p {
    font-size: 15px;
  }

}

/* HAMBURGER MENU */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer.active {
  max-height: 200px;
  margin-top: 10px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}

.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

@media (max-width: 900px) {

  section {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .why-container,
  .process-container,
  .steps-container,
  .target-container,
  .testimonials-container {
    flex-direction: column;
    gap: 30px;
  }

}.course-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 60px;
  text-align: left;
  color: #ccc;
  margin: 40px 0 50px 0;
  list-style: disc;
  padding-left: 20px;
}

.course-list li {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 8px;
}

.course-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .course-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ===== KURS PREMIUM ===== */

.price-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 80px 40px;

  width: 100%;
  max-width: 1200px;   /* kontrola szerokości */
  margin: 100px auto;

  backdrop-filter: blur(15px);
}

.modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1600px;
  margin: 80px auto 0 auto;
}

.module {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 35px 30px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  height: 100%;
}

.module:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

@media (max-width: 1100px) {
  .modules {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .modules {
    grid-template-columns: 1fr;
  }
}

.module h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 600;
}

.module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #bdbdbd;
  position: relative;
  padding-left: 18px;
}

@media (max-width: 1400px) {
  .modules {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .modules {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .modules {
    grid-template-columns: 1fr;
  }
}

.module li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: silver;
}

.final-cta {
  margin-top: 120px;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-title {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px; /* było więcej przez cenę */
  color: #fff;
}

.final-cta button {
  padding: 22px 80px;
  font-size: 18px;
  border-radius: 50px;
}

@media (max-width: 768px) {

  .process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
    text-align: center;
  }

  .number {
    margin: 0 auto 20px auto;
  }

}

/* ===== SMALL SIDE MENU ===== */

@media (max-width: 900px) {

  .nav-links {
    position: fixed;
    top: 70px;
    right: -220px;
    width: 200px;

    background: #111;
    border-radius: 12px;
    padding: 20px 0;

    box-shadow: -10px 10px 30px rgba(0,0,0,0.5);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    transition: right 0.3s ease;
    z-index: 999;

    list-style: none;      /* DODAJ TO */
    padding-left: 0;       /* DODAJ TO */
  }

  .nav-links.active {
    right: 15px;
  }

  .nav-links a {
    font-size: 16px;
  }

}

body {
  background: radial-gradient(circle at 20% 20%, #111 0%, #000 40%),
              radial-gradient(circle at 80% 80%, #111 0%, #000 40%);
  background-attachment: fixed;
}

.page-section {
  padding-top: 110px;
  min-height: auto;
}

/* ===== HOW IT WORKS PREMIUM ===== */

.how-it-works {
    padding: 120px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 38px;
    margin-bottom: 80px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.timeline-item {
    max-width: 240px;
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #cfcfcf);
    color: black;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(255,255,255,0.15);
    transition: 0.3s;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
}

.timeline-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.timeline-item p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

/* mobile */

@media (max-width: 900px) {
    .timeline {
        flex-direction: column;
        gap: 50px;
    }
}

/* ==== FORCE REMOVE ALL BULLETS ==== */

ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

li {
  list-style: none !important;
}

/* ===== CONTACT PAGE ===== */

.contact-section {
  padding: 60px 20px 100px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-card {
  max-width: 500px;
  width: 100%;
  padding: 50px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-card p {
  color: #bbb;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: silver;
}

.contact-item span,
.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a:hover {
  color: silver;
}

.actions{
display:flex;
gap:10px;
align-items:center;
}

.delete{

background:#300;
color:white;
border:none;
padding:6px 10px;
border-radius:6px;
cursor:pointer;

}

.delete:hover{
background:#700;
}