:root{
  --lp-bg:#ffffff;
  --lp-text:#0b1320;

  --orange:#ff6a00;
  --beige:#FFEDD5;

  --purple:#6b0163;

  --shadow-soft: 0 10px 30px rgba(0,0,0,.10);
  --shadow-card: 0 18px 50px rgba(0,0,0,.14);

  --radius-xl: 28px;
  --radius-pill: 999px;
}

/* ================================
   GLOBAL
================================ */
.lp-body{ min-height:100vh; margin:0; background:var(--lp-bg); color:var(--lp-text); }
.lp-container{ width:min(1180px, calc(100% - 32px)); margin:0 auto; }
.lp-main{ padding:0; }

/* ================================
   HEADER (GLASS)
================================ */
.lp-header{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.lp-header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.lp-logo img{ height:32px; }
.lp-nav{ display:flex; gap:14px; }
.lp-cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color:#fff !important;
  text-decoration:none;
  border:0;
  box-shadow: 0 10px 26px rgba(255,106,0,.35);
  transition:.15s ease;
}
.lp-cta:hover{ transform:translateY(-1px); filter:brightness(1.05); }

/* ================================
   HEADER IMAGE
================================ */
.lp-hero-header{ margin-top:14px; }
.lp-hero-header img{ width:100%; display:block; }

/* ================================
   BADGEBAR (naprawione)
================================ */
.lp-badgebar-wrap{
  margin-top:-56px;
  padding-bottom:20px;
  position:relative;
  z-index:20;
}

.lp-badgebar{
  background:#ffffff;
  border-radius:28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.06);
  padding: 22px 24px;

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

.lp-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:82px;
}

.lp-badge-inner{
  display:flex;
  align-items:center;
  gap:16px;
}

.lp-badge-ico{
  position:relative;
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lp-icon{ width:56px; height:56px; display:block; }

.lp-badge-text{ line-height:1.12; text-align:left; }
.lp-badge-top{ font-size:19px; font-weight:500; color:#111; }
.lp-badge-bottom{ font-size:19px; font-weight:800; color:#111; }

/* gradient ring */
.lp-badge-ico::after{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:999px;
  pointer-events:none;

  background: radial-gradient(
    circle,
    var(--ring-color, rgba(255,193,111,.65)) 0%,
    var(--ring-color, rgba(255,193,111,.55)) 35%,
    transparent 70%
  );

  opacity:0;
  transform:scale(.7);
  animation: lpGradientPulse 3.4s ease-in-out infinite;
}

.lp-badge:nth-child(2) .lp-badge-ico::after{ animation-delay:.6s; }
.lp-badge:nth-child(3) .lp-badge-ico::after{ animation-delay:1.2s; }

@keyframes lpGradientPulse{
  0%,100%{ opacity:0; transform:scale(.7); }
  40%{ opacity:.75; transform:scale(1.15); }
  65%{ opacity:0; transform:scale(1.25); }
}

.lp-badge--cykl{ --ring-color: rgba(255,193,111,.65); }
.lp-badge--punkty{ --ring-color: rgba(182,122,255,.65); }
.lp-badge--cert{ --ring-color: rgba(255,206,139,.65); }

/* ================================
   LAYOUT
================================ */
.lp-grid{ display:grid; grid-template-columns:2fr 1fr; gap:40px; }

/* ================================
   LEWA KOLUMNA
================================ */
.lp-hero{ padding:40px 0; }
.lp-title{ font-size:36px; font-weight:900; margin:0 0 14px; }
.lp-lead{ font-size:18px; line-height:1.6; margin:0 0 14px; }

/* ================================
   AGENDA
================================ */
.lp-agenda-title{ margin-top:24px; font-size:28px; font-weight:900; }
.lp-agenda{ margin-top:16px; display:flex; flex-direction:column; gap:18px; }

.lp-agenda-item{
  display:flex; align-items:center;
  padding:20px 16px;
  border-radius: var(--radius-pill);
  background:#F9FAFC;
}
.lp-agenda-time{
  font-weight:500;
  color: var(--orange);
  min-width:120px;
  text-align:end;
  margin-right:16px;
}
.lp-agenda-ico{ display:flex; align-items:center; justify-content:center; margin-right:16px; }
.lp-agenda-ico img{ width:22px; height:22px; object-fit:contain; }
.lp-agenda-text{ flex:1; font-weight:700; }

.lp-agenda-feature{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:18px;
  background:#fff;
  border-left:4px solid var(--purple);
  box-shadow:0 2px 12px rgba(0,0,0,.2);
}
.lp-agenda-time_feature{
  font-weight: 500;
  color: var(--orange);
  min-width:110px;
  text-align:end;
}
.lp-agenda-avatar{
  width:48px; height:48px;
  border-radius:999px;
  overflow:hidden;
  flex:0 0 48px;
}
.lp-agenda-avatar img{ width:100%; height:100%; object-fit:cover; }
.lp-agenda-feature-sub{ margin-top:4px; font-size:14px; color:rgba(0,0,0,.6); }

/* ================================
   PANEL REJESTRACJI
================================ */
.lp-panel{ padding:40px 0 0; background:transparent; }

/*.lp-panel-card{
  background:#fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
}*/

.lp-panel-head{
  padding: 0px 26px 22px;
  text-align: center;
}

.lp-reg-title{
  margin:0;
  font-size:24px;
  line-height:1.05;
  font-weight:700;
  color:var(--purple);
}
.lp-reg-sub{
  font-size:24px;
  font-weight:300;
  color:var(--purple);
  margin: 0px;
}

/* usuń bootstrap padding */
.lp-panel .p-2{ padding:0 !important; }

/* ================================
   ACCORDION
================================ */
#eventsAccordion .accordion-item{ background:transparent; border:0; margin:0 0 18px; }

#eventsAccordion .accordion-button.lp-reg-accbtn{
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
#eventsAccordion .accordion-button.lp-reg-accbtn::after{ display:none !important; }

/* ===== ZAMKNIĘTY (pill) ===== */
#eventsAccordion .accordion-button.collapsed .lp-reg-item{
  width:100%;
  background:#fff;
  border-radius:50px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-soft);
  padding: 8px 8px 8px 22px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

#eventsAccordion .accordion-button.collapsed .lp-reg-date-wrap{
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}

#eventsAccordion .accordion-button.collapsed .lp-reg-date{
  font-size:18px;
  font-weight:500;
  color:var(--orange);
  line-height:1;
}

#eventsAccordion .accordion-button.collapsed .lp-reg-city{
  font-size:22px;
  font-weight:700;
  color:rgba(0,0,0,.90);
  line-height:1.05;
}

/* beżowe koło po prawej */
#eventsAccordion .accordion-button.collapsed .lp-reg-arrow{
  width:60px;
  height:60px;
  border-radius:999px;
  background:var(--beige);
  border:0;
  box-shadow:none;

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

  flex:0 0 60px;
}

/* chevron w dół (z > robimy v) */
#eventsAccordion .accordion-button.collapsed .lp-reg-arrow-svg{
  width:34px;
  height:34px;
  color:var(--orange);
  transform: rotate(90deg);
}

/* ===== OTWARTY (duża karta) ===== */
#eventsAccordion .accordion-item.is-open{
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  position:relative;
}

/* pomarańczowy pasek */
#eventsAccordion .accordion-item.is-open::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:var(--orange);
}

/* górny wiersz bez ramki */
#eventsAccordion .accordion-item.is-open .lp-reg-item{
  width:100% !important;
  padding:22px 22px 8px !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;

  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  margin:0 !important;
}

#eventsAccordion .accordion-item.is-open .lp-reg-date{
  font-size:22px;
  font-weight:800;
  color:var(--orange);
  line-height:1;
}
#eventsAccordion .accordion-item.is-open .lp-reg-city{
  font-size:34px;
  font-weight:900;
  margin-top:10px;
  line-height:1.05;
}

/* mały chevron w prawym górnym rogu */
#eventsAccordion .accordion-item.is-open .lp-reg-arrow{
  width:36px !important;
  height:36px !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  flex:0 0 36px !important;
  margin-top:6px !important;
}

#eventsAccordion .accordion-item.is-open .lp-reg-arrow-svg{
  width:28px !important;
  height:28px !important;
  color:var(--orange) !important;
  transform: rotate(-90deg) !important; /* ^ */
}

/* body w tej samej karcie */
#eventsAccordion .accordion-item.is-open .accordion-body{
  padding:14px 22px 22px !important;
}

/* adres */
#eventsAccordion .accordion-item.is-open .accordion-body .small{
  font-size:18px;
  line-height:1.35;
  margin:0 0 18px;
  color: rgba(0,0,0,.72);
}
#eventsAccordion .accordion-item.is-open .accordion-body .small strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
  color: rgba(0,0,0,.88);
	
}

/* CTA jako pill (nie full width) */
#eventsAccordion .accordion-item.is-open .lp-reg-cta,
#eventsAccordion .accordion-item.is-open .lp-reg-cta.w-100{
  width:auto !important;
  display:inline-flex !important;
  padding:16px 28px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  border:0;
  font-weight:600;
  font-size:18px;
  box-shadow:0 16px 34px rgba(255,106,0,.28);
}

/* komunikat */
.lp-reg-closed{
  border-radius:18px;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.08);
  background:#f6f7f9;
  color: rgba(0,0,0,.55);
  font-weight:800;
}

/* ================================
   FOOTER
================================ */
.lp-footer{
  padding:18px 0;
  text-align:center;
  font-size:13px;
  color:rgba(0,0,0,.6);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width:992px){
  .lp-grid{ grid-template-columns:1fr; gap:0; }
  .lp-panel{ padding:28px 0 0; }

  .lp-badgebar{ grid-template-columns: 1fr; }
  .lp-badge{ justify-content:flex-start; }

  .lp-reg-title{ font-size:24px; }
  .lp-reg-sub{ font-size:22px; }

  #eventsAccordion .accordion-button.collapsed .lp-reg-arrow{
    width:50px; height:50px; flex-basis:50px;
  }
  #eventsAccordion .accordion-button.collapsed .lp-reg-city{ font-size:22px; }

  #eventsAccordion .accordion-item.is-open .accordion-body .small{ font-size:18px; }
  #eventsAccordion .accordion-item.is-open .accordion-body .small strong{ font-size:20px; }
}

//

/* =========================================
   FIX: brak “skakania” stylów przy kliknięciu
   - wyłącz bootstrap focus/active (niebieskie)
   - styluj stan przejściowy .collapsing
   - użyj aria-expanded="true" (zmienia się od razu)
========================================= */

/* usuń niebieskie tła/obwódki bootstrapa */
#eventsAccordion .accordion-button.lp-reg-accbtn,
#eventsAccordion .accordion-button.lp-reg-accbtn:focus,
#eventsAccordion .accordion-button.lp-reg-accbtn:active,
#eventsAccordion .accordion-button.lp-reg-accbtn:focus-visible{
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

#eventsAccordion .accordion-button.lp-reg-accbtn{
  -webkit-tap-highlight-color: transparent;
}

/* Wymuś, żeby “otwarty wygląd” łapał się NATYCHMIAST po kliknięciu */
#eventsAccordion .accordion-button.lp-reg-accbtn[aria-expanded="true"] .lp-reg-item{
  width:100% !important;
  padding:22px 22px 8px !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;

  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  margin:0 !important;
}

#eventsAccordion .accordion-button.lp-reg-accbtn[aria-expanded="true"] .lp-reg-date{
  font-size:18px !important;
  font-weight:500 !important;
  color: var(--orange) !important;
}

#eventsAccordion .accordion-button.lp-reg-accbtn[aria-expanded="true"] .lp-reg-city{
  font-size:22px !important;
  font-weight:700 !important;
  margin-top:10px !important;
  color: rgba(0,0,0,.88);
}

/* strzałka w otwartym: mała, bez koła */
#eventsAccordion .accordion-button.lp-reg-accbtn[aria-expanded="true"] .lp-reg-arrow{
  width:36px !important;
  height:36px !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  margin-top:6px !important;
}

#eventsAccordion .accordion-button.lp-reg-accbtn[aria-expanded="true"] .lp-reg-arrow-svg{
  width:28px !important;
  height:28px !important;
  color: var(--orange) !important;
  transform: rotate(-90deg) !important;
}

/* podczas animacji (.collapsing) też trzymaj otwarte style */
#eventsAccordion .accordion-collapse.collapsing{
  will-change: height;
}

/* dodatkowo: w trakcie animacji nie pozwól wrócić do “closed-pill” */
#eventsAccordion .accordion-button.lp-reg-accbtn[aria-expanded="true"].collapsed .lp-reg-item{
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

/* ====================================
   CTA – strzałka w przycisku
==================================== */

.lp-reg-cta{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.lp-reg-cta-arrow{
  width:26px;
  height:26px;
  transition: transform .2s ease;
}

/* delikatna animacja przy hover */
.lp-reg-cta:hover .lp-reg-cta-arrow{
  transform: translateX(4px);
}

/* ================================
   SEKACJA EKSPERT (pod agendą)
================================ */

.lp-expert{
  overflow: hidden;

  display:flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 30px 0 24px;
  gap: 18px;
  margin-top: -30px;
}

/* lewa treść */
.lp-expert-text{
  padding: 24px 0 24px 0;
  flex: 1;
}

.lp-expert-name{
  font-size: 18px;
  font-weight: 900;
  color: rgba(0,0,0,.90);
  margin-bottom: 10px;
}

.lp-expert-desc{
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0,0,0,.70);
}

/* prawa grafika */
.lp-expert-photo{
  flex: 0 0 220px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  background: transparent;
}

.lp-expert-photo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  transform: translateY(6px);
}

/* responsywność */
@media (max-width: 992px){
  .lp-expert{
    flex-direction: column;
  }
  .lp-expert-photo{
    flex: 0 0 auto;
    padding: 0 16px 0;
  }
  .lp-expert-photo img{
    max-height: 320px;
    transform: none;
  }
}

/* ================================
   STOPKA (fioletowy pasek)
================================ */

/* ================================
   STOPKA – UKŁAD 1:1
================================ */

.lp-footer{
  padding: 0px 0 0px;
  background: transparent;
}

.lp-footer-bar{
  background: #6b0163;
  border-radius: 28px;
  padding: 20px 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);

  display:grid;
  grid-template-columns: 1.6fr auto 1fr;
  align-items:center;
  gap: 30px;
}

/* LEWA */
.lp-footer-left{
  color:#fff;
  text-align: left;
}

.lp-footer-title{
  font-weight:900;
  font-size:18px;
  margin-bottom:6px;
}

.lp-footer-sub{
  font-size:13px;
  line-height:1.4;
  color:rgba(255,255,255,.85);
}

/* ŚRODEK */
.lp-footer-mid{
  display:flex;
  align-items:center;
  gap:16px;
}

.lp-footer-ico{
  width:56px;
  height:56px;
  border-radius:999px;
  background: rgba(255,255,255);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b0163;
}

.lp-footer-ico svg{
  width:24px;
  height:24px;
}

.lp-footer-contact{
  display:flex;
  flex-direction:column;
  gap:6px;
  text-align: left;
}

.lp-footer-phone{
  color:#fff;
  font-weight:900;
  font-size:18px;
  text-decoration:none;
}

.lp-footer-mail{
  color:rgba(255,255,255,.9);
  font-weight:700;
  font-size:14px;
  text-decoration:none;
}

.lp-footer-phone:hover,
.lp-footer-mail:hover{
  text-decoration:underline;
}

/* PRAWA */
.lp-footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
}

.lp-footer-org{
  color:rgba(255,255,255,.8);
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  margin-bottom:6px;
}

.lp-footer-logo{
  height:36px;
  width:auto;
  display:block;
  filter: brightness(0) invert(1);
}

/* RESPONSIVE */
@media (max-width: 992px){
  .lp-footer-bar{
    grid-template-columns:1fr;
    gap:20px;
    text-align:left;
  }

  .lp-footer-right{
    align-items:flex-start;
  }
}

/* ================================
   MODAL (rejestracja) – 1:1
================================ */

.lp-modal-dialog{
  max-width: 520px;
  padding: 0 12px;
}

.lp-modal-content{
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.lp-modal .modal-backdrop{
  opacity: .55;
}

/* header */
.lp-modal-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;

  padding: 18px 20px 14px;
  background: #ffffff;
}

.lp-modal-title-main{
  font-size: 22px;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 4px;
}

.lp-modal-title-sub{
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
}

.lp-modal-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: rgba(0,0,0,.05);
  color: rgba(0,0,0,.70);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 26px;
  line-height: 1;
}
.lp-modal-close:hover{ background: rgba(0,0,0,.08); }

/* miejsce */
.lp-modal-place{
  padding: 14px 20px 16px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.lp-modal-place-title{
  font-size: 16px;
  font-weight: 900;
  color: rgba(0,0,0,.88);
  margin-bottom: 4px;
}

.lp-modal-place-line{
  font-size: 14px;
  color: rgba(0,0,0,.65);
  line-height: 1.45;
}

/* body */
.lp-modal-body{
  padding: 18px 20px 20px;
  background: #fff;
}

/* alerts */
.lp-alert{
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.lp-alert--error{
  background: rgba(220,53,69,.10);
  color: rgba(220,53,69,.95);
  border: 1px solid rgba(220,53,69,.20);
}
.lp-alert--success{
  background: rgba(25,135,84,.10);
  color: rgba(25,135,84,.95);
  border: 1px solid rgba(25,135,84,.20);
}

/* fields */
.lp-field{ margin-bottom: 12px; }
.lp-label{
  display:block;
  font-size: 13px;
  font-weight: 800;
  color: rgba(0,0,0,.70);
  margin-bottom: 6px;
}

.lp-input{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.lp-input:focus{
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}

.lp-hint{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,.55);
}

/* consents */
.lp-consents{ margin: 14px 0 12px; display:flex; flex-direction:column; gap:10px; }

.lp-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  user-select:none;
}

.lp-check input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.lp-check-box{
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  flex: 0 0 20px;
  margin-top: 2px;
  position: relative;
}

.lp-check input:checked + .lp-check-box{
  border-color: rgba(255,106,0,.60);
  background: rgba(255,106,0,.10);
}

.lp-check input:checked + .lp-check-box::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
}

.lp-check-text{
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0,0,0,.70);
  font-weight: 700;
}

/* submit */
/* ================================
   MODAL SUBMIT – gradient
================================ */

.lp-modal-submit{
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;

  background: linear-gradient(
    135deg,
    #ff7a1a 0%,
    #ff6a00 45%,
    #e65c00 100%
  );

  color: #fff;
  font-weight: 900;
  font-size: 18px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;

  box-shadow:
    0 16px 34px rgba(255,106,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

/* hover – lekki lift + rozjaśnienie */
.lp-modal-submit:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 20px 42px rgba(255,106,0,.42),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* active */
.lp-modal-submit:active{
  transform: translateY(0);
  box-shadow:
    0 12px 24px rgba(255,106,0,.30),
    inset 0 2px 4px rgba(0,0,0,.15);
}

/* delikatny shine efekt */
.lp-modal-submit::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,.25) 40%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events:none;
}

.lp-modal-submit:hover::after{
  transform: translateX(120%);
}

.lp-modal-submit:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.lp-modal-submit:active{ transform: translateY(0); }

.lp-modal-submit-arrow{
  width: 24px;
  height: 24px;
  transition: transform .2s ease;
}
.lp-modal-submit:hover .lp-modal-submit-arrow{ transform: translateX(4px); }

.lp-modal-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-align:center;
}

#rejestracja{
  scroll-margin-top: 50px;
}

.lp-hero-header{
  position: relative;
}

.lp-header-hotspot{
  position: absolute;

  /* 🔧 DOSTRÓJ do miejsca na grafice */
  right: 8%;
  bottom: 51%;

  width: 260px;
  height: 80px;

  display: block;
  z-index: 5;
}

/* ================================
   MOBILE 
================================ */

@media (max-width: 768px){
  .lp-header-inner{
    padding: 10px 0;
  }

  .lp-logo img{
    height: 16px;   /* było 36px */
  }

  .lp-cta{
    padding: 8px 14px;
    font-size: 14px;
  }
   .lp-badgebar-wrap {
  margin-top: -22px;
	}
   
   .lp-badge {
  min-height: 64px;
	}
	
	.lp-title {
  font-size: 24px;
  font-weight: 900;
  }
	h4, .h4 {
  font-size: calc(1.1rem + 0.3vw);
   }
	
	.lp-lead {
  font-size: 16px;
  line-height: 1.3;
   }
}