:root{
  /* landing hero blues */
  --blue1:#2f66c8;
  --blue2:#4b7fe0;
  --blue3:#2d5fbe;

  /* CTA green */
  --cta1:#4CA818;
  --cta2:#2D771B;

  /* kontakt */
  --k-gap: 28px;
  --k-radius: 14px;
  --k-shadow: 0 10px 30px rgba(0,0,0,.06);
}


html,body{ overflow-x:hidden; }

/* CTA button (override main.css if needed) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn--green{
  background: linear-gradient(180deg, var(--cta1), var(--cta2));
  color: #fff;
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    0 14px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}

.btn--green:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn--green:active{
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn--green:focus-visible{
  outline: none;
  box-shadow:
    0 14px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 0 3px rgba(255,255,255,.22);
}

/* HEADER: tylko logo, bez sticky */
.topbar{
  height: 72px;
  display:flex;
  align-items:center;
  background: linear-gradient(
    135deg,
    rgba(25, 45, 95, 0.95),
    rgba(45, 85, 170, 0.95) 55%,
    rgba(30, 70, 150, 0.95)
  );
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.topbar__inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.logo{display:inline-flex;align-items:center;text-decoration:none}
.logo__img{
  display:block;
  height: 36px;
  width:auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

/* Header contact – cleaner, more premium */
.topbar__contact{
  display:flex;
  align-items:center;
  margin-left: auto;
}

.topbar__email{
  display:inline-flex;
  align-items:center;
  gap: 0;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  color: rgba(255,255,255,.96);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 8px 18px rgba(0,0,0,.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    background-color .2s ease,
    border-color .2s ease,
    transform .16s ease,
    box-shadow .2s ease,
    color .2s ease;
  white-space: nowrap;
}


.topbar__email:hover{
  color: #fff;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 12px 22px rgba(0,0,0,.16);
}

.topbar__email:focus-visible{
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 20px rgba(0,0,0,.16),
    0 0 0 3px rgba(255,255,255,.18);
}

@media (max-width: 768px){
  .topbar__inner{
    gap: 10px;
  }

  .topbar__email{
    padding: 6px 12px;
    font-size: 12px;
    min-height: auto;
    height: auto;
    width: auto;
  }
}

/* HERO 1:1 jak na podglądzie */
.hero{
  background: linear-gradient(135deg, var(--blue1), var(--blue2) 55%, var(--blue3));
  color:#fff;
  padding: clamp(18px, 2.4vw, 34px) 0; /* ciaśniej i bardziej produktowo */
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}

.hero__copy{
  max-width: 640px;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero::before{
  content:"";
  position:absolute;
  inset: -60px -120px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 60%);
  transform: rotate(10deg);
  pointer-events:none;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr; /* desktop: 2 kolumny */
  gap: 22px;
  align-items:center;
  position:relative;
  z-index:1;
}

.hero__copy h1{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .1px;
  color: #ffffff;
  text-shadow: 0 3px 22px rgba(0,0,0,.35);
  text-wrap: balance;
  max-width: 22ch;
}

.hero__copy h1::after{
  content: "";
  display: block;
  width: clamp(140px, 34vw, 220px);
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.55), rgba(255,255,255,.10));
  box-shadow: 0 1px 10px rgba(0,0,0,.18);
}

.hero__lead{
  margin: 0;
  font-size: 16px;
  line-height:1.6;
  max-width: 60ch;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
  text-wrap: pretty;
}


.hero__visual{
  /* tylko układ kontenera – bez stylowania samego mockupu */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__image{
  display: block; /* usuwa "linijkę"/gap od baseline */
  max-width: 100%;
  height: auto;
  margin: 0; /* zero marginesu nad/pod obrazem */
}

.strip{
  padding: 14px 0 42px;
}

.feature3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(10, 20, 40, .10);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(10, 20, 40, .16);
  overflow: hidden;
}

.fcard{
  padding: 18px 22px 16px; /* mniejszy margines góra/dół wewnątrz sekcji */
  display: grid;
  grid-template-rows: 136px 46px 1fr; /* mniej powietrza */
  justify-items: center;
  align-items: start;
  text-align: center;
  background: rgba(255,255,255,.65);
}

/* pionowe separatory */
.fcard + .fcard{
  border-left: 1px solid rgba(10, 20, 40, .10);
}

  .fcard__icon{
    width: 96px;
    height: 96px;
    padding: 18px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1;
    place-self: center;
    box-sizing: border-box;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.08);
    line-height: 0;
  }

  .fcard__img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

/* =========================================================
   KROKI 1/2/3 – badge zamiast ikon (tylko w sekcji .next)
   ========================================================= */

/* Zmniejsz pierwszy wiersz kafla tylko w "next" (żeby nie było pustej przestrzeni po ikonach) */
.next .feature3 .fcard{
  grid-template-rows: 56px 46px 1fr;
}

.next .feature3 .fcard__step{
  grid-row: 1;
  place-self: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .02em;
  color: rgba(10, 30, 70, .96);
  background: rgba(76, 168, 24, .10);
  border: 1px solid rgba(76, 168, 24, .35);
  box-shadow:
    0 10px 22px rgba(10, 20, 40, .10),
    inset 0 1px 0 rgba(255,255,255,.55);
}

/* Dark mode (jeśli włączysz motyw globalnie) */
.dark .next .feature3 .fcard__step,
[data-theme="dark"] .next .feature3 .fcard__step,
.theme-dark .next .feature3 .fcard__step{
  color: rgba(255,255,255,.92);
  background: rgba(76, 168, 24, .18);
  border-color: rgba(76, 168, 24, .45);
  box-shadow:
    0 12px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10);
}


.fcard h3{
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(10, 30, 70, .96);
  grid-row: 2;
  width: 100%;
  align-self: center;
  line-height: 1.15;
  padding-bottom: 4px;
  text-shadow: 0 1px 6px rgba(10,30,70,.18);
}

.fcard h3::after{
  content:"";
  display:block;
  width: 90%;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(10,30,70,.08),
    rgba(10,30,70,.45),
    rgba(10,30,70,.08)
  );
  box-shadow:
    0 1px 2px rgba(10,30,70,.18),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.fcard p{
  margin: 0 auto;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(10, 25, 55, .78);
  grid-row: 3;
  padding-top: 4px;
  min-height: 3.2em;
}

/* =========================================================
   PRICING: "Wdrożenie i Abonament" (2 kafle jak na screenie)
   ========================================================= */

.pricing{
  padding: 28px 0 54px;
}

.pricing .sectionTitle{
  margin: 0 0 20px 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(10, 30, 70, .95);
  text-align: center;
  position: relative;
  padding: 6px 0;
}

.pricing .sectionTitle::before,
.pricing .sectionTitle::after{
  content:"";
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: clamp(90px, 22vw, 320px);
  background: linear-gradient(90deg, rgba(10,30,70,0), rgba(10,30,70,.20), rgba(10,30,70,0));
}

.pricing .sectionTitle::before{ left: 0; }
.pricing .sectionTitle::after{ right: 0; }

.priceGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Pricing – table layout (variant A) */
.plansWrap{
  margin-top: 14px;
}

/* "Uruchomienie" line uses the same visual language as the table */
.plansTable{
  border: 1px solid rgba(10, 20, 40, .12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 46px rgba(10, 20, 40, .10);
}

.plansTable{
  margin-top: 12px;
}

.plansTable__head,
.plansTable__row{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
}

.cell{
  padding: 14px 14px;
  border-top: 1px solid rgba(10, 20, 40, .10);
  color: rgba(10, 25, 55, .82);
  font-size: 15px;
  line-height: 1.35;
}

.plansTable__head .cell{
  border-top: 0;
  font-weight: 900;
  letter-spacing: .1px;
  background: rgba(10,30,70,.03);
  color: rgba(10, 30, 70, .94);
}

.cell--rowhead{
  font-weight: 800;
  color: rgba(10, 30, 70, .92);
}

/* Delikatne wyróżnienie kolumny Standard (spokojnie, bez "krzyku") */
.isBest{
  background: rgba(76,168,24,.08);
  font-weight: 900;
}

/* Opłata za uruchomienie – pod tabelą (spokojny "note" styl) */
.setupNote{
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px dashed rgba(10, 20, 40, .22);
  border-radius: 16px;
  background: rgba(10,30,70,.02);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.setupNote__label{
  font-weight: 800;
  color: rgba(10, 30, 70, .90);
}

.setupNote__price{
  font-size: 16px;
  color: rgba(10, 30, 70, .96);
}

/* Mobile: scroll zamiast ściskania kolumn */
@media (max-width: 720px){
  .plansWrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .plansTable{
    min-width: 640px;
  }
  .setupNote{
    min-width: 640px;
  }
}

.pcard{
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .10);
  box-shadow: 0 22px 46px rgba(10, 20, 40, .14);
  overflow: hidden;
  padding: 22px 22px 20px;
}

.pcard::before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(10,30,70,.08), transparent 65%);
  transform: rotate(10deg);
  pointer-events:none;
}

.pcard__head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}

.pcard__icon{
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: rgba(10,30,70,.04);
  border: 1px solid rgba(10, 20, 40, .08);
  padding: 6px;
  object-fit: contain;
}

.pcard h3{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(10, 30, 70, .96);
}

.pcard__head::after{
  content:"";
  display:block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10,30,70,.06), rgba(10,30,70,.28), rgba(10,30,70,.06));
  box-shadow: 0 1px 2px rgba(10,30,70,.12), inset 0 1px 0 rgba(255,255,255,.75);
  margin: 12px 0 0;
}

.pcard__price{
  display:flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.pcard__amount{
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(10, 30, 70, .98);
}

.pcard__zl,
.pcard__note{
  font-size: 18px;
  font-weight: 600;
  color: rgba(10, 25, 55, .58);
}

.pcard__list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.pcard__list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(10, 25, 55, .82);
  font-size: 15px;
  line-height: 1.35;
}

.pcard__list li::before{
  content:"";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta1), var(--cta2));
  box-shadow: 0 1px 2px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.35);
  flex: 0 0 10px;
}

.pcard .btn{
  width: 100%;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 800;
}

/* Responsive pricing + hero/strip */
@media (max-width: 980px){
  /* HERO */
  .hero{
    margin-bottom: 22px;
    padding: 14px 0 18px;
  }

  .hero__grid{
    grid-template-columns: 1fr; /* 1 kolumna na tablet/mobile */
    align-items: flex-start;
    gap: 12px;
  }

  .hero__copy{
    max-width: none;
  }

  .hero__visual{
    justify-content: center;
  }

  .hero__image{
    width: min(560px, 100%);
    max-width: 100%;
    height: auto;
    margin: 0;
    filter:
      drop-shadow(0 22px 44px rgba(0,0,0,.22))
      drop-shadow(0 8px 18px rgba(0,0,0,.12));
  }

  /* STRIP / 3 kafle -> 1 kolumna */
  .feature3{ grid-template-columns: 1fr; }
  .fcard + .fcard{ border-left: 0; border-top: 1px solid rgba(10, 20, 40, .10); }

  /* PRICING */
  .priceGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .hero__copy h1{
    font-size: clamp(26px, 5.8vw, 34px);
  }

  .hero__lead{
    font-size: 14px;
  }
}

@media (max-width: 768px){
  .fcard__icon{
    width: 60px;
    height: 60px;
    padding: 6px;
    margin: 0 auto 8px;
    border-radius: 12px;
  }
}

@media (max-width: 480px){
  .topbar{
    height: 68px;
  }

  .topbar__inner{
    height: 68px;
  }

  .logo__img{
    height: 32px;
  }

  /* HERO */
  .hero{
    padding: 34px 0 18px; /* większy odstęp od topbara na mobile */
    margin-bottom: 18px;
    overflow: hidden;
  }

  .hero__grid{
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__copy{
    padding-top: 6px; /* trochę niżej na iPhonie */
  }

  .hero__copy h1{
    font-size: 22px;
    line-height: 1.12;
    margin-top: 2px;
  }

  .hero__lead{
    font-size: 12px;
    margin-bottom: 10px; /* ciaśniej przed CTA */
    text-wrap: pretty;
    hyphens: auto;
  }

  .hero__visual{
    margin-top: 6px; /* oddech między tekst/CTA a mockupem */
  }

  /* STRIP */
  .strip{
    padding: 8px 0 22px;
  }

  .feature3{
    border-radius: 14px;
  }

  /* mniejsze kafle na mobile */
  .fcard{
    padding: 8px 12px 10px;
    grid-template-rows: 78px 34px auto;
  }

  .fcard__icon{
    width: 54px;
    height: 54px;
    padding: 5px;
    margin: 0 auto 8px;
    border-radius: 10px;
  }

  /* Kroki 1/2/3 – mniejszy badge na mobile */
  .next .feature3 .fcard{
    grid-template-rows: 46px 34px auto;
  }

  .next .feature3 .fcard__step{
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .fcard h3{
    font-size: 15px;
  }

  .fcard h3::after{
    margin-top: 5px;
  }

  .fcard p{
    font-size: 11.5px;
    min-height: auto;
  }

  /* LEGAL: wyłącz spis treści (TOC) na mobile */
  .legal__toc{
    display: none;
  }
  /* wyjątek: kontakt używa .legal__toc jako kolumny formularza */
  .legal#kontakt .legal__toc.kontakt-form{
    display: block;
  }

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

  /* KONTAKT: porządek na mobile */
  .kontakt{
    padding: 18px 0;
  }

  .kontakt-grid{
    gap: 18px;
  }

  .kontakt-header h1,
  .kontakt-header .sectionTitle{
    font-size: 24px;
    line-height: 1.15;
  }

  .kontakt-header .lead,
  .kontakt-header .sublead{
    font-size: 14px;
  }

  .kchips{
    gap: 10px;
  }

  .kontakt-form{
    padding: 12px;
    border-radius: 16px;
  }

  .f-actions{
    justify-content: center;
  }

  .btn-submit{
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }

  /* =========================================================
     FOOTER – mobile: czytelny układ linków (bez nachodzenia)
     ========================================================= */

  .pricing .sectionTitle{
    font-size: 22px;
  }

  .pcard{
    padding: 14px 14px 14px;
    border-radius: 16px;
  }

  .pcard__icon{
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 12px;
  }

  .pcard h3{
    font-size: 18px;
  }

  .pcard__amount{
    font-size: 44px;
  }

  .pcard__list li{
    font-size: 13px;
  }

  .pcard .btn{
    font-size: 14px;
    padding: 11px 14px;
  }
}



/* =========================================================
   NEXT (DEMO + KONTAKT jako 2 kafle)
   ========================================================= */

.next{
  padding: 28px 0 54px;
  background: transparent;
  border-top: 0;
}

.next .sectionTitle{
  margin: 0 0 18px 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(10, 30, 70, .95);
  text-align: center;
  position: relative;
  padding: 6px 0;
}

.next .sectionTitle::before,
.next .sectionTitle::after{
  content:"";
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: clamp(90px, 22vw, 320px);
  background: linear-gradient(90deg, rgba(10,30,70,0), rgba(10,30,70,.18), rgba(10,30,70,0));
}

.next .sectionTitle::before{ left: 0; }
.next .sectionTitle::after{ right: 0; }

.next__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.next__card{
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .10);
  box-shadow: 0 22px 46px rgba(10, 20, 40, .12);
  overflow: hidden;
  padding: 22px 22px 20px;
}

.next__card::before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(10,30,70,.07), transparent 65%);
  transform: rotate(10deg);
  pointer-events:none;
}

.next__head h3{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(10, 30, 70, .96);
}

.next__head p{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 25, 55, .72);
  max-width: 62ch;
}

.next__visual{
  margin: 0;
  display: flex;
  justify-content: center;
}

.next__visual img{
  width: min(280px, 100%);
  height: auto;
  display: block;
  transform: rotate(-8deg);
  filter:
    drop-shadow(0 22px 44px rgba(0,0,0,.18))
    drop-shadow(0 6px 16px rgba(0,0,0,.12));
}

.next__list{
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  gap: 8px;
}

.next__list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(10, 25, 55, .82);
  font-size: 15px;
  line-height: 1.35;
}

.next__list li::before{
  content:"";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta1), var(--cta2));
  box-shadow: 0 1px 2px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.35);
  flex: 0 0 10px;
}

.next__actions .btn{
  width: 100%;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 800;
}


.next__note{
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(10, 25, 55, .62);
}

/* Chip – wyróżnienie (np. "Polecane") */
.chip{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  margin: 0;
  line-height: 1;
  user-select: none;
}


.chip--highlight{
  background: rgba(76,168,24,.12);
  color: rgba(46,125,16,.98);
  border: 1px solid rgba(76,168,24,.35);
  box-shadow: 0 10px 22px rgba(10, 20, 40, .08);
}

.dark .chip--highlight,
[data-theme="dark"] .chip--highlight,
.theme-dark .chip--highlight{
  background: rgba(76,168,24,.22);
  color: #baf4a0;
  border-color: rgba(76,168,24,.45);
}

/* Pricing – dark mode support for table layout */
[data-theme="dark"] .plansTable,
[data-theme="dark"] .setupNote,
.theme-dark .plansTable,
.theme-dark .setupNote,
.dark .plansTable,
.dark .setupNote{
  border-color: rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  box-shadow: 0 22px 46px rgba(0,0,0,.22);
}

[data-theme="dark"] .cell,
.theme-dark .cell,
.dark .cell{
  border-top-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
}

[data-theme="dark"] .plansTable__head .cell,
.theme-dark .plansTable__head .cell,
.dark .plansTable__head .cell{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
}

[data-theme="dark"] .cell--rowhead,
.theme-dark .cell--rowhead,
.dark .cell--rowhead{
  color: rgba(255,255,255,.92);
}

[data-theme="dark"] .isBest,
.theme-dark .isBest,
.dark .isBest{
  background: rgba(76,168,24,.18);
}

[data-theme="dark"] .setupNote,
.theme-dark .setupNote,
.dark .setupNote{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

[data-theme="dark"] .setupNote__label,
.theme-dark .setupNote__label,
.dark .setupNote__label{
  color: rgba(255,255,255,.90);
}

[data-theme="dark"] .setupNote__price,
.theme-dark .setupNote__price,
.dark .setupNote__price{
  color: rgba(255,255,255,.92);
}

/* W sekcji NEXT: chip ma być w prawym górnym rogu nagłówka i nie zabierać miejsca w layoucie */
.next__head{ position: relative; }

.next__head .chip{
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

/* Zostaw miejsce na chip, żeby nie nachodził na tytuł */
.next__head h3{ padding-right: 120px; }

@media (max-width: 480px){
  .next__head h3{ padding-right: 100px; }
}



/* Responsive */
@media (max-width: 980px){
  .next__grid{ grid-template-columns: 1fr; }
}


@media (max-width: 480px){
  .next .sectionTitle{ font-size: 22px; }
  .next__card{ padding: 14px 14px 14px; border-radius: 16px; }
  .next__head h3{ font-size: 18px; }
  .next__head p{ font-size: 14px; }
  .next__list li{ font-size: 13px; }
  .next__actions .btn{ font-size: 14px; padding: 11px 14px; }
}


/* =========================================================
   MOCKUP TELEFONU + GALERIA (index – przed cennikiem)
   ========================================================= */

.mockup{
  padding: 28px 0 54px; /* spójnie z .next / .pricing */
  background: linear-gradient(180deg, rgba(245,247,252,.72), rgba(255,255,255,0));
}

.mockup__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mockup__copy{ max-width: 520px; }

/* 4 screeny obok siebie (desktop) – bez JS */
.mockup__stack{
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.mockupShot{
  background: #0e1116;
  padding: 10px;
  border-radius: 28px;
  box-shadow: 0 26px 52px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  margin-left: -22px; /* lekkie nachodzenie */
}

.mockupShot:first-child{ margin-left: 0; }

.mockupShot img{
  display: block;
  width: 180px;
  height: auto;
  border-radius: 18px;
}

/* delikatne pochylenia + wysokości (fan effect) */
.mockupShot--1{ transform: rotate(-6deg) translateY(10px); }
.mockupShot--2{ transform: rotate(-2deg) translateY(0); z-index: 2; }
.mockupShot--3{ transform: rotate(2deg) translateY(0); z-index: 3; }
.mockupShot--4{ transform: rotate(6deg) translateY(10px); }

@media (min-width: 1280px){
  .mockupShot img{ width: 200px; }
}

/* Tekst */
.mockup__lead{
  max-width: 62ch;
  margin: 8px 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 25, 55, .72);
}

/* Lista cech – mocniejsza typografia na desktop */
.mockup .next__list li{ font-weight: 600; }
.mockup .next__list li::before{ transform: scale(1.2); }


/* Dark mode (jeśli włączysz motyw globalnie) */
.dark .mockup__lead,
[data-theme="dark"] .mockup__lead,
.theme-dark .mockup__lead{
  color: rgba(255,255,255,.78);
}

/* Responsive */
@media (max-width: 980px){
  .mockup__grid{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .mockup__lead{
    margin-left: auto;
    margin-right: auto;
  }

  .mockup .next__list{
    justify-items: center;
  }

  .mockup .next__list li{
    justify-content: center;
  }

  .mockup__stack{
    overflow-x: auto;
    justify-content: flex-start;
    padding: 6px 6px 14px;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mockupShot{
    margin-left: 0;
    transform: none;
    scroll-snap-align: center;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px){
  .mockup{ padding: 18px 0 34px; }
  .mockup__lead{ font-size: 14px; }
  .mockupShot img{ width: 160px; }
}

.legal{
  padding: clamp(26px, 4vw, 54px) 0;
  background: linear-gradient(
    180deg,
    rgba(245,247,252,.92),
    rgba(255,255,255,1)
  );
}


/* wrapper: treść + spis treści po prawej (HTML: <div class="container legal__wrap">) */
.legal__wrap{
  display: grid;
  grid-template-columns: minmax(0, 980px) 280px; /* treść ma stałą szerokość */
  justify-content: center; /* centruje cały układ w kontenerze */
  gap: 22px;
  align-items: start;
}

/* Kontakt: poszerzony formularz po prawej (bez wpływu na inne podstrony legal) */
.legal#kontakt .legal__wrap{
  grid-template-columns: minmax(0, 1fr) minmax(320px, clamp(320px, 38vw, 460px));
}

.legal__main{ min-width: 0; max-width: 980px; }


/* TOC wrapper (sticky przeniesione na inner dla lepszej kompatybilności) */
.legal__toc{
  align-self: start;
  min-width: 0;
}

/* Sticky działa na karcie TOC (nie na aside) – stabilniejsze na iOS/Safari */
.legal__toc:not(.kontakt-form) .legal__toc-inner{
  position: sticky;
  top: 88px; /* 72px topbar + oddech */
  max-height: calc(100vh - 88px - 18px);
  overflow: auto;
}

.legal__toc-inner{
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .10);
  box-shadow: 0 18px 42px rgba(10, 20, 40, .08);
  padding: 14px 14px;
  border-top: 3px solid rgba(10,30,70,.22);
}

/* Kontakt: formularz w prawej kolumnie (legal__toc) – bez drugiej karty */
.legal__toc.kontakt-form .legal__toc-inner{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-top: 0;
}


.legal__toc-title{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(10, 25, 55, .62);
}


.legal__toc-nav{
  display: grid;
  gap: 6px;
}

.legal__toc-nav a{
  display: block;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(10, 30, 70, .88);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(10,30,70,.04);
  border: 1px solid rgba(10, 20, 40, .08);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}


.legal__toc-nav a:hover{
  background: rgba(10,30,70,.07);
  color: rgba(10, 30, 70, .98);
  transform: translateY(-1px);
}

/* aktywna sekcja (dodawane przez JS jako .is-active) */
.legal__toc-nav a.is-active{
  background: rgba(10,30,70,.12);
  border-color: rgba(10,30,70,.18);
  color: rgba(10, 30, 70, .98);
  font-weight: 900;
  transform: none;
}

.legal__toc-nav a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,30,70,.14);
}


/* zachowanie na mniejszych ekranach */
@media (max-width: 980px){
  .legal__wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 1180px){
  .legal#kontakt .legal__wrap{
    grid-template-columns: 1fr;
  }
}

/* Na bardzo małych ekranach (bardzo wąskie telefony) możemy wyłączyć sticky */
@media (max-width: 420px){
  .legal__toc:not(.kontakt-form) .legal__toc-inner{ position: static; top: auto; }
}

@media (max-width: 480px){
  .legal__toc-inner{ padding: 12px 12px; border-radius: 16px; }
}

.legal__header{
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .10);
  box-shadow: 0 18px 42px rgba(10, 20, 40, .10);
  padding: 18px 20px;
  border-top: 3px solid var(--cta1);
  margin-bottom: 16px;
}


.legal__kicker{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(10, 25, 55, .55);
}


.legal__title{
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .1px;
  color: rgba(10, 30, 70, .96);
}


.legal__lead{
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 25, 55, .70);
  max-width: 70ch;
}


/* Breadcrumbs / nawigacja pomocnicza */
.legal__nav{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}


.legal__link{
  color: rgba(10, 30, 70, .82);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  padding: 2px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(45,119,27,.25);
  transition: color .15s ease, border-bottom-color .15s ease;
}

.legal__link:hover{
  color: rgba(10, 30, 70, .98);
  border-bottom-color: rgba(45,119,27,.70);
}


.legal__sep{
  color: rgba(10, 30, 70, .35);
  font-weight: 900;
}


.legal__dot{
  color: rgba(10, 30, 70, .45);
  font-weight: 900;
  user-select: none;
  transform: translateY(-1px);
}
.legal__dot::before{
  content: "›";
}
.legal__dot{ font-size: 14px; }

/* Aktualna strona w breadcrumbs (kolejny krok: dodamy aria-current="page" w HTML) */
.legal__nav a[aria-current="page"],
.legal__nav .is-current{
  color: rgba(10, 30, 70, .98);
  border-bottom-color: rgba(45,119,27,.0);
  cursor: default;
  pointer-events: none;
}


.legal__content{
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .10);
  box-shadow: 0 18px 42px rgba(10, 20, 40, .08);
  padding: 18px 20px;
}



.legal__content h2{
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(10, 30, 70, .96);
}

/* =========================================================
   LEGAL: podnagłówki (h3) – np. 3.1–3.5 w Warunkach współpracy
   ========================================================= */

.legal__content h3{
  margin: 14px 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05px;
  color: rgba(10, 30, 70, .90);
}

/* gdy h3 występuje zaraz po h2 – nie rób podwójnego odstępu */
.legal__content h2 + h3{
  margin-top: 10px;
}

/* ciaśniej na mobile */
@media (max-width: 480px){
  .legal__content h3{
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 15px;
    margin: 14px 0 10px;
  }
}

.legal__content h2:first-child{ margin-top: 0; }


.legal__content p,
.legal__content li{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 25, 55, .78);
}


.legal__content ul,
.legal__content ol{
  margin: 10px 0 12px 20px;
}

.legal__content a{
  color: var(--cta2);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(45,119,27,.35);
}

.legal__content a:hover{
  border-bottom-color: rgba(45,119,27,.75);
}



.legal__content hr{
  border: 0;
  height: 1px;
  margin: 18px 0 14px;
  background: linear-gradient(90deg, rgba(10,30,70,0), rgba(10,30,70,.18), rgba(10,30,70,0));
}


/* =========================================================
   FAQ (accordion w layoutcie LEGAL)
   ========================================================= */

/* FAQ: wyróżnienie nagłówków sekcji (tylko na FAQ) */
.legal#faq .legal__content h2{
  margin: 22px 0 12px;
  padding: 10px 12px;
  padding-left: 14px;
  border-radius: 14px;
  background: rgba(10,30,70,.04);
  border: 1px solid rgba(10, 20, 40, .10);
  box-shadow: 0 10px 22px rgba(10, 20, 40, .05);
  border-left: 4px solid var(--cta1);
}

.legal#faq .legal__content h2:first-child{
  margin-top: 0;
}


/* większy oddech między nagłówkiem a listą pytań */
.legal#faq .legal__content h2 + .faq{
  margin-top: 10px;
}

/* większy odstęp między grupami */
.legal#faq .legal__content .faq + h2{
  margin-top: 26px;
}

.faq{
  display: grid;
  gap: 10px;
  margin: 8px 0 18px;
  counter-reset: faq;
}

.faq__item{
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .12);
  box-shadow: 0 10px 26px rgba(10, 20, 40, .06);
  overflow: hidden;
}


.faq__q{
  list-style: none; /* Firefox */
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  padding-left: 48px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(10, 30, 70, .96);
  outline: none;
  counter-increment: faq;
  position: relative;
}

/* numer pytania */
.faq__q::before{
  content: counter(faq);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(10,30,70,.08);
  border: 1px solid rgba(10, 20, 40, .18);
  font-weight: 900;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  color: rgba(10,30,70,.9);
}


/* ukryj domyślny marker */
.faq__q::-webkit-details-marker{ display: none; }
.faq__q::marker{ content: ""; }


.faq__q::after{
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background-color: rgba(10,30,70,.06);
  border: 1px solid rgba(10, 20, 40, .14);
  box-sizing: border-box;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
  /* plus w środku (2 kreski) */
  background-image:
    linear-gradient(rgba(10,30,70,.82), rgba(10,30,70,.82)),
    linear-gradient(rgba(10,30,70,.82), rgba(10,30,70,.82));
  background-size: 10px 2px, 2px 10px;
  background-position: center, center;
  background-repeat: no-repeat;
}


.faq__item[open] > .faq__q{
  background: rgba(10,30,70,.05);
}


/* po otwarciu: minus (zostaje tylko pozioma kreska) */
.faq__item[open] > .faq__q::after{
  background-image: linear-gradient(rgba(10,30,70,.82), rgba(10,30,70,.82));
  background-size: 10px 2px;
  background-position: center;
  background-repeat: no-repeat;
}

 .faq__q:hover{
  background: rgba(10,30,70,.04);
}
.faq__q:hover::after{
  background-color: rgba(10,30,70,.09);
  border-color: rgba(10,30,70,.22);
}


.faq__q:focus-visible{
  box-shadow: 0 0 0 3px rgba(10,30,70,.14);
}


.faq__a{
  padding: 0 14px 12px;
}

.faq__a p,
.faq__a li{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 25, 55, .78);
}

.faq__a p + p{ margin-top: 10px; }

.faq__a ul,
.faq__a ol{
  margin: 10px 0 0 18px;
}


/* Mobile – ciaśniej */
@media (max-width: 480px){
  .faq{ gap: 8px; }

  .faq__q{
    padding: 11px 12px 11px 50px; /* zostaw miejsce na numer */
    font-size: 14px;
  }

  .faq__q::before{
    left: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
  }

  .faq__a{ padding: 0 12px 11px; }
  .faq__a p, .faq__a li{ font-size: 14px; }
}


@media (max-width: 480px){
  .legal__header,
  .legal__content{ padding: 14px 14px; border-radius: 16px; }

  .legal__lead{ font-size: 14px; }

  .legal__content p,
  .legal__content li{ font-size: 14px; }

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

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

.footer{
  background: linear-gradient(
    180deg,
    rgba(238,243,252,.92),
    rgba(232,238,250,.92)
  );
  border-top: 0; /* separację robi contactCta */
}

.footer__bottom{
  padding: 30px 0 34px;
  text-align: center;
}

.footer__nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 14px;
  padding: 0;
  color: rgba(10,30,70,.78);
}


.footer__nav a{
  color: rgba(10,30,70,.80);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .1px;
  font-size: 14px;
  padding: 6px 2px;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}

/* Facebook link – delikatne wyróżnienie + mini "badge" bez ikon w HTML */
.footer__nav a[href*="facebook.com"]{
  position: relative;
  padding-left: 28px;
}

.footer__nav a[href*="facebook.com"]::before{
  content: "f";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: rgba(24, 119, 242, .92); /* Facebook blue */
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.footer__nav a[href*="facebook.com"]:hover::before{
  filter: brightness(1.05);
}

.footer__nav a:hover{
  color: rgba(10,30,70,.95);
  background: rgba(10,30,70,.06);
}

.footer__sep{
  color: rgba(10,30,70,.28);
  font-weight: 700;
  user-select: none;
}

.footer__bottom small{
  display: block;
  color: rgba(10,25,55,.62);
  font-size: 14px;
}


@media (max-width: 480px){
  .footer__bottom{
    padding: 18px 14px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Na mobile nie pokazujemy listy linków – tylko ikonę FB */
  .footer__sep{ display: none; }

  .footer__nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    order: 2; /* obok copyright */
  }

  /* ukryj wszystkie linki poza FB */
  .footer__nav a{ display: none; }

  .footer__nav a[href*="facebook.com"]{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-radius: 999px;
    background: #1877F2; /* Facebook blue */
    border: 0;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
    position: relative;
    overflow: visible;
    text-indent: 0;      /* nie chowamy tekstu przez indent */
    font-size: 0;        /* ale ukrywamy napis "Facebook" */
    line-height: 0;
    white-space: nowrap;
  }

  /* na mobile wyłącz desktopowy badge ::before (żeby nie dublował ikony) */
  .footer__nav a[href*="facebook.com"]::before{
    content: none !important;
    display: none !important;
  }

  /* ikona FB jako znak – pewne renderowanie */
  .footer__nav a[href*="facebook.com"]::after{
    content: "f";
    display: block;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    transform: translateY(-1px);
  }

  .footer__bottom small{
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
  }
}

/* Bardzo małe telefony: 1 kolumna */
@media (max-width: 360px){
  .footer__bottom{
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* =========================================================
   KONTAKT (podstrona)
   - layout: info + form
   - cards + form styling
   ========================================================= */

.kontakt{ padding: clamp(24px, 4vw, 48px) 0; }
.kontakt-inner{ max-width: 1200px; margin: 0 auto; }

.kontakt-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--k-gap);
  align-items: start;
}
.kontakt-info{ width: 100%; }

@media (max-width: 1024px){
  .kontakt-grid{ grid-template-columns: 1fr; }
}

.kontakt-header h1,
.kontakt-header .sectionTitle{
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: rgba(10, 30, 70, .96);
  text-align: left;
}
.kontakt-header .lead{
  font-size: clamp(16px, 2.1vw, 18px);
  color: var(--muted, #65707c);
  margin: 0 0 10px;
}

.kontakt-header .sublead{
  font-size: 15px;
  color: var(--muted, #6b7580);
  margin: 0 0 22px;
}

/* LEWA KOLUMNA: chipy kontaktowe (pasują do karty formularza) */
.kchips{
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.kchip{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10, 20, 40, .09);
  box-shadow: 0 10px 26px rgba(10, 20, 40, .08);
}

.kchip__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(10,30,70,.04);
  border: 1px solid rgba(10, 20, 40, .08);
}

.kchip__icon svg{
  width: 22px;
  height: 22px;
  stroke: rgba(10,30,70,.85);
}

.kchip__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(10, 25, 55, .62);
  margin-top: 2px;
}

.kchip__value{
  display: inline-block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(10, 30, 70, .95);
  text-decoration: none;
}

.kchip__value:hover{
  color: var(--cta1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kchip__meta{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(10, 25, 55, .62);
}

.kinfoNote{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10,30,70,.04);
  border: 1px dashed rgba(10, 20, 40, .16);
  color: rgba(10, 25, 55, .70);
  font-size: 13px;
  line-height: 1.45;
}

.kinfoNote strong{ color: rgba(10, 30, 70, .92); }



/* prawa kolumna – formularz */
.kontakt-form{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 20, 40, .10);
  border-radius: 18px;
  box-shadow: var(--k-shadow);
  padding: 14px 14px 16px;
  border-top: 3px solid var(--cta1);
}

.kontakt-form h2{
  font-size: 22px;
  margin: 6px 6px 10px;
  color: rgba(10, 30, 70, .96);
}
.form{ display:grid; grid-template-columns: 1fr; gap: 0; }


.f-group{
  display:flex;
  flex-direction: column;
  gap: 0;
  margin: 3px 0;
}

.f-group--textarea{ grid-column: 1 / -1; }

.f-group label{
  font-weight: 700;
  font-size: 13px;
  color: rgba(10, 25, 55, .78);
  margin: 0 0 4px;
}

.f-group input,
.f-group textarea,
.f-group select{
  appearance: none;
  width: 100%;
  background: rgba(255,255,255,1);
  border: 1.5px solid rgba(10, 20, 40, .18);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  color: rgba(10, 30, 70, .95);
  outline: none;
  transition: border-color .2s ease, background-color .2s ease;
}


.f-group.is-error input,
.f-group.is-error textarea,
.f-group.is-error select{
  border-color: rgba(192,26,26,.60);
  background: rgba(192,26,26,.04);
}

.f-group.is-error input:focus,
.f-group.is-error textarea:focus{
  border-color: rgba(192,26,26,.75);
  box-shadow: 0 0 0 2px rgba(192,26,26,.12);
}




.f-group textarea{ min-height: 96px; }

/* Select (pakiet) – spójny wygląd + strzałka */
.f-group select{
  padding-right: 42px;
  min-height: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(10, 30, 70, .70) 50%),
    linear-gradient(135deg, rgba(10, 30, 70, .70) 50%, transparent 50%),
    linear-gradient(to right, rgba(10, 20, 40, .14), rgba(10, 20, 40, .14));
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    calc(100% - 38px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 18px;
  background-repeat: no-repeat;
}

/* Gdy pakiet jest wybrany (valid) – delikatny sygnał, bez „krzyku” */
.f-group select:required:valid{
  border-color: rgba(76,168,24,.35);
  background-color: rgba(76,168,24,.03);
}

/* Dark mode */
[data-theme="dark"] .f-group select:required:valid,
.theme-dark .f-group select:required:valid,
.dark .f-group select:required:valid{
  border-color: rgba(76,168,24,.45);
  background-color: rgba(76,168,24,.08);
}

/* Hover: delikatnie jak inputy */
.f-group select:hover{
  border-color: rgba(10, 20, 40, .26);
}

.f-group input::placeholder,
.f-group textarea::placeholder{ color: rgba(0,0,0,.35); }

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus{
  border-color: var(--cta1);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--cta1) 18%, transparent);
}

.f-error{
  min-height: 0;
  font-size: 12px;
  color: #ba1a1a;
}
.f-error:empty{ display:none; }

/* zgody */
.f-consents{ margin-top: 4px; font-size: 13px; color: rgba(10, 25, 55, .62); }
.f-consents.is-error{ color: #b01818; }
.f-consents.is-error .checkbox label{ color: #b01818; font-weight: 800; }
.f-consents.is-error .checkbox label::before{ border-color: rgba(192,26,26,.65); }

.checkbox{ position: relative; display: block; }
.checkbox input[type="checkbox"]{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
}
.checkbox label{
  position:relative;
  display:inline-block;
  padding-left: 30px;
  cursor:pointer;
  line-height: 1.55;
  color: rgba(10, 30, 70, .92);
}

.checkbox label::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius: 4px;
  border: 2px solid rgba(10, 20, 40, .22);
  background: #fff;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.checkbox input[type="checkbox"]:checked + label::after{
  content:"";
  position:absolute;
  left:4px;
  top:6px;
  width:10px;
  height:6px;
  border: 3px solid var(--cta1);
  border-top:none;
  border-right:none;
  transform: rotate(-45deg);
}

.checkbox input[type="checkbox"]:focus + label::before{
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--cta1) 35%, transparent);
  border-color: color-mix(in srgb, var(--cta1) 55%, rgba(10, 20, 40, .22));
}

/* akcje */
.f-actions{
  display:flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.btn-submit{
  appearance:none;
  border: 1px solid rgba(255,255,255,.35);
  background: linear-gradient(180deg, var(--cta1), var(--cta2));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .15s ease, filter .2s ease;
}
.btn-submit:hover{ filter: brightness(1.06); transform: translateY(-1px); }
.btn-submit:active{ transform: translateY(0); filter: brightness(0.98); }

/* honeypot */
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* status pod formularzem */
.form-status{
  display:block;
  margin-top: 8px;
  font-size: 14px;
  text-align: left;
  color: rgba(10, 25, 55, .70);
}

.form-status.is-error{ color: #b01818; font-weight: 700; }
.form-status.is-ok{ color: #146b11; font-weight: 700; }
@media (max-width: 480px){
  .kontakt-header h1,
  .kontakt-header .sectionTitle{ font-size: 26px; }
  .kontakt-form > h2{ font-size: 20px; }

  .kchip{ grid-template-columns: 40px 1fr; padding: 12px 12px; }
  .kchip__icon{ width: 40px; height: 40px; border-radius: 12px; }
  .kchip__value{ font-size: 15px; }
  .kinfoNote{ padding: 11px 12px; }
}

/* =========================================
   MOCKUP / BRANDING CONFIGURATOR / OVERLAY
   ========================================= */

   .mockupShot {
    position: relative;
    cursor: pointer;
    transition: transform .38s ease, box-shadow .38s ease;
    transform-origin: center center;
  }
  
  .mockup-img {
    width: 100%;
    display: block;
    transition: opacity .22s ease, transform .22s ease;
    transform-origin: center center;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .mockupShot:hover {
      transform: rotate(0deg) scale(1.48) !important;
      z-index: 20;
      box-shadow: none !important;
    }
  
    .mockupShot:active {
      transform: rotate(0deg) scale(1.3) !important;
      z-index: 20;
      box-shadow: none !important;
    }
  }
  
  @media (max-width: 768px) {
    .mockupShot:hover,
    .mockupShot:active {
      transform: none !important;
      z-index: auto;
    }
  }
  
  .mockupShot.is-switching .mockup-img {
    opacity: .55;
    transform: scale(.985);
  }
  
  .fcard__icon {
    width: 96px;
    height: 96px;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  
  .fcard__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  
  .mockup-logo {
    --logo-top: 5.2%;
    --logo-left: 9%;
    --logo-width: 45%;
    --logo-height: 11%;
    position: absolute;
    top: var(--logo-top);
    left: var(--logo-left);
    width: var(--logo-width);
    height: var(--logo-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
    background: transparent;
    border-radius: 0;
  }
  
  .mockup-logo-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 78%;
    object-fit: contain;
    object-position: left center;
    display: block;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    clip-path: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  
  body.mockup-branded .mockup-logo {
    opacity: 1;
  }
  
  .brandingBox {
    margin-top: 22px;
    width: 100%;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 16px 40px rgba(17,24,39,.06);
  }
  
  .brandingToggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(17,24,39,.08);
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    box-shadow: 0 14px 30px rgba(17,24,39,.14);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  }
  
  .brandingToggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(17,24,39,.2);
  }
  
  .brandingToggle:active {
    transform: translateY(0);
  }
  
  .brandingRow {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: center;
  }
  
  .brandingRow > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .brandingRow > div {
    min-width: 0;
  }
  
  .brandingFile {
    position: relative;
    display: inline-flex;
  }
  
  .brandingFileInput {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .brandingFileBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(17,24,39,.08);
    background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(17,24,39,.06);
    transition: all .18s ease;
  }
  
  .brandingFileBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(17,24,39,.1);
    cursor: pointer;
  }
  
  .brandingFile:hover .brandingFileBtn {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(17,24,39,.1);
  }
  
  .brandingFile:hover {
    cursor: pointer;
  }
  
  .brandingRemove {
    height: 36px;
    width: 36px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(17,24,39,.08);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s ease;
  }
  
  .brandingRemove:hover {
    background: #f3f4f6;
  }
  
  .brandingRemove .icon-x {
    font-size: 16px;
    line-height: 1;
    color: #374151;
  }
  
  .colorButtons {
    display: flex;
    gap: 10px;
  }
  
  .colorBtn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(17,24,39,.08);
    background: var(--c);
    cursor: pointer;
    outline: none;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  
  .colorBtn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(17,24,39,.15);
  }
  
  .colorBtn.is-active {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #111827 inset, 0 0 0 3px #fff, 0 6px 14px rgba(17,24,39,.2);
  }
  
  .colorBtn:focus {
    box-shadow: 0 0 0 2px #111827 inset, 0 0 0 2px #fff;
  }
  
  .brandingLabel {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #334155;
    margin-bottom: 8px;
  }
  
  .brandingControls {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp .22s ease;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .brandingUploadRow {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .brandingHint {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
  }
  
  .brandingCta {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .brandingCta__text {
    margin: 0;
    color: #111827;
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
  }
  
  .brandingCta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(17,24,39,.08);
    font-size: 12px;
    font-weight: 600;
    color: #166534;
    text-decoration: none;
    white-space: nowrap;
    transition: all .15s ease;
  }
  
  .brandingCta__link:hover {
    background: #f3f4f6;
  }
  
  @media (max-width: 768px) {
    .mockup__grid {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }
  
    .mockup__copy {
      order: 1;
    }
  
    .mockup__stack {
      order: 2;
    }
  
    .brandingBox {
      padding: 14px;
      border-radius: 16px;
    }
  
    .brandingToggle {
      min-height: 46px;
      padding: 11px 14px;
      font-size: 13px;
    }
  
    .brandingControls {
      margin-top: 14px;
      gap: 12px;
    }
  
    .brandingRow {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      align-items: start;
    }
  
    .brandingRow > div {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-self: start;
    }
  
    .brandingLabel {
      display: block;
      margin-bottom: 8px;
      text-align: left;
      font-size: 12px;
      padding: 0;
    }
  
    .brandingUploadRow {
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
    }
  
    .brandingFile {
      min-width: 0;
      flex: 1 1 auto;
    }
  
    .brandingFileBtn {
      padding: 0 12px;
      width: 100%;
      height: 36px;
      justify-content: flex-start;
      text-align: left;
      font-size: 12px;
    }
  
    .brandingRemove {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
    }
  
    .brandingRow > div,
    .colorButtons,
    .brandingUploadRow {
      justify-content: flex-start;
      text-align: left;
    }
  
    .colorButtons {
      gap: 8px;
      flex-wrap: nowrap;
      align-items: center;
      min-height: 36px;
    }
  
    .colorBtn {
      width: 30px;
      height: 30px;
    }
  
    .brandingHint {
      font-size: 12px;
      line-height: 1.5;
    }
  
    .brandingCta {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .brandingCta__link {
      width: 100%;
      justify-content: center;
    }
  
    .fcard__icon {
      width: 60px;
      height: 60px;
      padding: 6px;
      border-radius: 12px;
      margin-bottom: 8px;
    }
  
    .feature3 .fcard {
      padding-top: 26px;
      padding-bottom: 22px;
    }
  
    .feature3 .fcard h3 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 18px;
    }
  
    .feature3 .fcard p {
      font-size: 15px;
      line-height: 1.5;
      margin-top: 0;
    }
  
    .strip .feature3 {
      gap: 14px;
    }
  
    .strip .fcard {
      padding: 24px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .brandingRow {
      gap: 8px;
    }
  
    .brandingFileBtn {
      padding: 0 10px;
      font-size: 11px;
    }
  
    .colorBtn {
      width: 28px;
      height: 28px;
    }
  
    .fcard__icon {
      width: 54px;
      height: 54px;
      padding: 5px;
      border-radius: 10px;
      margin-bottom: 8px;
    }
  
    .feature3 .fcard {
      padding-top: 22px;
      padding-bottom: 20px;
    }
  
    .feature3 .fcard h3 {
      font-size: 17px;
      margin-bottom: 8px;
    }
  
    .feature3 .fcard p {
      font-size: 14px;
      line-height: 1.45;
    }
  }
  
  .strip .feature3 {
    gap: 22px;
  }
  
  .strip .fcard {
    padding: 34px 28px;
  }
  
  .strip .fcard h3 {
    margin-top: 0;
    margin-bottom: 12px;
  }
  
  .strip .fcard p {
    margin: 0;
    line-height: 1.6;
  }
  
  /* =========================================
     MOCKUP OVERLAY
     ========================================= */
  
  .mockupOverlay {
    position: fixed;
    inset: 0;
    z-index: 999;
  }
  
  .mockupOverlay[hidden] {
    display: none;
  }
  
  .mockupOverlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
  }
  
  .mockupOverlay__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .mockupOverlay__inner {
    max-width: 420px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mockupOverlay__inner .mockupShot {
    position: relative;
    width: min(100%, 320px);
    transform: none !important;
    box-shadow: none !important;
    cursor: default;
  }
  
  .mockupOverlay__inner .mockup-img {
    width: 100%;
    display: block;
  }
  
  .mockupOverlay__inner .mockup-logo {
    opacity: 0;
    top: 4.2%;
    left: 7.2%;
  }
  
  body.mockup-branded .mockupOverlay__inner .mockup-logo {
    opacity: 1;
  }