*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f5f8fc;
  color:#07111f;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* MENU */
.nav{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:18px 55px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.logo{
  display:flex;
  align-items:center;
  white-space:nowrap;
}

.logo svg{
  height:70px;
  width:auto;
  display:block;
}

nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  background:#f3f7ff;
  padding:7px;
  border-radius:40px;
}

nav a{
  color:#111;
  font-size:13px;
  font-weight:1000;
  text-transform:uppercase;
  padding:11px 15px;
  border-radius:30px;
  transition:.25s;
}

nav a:hover,
nav a.active{
  background:#075bd8;
  color:#fff;
  transform:translateY(-2px);
}

.phone{
  background:#075bd8;
  color:#fff;
  padding:14px 24px;
  border-radius:45px;
  font-size:22px;
  font-weight:1000;
  box-shadow:0 12px 28px rgba(7,91,216,.25);
  white-space:nowrap;
}

.menu-toggle{
  display:none;
  border:0;
  background:#075bd8;
  color:#fff;
  width:48px;
  height:48px;
  border-radius:14px;
  font-size:26px;
  font-weight:1000;
  cursor:pointer;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  padding:85px 65px 100px;
  background:#fff;
}

.tag,
.section-tag{
  color:#075bd8;
  font-size:15px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:15px;
  text-align:center;
}

.hero .tag{
  text-align:left;
}

.hero-text h1{
  font-size:88px;
  line-height:.9;
  letter-spacing:-3px;
  font-weight:1000;
  margin-bottom:24px;
}

.hero-text h1 span{
  color:#075bd8;
}

.lead{
  font-size:28px;
  line-height:1.35;
  color:#27384d;
  margin-bottom:28px;
}

.hero-text ul{
  list-style:none;
  display:grid;
  gap:14px;
  margin-bottom:32px;
}

.hero-text li{
  font-size:21px;
  font-weight:800;
  padding-left:35px;
  position:relative;
  color:#15263c;
}

.hero-text li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:-2px;
  width:25px;
  height:25px;
  border-radius:50%;
  background:#075bd8;
  color:#fff;
  display:grid;
  place-items:center;
}

.buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:17px 30px;
  border-radius:45px;
  font-size:18px;
  font-weight:1000;
  text-transform:uppercase;
  transition:.25s;
}

.btn:hover{
  transform:translateY(-3px);
}

.primary{
  background:#075bd8;
  color:#fff;
  box-shadow:0 14px 28px rgba(7,91,216,.28);
}

.outline{
  background:#fff;
  color:#075bd8;
  border:2px solid #075bd8;
}

.hero-photo{
  position:relative;
}

.hero-photo img{
  height:570px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:0 28px 60px rgba(0,0,0,.18);
}

.circle{
  position:absolute;
  left:-35px;
  bottom:35px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:#075bd8;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:23px;
  line-height:1.12;
  font-weight:1000;
  text-transform:uppercase;
  border:7px solid #fff;
  box-shadow:0 16px 35px rgba(0,0,0,.22);
}

/* SEKCJE */
.services,
.process,
.video,
.reviews-section,
.before-after-slider-section{
  padding:90px 55px;
}

.services,
.process{
  max-width:1400px;
  margin:auto;
}

.services h2,
.video h2,
.reviews-section h2,
.process h2,
.before-after-slider-section h2{
  font-size:58px;
  text-align:center;
  font-weight:1000;
  margin-bottom:50px;
  letter-spacing:-2px;
}

.services h2::after,
.video h2::after,
.reviews-section h2::after,
.process h2::after,
.before-after-slider-section h2::after{
  content:"";
  width:90px;
  height:5px;
  background:#075bd8;
  display:block;
  margin:18px auto 0;
  border-radius:10px;
}

/* USŁUGI */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  border-bottom:7px solid #075bd8;
  transition:.25s;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,.13);
}

.card img{
  height:320px;
  object-fit:cover;
}

.icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:#075bd8;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:38px;
  font-weight:1000;
  margin:-42px 0 25px 42px;
  border:7px solid #fff;
  box-shadow:0 12px 26px rgba(7,91,216,.25);
  position:relative;
  z-index:2;
}

.card h3{
  padding:0 42px;
  color:#075bd8;
  font-size:32px;
  line-height:1.15;
  text-transform:uppercase;
  font-weight:1000;
  margin-bottom:18px;
}

.card p{
  padding:0 42px 20px;
  font-size:20px;
  line-height:1.45;
  color:#2d3d53;
}

.card ul{
  list-style:none;
  padding:0 42px 42px;
  display:grid;
  gap:10px;
}

.card li{
  font-size:18px;
  font-weight:800;
  color:#14243a;
  padding-left:27px;
  position:relative;
}

.card li:before{
  content:"✔";
  position:absolute;
  left:0;
  color:#075bd8;
  font-weight:1000;
}

/* BENEFITY */
.benefits{
  background:#075bd8;
  color:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}

.benefits div{
  padding:32px 15px;
  font-size:22px;
  font-weight:1000;
  border-right:1px solid rgba(255,255,255,.25);
}

.benefits div:last-child{
  border-right:0;
}

/* DLACZEGO */
.why{
  padding:95px 65px;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:50px;
  align-items:start;
  background:#fff;
}

.why-text .section-tag{
  text-align:left;
}

.why-text h2{
  font-size:58px;
  line-height:1.05;
  font-weight:1000;
  margin-bottom:25px;
  letter-spacing:-2px;
}

.why-text h2 span{
  color:#075bd8;
}

.why-text p:not(.section-tag){
  font-size:21px;
  line-height:1.7;
  color:#2d3d53;
  margin-bottom:20px;
}

.why-box{
  background:#f7faff;
  border:1px solid #e2ebf8;
  border-radius:30px;
  padding:40px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.why-box h3{
  font-size:40px;
  color:#075bd8;
  margin-bottom:25px;
  font-weight:1000;
}

.why-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.why-list div{
  background:#fff;
  border-radius:22px;
  padding:25px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.why-list b{
  color:#075bd8;
  font-size:28px;
  font-weight:1000;
}

.why-list h4{
  font-size:22px;
  margin:10px 0;
}

.why-list p{
  font-size:17px;
  line-height:1.5;
  color:#34445a;
}

/* PROCES */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.process-grid div{
  background:#fff;
  border-radius:26px;
  padding:34px 28px;
  box-shadow:0 18px 38px rgba(0,0,0,.08);
  border-top:6px solid #075bd8;
}

.process-grid span{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#075bd8;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
  font-weight:1000;
  margin-bottom:20px;
}

.process-grid h3{
  font-size:28px;
  color:#075bd8;
  margin-bottom:12px;
}

.process-grid p{
  font-size:18px;
  line-height:1.5;
  color:#34445a;
}

/* VIDEO */
.video{
  background:#fff;
  text-align:center;
}

.video iframe{
  width:100%;
  max-width:1100px;
  height:620px;
  border:0;
  border-radius:30px;
  box-shadow:0 25px 55px rgba(0,0,0,.16);
  background:#000;
}

/* SLIDER PRZED / PO */
.before-after-slider-section{
  background:#f5f8fc;
  text-align:center;
}

.slider-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.compare-box{
  background:#fff;
  border-radius:28px;
  padding:22px;
  box-shadow:0 20px 45px rgba(0,0,0,.09);
}

.compare-box h3{
  font-size:23px;
  color:#075bd8;
  margin-bottom:18px;
  font-weight:1000;
  text-transform:uppercase;
}

.compare{
  position:relative;
  height:360px;
  overflow:hidden;
  border-radius:22px;
  user-select:none;
}

.compare img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.after-wrap{
  position:absolute;
  inset:0;
  width:50%;
  overflow:hidden;
}

.label{
  position:absolute;
  top:14px;
  padding:8px 12px;
  border-radius:10px;
  font-size:12px;
  font-weight:1000;
  color:#fff;
  z-index:5;
}

.before-label{
  left:14px;
  background:#111;
}

.after-label{
  right:14px;
  background:#075bd8;
}

.slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
  z-index:10;
}

.slider-line{
  position:absolute;
  top:0;
  left:50%;
  width:4px;
  height:100%;
  background:#fff;
  z-index:6;
  transform:translateX(-50%);
}

.slider-line:before{
  content:"↔";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  background:#075bd8;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:25px;
  font-weight:1000;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
  border:4px solid #fff;
}

/* OPINIE */
.reviews-section{
  background:#fff;
}

.reviews-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review{
  background:#f7faff;
  border:1px solid #e4edf8;
  border-radius:26px;
  padding:32px;
  box-shadow:0 14px 32px rgba(0,0,0,.07);
}

.review div{
  color:#ffb400;
  font-size:28px;
  margin-bottom:16px;
}

.review p{
  font-size:19px;
  line-height:1.55;
  color:#2d3d53;
  margin-bottom:18px;
}

.review span{
  font-size:16px;
  font-weight:1000;
  color:#111;
}

/* CTA */
.cta{
  margin:0 auto;
  max-width:1400px;
  background:linear-gradient(90deg,#075bd8,#003d9b);
  color:#fff;
  border-radius:30px;
  padding:48px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  box-shadow:0 22px 50px rgba(7,91,216,.28);
}

.cta h2{
  font-size:42px;
  margin-bottom:10px;
}

.cta p{
  font-size:22px;
}

.cta-contact{
  display:grid;
  gap:8px;
  text-align:right;
}

.cta-contact a{
  color:#fff;
  font-size:36px;
  font-weight:1000;
}

.cta-contact span{
  font-size:18px;
  font-weight:800;
}

/* FORMULARZ */
.premium-form-section{
  padding:95px 55px;
  background:linear-gradient(135deg,#f5f8fc,#ffffff);
}

.form-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:38px;
  align-items:center;
}

.form-left{
  background:#075bd8;
  color:#fff;
  padding:45px;
  border-radius:32px;
  box-shadow:0 24px 55px rgba(7,91,216,.25);
}

.form-left .section-tag{
  color:#fff;
  opacity:.9;
  text-align:left;
}

.form-left h2{
  font-size:48px;
  line-height:1.05;
  margin:10px 0 18px;
}

.form-left p{
  font-size:21px;
  line-height:1.55;
  opacity:.95;
}

.form-points{
  margin-top:28px;
  display:grid;
  gap:14px;
}

.form-points span{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  padding:14px 16px;
  border-radius:16px;
  font-size:18px;
  font-weight:900;
}

.premium-form{
  background:#fff;
  padding:38px;
  border-radius:32px;
  box-shadow:0 20px 45px rgba(0,0,0,.09);
  display:grid;
  gap:16px;
  border:1px solid #e4edf8;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.premium-form input,
.premium-form textarea,
.premium-form select{
  width:100%;
  padding:17px 18px;
  border:1px solid #dbe6f5;
  border-radius:16px;
  font-size:16px;
  outline:none;
  background:#f9fbff;
}

.premium-form textarea{
  min-height:155px;
  resize:vertical;
}

.premium-form input:focus,
.premium-form textarea:focus,
.premium-form select:focus{
  border-color:#075bd8;
  box-shadow:0 0 0 4px rgba(7,91,216,.08);
  background:#fff;
}

.rodo-check{
  display:flex;
  gap:10px;
  text-align:left;
  font-size:14px;
  color:#2d3d53;
  line-height:1.4;
}

.rodo-check input{
  width:auto;
  margin-top:3px;
}

.premium-form button{
  border:0;
  background:#075bd8;
  color:#fff;
  padding:18px 24px;
  border-radius:45px;
  font-size:19px;
  font-weight:1000;
  cursor:pointer;
  display:grid;
  gap:4px;
  transition:.25s;
}

.premium-form button small{
  font-size:12px;
  font-weight:700;
  opacity:.85;
}

.premium-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(7,91,216,.25);
}

/* REGULAMIN */
.legal-pro{
  max-width:1180px;
  margin:80px auto;
  padding:55px 35px;
  background:linear-gradient(135deg,#ffffff,#f5f8fc);
  border-radius:32px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
  border:1px solid #e4edf8;
  color:#07111f;
}

.legal-pro h2{
  font-size:44px;
  text-align:center;
  color:#07111f;
  margin-bottom:18px;
  font-weight:1000;
}

.legal-intro{
  max-width:780px;
  margin:0 auto 35px;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  color:#2d3d53;
}

.legal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.legal-grid details{
  background:#fff;
  border-radius:24px;
  padding:26px;
  box-shadow:0 16px 35px rgba(0,0,0,.08);
  border:1px solid #e4edf8;
}

.legal-grid summary{
  cursor:pointer;
  color:#075bd8;
  font-size:24px;
  font-weight:1000;
  margin-bottom:18px;
}

.legal-grid p{
  font-size:16px;
  line-height:1.65;
  color:#2d3d53;
  margin-bottom:14px;
}

.legal-grid b{
  color:#07111f;
  font-weight:1000;
}

/* FOOTER */
.footer{
  margin-top:70px;
  background:#0b111a;
  color:#fff;
  padding:55px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:35px;
}

.footer h4{
  margin-bottom:15px;
  text-transform:uppercase;
}

.footer p{
  color:#d9e4f2;
  margin:9px 0;
}

.footer-logo{
  font-size:42px;
  font-weight:1000;
  line-height:.95;
}

.footer-logo span{
  color:#075bd8;
}

.footer-logo small{
  display:block;
  margin-top:10px;
  font-size:14px;
  text-transform:uppercase;
  color:#d9e4f2;
}

.footer a{
  color:#8dbbff;
  font-weight:900;
  text-decoration:none;
}

.footer a:hover{
  color:#fff;
  text-decoration:underline;
}

.footer-links{
  grid-column:1 / -1;
  text-align:center;
  margin-top:15px;
}

/* TELEFON FLOATING */
.floating-phone{
  position:fixed;
  right:22px;
  bottom:22px;
  width:68px;
  height:68px;
  border-radius:50%;
  background:#075bd8;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:32px;
  box-shadow:0 14px 34px rgba(7,91,216,.38);
  z-index:999;
}

/* COOKIES */
.cookie{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  background:#0b111a;
  color:#fff;
  padding:18px 22px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  max-width:900px;
  width:calc(100% - 30px);
  z-index:9999;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.cookie p{
  font-size:14px;
  line-height:1.45;
}

.cookie-buttons{
  display:flex;
  gap:10px;
}

.cookie button{
  border:0;
  padding:10px 16px;
  border-radius:10px;
  font-weight:900;
  cursor:pointer;
}

#acceptCookies{
  background:#075bd8;
  color:#fff;
}

#declineCookies{
  background:#444;
  color:#fff;
}

/* RESPONSYWNOŚĆ */
@media(max-width:1100px){
  .nav{
    flex-wrap:wrap;
    justify-content:center;
    padding:18px 25px;
  }

  .hero,
  .why,
  .form-wrap{
    grid-template-columns:1fr;
  }

  .cards,
  .reviews-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid,
  .benefits{
    grid-template-columns:repeat(2,1fr);
  }

  .slider-grid,
  .legal-grid{
    grid-template-columns:1fr;
  }

  .footer,
  .cta{
    display:grid;
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-contact{
    text-align:center;
  }
}

@media(max-width:720px){
  .nav{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    padding:14px 20px;
  }

  .logo svg{
    height:58px;
  }

  .menu-toggle{
    display:block;
  }

  nav{
    display:none;
    grid-column:1 / -1;
    width:100%;
    background:#f3f7ff;
    padding:12px;
    border-radius:20px;
  }

  nav.open{
    display:grid;
    gap:8px;
  }

  nav a{
    width:100%;
    text-align:center;
    font-size:12px;
  }

  .phone{
    grid-column:1 / -1;
    width:100%;
    text-align:center;
    font-size:20px;
  }

  .hero{
    grid-template-columns:1fr;
    padding:45px 20px;
  }

  .hero .tag{
    text-align:center;
  }

  .hero-text h1{
    font-size:54px;
    text-align:center;
  }

  .lead{
    font-size:20px;
    text-align:center;
  }

  .hero-text li{
    font-size:17px;
  }

  .buttons{
    display:grid;
  }

  .hero-photo img{
    height:340px;
  }

  .circle{
    width:120px;
    height:120px;
    font-size:16px;
    left:12px;
    bottom:12px;
  }

  .services,
  .video,
  .why,
  .process,
  .reviews-section,
  .before-after-slider-section,
  .premium-form-section{
    padding:55px 20px;
  }

  .services h2,
  .video h2,
  .reviews-section h2,
  .process h2,
  .why-text h2,
  .before-after-slider-section h2{
    font-size:38px;
  }

  .cards,
  .benefits,
  .process-grid,
  .reviews-grid,
  .why-list,
  .form-grid{
    grid-template-columns:1fr;
  }

  .card img{
    height:300px;
  }

  .card h3{
    font-size:27px;
  }

  .card p,
  .why-text p:not(.section-tag){
    font-size:18px;
  }

  .why-box,
  .form-left,
  .premium-form{
    padding:28px 20px;
  }

  .video iframe{
    height:300px;
  }

  .compare{
    height:320px;
  }

  .cta{
    margin:0 20px;
    padding:35px 20px;
  }

  .cta h2{
    font-size:30px;
  }

  .cta-contact a{
    font-size:26px;
  }

  .legal-pro{
    margin:50px 15px;
    padding:35px 20px;
  }

  .legal-pro h2{
    font-size:32px;
  }

  .footer{
    padding:40px 20px;
  }

  .cookie{
    flex-direction:column;
    text-align:center;
  }
}
.seo-pro{
  max-width:1200px;
  margin:80px auto;
  padding:55px 35px;
  background:#fff;
  border-radius:32px;
  box-shadow:0 25px 60px rgba(0,0,0,.10);
  border:1px solid #e4edf8;
}

.seo-pro h2{
  text-align:center;
  font-size:44px;
  font-weight:1000;
  margin-bottom:35px;
  color:#07111f;
}

.seo-pro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.seo-pro-grid div{
  background:#f7faff;
  padding:28px;
  border-radius:24px;
  border:1px solid #e4edf8;
}

.seo-pro-grid h3{
  color:#075bd8;
  font-size:24px;
  margin-bottom:14px;
}

.seo-pro-grid p{
  color:#2d3d53;
  font-size:17px;
  line-height:1.65;
}

@media(max-width:900px){
  .seo-pro{
    margin:50px 15px;
    padding:35px 20px;
  }

  .seo-pro h2{
    font-size:32px;
  }

  .seo-pro-grid{
    grid-template-columns:1fr;
  }
}
/* SEO PRO SECTION */
.seo-pro{
  padding:90px 55px;
  background:#ffffff;
  text-align:center;
}

.seo-pro h2{
  font-size:52px;
  font-weight:1000;
  margin-bottom:40px;
  letter-spacing:-2px;
}

.seo-pro-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.seo-pro-grid div{
  background:#f7faff;
  border:1px solid #e4edf8;
  border-radius:24px;
  padding:28px;
  box-shadow:0 14px 32px rgba(0,0,0,.06);
  text-align:left;
}

.seo-pro-grid h3{
  font-size:24px;
  color:#075bd8;
  margin-bottom:12px;
  font-weight:1000;
}

.seo-pro-grid p{
  font-size:17px;
  line-height:1.6;
  color:#2d3d53;
}

/* MOBILE */
@media(max-width:1100px){
  .seo-pro-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:720px){
  .seo-pro{
    padding:55px 20px;
  }

  .seo-pro h2{
    font-size:34px;
  }

  .seo-pro-grid{
    grid-template-columns:1fr;
  }
}