/* ==========================================================================
   Strefa FemmeLead — landing page (v1)
   Paleta pochodzi z KSIĘGI ZNAKU klientki (materialy/Strefa-FemmeLead_Brandbook.pdf),
   nie z eksportu Figmy — decyzja z 2026-08-19. Nazwy tokenów zostały ze spec-u,
   żeby reguły komponentów dalej się zgadzały; --fl-tan jest teraz aliasem złota ciemnego.
   Ładowane PO bootstrap.min.css — ten plik nadpisuje zmienne Bootstrapa.
   ========================================================================== */

:root {
  /* ---- kolory: KSIĘGA ZNAKU „Strefa FemmeLead", wersja 1.0 (źródło nadrzędne) ---- */
  --fl-plum:        #2C1D2F;  /* śliwka — nagłówki, wypełnione przyciski */
  --fl-cream:       #F4EBDE;  /* krem — tło bazowe */
  --fl-sand:        #EDE3D4;  /* piaskowy — tło sekcji naprzemiennej */
  --fl-gold:        #C68A5C;  /* złoto */
  --fl-gold-light:  #D8A072;  /* złoto jasne */
  --fl-gold-dark:   #AC6C44;  /* złoto ciemne */

  /* ---- wartości pochodne (brandbook ich nie definiuje, wyprowadzone z powyższych) ---- */
  --fl-plum-deep:   #1C111E;  /* przyciemniona śliwka — hover przycisku, stopka */
  --fl-plum-soft:   #4A3450;  /* rozjaśniona śliwka — druga ćwiartka koła DISC */
  --fl-ink:         #3A3134;  /* tekst akapitowy — ciepła szarość, nie czysta czerń */
  --fl-blush:       #E7D8C4;  /* ciepły akcent tła: blob za portretem, tło koła DISC */
  --fl-line:        #DDD0BC;  /* subtelne separatory */
  --fl-tan:         var(--fl-gold-dark);  /* alias dla reguł ze spec-u */
  /* ODSTĘPSTWO (świadome): złoto ciemne na kremie daje 3.6:1 — za mało dla tekstu <18 px wg WCAG AA.
     Małe napisy (eyebrow, pasek dowodów, dopiski) używają przyciemnionego złota z tej samej rodziny. */
  --fl-tan-ink:     #8A5432;

  /* typografia — brandbook: nagłówki krój szeryfowy (Playfair Display / Cormorant / Georgia),
     tekst bezszeryfowy (Montserrat / Lato / Inter) */
  --fl-display: "Playfair Display", Georgia, serif;
  --fl-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* kształt */
  --fl-radius-pill: 999px;
  --fl-section-y: clamp(4rem, 9vw, 8rem);

  /* nadpisania Bootstrapa */
  --bs-body-font-family: var(--fl-body);
  --bs-body-color: var(--fl-ink);
  --bs-body-bg: var(--fl-cream);
  --bs-link-color-rgb: 44, 29, 47;
  --bs-border-color: var(--fl-line);
  --bs-emphasis-color: var(--fl-plum);
}

/* --------------------------------------------------------------- baza --- */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--fl-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fl-ink);
  background: var(--fl-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--fl-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fl-plum);
}

h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3; }

/* sygnaturowy element marki — kursywa serif w lżejszej wadze.
   Występuje TYLKO w H1 hero i w H2 sekcji metody. Nie nadużywać. */
.fl-accent { font-style: italic; font-weight: 400; }

.fl-eyebrow {
  display: block;
  font-family: var(--fl-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fl-tan-ink);
  margin-bottom: 1.25rem;
}

/* lead kursywą serif — sekcja „Dla kogo" i podobne */
.fl-lead-serif {
  font-family: var(--fl-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.6;
  color: var(--fl-plum);
  max-width: 52ch;
  margin-inline: auto;
}

.fl-section { padding-block: var(--fl-section-y); }
/* kotwice nie chowają się pod sticky nawigacją */
main section[id] { scroll-margin-top: 96px; }
.fl-band-cream { background: var(--fl-cream); }
.fl-band-sand  { background: var(--fl-sand); }

.fl-muted { color: color-mix(in srgb, var(--fl-ink) 72%, transparent); }
.fl-small { font-size: .9rem; }

:focus-visible {
  outline: 2px solid var(--fl-plum);
  outline-offset: 3px;
  border-radius: 4px;
}
/* na ciemnych powierzchniach ring w kolorze śliwki byłby niewidoczny (1:1) */
.fl-card--accent :focus-visible,
.fl-band-plum :focus-visible,
.fl-energia :focus-visible,
.fl-footer :focus-visible { outline-color: var(--fl-cream); }

/* ---------------------------------------------------------- przyciski --- */

.fl-btn-primary,
.fl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: .75rem 1.75rem;
  border-radius: var(--fl-radius-pill);
  font-family: var(--fl-body);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.fl-btn-primary {
  background: var(--fl-plum);
  border: 1px solid var(--fl-plum);
  color: var(--fl-cream);
}
.fl-btn-primary:hover,
.fl-btn-primary:focus-visible {
  background: var(--fl-plum-deep);
  border-color: var(--fl-plum-deep);
  color: var(--fl-cream);
}

.fl-btn-ghost {
  background: transparent;
  border: 1px solid var(--fl-plum);
  color: var(--fl-plum);
}
.fl-btn-ghost:hover,
.fl-btn-ghost:focus-visible {
  background: var(--fl-plum);
  color: var(--fl-cream);
}

/* strzałka przesuwa się o 2px w hoverze */
.fl-arrow { transition: transform .2s ease; }
.fl-btn-primary:hover .fl-arrow,
.fl-btn-primary:focus-visible .fl-arrow,
.fl-btn-ghost:hover .fl-arrow { transform: translateX(2px); }

.fl-btn-sm { min-height: 42px; padding: .5rem 1.4rem; font-size: .875rem; }

/* -------------------------------------------------------------- nawi. --- */

.fl-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--fl-cream);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.fl-nav.is-scrolled {
  background: color-mix(in srgb, var(--fl-cream) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--fl-line), 0 8px 24px -18px rgba(63, 14, 36, .45);
}
/* brandbook: minimalna szerokość poziomego logo w internecie = 200 px,
   pole ochronne = co najmniej wysokość sygnetu (~23 px przy tej skali) */
.fl-nav .navbar-brand img { width: 230px; height: auto; }
.fl-nav .navbar-brand { padding-block: .25rem; margin-right: 1.75rem; }
@media (max-width: 575.98px) {
  /* brandbookowe minimum dla wersji poziomej to 200 px — poniżej zeszlibyśmy na sam sygnet */
  .fl-nav .navbar-brand img { width: 200px; }
}

.fl-nav .nav-link {
  font-size: .925rem;
  color: var(--fl-ink);
  padding-inline: .85rem;
  transition: color .2s ease;
}
.fl-nav .nav-link:hover,
.fl-nav .nav-link:focus-visible,
.fl-nav .nav-link.active { color: var(--fl-plum); }

.fl-burger {
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-pill);
  background: transparent;
  width: 46px; height: 42px;
  display: grid; place-items: center;
}
.fl-burger span,
.fl-burger span::before,
.fl-burger span::after {
  content: "";
  display: block;
  width: 18px; height: 1.5px;
  background: var(--fl-plum);
  position: relative;
}
.fl-burger span::before { position: absolute; top: -6px; }
.fl-burger span::after  { position: absolute; top: 6px; }

.offcanvas.fl-offcanvas { background: var(--fl-cream); width: min(86vw, 340px); }
.fl-offcanvas .nav-link {
  font-family: var(--fl-display);
  font-size: 1.3rem;
  color: var(--fl-plum);
  padding-block: .55rem;
}

/* --------------------------------------------------------------- hero --- */

.fl-hero {
  position: relative;
  background: var(--fl-cream);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: 0;
  overflow: hidden;
}
/* ciepła poświata za portretem — prawa strona kadru */
.fl-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% 10% 35%;
  background: radial-gradient(60% 60% at 60% 45%, var(--fl-blush) 0%, rgba(239, 227, 218, 0) 70%);
  pointer-events: none;
}
.fl-hero > .container { position: relative; z-index: 1; }

/* H1 hero łamie się dokładnie tam, gdzie w projekcie (po „DISC D3,") —
   rozmiar dobrany tak, żeby dłuższa druga linia mieściła się w kolumnie */
.fl-hero h1 { font-size: clamp(1.9rem, 3.7vw, 3.4rem); margin-bottom: 1.5rem; }
.fl-hero h1 .fl-h1-line2 { font-weight: 500; }

.fl-hero-lead {
  font-size: 1.0625rem;
  max-width: 62ch;
  margin-bottom: 2.25rem;
}
/* na dużych ekranach o łamaniu decyduje <br> z projektu, nie szerokość kolumny */
@media (min-width: 1200px) { .fl-hero-lead { max-width: none; } }

.fl-hero-cta { display: flex; flex-wrap: wrap; gap: .875rem; }

/* portret w organicznym blobie (nie koło, nie prostokąt) */
.fl-portrait { position: relative; max-width: 560px; margin-inline: auto; }
@media (min-width: 992px) { .fl-portrait { margin-right: -3rem; } }
.fl-portrait::before {
  content: "";
  position: absolute;
  inset: -6% -4% 4% -8%;
  background: var(--fl-blush);
  border-radius: 54% 46% 38% 62% / 46% 58% 42% 54%;
  z-index: 0;
}
.fl-portrait-shape {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 62% 38% 47% 53% / 55% 48% 52% 45%;
  aspect-ratio: 1 / 1.06;
}
.fl-portrait-shape img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 48% 6%;
  display: block;
}
/* delikatny cień u dołu kadru — pod podpis */
.fl-portrait-shape::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(35, 8, 20, .55), rgba(35, 8, 20, 0));
  pointer-events: none;
}
.fl-signature {
  position: absolute;
  z-index: 2;
  left: 12%;
  right: 12%;
  bottom: 8%;
  text-align: center;
  font-family: var(--fl-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--fl-cream);
  text-shadow: 0 2px 14px rgba(63, 14, 36, .55), 0 1px 3px rgba(0, 0, 0, .35);
}

.fl-proof {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.1rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--fl-line);
  font-size: .85rem;
  font-weight: 500;
  color: var(--fl-tan-ink);
  text-align: center;
}
.fl-proof span + span::before { content: " · "; }

/* --------------------------------------------------------------- listy --- */

.fl-list { list-style: none; padding: 0; margin: 0; }
.fl-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.fl-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fl-plum);
}
.fl-list-star li::before { content: "✦"; }

.fl-list-check li {
  font-family: var(--fl-display);
  font-style: italic;
  font-size: 1.075rem;
  color: var(--fl-plum);
  margin-bottom: 1rem;
}
.fl-list-check li::before { content: "✓"; font-style: normal; }

.fl-subhead {
  font-family: var(--fl-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fl-plum);
  margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------- koło DISC --- */

.fl-disc { max-width: 520px; margin-inline: auto; width: 100%; height: auto; display: block; }

/* etykiety koła DISC D3 — style trzymamy tu, nie w <style> wewnątrz SVG */
.fl-d-letter { font-family: var(--fl-display); font-size: 46px; fill: var(--fl-cream); text-anchor: middle; dominant-baseline: middle; }
.fl-d-name   { font-family: var(--fl-body); font-size: 13px; letter-spacing: .06em; fill: rgba(244, 235, 222, .85); text-anchor: middle; }
.fl-d-role   { font-family: var(--fl-body); font-size: 15px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; fill: var(--fl-tan-ink); text-anchor: middle; dominant-baseline: middle; }
.fl-d-layer  { font-family: var(--fl-body); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; fill: var(--fl-plum); text-anchor: middle; }
.fl-d-core   { font-family: var(--fl-body); font-size: 13px; font-weight: 600; letter-spacing: .12em; fill: var(--fl-plum); text-anchor: middle; }
.fl-d-core-sub { font-family: var(--fl-display); font-style: italic; font-size: 12.5px; fill: var(--fl-tan-ink); text-anchor: middle; }

.fl-disc-podpis {
  max-width: 46ch;
  margin: 1.25rem auto 0;
  font-size: .82rem;
  line-height: 1.6;
  text-align: center;
  color: color-mix(in srgb, var(--fl-ink) 78%, transparent);
}

/* -------------------------------------------------------------- proces --- */

.fl-steps { counter-reset: krok; list-style: none; padding: 0; margin: 0; }
.fl-step {
  position: relative;
  padding-left: 4.25rem;
  padding-bottom: 2.5rem;
}
.fl-step::before {
  counter-increment: krok;
  content: "0" counter(krok);
  position: absolute;
  left: 0;
  top: -.15rem;
  width: 2.75rem;
  text-align: center;
  font-family: var(--fl-display);
  font-size: 1.35rem;
  color: var(--fl-tan-ink);
}
/* pionowa nitka łącząca kroki */
.fl-step::after {
  content: "";
  position: absolute;
  left: 1.375rem;
  top: 2rem;
  bottom: .35rem;
  width: 1px;
  background: var(--fl-line);
}
.fl-step:last-child { padding-bottom: 0; }
.fl-step:last-child::after { display: none; }
.fl-step h3 { margin-bottom: .35rem; }
.fl-step p { margin-bottom: 0; }

.fl-note {
  border: 1px solid var(--fl-line);
  border-radius: 1.25rem;
  background: var(--fl-cream);
  padding: 1.75rem 1.9rem;
}
.fl-band-cream .fl-note { background: var(--fl-sand); }

/* -------------------------------------------------------------- o mnie --- */

.fl-photo-soft {
  overflow: hidden;
  border-radius: 46% 54% 52% 48% / 40% 42% 58% 60%;
  aspect-ratio: 1 / 1.15;
}
.fl-photo-soft img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fl-cert {
  border: 1px solid var(--fl-line);
  border-radius: .75rem;
  max-width: 260px;
  width: 100%;
  height: auto;
  background: #fff;
}

.fl-cert-label {
  font-family: var(--fl-display);
  font-size: 1.05rem;
  color: var(--fl-plum);
  max-width: 46ch;
}

.fl-sign-off {
  font-family: var(--fl-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--fl-plum);
}

/* ------------------------------------------------------------- pakiety --- */

.fl-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--fl-cream);
  border: 1px solid var(--fl-line);
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.fl-band-cream .fl-card { background: #fff; }
.fl-card.fl-card--accent { background: var(--fl-plum); border-color: var(--fl-plum); }
.fl-card.fl-card--accent h3,
.fl-card.fl-card--accent .fl-price,
.fl-card.fl-card--accent .fl-list li { color: var(--fl-cream); }
.fl-card.fl-card--accent .fl-list li::before { color: var(--fl-blush); }
.fl-card.fl-card--accent .fl-eyebrow,
.fl-card.fl-card--accent .fl-price small { color: var(--fl-blush); }
.fl-card.fl-card--accent .fl-btn-ghost { border-color: var(--fl-cream); color: var(--fl-cream); }
.fl-card.fl-card--accent .fl-btn-ghost:hover { background: var(--fl-cream); color: var(--fl-plum); }

.fl-price {
  font-family: var(--fl-display);
  font-size: 2rem;
  color: var(--fl-plum);
  margin-block: .35rem 1.25rem;
}
.fl-price small { font-size: .8rem; font-family: var(--fl-body); color: var(--fl-tan-ink); display: block; }

.fl-card .fl-list li { margin-bottom: .75rem; font-size: .95rem; }
.fl-card .fl-list li::before { content: "·"; font-size: 1.4rem; line-height: 1; }
.fl-card .fl-list { margin-bottom: 1.75rem; }
.fl-card .fl-btn-primary,
.fl-card .fl-btn-ghost { margin-top: auto; width: 100%; }

/* ----------------------------------------------------------------- FAQ --- */

.fl-faq .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--fl-line);
}
.fl-faq .accordion-button {
  font-family: var(--fl-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--fl-plum);
  background: transparent;
  padding: 1.35rem 2.5rem 1.35rem 0;
  box-shadow: none;
}
/* Bootstrap: .accordion-button:focus{outline:0} ma specyficzność (0,2,0) i wygrywa
   z globalnym :focus-visible — trzeba oddać ring z równie mocnego selektora */
.fl-faq .accordion-button:focus-visible {
  outline: 2px solid var(--fl-plum);
  outline-offset: 2px;
  border-radius: 6px;
}
.fl-faq .accordion-button:not(.collapsed) { color: var(--fl-plum); background: transparent; }
/* domyślną ikonę Bootstrapa podmieniamy na strzałkę */
.fl-faq .accordion-button::after {
  width: 1rem; height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235A1533' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-size: 1rem;
}
.fl-faq .accordion-body { padding: 0 2.5rem 1.6rem 0; }
.fl-faq .accordion-body .fl-list li { margin-bottom: .5rem; font-size: .95rem; }
.fl-faq .accordion-body .fl-list li::before { content: "·"; font-size: 1.4rem; line-height: 1; }

/* ------------------------------------------------------------- kontakt --- */

.fl-form .form-label {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--fl-plum);
  margin-bottom: .35rem;
}
.fl-form .form-control {
  border: 1px solid var(--fl-line);
  border-radius: .85rem;
  background: var(--fl-cream);
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--fl-ink);
}
.fl-band-sand .fl-form .form-control { background: #fff; }
.fl-form .form-control:focus {
  border-color: var(--fl-plum);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fl-plum) 12%, transparent);
  background: #fff;
}
.fl-form .form-check-input { border-color: var(--fl-tan); margin-top: .3rem; }
.fl-form .form-check-input:checked { background-color: var(--fl-plum); border-color: var(--fl-plum); }
.fl-form .form-check-label { font-size: .8rem; line-height: 1.55; }
.fl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fl-form-msg { display: none; margin-top: 1rem; font-size: .9rem; border-radius: .85rem; padding: .85rem 1.1rem; }
.fl-form-msg.is-ok  { display: block; background: color-mix(in srgb, var(--fl-blush) 60%, #fff); color: var(--fl-plum); }
.fl-form-msg.is-err { display: block; background: #FBEAEA; color: #8A1F1F; }

.fl-contact-alt a { color: var(--fl-plum); text-decoration: none; border-bottom: 1px solid var(--fl-line); }
.fl-contact-alt a:hover { border-color: var(--fl-plum); }
.fl-contact-phone {
  font-family: var(--fl-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--fl-plum);
  text-decoration: none;
  border: 0;
}

/* -------------------------------------------------------------- stopka --- */

.fl-footer {
  background: var(--fl-plum-deep);
  color: color-mix(in srgb, var(--fl-cream) 78%, transparent);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .9rem;
}
/* brandbook: w stopce używamy samego sygnetu albo krótkiego zapisu „FemmeLead",
   nie pełnego lockupu (deskryptor byłby nieczytelny) */
.fl-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--fl-display);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.15;
  color: var(--fl-cream);
}
.fl-footer-brand img { width: 56px; height: 56px; }
.fl-footer a { color: var(--fl-cream); text-decoration: none; }
.fl-footer a:hover { text-decoration: underline; }
.fl-footer hr { border-color: rgba(251, 248, 245, .18); opacity: 1; }
.fl-footer .fl-footer-fine { font-size: .8rem; color: rgba(251, 248, 245, .6); }

/* ------------------------------------------------- ciemny pas (śliwka) --- */

.fl-band-plum {
  background: var(--fl-plum);
  color: color-mix(in srgb, var(--fl-cream) 86%, transparent);
}
.fl-band-plum h2 { color: var(--fl-cream); }
.fl-band-plum .fl-eyebrow { color: var(--fl-gold-light); }

/* zdanie-klucz w ciemnym pasie */
.fl-pull {
  font-family: var(--fl-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--fl-gold-light);
  margin-block: 2rem;
}

/* ------------------------------------- „czym ten mentoring NIE jest" --- */

.fl-negative {
  border: 1px dashed var(--fl-line);
  border-radius: 1.25rem;
  padding: 1.75rem 1.9rem;
  background: transparent;
}
.fl-list-x li::before { content: "×"; color: var(--fl-tan-ink); font-size: 1.1rem; }
.fl-list-x li { margin-bottom: .5rem; }
@media (min-width: 768px) {
  .fl-negative .fl-list-x { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 2rem; }
  .fl-negative .fl-list-x li { margin-bottom: 0; }
}

.fl-closing {
  font-family: var(--fl-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--fl-plum);
  max-width: 46ch;
  margin-inline: auto;
}

/* --------------------------------------------- pas „Energia Strefy" --- */

.fl-energia {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 40vw, 520px);
  background: var(--fl-plum);
}
.fl-energia-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 30%;
  z-index: -2;
}
.fl-energia::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(28, 17, 30, .88) 0%, rgba(28, 17, 30, .72) 45%, rgba(28, 17, 30, .55) 100%);
}
.fl-energia-tresc {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  color: color-mix(in srgb, var(--fl-cream) 88%, transparent);
}
.fl-energia-tresc h2 { color: var(--fl-cream); }
.fl-energia-tresc .fl-eyebrow { color: var(--fl-gold-light); }

/* ---------------------------------------------------------- animacje --- */


/* bez JS treść jest po prostu widoczna — animacja wejścia to dodatek, nie warunek */
.fl-js .fl-rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fl-js .fl-rv.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------- mobile --- */

@media (max-width: 991.98px) {
  .fl-hero { padding-top: 2rem; }
  .fl-hero-cta .fl-btn-primary,
  .fl-hero-cta .fl-btn-ghost { width: 100%; }
  .fl-hero-lead { max-width: none; }
  .fl-portrait { max-width: 420px; margin-bottom: 2.5rem; }
  .fl-signature { bottom: 6%; }
}

@media (max-width: 575.98px) {
  .fl-list li { padding-left: 1.6rem; margin-bottom: 1.25rem; }
  .fl-step { padding-left: 3.5rem; }
  .fl-proof { text-align: left; }
}

/* ---------------------------- WARIANT B hero: sylwetka wycięta z tła --- */
/* NIEUŻYWANE na produkcji — 2026-08-19 wybrany został wariant A (kadr studyjny).
   Blok zostaje razem z assets/img/hero-cutout.webp, żeby dało się wrócić do wersji B
   przez `python3 build.py --produkcja B`. Jeśli wariant B ma odpaść na stałe:
   usuń ten blok i plik hero-cutout.webp. */
.fl-portrait--cut .fl-portrait-shape {
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
}
.fl-portrait--cut .fl-portrait-shape::after { display: none; }
.fl-portrait--cut .fl-portrait-shape img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(74vh, 620px);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(28, 17, 30, .22));
}
.fl-portrait--cut::before {
  inset: 8% -12% 14% -14%;
  border-radius: 52% 48% 42% 58% / 44% 56% 44% 56%;
  background: var(--fl-blush);
}
.fl-portrait--cut .fl-signature {
  color: var(--fl-plum);
  text-shadow: none;
  bottom: 2%;
  left: 6%;
  right: auto;
  text-align: left;
}

/* ------------------------------- pasek wyboru wariantu (tylko podgląd) --- */
/* generowany przez build.py; `build.py --produkcja X` go nie wstawia */

.fl-switch {
  position: fixed;
  z-index: 1080;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .5rem .4rem .9rem;
  border-radius: var(--fl-radius-pill);
  background: color-mix(in srgb, var(--fl-plum-deep) 94%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -12px rgba(28, 17, 30, .6);
  font-size: .82rem;
  white-space: nowrap;
}
.fl-switch-etykieta {
  color: var(--fl-gold-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 500;
}
.fl-switch-opcja {
  padding: .38rem .85rem;
  border-radius: var(--fl-radius-pill);
  color: color-mix(in srgb, var(--fl-cream) 82%, transparent);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.fl-switch-opcja:hover { background: rgba(244, 235, 222, .12); color: var(--fl-cream); }
.fl-switch-opcja.is-aktywna { background: var(--fl-gold-dark); color: var(--fl-cream); }
.fl-switch :focus-visible { outline-color: var(--fl-cream); }

@media (max-width: 575.98px) {
  .fl-switch { left: .75rem; right: .75rem; transform: none; justify-content: center; font-size: .75rem; }
  .fl-switch-etykieta { display: none; }
}
@media print { .fl-switch { display: none; } }

/* -------------------------------- ekran wyboru wariantu (index.html) --- */

.fl-wybor-karta {
  display: block;
  height: 100%;
  text-decoration: none;
  border: 1px solid var(--fl-line);
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--fl-cream);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fl-wybor-karta:hover,
.fl-wybor-karta:focus-visible {
  transform: translateY(-4px);
  border-color: var(--fl-gold-dark);
  box-shadow: 0 22px 44px -26px rgba(28, 17, 30, .55);
}
.fl-wybor-karta img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--fl-line); }
.fl-wybor-opis { padding: 1.5rem 1.75rem 1.75rem; }
.fl-wybor-opis h2 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin-bottom: .5rem; }
.fl-wybor-opis p { margin-bottom: 0; font-size: .95rem; }
.fl-wybor-link { margin-top: 1rem; color: var(--fl-tan-ink); font-weight: 500; font-size: .9rem; }
.fl-wybor-uwaga { max-width: 62ch; margin-inline: auto; }
.fl-wybor-uwaga code { color: var(--fl-plum); background: color-mix(in srgb, var(--fl-blush) 60%, transparent); padding: .1rem .35rem; border-radius: .3rem; }
