*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#050505;
  color:white;
}

header{
  position:fixed;
  top:0;
  left:0;

  width:100%;
  height:92px;

  display:flex;
  align-items:center;

  padding:0 6%;

  backdrop-filter:blur(12px);

  z-index:1000;
}

.logo{
  font-weight:700;
  letter-spacing:2px;
  text-decoration:none;
  color:white;
  display:inline-block;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:#bdbdbd;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:white;
}

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:120px 6%;
  gap:60px;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
  margin-bottom:30px;
  max-width:700px;
  text-wrap:balance;
}

.hero p{
  color:#b5b5b5;
  font-size:20px;
  line-height:1.7;
  max-width:600px;
}

.buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.primary-btn{
  background:white;
  color:black;
  padding:18px 30px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary-btn:hover{
  transform:translateY(-3px);
}

.secondary-btn{
  border:1px solid #2a2a2a;
  background:#111;
  color:white;
  padding:18px 30px;
  border-radius:14px;
  text-decoration:none;
  transition:0.3s;
}

.secondary-btn:hover{
  background:#1a1a1a;
}

.hero-video{
  height:780px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid #3d3d3d;
}

.hero-video video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.section{
  padding:140px 6%;
}

.section-tag{
  color:#777;
  letter-spacing:2px;
}

.section h2{
  font-size:56px;
  margin:20px 0 60px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.card{
  background:#0d0d0d;
  border:1px solid #1f1f1f;
  border-radius:24px;
  padding:40px;
}

.card h3{
  margin-bottom:20px;
  font-size:28px;
}

.card p{
  color:#a9a9a9;
  line-height:1.7;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}

.pricing-card{
  background:#0d0d0d;
  border:1px solid #1f1f1f;
  border-radius:30px;
  padding:40px;
  position:relative;
  transition:0.35s;
  display:flex;
  flex-direction:column;
}

.pricing-card:hover{
  transform:translateY(-8px);
  border-color:#2d2d2d;
}

.highlighted{
  border:1px solid #444;
  transform:scale(1.02);
}

.highlighted:hover{
  transform:scale(1.02) translateY(-8px);
}

.badge{
  position:absolute;
  top:16px;
  right:16px;
  background:white;
  color:black;
  padding:4px 8px;
  border-radius:999px;
  font-size:8px;
  font-weight:700;
}

.price{
  font-size:56px;
  margin:20px 0 24px;
  display:flex;
  align-items:flex-end;
  gap:12px;
  flex-wrap:wrap;
  min-height:88px;
}

.price-small{
  font-size:18px;
  color:#777;
  margin-bottom:10px;
  letter-spacing:1px;
}

.pricing-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:26px;
}

.pricing-card li{
  color:#b7b7b7;
  line-height:1.5;
}

.small{
  color:#777;
  line-height:1.6;
  margin-top:auto;
}

.tooltip-line{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
}

.details-btn{
  display:inline-block;
  margin-top:26px;
  width:100%;
  text-align:center;
  padding:15.9px;
  border-radius:14px;
  text-decoration:none;

  background:white;
  color:black;

  border:1px solid white;

  font-weight:600;

  transition:0.3s;
}

.details-btn:hover{
  transform:translateY(-3px);
  opacity:0.92;
}

.cta{
  padding:140px 6%;
  text-align:center;
}

.cta h2{
  font-size:64px;
  line-height:1.2;
}

@media(max-width:1000px){

.hero,
.grid{
  grid-template-columns:1fr;
}

  .hero h1{
    font-size:42.8px;
  }

  .section h2,
  .cta h2{
    font-size:42px;
  }

  .hero-video{
    height:500px;
  }

}

.hero-info{
  display:flex;
  flex-direction:column;
  gap:26px;
  margin-top:40px;
  max-width:640px;
}

.info-block p{
  color:#b5b5b5;
  font-size:18px;
  line-height:1.8;
}

.tooltip-wrapper{
  position:relative;
  display:inline-block;
}

.tooltip-icon{
  width:28px;
  height:28px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-left:8px;

  border:none;
  border-radius:50%;

  font-size:16px;
  font-weight:700;
  line-height:1;

  color:white;
  background:#111;

  cursor:pointer;

  flex-shrink:0;
}

.tooltip-text{
  position:absolute;

  bottom:140%;
  left:50%;

  width:320px;
  max-width:calc(100vw - 24px);

  background:#111;
  border:1px solid #2a2a2a;

  padding:18px;
  border-radius:16px;

  color:#bcbcbc;
  font-size:14px;
  line-height:1.7;

  opacity:0;
  visibility:hidden;

  transition:opacity 0.2s ease;

  z-index:9999;
}

/* INDEX.HTML */

.tooltip-plan{
  transform:translateX(-72%);
}

.tooltip-online{
  transform:translateX(-73.5%);
}

/* PLAN.HTML */

.tooltip-video{
  transform:translateX(-80%);
}

.tooltip-excel{
  transform:translateX(-2%);
}

/* PLAN.HTML2 */

.tooltip-video-dwa{
  transform:translateX(-80%);
}

.tooltip-excel-dwa{
  transform:translateX(-2%);
}

/* PLAN.HTML3 */

.tooltip-video-trzy{
  transform:translateX(-80%);
}

.tooltip-excel-trzy{
  transform:translateX(-2%);
}


/* PROWADZENIE-ONLINE.HTML */

.tooltip-analiza{
  transform:translateX(-92%);
}

.tooltip-masa-ciala{
  transform:translateX(-2%);
}

/* TRENING-PERSONALNY.HTML */

.tooltip-plan-personalny{
  transform:translateX(-65%);
}

.tooltip-masa-personalny{
  transform:translateX(-30%);
}

.tooltip-model-wspolpracy{
  transform:translateX(-83%);
}

.tooltip-lokalizacja{
  transform:translateX(-60%);
}

@media(hover:hover){

  .tooltip-wrapper:hover .tooltip-text{
    opacity:1;
    visibility:visible;
  }

}

.active-tooltip{
  opacity:1 !important;
  visibility:visible !important;
}

.process-wrapper{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.process-card{
  width:100%;
  min-height:260px;
  background:#0d0d0d;
  border:1px solid #1f1f1f;
  border-radius:30px;
  padding:42px;
  display:flex;
  align-items:center;
  gap:42px;
  transition:0.35s;
}

.process-card:hover{
  transform:translateY(-6px);
  border-color:#2b2b2b;
}

.process-icon{
  width:120px;
  min-width:120px;
  height:120px;
  border-radius:24px;
  background:#121212;
  border:1px solid #232323;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:22px;
}

.process-icon img{
  width:78%;
  height:78%;
  object-fit:contain;
  object-position:center;

  display:block;
  margin:auto;

  opacity:0.92;
}

.process-content{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.process-content h3{
  font-size:32px;
  margin-bottom:20px;
  line-height:1.2;
}

.process-content p{
  color:#b3b3b3;
  line-height:1.9;
  font-size:17px;
  max-width:900px;
}

.process-content p + p{
  margin-top:18px;
}

.warning-box{
  margin-top:24px;
  background:#121212;
  border:1px solid #272727;
  border-radius:18px;
  padding:20px;
  color:#d0d0d0;
  line-height:1.8;
  font-size:15px;
}

.process-download{
  align-items:center;
}

.download-box{
  width:180px;
  min-width:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.pdf-icon{
  width:90px;
  height:90px;
  border-radius:22px;
  border:1px solid #2a2a2a;
  background:#121212;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  letter-spacing:2px;
  color:#8f8f8f;
}

.download-btn{
  width:100%;
  text-align:center;
  padding:16px;
  border-radius:16px;
  text-decoration:none;
  border:1px solid #2a2a2a;
  color:white;
  transition:0.3s;
}

.download-btn:hover{
  background:#161616;
}

.process-summary{
  width:82%;
  margin:40px auto 0;
  background:#101010;
  border:1px solid #242424;
  border-radius:30px;
  padding:48px;
}

.process-summary h3{
  font-size:34px;
  margin-bottom:26px;
}

.process-summary p{
  color:#b8b8b8;
  line-height:1.9;
  font-size:17px;
}

.process-summary p + p{
  margin-top:18px;
}

.process-cta{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

@media(max-width:1000px){

  .process-card{
    flex-direction:column;
    min-height:auto;
    padding:34px;
    gap:28px;
  }

  .process-icon{
    width:90px;
    min-width:90px;
    height:90px;
  }

  .process-icon img{
    width:110%;
    height:110%;
  }

  .process-content h3{
    font-size:28px;
  }

  .process-download{
    align-items:center;
  }

  .download-box{
    width:100%;
    min-width:100%;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;
  }

  .download-btn{
    width:auto;
    padding:14px 22px;
  }

  .process-summary{
    width:100%;
    padding:36px;
  }

}

.online-hero{
  align-items:center;
}

.structure-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  width:fit-content;
  background:white;
  color:black;
  text-decoration:none;
  padding:18px 28px;
  border-radius:16px;
  font-weight:600;
  transition:0.3s;
}

.structure-btn:hover{
  transform:translateY(-3px);
}

.online-animation{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0b0b0b;
}

.animation-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.messenger-window{
  width:100%;
  max-width:520px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.message-right{
  align-self:flex-end;
  max-width:80%;
  background:#171717;
  border:1px solid #2a2a2a;
  border-radius:24px 24px 8px 24px;
  padding:18px 20px;
  color:#d5d5d5;
  line-height:1.7;
  font-size:15px;
}

.message-left{
  align-self:flex-start;
  max-width:80%;
  background:#111;
  border:1px solid #232323;
  border-radius:24px 24px 24px 8px;
  padding:18px 20px;
  color:#f1f1f1;
  line-height:1.7;
  font-size:15px;
}

.red-message{
  border-color:#5c1f1f;
  color:#ffb1b1;
}

@media(max-width:1000px){

  .structure-btn{
    width:100%;
    text-align:center;
  }

  .animation-placeholder{
    min-height:500px;
  }

}

/* =========================================
   PLAN2 - POWRÄÂT DO PROWADZENIA ONLINE
========================================= */

.plan2-nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
}

.return-btn{
  position:absolute;
  right:6%;

  background:#ffffff;
  color:#000000 !important;
  text-decoration:none;

  padding:16px 18px;
  border-radius:999px;

  font-size:12px;
  font-weight:600;
  letter-spacing:-0.01em;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.return-btn:hover{
  transform:translateY(-1px);
  opacity:0.92;
}

/* =========================================
   TRENINGI PERSONALNE - HERO IMAGE
========================================= */

.personal-hero-image{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0b0b0b;
}

.image-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  color:#5f5f5f;
  font-size:18px;
  line-height:1.8;
  letter-spacing:1px;

  padding:40px;
}

/* =========================================
   KONTAKT - TRENING PERSONALNY
========================================= */

.training-contact-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:140px 6%;
}

.training-contact-container{
  width:100%;
  max-width:820px;
}

.offer-label{
  color:#777;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
}

.training-contact-container h1{
  font-size:72px;
  line-height:1;
  margin:24px 0 30px;
}

.contact-description{
  color:#b5b5b5;
  font-size:20px;
  line-height:1.8;
  max-width:720px;
}

.contact-card{
  margin-top:50px;

  background:#0d0d0d;
  border:1px solid #1f1f1f;
  border-radius:28px;

  padding:34px;

  display:flex;
  gap:26px;
}

.contact-card-icon{
  width:82px;
  height:82px;

  min-width:82px;

  border-radius:22px;
  background:#121212;
  border:1px solid #232323;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:20px;

  align-self:center;
}

.contact-card-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0.9;
}

.contact-card-content{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-card-content span{
  color:#7d7d7d;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.contact-card-content a{
  color:white;
  text-decoration:none;
  font-size:28px;
  font-weight:600;
  line-height:1.4;
  transition:0.3s;
}

.contact-card-content a:hover{
  opacity:0.75;
}

.contact-note{
  margin-top:34px;

  background:#101010;
  border:1px solid #242424;
  border-radius:24px;

  padding:34px;
}

.contact-note p{
  color:white;
  margin-bottom:20px;
  font-size:20px;
  font-weight:600;
  line-height:1.5;
  letter-spacing:-0.02em;
}

.contact-note ul{
  padding-left:22px;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-note li{
  color:#b8b8b8;
  line-height:1.9;
  font-size:17px;
}

.secondary-button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  width:fit-content;

  margin:38px auto 0;

  background:white;
  color:black;

  text-decoration:none;

  padding:18px 28px;
  border-radius:16px;

  font-weight:600;

  transition:0.3s;
}

.secondary-button:hover{
  transform:translateY(-2px);
  opacity:0.92;
}

@media(max-width:1000px){

  .training-contact-page{
    padding:120px 6%;
  }

  .training-contact-container h1{
    font-size:48px;
  }

  .contact-description{
    font-size:18px;
  }

  .contact-card{
    flex-direction:column;
    align-items:flex-start;
    padding:28px;
  }

  .contact-card-content a{
    font-size:17.5px;
    word-break:break-word;
  }

  .contact-note{
    padding:28px;
  }

  .secondary-button{
    width:100%;
    text-align:center;
  }

}

.bigger-icon{
  transform:scale(1.3);
}

/* =========================================
   MOBILE PRICING SLIDER
========================================= */

@media(max-width:1000px){

  .pricing-slider-wrapper{
    position:relative;
    width:100%;
  }

.pricing-grid{
  display:flex;
  gap:18px;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;

  padding-top:10px;
  padding-bottom:10px;

  scrollbar-width:none;
}
  .pricing-grid::-webkit-scrollbar{
    display:none;
  }

  .pricing-card{
    min-width:88%;
    flex:0 0 88%;

    scroll-snap-align:center;
  }

  .pricing-card{
  scroll-margin-left:6%;
}

  .highlighted{
    transform:none;
  }

  .highlighted:hover{
    transform:translateY(-8px);
  }

}

/* =========================================
   MOBILE PROCESS SLIDER
========================================= */

@media(max-width:1000px){

.process-wrapper{
  display:flex;
  flex-direction:row;

  align-items:flex-start;

  gap:18px;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;

  padding-top:10px;
  padding-bottom:10px;

  scrollbar-width:none;
}

  .process-wrapper::-webkit-scrollbar{
    display:none;
  }

.process-card,
.process-summary{
  min-width:86%;
  flex:0 0 86%;

  scroll-snap-align:start;
}

  .process-card{
    scroll-margin-left:6%;
  }

}

@media(max-width:1000px){

  .tooltip-text{
    white-space:normal;
    word-break:break-word;
  }

}

/* =========================================
   FOOTER
========================================= */

.site-footer{
  padding:40px 6% 50px;
  border-top:1px solid #161616;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:18px;

  margin-top:80px;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-links a{
  color:#6f6f6f;
  text-decoration:none;
  font-size:14px;
  transition:0.25s ease;
}

.footer-links a:hover{
  color:#ffffff;
}

.site-footer p{
  color:#4f4f4f;
  font-size:13px;
  letter-spacing:0.02em;
  text-align:center;
}

@media(max-width:1000px){

  .site-footer{
    padding:34px 6% 42px;
    gap:16px;
    margin-top:60px;
  }

  .footer-links{
    gap:18px;
  }

  .footer-links a{
    font-size:13px;
  }

  .site-footer p{
    font-size:12px;
    line-height:1.6;
  }

}

/* =========================================
   LEGAL PAGES
========================================= */

.legal-page{
  min-height:100vh;
  padding:160px 6% 120px;
}

.legal-container{
  width:100%;
  max-width:920px;
  margin:0 auto;
}

.legal-page h1{
  font-size:64px;
  line-height:1.05;
  margin:22px 0 60px;
}

.legal-content{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.legal-content h2{
  font-size:30px;
  line-height:1.3;
  margin-bottom:18px;
}

.legal-content p{
  color:#b3b3b3;
  font-size:17px;
  line-height:1.95;
}

.legal-content ul{
  padding-left:24px;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.legal-content li{
  color:#b3b3b3;
  font-size:17px;
  line-height:1.9;
}

@media(max-width:1000px){

  .legal-page{
    padding:130px 6% 90px;
  }

  .legal-page h1{
    font-size:46px;
    margin:20px 0 42px;
  }

  .legal-content{
    gap:28px;
  }

  .legal-content h2{
    font-size:25px;
    margin-bottom:14px;
  }

  .legal-content p,
  .legal-content li{
    font-size:16px;
    line-height:1.85;
  }

}

/* =========================================
   HEADER ACTIONS
========================================= */

.menu-toggle{
  margin-left:auto;

  width:46px;
  height:46px;

  border:none;
  border-radius:50%;

  background:#111;
  border:1px solid #232323;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:5px;

  cursor:pointer;

  transition:0.25s ease;
}

.menu-toggle:hover{
  background:#171717;
}

.menu-toggle span{
  width:16px;
  height:1.5px;
  background:white;
  border-radius:999px;
}

.dropdown-menu{
  position:absolute;

  top:88px;
  right:6%;

  width:220px;

  background:#0d0d0d;
  border:1px solid #222;

  border-radius:22px;

  padding:14px;

  display:flex;
  flex-direction:column;
  gap:8px;

  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  z-index:2000;
}

.dropdown-menu.active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  text-decoration:none;
  color:#d2d2d2;

  padding:14px 16px;

  border-radius:14px;

  transition:0.25s ease;
}

.dropdown-menu a:hover{
  background:#151515;
  color:white;
}

/* =========================================
   HOME BUTTON
========================================= */

.home-button{
  margin-left:auto;

  width:46px;
  height:46px;

  border-radius:50%;

  background:#111;
  border:1px solid #232323;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.25s ease;
}

.home-button:hover{
  background:#171717;
  transform:translateY(-1px);
}

/* =========================================
   SCROLL TO TOP
========================================= */

.scroll-top-btn{
  position:fixed;

  top:92px;
  left:50%;

  transform:translateX(-50%) translateY(-12px);

  width:42px;
  height:42px;

  border:none;
  border-radius:50%;

  background:#181818;
  border:1px solid #2a2a2a;

  color:white;
  font-size:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  opacity:0;
  visibility:hidden;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  z-index:3000;
}

.scroll-top-btn.active{
  opacity:1;
  visibility:visible;

  transform:translateX(-50%) translateY(0);
}

@media(min-width:1001px){

  .scroll-top-btn{
    display:none;
  }

}

/* =========================================
   MOBILE TYPOGRAPHY FIX
========================================= */

@media(max-width:1000px){

  body{
    overflow-x:hidden;
  }

  html{
    overflow-x:hidden;
  }

  .hero h1{
    font-size:38px;
    line-height:1.08;
  }

  .hero p{
    font-size:17px;
    line-height:1.65;
  }

  .section h2,
  .cta h2{
    font-size:36px;
    line-height:1.15;
  }

  .card h3,
  .process-content h3,
  .process-summary h3{
    font-size:24px;
    line-height:1.25;
  }

  .card p,
  .process-content p,
  .process-summary p,
  .info-block p,
  .pricing-card li,
  .small{
    font-size:15px;
    line-height:1.75;
  }

  .price{
    font-size:46px;
  }

  .price-small{
    font-size:15px;
  }

  .details-btn,
  .structure-btn,
  .secondary-button,
  .download-btn{
    font-size:14px;
  }

.contact-description,
.contact-note p,
.contact-note li,
.legal-content p,
.legal-content li{
  font-size:15px;
  line-height:1.8;
}

  .training-contact-container h1,
  .legal-page h1{
    font-size:42px;
  }

  .legal-content h2{
    font-size:23px;
  }

  .tooltip-text{
    font-size:13px;
  }

}

@media(max-width:1000px){

  .primary-btn,
  .secondary-btn,
  .structure-btn,
  .details-btn,
  .secondary-button,
  .download-btn{
    font-size:14px;
    padding:15px 22px;
  }

  .structure-btn{
    white-space:nowrap;
  }

}