:root{
  --bg:#0b0b0d;
  --card:#151518;
  --card2:#1b1b20;
  --text:#ffffff;
  --muted:#cfcfcf;
  --line:#34343b;
  --accent:#9f1010;
  --accent-border:#ff2b2b;
  --accent-dark:#760c0c;
  --max:1100px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(159,16,16,.18), transparent 32%),
    linear-gradient(180deg,#0a0a0c 0%, #111116 100%);
  color:var(--text);
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

.wrap{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(10,10,12,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid #202028;
}

.topbar-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:25px;
  letter-spacing:1px;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(180deg,var(--accent),var(--accent-dark));
  border:1px solid var(--accent-border);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.nav a{
  font-size:14px;
  color:#f3f3f3;
  opacity:.92;
}

.nav a:hover{
  opacity:1;
}

.btn{
  display:inline-block;
  padding:14px 20px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--line);
  transition:.2s ease;
}

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

.btn-primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-dark));
  border-color:var(--accent-border);
  color:#fff;
}

.btn-secondary{
  background:#17171c;
  color:#fff;
}

.hero{
  padding:78px 0 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}

.hero-copy,
.hero-panel,
.card,
.cta{
  background:linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 14px 40px rgba(0,0,0,.22);
}

.hero-copy{
  padding:36px;
}

.hero-panel{
  padding:26px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 12px;
  font-size:12px;
  font-weight:900;
  border-radius:999px;
  background:#191920;
  border:1px solid #31313a;
  letter-spacing:.5px;
  text-transform:uppercase;
}

h1{
  margin:0 0 16px;
  font-size:48px;
  line-height:1.05;
}

.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:26px;
}

.hero-point,
.feature-line{
  background:#101015;
  border:1px solid #292933;
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
}

.section{
  padding:34px 0;
}

.section-head{
  margin-bottom:20px;
}

.section-head h2{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.1;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

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

.card{
  padding:24px;
}

.card h3{
  margin:0 0 10px;
  font-size:23px;
}

.card p{
  margin:0;
  color:var(--muted);
}

.list{
  margin:0;
  padding-left:20px;
}

.list li{
  margin-bottom:8px;
}

.price-box{
  text-align:center;
  padding:34px;
}

.price-main{
  font-size:54px;
  line-height:1;
  font-weight:900;
  margin-bottom:8px;
}

.price-sub{
  color:var(--muted);
  margin-bottom:18px;
}

.faq{
  display:grid;
  gap:12px;
}

details{
  background:linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px 18px;
}

summary{
  cursor:pointer;
  font-weight:900;
}

details p{
  margin:12px 0 0;
  color:var(--muted);
}

.cta{
  padding:34px;
  text-align:center;
}

.cta h2{
  margin:0 0 10px;
  font-size:34px;
}

.cta p{
  margin:0 auto 20px;
  max-width:760px;
  color:var(--muted);
  font-size:17px;
}

footer{
  margin-top:34px;
  border-top:1px solid #22222b;
  padding:28px 0 42px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:20px;
}

.footer-title{
  font-weight:900;
  margin-bottom:8px;
}

.muted{
  color:var(--muted);
}

.small{
  font-size:14px;
}

@media (max-width:900px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:38px;
  }

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

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

@media (max-width:600px){
  .topbar-inner{
    align-items:flex-start;
    flex-direction:column;
    padding:14px 0;
  }

  .brand{
    font-size:23px;
  }

  .brand-mark{
    width:35px;
    height:35px;
    border-radius:10px;
  }

  .nav{
    width:100%;
    justify-content:flex-start;
  }

  .hero{
    padding:38px 0 26px;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .cta{
    padding:20px;
  }

  h1{
    font-size:31px;
  }

  .lead{
    font-size:16px;
  }

  .hero-actions .btn,
  .cta .btn{
    width:100%;
    text-align:center;
  }

  .price-main{
    font-size:42px;
  }
} 

  /* Instrukcja krok po kroku */

.guide-page{
  padding:28px 0;
}

.guide-intro{
  background:linear-gradient(180deg,#17171d,#101015);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  margin-bottom:18px;
}

.guide-intro h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.1;
}

.guide-intro p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.guide-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}

.guide-tile{
  background:linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  cursor:pointer;
  transition:.2s ease;
}

.guide-tile:hover{
  transform:translateY(-2px);
  border-color:#4a4a55;
}

.guide-tile h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.2;
}

.guide-tile p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.35;
}

.guide-player{
  background:linear-gradient(180deg,#17171d,#101015);
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
}

.guide-player.hidden{
  display:none;
}

.guide-intro.hidden,
.guide-grid.hidden{
  display:none;
}

.guide-player-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.guide-badge{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#191920;
  border:1px solid #31313a;
  font-size:12px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.guide-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 430px;
  gap:22px;
  align-items:start;
}

.guide-copy{
  background:#111116;
  border:1px solid #2d2d37;
  border-radius:20px;
  padding:22px;
}

.guide-copy h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.15;
}

.guide-copy p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:17px;
}

.guide-note{
  background:#17171d;
  border:1px solid #2f2f39;
  border-radius:14px;
  padding:14px;
  font-size:15px;
  line-height:1.45;
}

.guide-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.guide-mobile-actions{
  display:none;
}

.phone{
  width:100%;
  max-width:420px;
  margin:0 auto;
  background:#0a0a0d;
  border:1px solid #34343b;
  border-radius:34px;
  padding:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.phone-top{
  height:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:10px;
}

.phone-notch{
  width:120px;
  height:6px;
  border-radius:999px;
  background:#2c2c35;
}

.phone-screen{
  height:640px;
  background:#e9e9ea;
  color:#111;
  border-radius:26px;
  overflow:auto;
  position:relative;
  scrollbar-width:thin;
}

.mock-app{
  min-height:100% !important;
  padding:18px;
  background:#ececed;
  color:#111;
  position:relative;
}

.mock-dark{
  background:linear-gradient(180deg,#0b6f7a,#12aeb2);
  color:#fff;
}

.mock-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.mock-card{
  width:100%;
  background:#111318;
  color:#fff;
  border:1px solid #313744;
  border-radius:16px;
  padding:16px;
  margin-top:14px;
  text-align:left;
}

.mock-btn{
  width:100%;
  margin-top:12px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #ff2b2b;
  background:#9f1010;
  color:#fff;
  font-weight:900;
  text-align:center;
}

.mock-btn.alt{
  border:1px solid #34343b;
  background:#17171c;
  color:#fff;
}

.mock-field{
  width:100%;
  margin-top:12px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #34343b;
  background:#17171c;
  color:#fff;
  font-weight:700;
  text-align:left;
}

.mock-pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#191920;
  border:1px solid #34343b;
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.mock-highlight{
  outline:3px solid #ffb020;
  outline-offset:3px;
  animation:mockPulse 1.1s infinite;
}

@keyframes mockPulse{
  0%{ outline-color:rgba(255,176,32,1); }
  50%{ outline-color:rgba(255,176,32,.35); }
  100%{ outline-color:rgba(255,176,32,1); }
}

@media (max-width:1000px){
  .guide-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .guide-layout{
    grid-template-columns:1fr;
  }

  .phone{
    order:1;
    max-width:390px;
  }

  .guide-copy{
    order:2;
  }
}

@media (max-width:600px){
  .guide-page{
    padding:14px 0;
  }

  .guide-intro{
    padding:16px;
    border-radius:18px;
  }

  .guide-intro h1{
    font-size:25px;
  }

  .guide-intro p{
    font-size:15px;
  }

  .guide-grid{
    grid-template-columns:1fr;
  }

  .guide-tile{
    padding:16px;
  }

  .guide-player{
    padding:12px;
    border-radius:18px;
    padding-bottom:88px;
  }

  .guide-player-top{
    margin-bottom:12px;
  }

  .guide-layout{
    gap:12px;
  }

  .phone{
    max-width:340px;
    padding:10px;
    border-radius:28px;
  }

  .phone-screen{
    height:calc(100vh - 190px);
    min-height:430px;
    max-height:560px;
    border-radius:22px;
  }

  .mock-app{
    min-height:100% !important;
    padding:14px;
  }

  .guide-copy{
    padding:16px;
  }

  .guide-copy h3{
    font-size:22px;
  }

  .guide-copy p{
    font-size:15px;
  }

  .guide-actions{
    display:none;
  }

  .guide-mobile-actions{
    position:fixed;
    left:12px;
    right:12px;
    bottom:10px;
    z-index:80;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:10px;
    border-radius:18px;
    border:1px solid #34343b;
    background:rgba(10,10,12,.92);
    backdrop-filter:blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,.45);
  }

  .guide-mobile-actions .btn{
    width:100%;
    padding:14px 12px;
  }

}
