:root {
  --lp-primary: #081452;
  --lp-primary-light: #142090;
  --lp-accent: #f3e32c;
  --lp-bg: #f4f6f9;
  --lp-text: #081452;
  --lp-muted: #5c6370;
  --lp-radius: 12px;
  --lp-shadow: 0 8px 30px rgba(0, 51, 102, 0.08);
  --lp-hero-navy: #020824;
  --lp-hero-navy-mid: #0a1548;
  --lp-hero-navy-light: #1a3080;
  --lp-dni-gradient-start: #071353;
  --lp-dni-gradient-end: #0d37c3;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  color: var(--lp-text);
  background: #fff;
  line-height: 1.5;
}
a { color: var(--lp-primary-light); }
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.lp-container--narrow { max-width: 720px; }
.lp-muted { color: var(--lp-muted); }
.lp-text-center { text-align: center; }

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.lp-header--hero {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  background: linear-gradient(117deg, rgba(0, 4, 31, 1) 0%, rgba(9, 20, 86, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-header--hero.is-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: linear-gradient(117deg, rgba(0, 4, 31, 0.98) 0%, rgba(9, 20, 86, 0.98) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.lp-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; flex-wrap: wrap; }
.lp-logo img { height: 35px; width: auto; transition: height 0.3s ease; }
.lp-header--hero.is-scrolled .lp-logo img { height: 32px; }
.lp-nav { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.lp-nav a:not(.lp-btn) {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-nav a:not(.lp-btn):hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.45);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lp-btn--primary { background: var(--lp-primary); color: #fff; }
.lp-btn--outline { border-color: var(--lp-primary); color: var(--lp-primary); background: transparent; }
.lp-btn--cta {
  background: var(--lp-accent);
  color: var(--lp-primary);
  border-color: rgba(255, 255, 255, 0.5);
}
.lp-btn--cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-accent);
  border-color: var(--lp-accent);
}
.lp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lp-btn--lg { padding: 0.85rem 1.75rem; }

.lp-hero { background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-light)); color: #fff; padding: 4rem 0; }
.lp-hero__eyebrow { text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.lp-hero__title { font-size: clamp(1.75rem, 4vw, 2.75rem); max-width: 800px; }
.lp-hero__dates { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.lp-hero__date-card { background: rgba(255,255,255,0.12); padding: 1rem 1.25rem; border-radius: var(--lp-radius); min-width: 180px; display: flex; flex-direction: column; gap: 0.25rem; }

.lp-section {
  padding: 4rem 0;
  overflow: hidden;
}
.lp-section--alt { background: var(--lp-bg); }
.lp-section__title {
  width: 100%;
  margin: 0 0 2rem;
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: var(--lp-primary);
}

.lp-agenda__item { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #e8ecf1; }
.lp-badge { display: inline-block; background: #e8f0fa; color: var(--lp-primary); padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.85rem; }

.lp-speakers, .lp-partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; }
.lp-speaker, .lp-partner { background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); padding: 1rem; text-align: center; }
.lp-speaker img, .lp-partner img { width: 100%; max-height: 100px; object-fit: contain; }
.lp-speaker__placeholder { width: 80px; height: 80px; margin: 0 auto 0.75rem; border-radius: 50%; background: #e8ecf1; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--lp-muted); }

.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.lp-form-grid input, .lp-form-grid select, .lp-reg-form textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid #d5dbe3; border-radius: 8px; font: inherit; }
.lp-fieldset { border: 1px solid #d5dbe3; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }
.lp-check, .lp-radio { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.lp-notice { background: #fff8e6; border-left: 4px solid var(--lp-accent); padding: 0.75rem 1rem; margin-bottom: 1rem; }
.lp-form-message { margin-top: 1rem; padding: 1rem; border-radius: 8px; }
.lp-form-message.is-success { background: #e8f8ef; color: #1b6b3a; }
.lp-form-message.is-error { background: #fdecea; color: #9b1c1c; }

/* === REJESTRACJA === */
.lp-register {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: #fff;
  background-color: var(--lp-hero-navy);
  background-image: url('../img/banner_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.lp-register::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    102deg,
    rgba(13, 55, 195, 0.38) 0%,
    rgba(7, 19, 83, 0.48) 100%
  );
}

@media (max-width: 900px) {
  .lp-register {
    background-attachment: scroll;
  }
}

.lp-register__inner {
  position: relative;
  z-index: 2;
}

.lp-register .lp-container--narrow {
  max-width: 960px;
}

.lp-register__title {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
}

.lp-register__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: var(--lp-accent);
}

.lp-register__compass-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(260px, 34vw, 480px);
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.lp-register__compass {
  position: sticky;
  top: 22vh;
  left: 0;
  display: block;
  width: clamp(320px, 42vw, 560px);
  max-width: none;
  margin-left: clamp(-140px, -10vw, -50px);
  opacity: 1;
  pointer-events: none;
}

.lp-register .lp-fieldset {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.lp-register .lp-fieldset legend,
.lp-register .lp-check,
.lp-register .lp-radio {
  color: #fff;
}

.lp-register .lp-fieldset legend strong {
  color: var(--lp-accent);
}

.lp-register .lp-notice {
  color: var(--lp-primary);
}

.lp-register .lp-btn--primary {
  background: var(--lp-accent);
  color: var(--lp-primary);
}

.lp-register .lp-btn--primary:hover {
  background: #fff;
  color: var(--lp-primary);
}

@media (max-width: 900px) {
  .lp-register__compass-wrap {
    width: clamp(180px, 40vw, 260px);
  }

  .lp-register__compass {
    position: absolute;
    top: auto;
    bottom: 0;
    width: clamp(220px, 55vw, 340px);
    margin-left: clamp(-90px, -16vw, -30px);
    opacity: 0.4;
  }
}

/* --- Formularz rejestracji (nowy układ) --- */
:root {
  --lp-rf-blue: #2f6bed;
  --lp-rf-err: #ff7a7a;
}

.lp-rf-form {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(7, 16, 56, 0.55);
  box-shadow: 0 30px 70px rgba(2, 8, 36, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp-rf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.lp-rf {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.lp-rf__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.8);
}

.lp-rf__req {
  color: var(--lp-accent);
}

.lp-rf__field {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-rf__icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.lp-rf-form .lp-rf__field input,
.lp-rf-form .lp-rf__field select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  line-height: 1.2;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.lp-rf-form .lp-rf__field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lp-rf-form .lp-rf__field select {
  color: rgba(255, 255, 255, 0.85);
}

.lp-rf-form .lp-rf__field select option {
  color: var(--lp-primary);
}

.lp-rf-form .lp-rf__field input:focus,
.lp-rf-form .lp-rf__field select:focus {
  outline: none;
  border-color: var(--lp-accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(243, 227, 44, 0.22);
}

.lp-rf__field--select select {
  cursor: pointer;
  padding-right: 2.6rem;
}

.lp-rf__chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* Stan błędu pola */
.lp-rf__error {
  display: none;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--lp-rf-err);
}

.lp-rf.is-invalid .lp-rf__error,
.lp-rf-days.is-invalid > .lp-rf-days__error,
.lp-day-card__formats.is-invalid > .lp-rf__error {
  display: block;
}

.lp-rf.is-invalid .lp-rf__field input,
.lp-rf.is-invalid .lp-rf__field select {
  border-color: var(--lp-rf-err);
  box-shadow: 0 0 0 3px rgba(255, 122, 122, 0.18);
}

.lp-rf__hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.lp-rf__field--autocomplete {
  position: relative;
}

.lp-institution-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  max-height: 260px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid #d5deec;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 20, 82, 0.14);
}

.lp-institution-suggest.hidden {
  display: none;
}

.lp-institution-suggest__item {
  display: block;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-bottom: 1px solid #eef2f8;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.lp-institution-suggest__item:last-child {
  border-bottom: 0;
}

.lp-institution-suggest__item:hover,
.lp-institution-suggest__item.is-active {
  background: #eef2fc;
}

.lp-institution-suggest__name {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: #081452;
  line-height: 1.35;
}

.lp-institution-suggest__hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: #5c6370;
}

.lp-institution-suggest__empty {
  padding: 0.85rem;
  font-size: 0.8rem;
  color: #5c6370;
  line-height: 1.4;
}

/* Karty wyboru dni */
.lp-rf-days {
  margin-bottom: 1.75rem;
}

.lp-rf-days__title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.lp-rf-days__hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.lp-rf-days__hint strong {
  color: var(--lp-accent);
}

.lp-day-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-day-card:hover {
  border-color: rgba(47, 107, 237, 0.6);
}

.lp-day-card--expandable {
  position: relative;
  display: block;
  cursor: default;
}

.lp-day-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  cursor: pointer;
}

.lp-day-card__check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-day-card__box {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-day-card__box i {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lp-day-card__check:checked ~ .lp-day-card__box {
  background: var(--lp-rf-blue);
  border-color: var(--lp-rf-blue);
}

.lp-day-card__check:checked ~ .lp-day-card__box i {
  opacity: 1;
}

.lp-day-card__check:focus-visible ~ .lp-day-card__box {
  box-shadow: 0 0 0 3px rgba(47, 107, 237, 0.4);
}

.lp-day-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
}

.lp-day-card__main {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1 1 auto;
  min-width: 0;
}

.lp-day-card__name {
  font-size: 0.98rem;
  font-weight: 700;
}

.lp-day-card__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-accent);
}

.lp-day-card__mode {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.lp-day-card__note {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  width: 230px;
  max-width: 230px;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
}

.lp-day-card__note i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.95rem;
  color: var(--lp-accent);
}

.lp-day-card__note-text {
  min-width: 0;
}

.lp-day-card__note strong {
  color: var(--lp-accent);
}

.lp-day-card:has(.lp-day-card__check:checked),
.lp-day-card--expandable:has(.lp-day-card__check:checked) {
  border-color: var(--lp-rf-blue);
  background: rgba(47, 107, 237, 0.1);
}

.lp-day-card__formats {
  margin-top: 1.1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.lp-day-card__formats-label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.lp-format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.lp-notice {
  grid-column: 1 / -1;
  margin: 0 0 0.25rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(243, 227, 44, 0.12);
  border: 1px solid rgba(243, 227, 44, 0.4);
  font-size: 0.78rem;
  color: #fff;
}

.lp-format-opt {
  display: block;
  margin: 0;
  cursor: pointer;
}

.lp-format-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-format-opt__box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  height: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-format-opt__dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
}

.lp-format-opt__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lp-format-opt__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lp-format-opt__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.lp-format-opt__desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.lp-format-opt input:checked + .lp-format-opt__box {
  border-color: var(--lp-accent);
  background: rgba(243, 227, 44, 0.1);
}

.lp-format-opt input:checked + .lp-format-opt__box .lp-format-opt__dot {
  border-color: var(--lp-accent);
}

.lp-format-opt input:checked + .lp-format-opt__box .lp-format-opt__dot::after {
  opacity: 1;
}

.lp-format-opt input:focus-visible + .lp-format-opt__box {
  box-shadow: 0 0 0 3px rgba(243, 227, 44, 0.3);
}

.lp-day-card__formats.is-invalid .lp-format-opt__box {
  border-color: var(--lp-rf-err);
}

.lp-day-card__formats .lp-rf__error {
  margin-top: 0.6rem;
}

/* Zgody */
.lp-rf-consents {
  margin-bottom: 1.75rem;
}

.lp-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  line-height: 1.45;
  cursor: pointer;
}

.lp-consent input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-consent__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lp-primary);
  font-size: 0.75rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-consent__box i {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lp-consent input:checked ~ .lp-consent__box {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
}

.lp-consent input:checked ~ .lp-consent__box i {
  opacity: 1;
}

.lp-consent input:focus-visible ~ .lp-consent__box {
  box-shadow: 0 0 0 3px rgba(243, 227, 44, 0.35);
}

.lp-consent.is-invalid .lp-consent__box {
  border-color: var(--lp-rf-err);
  box-shadow: 0 0 0 3px rgba(255, 122, 122, 0.18);
}

.lp-consent__hl {
  color: var(--lp-accent);
}

.lp-consent__link {
  color: var(--lp-accent);
  text-decoration: underline;
  word-break: break-word;
}

.lp-consent__link:hover {
  color: #fff;
}

/* Przycisk wysyłki */
.lp-rf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.05rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.lp-rf-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(243, 227, 44, 0.25);
}

.lp-rf-submit i {
  font-size: 1.1rem;
}

/* Komunikat zbiorczy */
.lp-rf-form .lp-form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
}

.lp-rf-form .lp-form-message.is-error {
  background: rgba(255, 122, 122, 0.14);
  border: 1px solid rgba(255, 122, 122, 0.4);
  color: #ffd9d9;
}

.lp-rf-form .lp-form-message.is-success {
  background: rgba(70, 200, 120, 0.15);
  border: 1px solid rgba(70, 200, 120, 0.45);
  color: #d6ffe4;
}

/* Panel po udanej rejestracji */
.lp-rf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 3rem) 1rem;
  animation: lp-rf-success-in 0.4s ease;
}

.lp-rf-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38c172, #2aa05c);
  color: #fff;
  font-size: 2.6rem;
  box-shadow: 0 0 0 8px rgba(56, 193, 114, 0.18), 0 14px 34px rgba(42, 160, 92, 0.4);
}

.lp-rf-success__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
}

.lp-rf-success__text {
  margin: 0;
  max-width: 460px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes lp-rf-success-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .lp-rf-grid {
    grid-template-columns: 1fr;
  }

  .lp-format-grid {
    grid-template-columns: 1fr;
  }

  .lp-day-card,
  .lp-day-card__head {
    flex-wrap: wrap;
  }

  .lp-day-card__icon {
    display: none;
  }

  .lp-day-card__note {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

.lp-recordings { display: grid; gap: 2rem; }
.lp-recording__embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--lp-radius); }
.lp-recording__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.lp-footer { background: var(--lp-primary); color: #fff; padding: 2rem 0; margin-top: 2rem; }
.lp-footer a { color: #fff; }

.lp-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}

/* === HERO / BANNER (EFPA 2025 structure, KV 2026) === */
#banner {
  min-height: 100vh;
  background-color: var(--lp-hero-navy);
  background-image: url('../img/banner_bg.jpg');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
}

.banner_content {
  padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 40px);
  max-width: min(1440px, 94vw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.banner_content--logo {
  padding-bottom: 0;
}

.banner_logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(300px, 50vw);
  margin-bottom: clamp(1.1rem, 2.8vw, 2rem);
}

.mainbcontent {
  display: flex;
  align-items: center;
  position: relative;
  min-height: clamp(320px, 50vh, 600px);
  padding-top: 0;
}

.banner_main_left {
  width: 46%;
  max-width: 38rem;
  position: relative;
  z-index: 2;
}

.banner_main_right {
  width: 58%;
  position: absolute;
  right: -3%;
  bottom: -52%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
}

.compass_wrap {
  transform-origin: center center;
}

.banner_main_right img,
.compass_img {
  display: block;
  max-width: none;
  width: min(780px, 56vw);
  height: auto;
}

.banner_big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(1.75rem, 3.55vw, 3.35rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.banner_big .line1,
.banner_big .line2,
.banner_big .line3 {
  color: #fff;
}

@media (min-width: 901px) {
  .banner_big .line2 {
    white-space: nowrap;
  }
}

.banner_small {
  font-size: clamp(0.95rem, 1.65vw, 1.42rem);
  font-weight: 300;
  margin-top: clamp(12px, 1.8vw, 22px);
  line-height: 1.32;
  max-width: 30rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.92);
}

.banner_big .emph {
  color: var(--lp-accent);
}

.banner_footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.banner_footer_right {
  font-size: clamp(0.85rem, 1.25vw, 1rem);
  letter-spacing: 0.04em;
}

.banner_footer a {
  text-decoration: none;
  color: var(--lp-accent);
  font-weight: 600;
}

.banner_dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0;
}

.banner_date {
  color: #fff;
}

.banner_date.d1 {
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.85);
}

.banner_date__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.banner_date__icon {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--lp-accent);
  flex-shrink: 0;
}

.banner_date__value {
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
}

.banner_type {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  font-size: clamp(0.58rem, 0.85vw, 0.72rem);
  letter-spacing: 0.06em;
  padding-left: calc(clamp(1rem, 1.6vw, 1.25rem) + 0.45rem);
}

/* === SCROLL ANIMATIONS === */
.hidden {
  opacity: 0;
  pointer-events: none;
}

.fadeIn { animation: fadeIn 1s forwards; }
.fadeInSlow { animation: fadeIn 1.5s forwards; }
.flipIn { animation: flipIn 1.3s forwards; }
.slideInUp { animation: slideInUp 1s forwards; }
.slideInLeft { animation: slideInLeft 1s forwards; }
.slideInRight { animation: slideInRight 1s forwards; }
.slideForward { animation: slideForward 0.8s ease-out forwards; }

[data-animate="slideInLeft"] { transform: translateX(-100%); }
[data-animate="slideInRight"] { transform: translateX(100%); }
[data-animate="flipIn"] { transform: perspective(400px) rotateY(90deg); }
[data-animate="slideInUp"] { transform: translateY(50px); }
[data-animate="slideInTop"] { transform: translateY(-50px); }
[data-animate="slideInBottom"] { transform: translateY(50px); }

.slideInTop { animation: slideInTop 1s forwards; }
.slideInBottom { animation: slideInBottom 1s forwards; }

@keyframes slideInTop {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInBottom {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideForward {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes compassRotate {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

.compass_wrap.compass-spin {
  animation: compassRotate 14s ease-in-out infinite;
}

/* === SEKCJA DNI (boxy) === */
.lp-dni {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background-color: #cad9f1;
}

.lp-dni::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/daysbg.png) center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.lp-dni > .lp-container {
  position: relative;
  z-index: 1;
}

.lp-dni__tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.lp-dni-tile {
  flex: 1 1 320px;
  max-width: calc(50% - 0.7rem);
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.35rem, 2.8vw, 2.25rem);
  border-radius: 14px;
  color: #fff;
  text-transform: uppercase;
  background: var(--lp-dni-gradient-start);
  background: linear-gradient(
    102deg,
    var(--lp-dni-gradient-start) 0%,
    var(--lp-dni-gradient-end) 100%
  );
}

.lp-dni-tile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.65rem;
  margin-bottom: clamp(0.85rem, 1.6vw, 1.15rem);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  letter-spacing: 0.02em;
}

.lp-dni-tile__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.lp-dni-tile__date-icon {
  font-size: 1.05em;
  line-height: 1;
}

.lp-dni-tile__sep {
  font-weight: 400;
  opacity: 0.9;
}

.lp-dni-tile__mode {
  font-weight: 300;
}

.lp-dni-tile__title {
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--lp-accent);
}

.lp-dni-tile__footer {
  font-size: clamp(0.68rem, 0.95vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lp-dni-tile__footer--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
}

.lp-dni-tile__footer-sep {
  display: inline-block;
  width: 1px;
  height: 0.95em;
  background: rgba(255, 255, 255, 0.65);
}

.lp-dni-tile__detail i {
  margin-right: 0.35rem;
  font-size: 1.45em;
  line-height: 1;
  vertical-align: -0.12em;
}

.lp-dni__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1rem;
}

.lp-dni-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 220px);
  padding: 0.9rem 2.25rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.lp-dni-btn--primary {
  background: var(--lp-accent);
  color: var(--lp-primary);
}

.lp-dni-btn--outline {
  background: var(--lp-primary);
  color: #fff;
}

.lp-dni-btn--primary:hover,
.lp-dni-btn--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(8, 20, 82, 0.22);
}

.lp-dni-btn--primary:hover,
.lp-dni-btn--outline:hover {
  background: #0a1a6a;
  color: #fff;
}

/* === TIMER === */
.lp-timer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  text-align: center;
  color: #fff;
  background-color: var(--lp-dni-gradient-start);
  background-image: linear-gradient(
    102deg,
    var(--lp-dni-gradient-end) 0%,
    var(--lp-dni-gradient-start) 100%
  );
}

.lp-timer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/timer-bg.png) center / cover no-repeat;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.lp-timer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(1rem, 2.5vw, 1.5rem);
  background: none;
  border-radius: 0;
}

.lp-timer__headline {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.lp-timer__headline-accent {
  color: var(--lp-accent);
}

.lp-timer__headline-rest {
  color: #fff;
}

.lp-timer__countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.lp-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: clamp(76px, 13vw, 118px);
  padding: 0;
}

.lp-timer__unit--days {
  width: clamp(92px, 15vw, 132px);
}

.lp-timer__value {
  display: block;
  width: 100%;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.lp-timer__value--accent {
  color: var(--lp-accent);
}

.lp-timer__label {
  margin-top: 0.45rem;
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.lp-timer__divider {
  display: block;
  width: 1px;
  align-self: stretch;
  min-height: 3.5rem;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.lp-timer__finished-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--lp-accent);
}

.lp-timer__finished-text {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .lp-timer__countdown {
    row-gap: 0.5rem;
  }

  .lp-timer__divider {
    display: none;
  }

  .lp-timer__unit {
    width: 22%;
    min-width: 64px;
  }

  .lp-timer__unit--days {
    width: 26%;
    min-width: 72px;
  }
}

#info.lp-section {
  background: linear-gradient(180deg, #CBD8F0 0%, #F5F6F8 100%);
}

.lp-about {
  text-align: center;
}
.lp-about .lp-section__title {
  margin-bottom: 0.5rem;
}
.lp-about h3 {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: none;
  color: var(--lp-primary);
}
.lp-about__photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--lp-radius);
  margin-top: 0.5rem;
}

/* === KOTWICE TEMATYCZNE === */
.lp-kotwice {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 4rem 0;
  color: #fff;
  background: linear-gradient(
    175deg,
    rgba(1, 3, 28, 1) 0%,
    rgba(12, 26, 106, 1) 25%,
    rgba(14, 36, 135, 1) 49%,
    rgba(20, 43, 163, 1) 76%,
    rgba(14, 77, 192, 1) 100%
  );
}

.lp-kotwice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/kotwice-bg.png) right top / cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.lp-kotwice > .lp-container {
  position: relative;
  z-index: 1;
}

.lp-kotwice__title-wrap {
  position: relative;
}

.lp-kotwice__title {
  margin: 0 0 2rem;
  text-align: center;
}

.lp-kotwice__title-main {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}

.lp-kotwice__title-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lp-accent);
  line-height: 1.2;
}

.lp-compass {
  position: relative;
  overflow: visible;
  max-width: 980px;
  margin: 2rem auto 0;
  padding: 18px 0;
}

.lp-compass__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.lp-compass__tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(88px, 12vw, 108px);
  padding: 1.1rem 0.85rem;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.lp-compass__label {
  position: relative;
}

/* === OBIETNICE (4 kafle) === */
.lp-obietnice {
  background: linear-gradient(180deg, #CBD8F0 0%, #F5F6F8 100%);
}

.lp-obietnice__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.lp-obietnice__media,
.lp-obietnice__panel {
  width: 48%;
  padding: 20px;
}

.lp-obietnice__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--lp-radius);
}

.lp-obietnice__panel--top,
.lp-obietnice__panel--bottom {
  background: transparent;
}

.lp-obietnice__title {
  margin: 0 0 1.25rem;
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: var(--lp-primary);
}

.lp-obietnice__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-obietnice__list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--lp-text);
}

.lp-obietnice__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 24px;
  height: 24px;
  background-image: url('../img/punktor1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* === KONGRESOWY KALEJDOSKOP === */
.lp-kalejdoskop {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  color: #fff;
  background: linear-gradient(
    175deg,
    rgba(1, 3, 28, 1) 0%,
    rgba(12, 26, 106, 1) 25%,
    rgba(14, 36, 135, 1) 49%,
    rgba(20, 43, 163, 1) 76%,
    rgba(14, 77, 192, 1) 100%
  );
}

.lp-kalejdoskop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/kalejdoskop-bg.png) left top / cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.lp-kalejdoskop > .lp-container {
  position: relative;
  z-index: 1;
}

.lp-kalejdoskop__inner {
  text-align: center;
}

.lp-kalejdoskop__header {
  margin-bottom: 2rem;
}

.lp-kalejdoskop__title {
  margin: 0;
}

.lp-kalejdoskop__title-main {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}

.lp-kalejdoskop__title-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lp-accent);
  line-height: 1.2;
}

.lp-kalejdoskop__sep {
  position: relative;
  width: min(520px, 82%);
  height: 12px;
  margin: 1.35rem auto 0;
}

.lp-kalejdoskop__sep::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 22%,
    rgba(255, 255, 255, 0.35) 78%,
    transparent 100%
  );
}

.lp-kalejdoskop__sep::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-accent);
  transform: translate(-50%, -50%);
}

.lp-kalejdoskop__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.lp-kalejdoskop__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  max-width: 980px;
}

.lp-kalejdoskop__item {
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.4;
}

.lp-kalejdoskop__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 clamp(0.65rem, 2vw, 1.1rem);
  border-radius: 50%;
  background: var(--lp-accent);
  flex-shrink: 0;
}

.lp-pill-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.lp-pill { background: #e8f0fa; color: var(--lp-primary); padding: 0.65rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.lp-pill--dark { background: var(--lp-primary); color: #fff; }

.lp-list { padding-left: 1.2rem; }
.lp-list li { margin-bottom: 0.75rem; }

.lp-agenda-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.lp-agenda-tab { border: 1px solid #d5dbe3; background: #fff; padding: 0.65rem 1rem; border-radius: 999px; cursor: pointer; }
.lp-agenda-tab.is-active { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }
.lp-agenda-day { display: none; }
.lp-agenda-day.is-active { display: block; }

.lp-badge--vip { background: #fff3cd; color: #856404; padding: 0.35rem 0.75rem; border-radius: 999px; font-weight: 600; }
.lp-vip-banner { background: #fff8e6; border: 1px solid #f0d78c; border-radius: var(--lp-radius); padding: 1.25rem; margin-bottom: 1.5rem; }

@media (max-width: 1030px) {
  #banner {
    background-position: center;
  }

  .banner_logo {
    max-width: min(260px, 58vw);
  }

  .mainbcontent {
    flex-wrap: wrap;
    min-height: auto;
  }

  .banner_main_left {
    width: 100%;
    max-width: none;
  }

  .banner_main_right {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 0.25rem;
    transform: translateY(8%);
  }

  .banner_main_right img,
  .compass_img {
    width: min(480px, 88vw);
  }

  .banner_footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .lp-compass__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lp-compass__link {
    display: none;
  }
}

@media (max-width: 420px) {
  .lp-compass__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .lp-obietnice__media,
  .lp-obietnice__panel {
    width: 100%;
  }

  .lp-dni-tile {
    max-width: 100%;
  }

  .lp-dni__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-dni-btn {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-nav-toggle { display: block; }
  .lp-nav {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 72px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.25rem;
    background: linear-gradient(117deg, rgba(0, 4, 31, 1) 0%, rgba(9, 20, 86, 1) 100%);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .lp-nav.is-open { display: flex; }
  .lp-nav a:not(.lp-btn) {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lp-btn { width: 100%; margin-top: 0.5rem; }
}

@media (max-width: 768px) {
  .lp-form-grid, .lp-agenda__item { grid-template-columns: 1fr; }
  .lp-nav { width: 100%; }
}

/* Placeholder „wkrótce” — prelegenci, partnerzy */
.lp-section-soon {
  width: 100%;
  margin: 0.25rem 0 0;
}

.lp-section-soon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.15rem;
  width: 100%;
  padding: clamp(1.35rem, 3vw, 2.15rem) clamp(1.25rem, 4vw, 2.75rem);
  border-radius: calc(var(--lp-radius) + 4px);
  background: linear-gradient(
    135deg,
    rgba(203, 216, 240, 0.55) 0%,
    rgba(228, 235, 248, 0.85) 45%,
    rgba(245, 247, 252, 0.95) 100%
  );
  border: 1px dashed rgba(8, 20, 82, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 4px 18px rgba(8, 20, 82, 0.05);
}

.lp-section-soon__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: rgba(8, 20, 82, 0.08);
  color: var(--lp-primary-light);
  font-size: 1.3rem;
  line-height: 1;
}

.lp-section-soon__text {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lp-muted);
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .lp-section-soon__inner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
  }
}
