/* =============================================================================
   Business Booster #1 Katowice - arkusz stylow
   Kolorystyka i typografia przejete z identyfikacji Raynet CRM (raynetcrm.pl)
   -----------------------------------------------------------------------------
   Zmieniasz kolory? Wystarczy sekcja :root ponizej.
============================================================================= */

/* --- FONT -------------------------------------------------------------------
   Domyslnie font laduje sie z Google Fonts (link w index.html).
   Chcesz go hostowac u siebie (RODO / szybkosc)?
   1. Pobierz Plus Jakarta Sans z fonts.google.com
   2. Wrzuc pliki .woff2 do assets/fonts/
   3. Usun <link> do Google Fonts w index.html
   4. Odkomentuj blok ponizej
--------------------------------------------------------------------------- */
/*
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-Variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}
*/

/* --- TOKENY MARKI RAYNET --------------------------------------------------- */
:root {
  /* kolory podstawowe */
  --rn-cyan:        #01a6c6;
  --rn-cyan-600:    #0b8ba6;
  --rn-cyan-050:    #e6f6fa;
  --rn-green:       #5ba439;
  --rn-green-600:   #4b8b2f;
  --rn-green-050:   #eef6e9;
  --rn-yellow:      #fccb4d;
  --rn-yellow-050:  #fff6e0;
  --rn-ink:         #363332;
  --rn-ink-70:      rgba(54, 51, 50, .70);
  --rn-ink-55:      rgba(54, 51, 50, .55);
  --rn-line:        rgba(62, 56, 56, .14);

  /* tla - jasna baza, zgodna z paleta Raynet */
  --rn-paper:       #fcfbf9;
  --rn-sand:        #f2f0ed;
  --rn-sand-deep:   #eae4de;
  --rn-white:       #ffffff;

  /* typografia */
  --ff: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* promienie - Raynet uzywa pigulek i duzych zaokraglen */
  --r-pill: 999px;
  --r-lg:   24px;
  --r-md:   16px;
  --r-sm:   8px;

  /* cienie */
  --sh-sm: 0 1px 2px rgba(54,51,50,.05), 0 4px 14px rgba(54,51,50,.05);
  --sh-md: 0 2px 6px rgba(54,51,50,.06), 0 18px 40px rgba(54,51,50,.08);
  --sh-lg: 0 30px 70px rgba(11,80,95,.14);

  /* rytm */
  --wrap: 1140px;
  --gutter: 24px;
}

/* --- RESET ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.62;
  color: var(--rn-ink);
  background: var(--rn-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--rn-cyan-600); }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.16; letter-spacing: -.015em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 1em; padding-left: 1.15em; }

:focus-visible {
  outline: 3px solid var(--rn-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--rn-ink); color: #fff; padding: 14px 24px;
  border-radius: 0 0 var(--r-md) 0; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- ELEMENTY WSPOLNE ------------------------------------------------------ */
.section { padding: 92px 0; position: relative; }
.section--sand { background: var(--rn-sand); }
.section--paper { background: var(--rn-paper); }
.section--white { background: var(--rn-white); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--rn-cyan-600); margin-bottom: 14px;
}
.kicker::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rn-cyan), var(--rn-green));
}
.section__title { font-size: clamp(28px, 3.6vw, 42px); max-width: 20ch; }
.section__lead { font-size: 19px; color: var(--rn-ink-70); max-width: 62ch; }
.section__head { margin-bottom: 48px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 600; font-size: 16px;
  padding: 16px 30px; border-radius: var(--r-pill);
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--rn-ink); color: var(--rn-paper); box-shadow: var(--sh-sm); }
.btn--primary:hover { background: #262322; box-shadow: var(--sh-md); }
.btn--accent { background: var(--rn-green); color: #fff; box-shadow: var(--sh-sm); }
.btn--accent:hover { background: var(--rn-green-600); box-shadow: var(--sh-md); }
.btn--ghost { background: var(--rn-white); color: var(--rn-ink); border-color: var(--rn-line); }
.btn--ghost:hover { border-color: var(--rn-cyan); color: var(--rn-cyan-600); }
.btn--sm { padding: 11px 20px; font-size: 14.5px; }
.btn__dot {
  width: 30px; height: 30px; border-radius: 50%; background: var(--rn-green);
  display: inline-grid; place-items: center; margin-right: -14px;
}
.btn__dot svg { width: 14px; height: 14px; }

/* podkreslenia w naglowkach */
.hl-cyan, .hl-green, .hl-yellow { position: relative; white-space: nowrap; }
.hl-cyan::after, .hl-green::after, .hl-yellow::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .17em;
  border-radius: 999px; z-index: -1; opacity: .58;
}
.hl-cyan::after   { background: var(--rn-cyan); }
.hl-green::after  { background: var(--rn-green); }
.hl-yellow::after { background: var(--rn-yellow); }

/* --- NAWIGACJA ------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,251,249,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--rn-line); box-shadow: 0 6px 24px rgba(54,51,50,.05); }
.nav__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--rn-ink); margin-right: auto; }
.nav__logo {
  display: grid; place-items: center; background: #000; border-radius: 11px;
  padding: 7px 11px; line-height: 0;
}
.nav__logo img { height: 28px; width: auto; display: block; }
@media (max-width: 420px) { .nav__logo img { height: 24px; } }
.nav__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: 0 0 38px;
  background: linear-gradient(140deg, var(--rn-cyan), var(--rn-green) 130%);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px; letter-spacing: -.04em;
}
.nav__brandtext { display: flex; flex-direction: column; line-height: 1.06; }
.nav__brandtext b { font-weight: 700; font-size: 15.5px; }
.nav__brandtext span { font-size: 11.5px; color: var(--rn-ink-55); font-weight: 600; letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 13px; border-radius: var(--r-sm); text-decoration: none;
  color: var(--rn-ink); font-size: 14.5px; font-weight: 600; transition: background-color .16s ease, color .16s ease;
}
.nav__links a:hover { background: var(--rn-sand); color: var(--rn-cyan-600); }
.nav__toggle {
  display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--rn-line);
  background: var(--rn-white); cursor: pointer; padding: 0; place-items: center;
}
.nav__toggle span { display: block; width: 17px; height: 2px; background: var(--rn-ink); border-radius: 2px; position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--rn-ink); border-radius: 2px;
}
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }

@media (max-width: 940px) {
  .nav__toggle { display: grid; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--rn-white); border-bottom: 1px solid var(--rn-line); padding: 10px var(--gutter) 18px;
    box-shadow: var(--sh-md); gap: 2px;
  }
  .nav__links[hidden] { display: none; }
  .nav__links a { padding: 13px 12px; font-size: 16px; }
  .nav__cta { display: none; }
}

/* --- HERO ------------------------------------------------------------------ */
.hero { position: relative; padding: 74px 0 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -220px -10% auto -10%; height: 620px; z-index: -2;
  background:
    radial-gradient(46% 62% at 8% 26%, rgba(1,166,198,.26), transparent 66%),
    radial-gradient(40% 56% at 74% 12%, rgba(91,164,57,.20), transparent 64%),
    radial-gradient(34% 48% at 46% 84%, rgba(252,203,77,.24), transparent 66%);
  filter: blur(6px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--rn-white); border: 1px solid var(--rn-line); box-shadow: var(--sh-sm);
  border-radius: var(--r-pill); padding: 8px 18px 8px 12px;
  font-size: 14px; font-weight: 600; color: var(--rn-ink);
}
.hero__badge i {
  width: 9px; height: 9px; border-radius: 50%; background: var(--rn-green);
  box-shadow: 0 0 0 4px rgba(91,164,57,.18);
}
.hero__logo {
  display: block; width: fit-content; background: #000; border-radius: 18px;
  padding: 14px 18px; margin-bottom: 22px;
  box-shadow: 0 14px 34px rgba(54,51,50,.16); line-height: 0;
}
.hero__logo img { display: block; width: 100%; max-width: 290px; height: auto; }
@media (max-width: 520px) { .hero__logo { padding: 12px 15px; border-radius: 15px; } }

.hero__title {
  font-size: clamp(44px, 7.4vw, 86px); margin: 26px 0 6px; letter-spacing: -.03em; position: relative; z-index: 1;
}
.hero__vol {
  margin: 2px 0 14px; font-size: clamp(17px, 2vw, 23px); font-weight: 600;
  letter-spacing: .02em; color: var(--rn-ink-55);
}
.hero__vol[hidden] { display: none; }
.hero__subtitle {
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 600; margin: 0 0 22px;
  background: linear-gradient(96deg, var(--rn-cyan-600), var(--rn-green) 55%, #b98a00);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: 19px; color: var(--rn-ink-70); max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 56px 0 0; padding: 0; list-style: none;
}
.fact {
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-md);
  padding: 20px; box-shadow: var(--sh-sm);
}
.fact__icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 12px; }
.fact__icon svg { width: 17px; height: 17px; }
.fact:nth-child(1) .fact__icon { background: var(--rn-cyan-050);   color: var(--rn-cyan-600); }
.fact:nth-child(2) .fact__icon { background: var(--rn-green-050);  color: var(--rn-green-600); }
.fact:nth-child(3) .fact__icon { background: var(--rn-yellow-050); color: #a8781a; }
.fact:nth-child(4) .fact__icon { background: var(--rn-sand-deep);  color: var(--rn-ink); }
.fact__label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--rn-ink-55); }
.fact__value { font-size: 17px; font-weight: 700; margin-top: 3px; }
.fact__sub { font-size: 14px; color: var(--rn-ink-55); }
@media (max-width: 900px) { .hero__facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .hero__facts { grid-template-columns: 1fr; } }

/* --- ZGLOSZENIE / IFRAME EVENEA -------------------------------------------- */
.reg { padding: 72px 0 92px; background: linear-gradient(180deg, transparent, var(--rn-sand) 90px); }
.reg__grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.reg__head { max-width: 66ch; }
.reg__action {
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 52px 40px; text-align: center;
  background-image: radial-gradient(60% 90% at 50% 0%, var(--rn-cyan-050), transparent 70%);
}
.reg__btn {
  display: flex; width: min(620px, 100%); margin: 0 auto;
  font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; letter-spacing: -.01em;
  padding: 30px 48px; gap: 16px;
  box-shadow: 0 14px 34px rgba(91,164,57,.3);
}
.reg__btn svg { width: 22px; height: 22px; }
.reg__btn:hover { box-shadow: 0 18px 44px rgba(91,164,57,.36); }
@media (max-width: 560px) {
  .reg__action { padding: 30px 18px; }
  .reg__btn { font-size: 19px; padding: 22px 22px; }
}

/* --- dodanie do kalendarza ------------------------------------------------- */
.cal { position: relative; display: inline-block; margin-top: 18px; }
.cal[hidden] { display: none; }
.cal__btn { gap: 10px; font-size: 15.5px; padding: 13px 24px; }
.cal__btn svg { width: 18px; height: 18px; }
.cal__chev { width: 14px !important; height: 14px !important; opacity: .55; transition: transform .18s ease; }
.cal__btn[aria-expanded="true"] .cal__chev { transform: rotate(180deg); }
.cal__menu {
  position: absolute; left: 50%; transform: translateX(-50%); top: calc(100% + 10px); z-index: 40;
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 7px; min-width: 268px; display: grid; gap: 2px; text-align: left;
}
.cal__menu[hidden] { display: none; }
.cal__menu a, .cal__menu button {
  display: block; width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font: inherit; font-size: 14.5px; font-weight: 600; color: var(--rn-ink);
  padding: 11px 14px; border-radius: 10px; text-decoration: none;
}
.cal__menu a:hover, .cal__menu button:hover { background: var(--rn-cyan-050); color: var(--rn-cyan-600); }
.reg__note {
  margin-top: 16px; font-size: 14.5px; color: var(--rn-ink-55);
  display: flex; align-items: flex-start; gap: 9px;
}
.reg__note svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 4px; color: var(--rn-cyan-600); }

/* --- BLOK Z GRAFIKA POD FORMULARZEM ---------------------------------------- */
.share {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--rn-white); border: 1px solid var(--rn-line); border-left: 4px solid var(--rn-yellow);
  border-radius: var(--r-md); padding: 20px 24px; box-shadow: var(--sh-sm);
}
.share__icon {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--rn-yellow-050); color: #a8781a;
}
.share__icon svg { width: 21px; height: 21px; }
.share__text { flex: 1 1 320px; min-width: 0; }
.share__title { font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.share__desc { font-size: 15px; color: var(--rn-ink-70); margin: 0; }
@media (max-width: 620px) {
  .share { padding: 18px; }
  .share .btn { width: 100%; }
}

/* --- O WYDARZENIU ---------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 32px; } }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: 13px; align-items: start; }
.checklist li::before {
  content: ""; width: 24px; height: 24px; border-radius: 8px; margin-top: 3px;
  background: var(--rn-green-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235ba439' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.panel {
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm);
}
.panel h3 { font-size: 20px; }
.panel--accent { border-top: 4px solid var(--rn-cyan); }

/* --- AGENDA ---------------------------------------------------------------- */
.agenda__list { display: grid; gap: 12px; }
.slot {
  display: grid; grid-template-columns: 138px 1fr; gap: 26px;
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-lg);
  padding: 26px 30px; box-shadow: var(--sh-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.slot:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.slot--break { background: transparent; box-shadow: none; border-style: dashed; }
.slot--break:hover { transform: none; box-shadow: none; }
.slot__time { font-weight: 700; font-size: 15px; color: var(--rn-ink); padding-top: 2px; font-variant-numeric: tabular-nums; }
.slot__tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 10px;
}
.slot__tag[data-tag="Doświadczenie"] { background: var(--rn-cyan-050); color: var(--rn-cyan-600); }
.slot__tag[data-tag="Inspiracja"]    { background: var(--rn-yellow-050); color: #a8781a; }
.slot__tag[data-tag="Zysk"]          { background: var(--rn-green-050); color: var(--rn-green-600); }
.slot__title { font-size: 20px; margin: 0 0 6px; }
.slot--break .slot__title { font-size: 17px; font-weight: 600; color: var(--rn-ink-70); }
.slot__speaker { font-size: 14.5px; font-weight: 600; color: var(--rn-cyan-600); margin-bottom: 10px; }
.slot__desc { font-size: 16px; color: var(--rn-ink-70); }
@media (max-width: 720px) {
  .slot { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .slot__time { font-size: 14px; color: var(--rn-cyan-600); }
}

/* --- PRELEGENCI ------------------------------------------------------------ */
.speakers__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 780px) { .speakers__grid { grid-template-columns: 1fr; } }
.speaker {
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
}
.speaker::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.speaker[data-accent="cyan"]::after   { background: var(--rn-cyan); }
.speaker[data-accent="green"]::after  { background: var(--rn-green); }
.speaker[data-accent="yellow"]::after { background: var(--rn-yellow); }
.speaker[data-accent="dark"]::after   { background: var(--rn-ink); }
.speaker { display: grid; grid-template-columns: 104px 1fr; gap: 22px; align-items: start; }
.speaker__photo { position: relative; }
.speaker__ava {
  width: 104px; height: 104px; border-radius: 22px; object-fit: cover; object-position: center top;
  display: grid; place-items: center; font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -.02em;
}
.speaker[data-accent="cyan"]   .speaker__ava { background: linear-gradient(140deg, var(--rn-cyan), var(--rn-cyan-600)); }
.speaker[data-accent="green"]  .speaker__ava { background: linear-gradient(140deg, var(--rn-green), var(--rn-green-600)); }
.speaker[data-accent="yellow"] .speaker__ava { background: linear-gradient(140deg, var(--rn-yellow), #e0a713); color: #4a3600; }
.speaker[data-accent="dark"]   .speaker__ava { background: linear-gradient(140deg, #4b4746, var(--rn-ink)); }
.speaker__name { font-size: 19px; margin: 0 0 3px; }
.speaker__link {
  color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 2px solid transparent; transition: color .16s ease, border-color .16s ease;
}
.speaker__link:hover { color: var(--rn-cyan-600); border-bottom-color: rgba(1,166,198,.45); }
.speaker__name { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.speaker__in {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 8px;
  color: var(--rn-cyan-600); background: var(--rn-cyan-050); flex: 0 0 26px;
  transition: background-color .16s ease, color .16s ease, transform .16s ease;
}
.speaker__in svg { width: 15px; height: 15px; }
.speaker__in:hover { background: var(--rn-cyan); color: #fff; transform: translateY(-1px); }
.speaker__role { font-size: 14px; color: var(--rn-ink-55); font-weight: 600; margin-bottom: 12px; }
.speaker__bio { font-size: 15.5px; color: var(--rn-ink-70); margin: 0; }
@media (max-width: 520px) {
  .speaker { grid-template-columns: 1fr; gap: 16px; }
  .speaker__ava { width: 88px; height: 88px; font-size: 26px; }
}

/* --- ORGANIZATOR I PARTNERZY ----------------------------------------------- */
.partners { padding: 66px 0; }
/* Grupy z duzymi logotypami stoja obok siebie, grupy z malymi zajmuja
   cala szerokosc i przechodza do nastepnego wiersza.                        */
.partners__groups { display: flex; flex-wrap: wrap; gap: 30px 52px; align-items: flex-start; }
.pgroup[data-size="duze"] { flex: 0 0 auto; }
.pgroup[data-size="male"] { flex: 1 0 100%; }
@media (max-width: 640px) { .pgroup { flex: 1 0 100%; } }
.pgroup__label {
  font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rn-ink-55); margin-bottom: 14px;
}
.pgroup__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.plogo {
  display: grid; place-items: center; padding: 12px 18px; border-radius: var(--r-md);
  background: var(--rn-white); border: 1px solid var(--rn-line); text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
a.plogo:hover { border-color: rgba(1,166,198,.45); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.plogo img { display: block; width: auto; }
.plogo__text { font-weight: 700; color: var(--rn-ink); font-size: 16px; letter-spacing: -.01em; }
.pgroup[data-size="duze"] .plogo { min-width: 172px; min-height: 74px; }
.pgroup[data-size="duze"] .plogo img { max-height: 42px; max-width: 168px; }
.pgroup[data-size="male"] .plogo { min-width: 116px; min-height: 56px; padding: 9px 14px; }
.pgroup[data-size="male"] .plogo img { max-height: 28px; max-width: 112px; }
.pgroup[data-size="male"] .plogo__text { font-size: 14px; }
.plogo--empty {
  background: transparent; border-style: dashed; border-color: rgba(62,56,56,.22);
}
.plogo--empty span { font-size: 11.5px; color: rgba(54,51,50,.38); font-weight: 600; }

/* --- MIEJSCE --------------------------------------------------------------- */
.venue__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .venue__grid { grid-template-columns: 1fr; gap: 28px; } }
.venue__address { font-size: 19px; font-weight: 600; margin-bottom: 20px; }
.venue__notes { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 16px; }
.venue__notes li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.venue__notes .ico {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: var(--rn-white); border: 1px solid var(--rn-line); color: var(--rn-cyan-600);
}
.venue__notes .ico svg { width: 19px; height: 19px; }
.venue__notes b { display: block; font-size: 16px; }
.venue__notes span { font-size: 15px; color: var(--rn-ink-70); }
.venue__card {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md);
  background: linear-gradient(150deg, var(--rn-cyan) 0%, #0d7f97 46%, var(--rn-green) 128%);
  color: #fff; padding: 44px 38px; min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end; position: relative;
}
.venue__card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 85% 8%, rgba(252,203,77,.34), transparent 60%);
}
.venue__card > * { position: relative; }
.venue__card h3 { font-size: 27px; margin-bottom: 6px; }
.venue__card p { opacity: .9; }
.venue__map { width: 100%; border: 0; display: block; min-height: 320px; border-radius: var(--r-lg); }
.venue__figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: var(--rn-sand); }
.venue__figure img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.venue__figure figcaption {
  padding: 14px 20px; font-size: 14.5px; font-weight: 600; color: var(--rn-ink-70);
  background: var(--rn-white); border-top: 1px solid var(--rn-line);
}

/* --- FAQ ------------------------------------------------------------------- */
.faq__list { display: grid; gap: 10px; max-width: 860px; }
.faq__item {
  background: var(--rn-white); border: 1px solid var(--rn-line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease;
}
.faq__item[open] { border-color: rgba(1,166,198,.42); box-shadow: var(--sh-sm); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-weight: 600; font-size: 17.5px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 11px; height: 11px;
  border-right: 2.4px solid var(--rn-cyan-600); border-bottom: 2.4px solid var(--rn-cyan-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq__item summary:hover { color: var(--rn-cyan-600); }
.faq__answer { padding: 0 24px 22px; color: var(--rn-ink-70); font-size: 16.5px; }

/* --- CTA KONCOWE ----------------------------------------------------------- */
.finalcta { padding: 88px 0; }
.finalcta__box {
  background: var(--rn-ink); color: var(--rn-paper); border-radius: 32px;
  padding: 64px 56px; text-align: center; position: relative; overflow: hidden;
}
.finalcta__box::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(46% 78% at 12% 100%, rgba(1,166,198,.42), transparent 62%),
    radial-gradient(40% 70% at 88% 0%, rgba(91,164,57,.34), transparent 62%),
    radial-gradient(28% 50% at 62% 108%, rgba(252,203,77,.28), transparent 62%);
}
.finalcta__box > * { position: relative; }
.finalcta__box h2 { font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 14px; }
.finalcta__box p { font-size: 18.5px; opacity: .82; max-width: 54ch; margin-inline: auto; }
.finalcta__box .btn { margin-top: 30px; }
.finalcta__box .btn--accent { background: var(--rn-yellow); color: #3b2b00; }
.finalcta__box .btn--accent:hover { background: #ffd76a; }
@media (max-width: 620px) { .finalcta__box { padding: 44px 26px; border-radius: 24px; } }

/* --- KONTAKT + STOPKA ------------------------------------------------------ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 780px) { .contact__grid { grid-template-columns: 1fr; gap: 24px; } }
.contact__card { display: flex; gap: 18px; align-items: flex-start; }
.contact__avaSlot { flex: 0 0 58px; }
.contact__ava {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  object-fit: cover; object-position: center top;
  background: linear-gradient(140deg, var(--rn-cyan), var(--rn-green) 140%); color: #fff; font-weight: 800; font-size: 18px;
}
img.contact__ava { background: var(--rn-sand); }
.contact__links { display: grid; gap: 6px; margin-top: 10px; font-size: 16px; }
.contact__links a { color: var(--rn-ink); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.contact__links a:hover { color: var(--rn-cyan-600); }
.contact__links svg { width: 16px; height: 16px; color: var(--rn-cyan-600); }

.footer { background: var(--rn-sand); padding: 52px 0 40px; font-size: 15px; color: var(--rn-ink-70); }
.footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; } }
.footer b { color: var(--rn-ink); }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__links a { color: var(--rn-ink); text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: var(--rn-cyan-600); text-decoration: underline; }
.footer__bottom {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--rn-line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13.5px; color: var(--rn-ink-55);
}

/* --- PLYWAJACY PASEK CTA (mobile) ------------------------------------------ */
.stickybar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 55;
  background: var(--rn-ink); color: #fff; border-radius: var(--r-pill);
  padding: 10px 10px 10px 22px; display: none; align-items: center; gap: 14px;
  box-shadow: 0 14px 40px rgba(54,51,50,.28);
  transform: translateY(150%); transition: transform .28s ease;
}
.stickybar.is-on { transform: translateY(0); }
.stickybar span { font-size: 14.5px; font-weight: 600; }
.stickybar .btn { padding: 11px 20px; font-size: 14.5px; background: var(--rn-yellow); color: #3b2b00; margin-left: auto; }
@media (max-width: 780px) { .stickybar { display: flex; } }

/* --- ANIMACJA WEJSCIA ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- DRUK ------------------------------------------------------------------ */
@media print {
  .nav, .stickybar, .reg__action, .finalcta, #bb-editor, #bb-editor-open { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .section { padding: 18px 0; break-inside: avoid; }
}

