:root {
  --text-main: #ededf1;
  --text-muted: #b0b0bb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 32px 0;
  z-index: 10;
  text-align: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

/* HERO BACKGROUND */
.hero-bg {
  position: relative;
  min-height: 75vh;
  background: url("../img/main.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,15,18,0.85) 0%,
    rgba(15,15,18,0.75) 40%,
    rgba(15,15,18,0.9) 100%
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;          /* SZERZEJ */
  padding: 120px 48px 104px;  /* WIĘCEJ ODDECHU PO BOKACH */
  margin: 0 auto;
}

/* HERO MAIN */
.hero-main {
  max-width: 860px;
  margin-bottom: 96px;
}

.hero-main h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 96px;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-main p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* TYPOGRAPHY SUBSECTION */
.hero-typography {
   max-width: 760px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-typography h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-typography p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-typography code {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: #c5c5cf;
}
.hero-main h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 96px;
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  max-width: 900px;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(237,237,241,0.92); /* jaśniej niż reszta */
  max-width: 720px;
  margin-bottom: 48px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-main h1 {
    font-size: 56px;
  }

  .hero-main {
    margin-bottom: 80px;
  }

  .hero-typography h2 {
    font-size: 32px;
  }
}
.btn-shine {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;

  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;

  color: #151519;
  background: linear-gradient(
    120deg,
    #d8d8dc 0%,
    #f5f5f7 25%,
    #bfc0c6 50%,
    #ffffff 75%,
    #d8d8dc 100%
  );
  background-size: 300% 100%;

  animation: silverShine 3.5s linear infinite;
}

/* SUBTELNY RUCH */
@keyframes silverShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* HOVER – lekki lift */
.btn-shine:hover {
  transform: translateY(-2px);
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
/* MOBILE – wyśrodkowanie przycisku */
@media (max-width: 900px) {
  .hero-cta {
    justify-content: center;
  }
}
/* MOBILE – komfort czytania */
@media (max-width: 900px) {

.hero-content {
  padding: 80px 28px 64px;
}


  .hero-main {
    max-width: 100%;
    margin-bottom: 56px;
  }

  .hero-main h1 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 24px;
  }

  .hero-main p {
    font-size: 16px;
  }

  .hero-typography {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }
}
/* ABOUT SECTION – CLEAN LAYOUT */
.about-section {
  background: #0f0f12;
  padding: 120px 24px;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* LEFT */
.about-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(237,237,241,0.9);
  max-width: 420px;
}

/* RIGHT */
.about-right p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(237,237,241,0.8);
  margin-bottom: 20px;
  max-width: 640px;
}
/* ABOUT SECTION – BOXED */
.about-section {
background: linear-gradient(
  180deg,
  #0f0f12 0%,
  #111118 60%,
  #0b0b0e 100%
);
  padding: 140px 24px;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

/* BOX BASE */
.about-box {
  position: relative;
  overflow: hidden;

  padding: 64px 64px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);

  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.03)
  );

  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.about-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0.18; /* SIŁA PRZEŚWITU */
  z-index: 0;
}
.about-box--primary::before {
  background-image: url("../img/about-left.jpg");
}

.about-box--secondary::before {
  background-image: url("../img/about-right.jpg");
}
.about-box > * {
  position: relative;
  z-index: 1;
}


/* PRIMARY BOX (H2) */
.about-box--primary h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.about-lead {
  font-size: 21px;
  line-height: 1.5;
  color: rgba(237,237,241,0.9);
  max-width: 420px;
}

/* SECONDARY BOX (TEXT) */
.about-box--secondary p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(237,237,241,0.8);
  margin-bottom: 22px;
  max-width: 640px;
}
@media (max-width: 900px) {
  .about-section {
    padding: 90px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-box {
    padding: 40px 28px;
  }

  .about-box--primary h2 {
    font-size: 36px;
  }

  .about-lead {
    font-size: 18px;
    max-width: 100%;
  }

  .about-box--secondary p {
    font-size: 16px;
  }
}
/* OFFER SECTION */
.offer-section {
  background: #0f0f12;
  padding: 140px 24px;
}

.offer-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* COLUMN HEADERS */
.offer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.offer-subtitle {
  font-size: 16px;
  color: rgba(237,237,241,0.6);
  margin-bottom: 40px;
}

.offer-box {
  padding: 28px 32px;
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 120px; /* KLUCZ – równa wysokość */

  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.01)
  );

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* PASTELOWE AKCENTY */
.offer-box.accent-blue {
  border-color: rgba(120,160,255,0.35);
  background: linear-gradient(
    160deg,
    rgba(120,160,255,0.08),
    rgba(255,255,255,0.01)
  );
}

.offer-box.accent-green {
  border-color: rgba(140,200,170,0.35);
  background: linear-gradient(
    160deg,
    rgba(140,200,170,0.08),
    rgba(255,255,255,0.01)
  );
}

.offer-box.accent-purple {
  border-color: rgba(170,140,220,0.35);
  background: linear-gradient(
    160deg,
    rgba(170,140,220,0.08),
    rgba(255,255,255,0.01)
  );
}


.offer-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.offer-box p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(237,237,241,0.75);
}

/* FEATURED */
.offer-box.featured {
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
}

/* HOVER */
.offer-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}

/* MOBILE */
@media (max-width: 900px) {
  .offer-section {
    padding: 90px 20px;
  }

  .offer-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .offer-title {
    font-size: 34px;
  }

  .offer-box {
    padding: 24px;
  }
}
/* CTA SECTION */
.cta-section {
  background: linear-gradient(
    180deg,
    #0f0f12 0%,
    #0b0b0e 100%
  );
  padding: 0px 24px 140px 0px;
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* CTA TITLE */
.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

/* MOBILE */
@media (max-width: 900px) {
  .cta-section {
    padding: 100px 20px;
  }

  .cta-section h2 {
    font-size: 36px;
  }
}
.cta-btn {
  margin-bottom: 48px;
}

/* TRAINING SECTION */
.training-section {
  position: relative;
  padding: 160px 24px;
  background: #0f0f12;
}

/* BACKGROUND IMAGE */
.training-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/training.jpg"); /* PODMIENISZ */
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

/* GRID */
.training-inner {
  position: relative;
  z-index: 1;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

/* BOX BASE */
.training-box {
  padding: 64px 64px;

  background: linear-gradient(
    160deg,
    rgba(15,15,18,0.85),
    rgba(15,15,18,0.65)
  );

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* LEFT BOX */
.training-box--left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.training-lead {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(237,237,241,0.95);
  margin-bottom: 24px;
}

.training-box--left p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(237,237,241,0.8);
}

/* RIGHT BOX */
.training-box--right h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 32px;
}

/* LIST */
.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-list li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237,237,241,0.75);
  margin-bottom: 20px;
}

.training-list strong {
  color: #ededf1;
}

/* CTA */
.training-cta {
  display: inline-block;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 900px) {
  .training-section {
    padding: 100px 20px;
  }

  .training-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .training-box {
    padding: 40px 28px;
  }

  .training-box--left h2 {
    font-size: 34px;
  }

  .training-box--right h3 {
    font-size: 24px;
  }

  .training-lead {
    font-size: 18px;
  }
}

/* FAQ SECTION */
.faq-section {
  background: #0f0f12;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: flex-start;
}


/* LEFT IMAGE */
.faq-image {
  position: sticky;
  top: 0;

  height: 100vh;

  background-image: url("../img/faq.jpg");
  background-size: cover;
  background-position: center;
}


/* RIGHT CONTENT */
.faq-content {
  padding: 120px 80px;
}

.faq-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

/* FAQ ITEM */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237,237,241,0.75);
}
/* FAQ INTERACTIVE */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;

  text-align: left;
  cursor: pointer;

  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: #ededf1;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.faq-question::after {
  content: "+";
  font-size: 24px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237,237,241,0.75);
}

/* HOVER – tylko gdy NIE aktywne */
.faq-item:not(.active):hover .faq-answer {
  max-height: 200px;
}

/* ACTIVE – click = blokada */
.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* CTA TITLE PULSE */
.cta-section h2 {
  animation: ctaPulse 4.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(
    180deg,
    #0b0b0e 0%,
    #0f0f12 100%
  );
  padding: 140px 24px;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}

/* MAP */
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.6);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

/* CONTACT BOX */
.contact-box {
  padding: 64px 64px;

  background: linear-gradient(
    160deg,
    rgba(15,15,18,0.85),
    rgba(15,15,18,0.65)
  );

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.contact-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.contact-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(237,237,241,0.9);
  margin-bottom: 40px;
}

/* DATA */
.contact-data p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237,237,241,0.8);
  margin-bottom: 20px;
}

.contact-data strong {
  color: #ededf1;
}

.contact-data a {
  color: #ededf1;
  text-decoration: none;
}

.contact-data a:hover {
  text-decoration: underline;
}

/* CTA */
.contact-cta {
  display: inline-block;
  margin-top: 32px;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-section {
    padding: 100px 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .contact-box {
    padding: 40px 28px;
  }

  .contact-box h2 {
    font-size: 32px;
  }
}
/* CONTACT ICON LIST */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 20px;
  line-height: 1;
  margin-top: 4px;
  opacity: 0.85;
}

.contact-item p {
  margin: 0;
}
/* FOOTER */
.footer {
  background: #0b0b0e;
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* BRAND */
.footer-brand {
  max-width: 640px;
  margin-bottom: 40px;
}

.footer-brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(237,237,241,0.75);
}

/* SEO LINE */
.footer-seo p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(237,237,241,0.45);
  margin-bottom: 40px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(237,237,241,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer {
    padding: 64px 20px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
