/* =========================================================================
   KIERUNEK PIĄTKA — arkusz stylów
   Paleta i typografia zgodne z 03_Identyfikacja/Paleta_i_fonty.txt
   ========================================================================= */

/* --- 1. ZMIENNE --------------------------------------------------------- */

:root {
  --teal-dark: #0B7C89;
  --teal-text: #096A74;
  --teal: #16BAC5;
  --teal-pale: #E4F5F7;
  --coral-pale: #FFEFE8;
  --coral-text: #8A3800;
  --yellow-pale: #FFF6DE;
  --yellow-text: #6B4A00;
  --coral: #FF6B35;
  --coral-dark: #E85520;
  --coral-ink: #3D1000;
  --yellow: #FFC93C;
  --bg: #F2FBFC;
  --white: #FFFFFF;
  --ink: #123B45;
  --ink-soft: #546C74;
  --border: #D6E7EA;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --wrap: 1140px;
  --wrap-narrow: 760px;

  --shadow-sm: 0 1px 2px rgba(18, 59, 69, .06);
  --shadow: 0 4px 16px rgba(18, 59, 69, .07);
  --shadow-lg: 0 12px 36px rgba(18, 59, 69, .10);

  --font-head: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --z-nav: 50;
  --z-bar: 60;
}

/* --- 2. RESET ----------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

ul { margin: 0 0 var(--space-2); padding-left: 1.15rem; }
li { margin-bottom: .35rem; }

strong { font-weight: 600; }

/* --- 3. DOSTĘPNOŚĆ ------------------------------------------------------ */

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

.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;
}

/* --- 4. UKŁAD ----------------------------------------------------------- */

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: var(--space-6) 0; }
.section--tight { padding: var(--space-5) 0; }
.section--pale { background: var(--bg); }
.section--mint { background: var(--teal-pale); }
.section--warm { background: var(--yellow-pale); }
.section--teal { background: var(--teal-dark); color: #fff; }
.section--teal h2, .section--teal h3 { color: #fff; }

.section-head { max-width: 660px; margin-bottom: var(--space-4); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--teal-text);
  background: var(--teal-pale);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-2);
}
.section--teal .eyebrow { background: rgba(255,255,255,.14); color: var(--yellow); }

.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section--teal .lead { color: #F0F9FA; }

.grid { display: grid; gap: var(--space-3); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* --- 5. PRZYCISKI ------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.btn--primary { background: var(--coral); color: var(--coral-ink); }
.btn--primary:hover { background: var(--coral-dark); color: var(--coral-ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--teal-pale); color: var(--ink); border-color: var(--teal); }

.btn--white { background: #fff; color: var(--teal-dark); }
.btn--white:hover { background: var(--teal-pale); color: var(--teal-dark); }

.btn--wa { background: #25D366; color: #06301A; }
.btn--wa:hover { background: #1FBB59; color: #06301A; }

.btn--block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* --- 6. NAWIGACJA ------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(6px);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 76px;
}

.nav__logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex: none; }
.nav__logo img { width: 42px; height: 42px; border-radius: 11px; }
.nav__logo span { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--ink); line-height: 1.1; }
.nav__logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); }

.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav__links a {
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .2s ease;
}
.nav__links a:hover { background: var(--teal-pale); }
.nav__links a[aria-current="page"] { color: var(--teal-dark); font-weight: 700; background: var(--teal-pale); }

.nav__cta { margin-left: .5rem; min-height: 46px; padding: .6rem 1.25rem; font-size: .95rem; }

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--teal-pale);
  border: 0; border-radius: var(--radius-sm);
  cursor: pointer; color: var(--ink);
}

@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    padding: var(--space-2) 1.25rem calc(var(--space-3) + env(safe-area-inset-bottom));
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .85rem .8rem; font-size: 1.05rem; }
  .nav__cta { margin: var(--space-1) 0 0; }
}

/* --- 7. HERO ------------------------------------------------------------ */

.hero {
  background: var(--teal-pale);
  padding: var(--space-6) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero > * { position: relative; z-index: 1; }

/* Ozdobne kształty TYLKO na stronie głównej — na podstronach
   nagłówek jest niski i blob zajmowałby go w całości. */
.hero--home::before {
  content: "";
  position: absolute;
  top: -140px; right: -120px;
  width: 460px; height: 460px;
  background: #D9F1F4;
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
  z-index: -1;
  pointer-events: none;
}
.hero--home::after {
  content: "";
  position: absolute;
  bottom: -110px; left: -70px;
  width: 240px; height: 240px;
  background: var(--yellow);
  opacity: .13;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero--home::before { top: -180px; right: -180px; width: 380px; height: 380px; }
  .hero--home::after { display: none; }
}

.hero__grid { display: grid; gap: var(--space-5); grid-template-columns: 1.15fr .85fr; align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: var(--space-3); }
.hero h1 mark { background: linear-gradient(transparent 62%, var(--yellow) 62%); color: inherit; padding: 0 .1em; }
.hero__lead { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: var(--space-3); max-width: 52ch; }

.hero__note { margin-top: var(--space-2); font-size: .95rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.hero__note svg { width: 18px; height: 18px; color: var(--teal-dark); flex: none; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--space-3); }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .4rem .9rem;
  font-size: .88rem; font-weight: 500;
}
.badge svg { width: 16px; height: 16px; color: var(--teal-dark); }

/* Karta postępów w hero */
.progress-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.progress-card__head {
  background: var(--teal-dark);
  color: #fff;
  padding: .95rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.progress-card__tag {
  background: var(--yellow); color: #4A3600;
  font-size: .72rem; font-weight: 800;
  padding: .18rem .6rem; border-radius: var(--radius-pill);
}
.progress-card__body { padding: 1.25rem; }
.progress-row { margin-bottom: 1.1rem; }
.progress-row:last-child { margin-bottom: 0; }
.progress-row__top { display: flex; justify-content: space-between; align-items: baseline; font-size: .9rem; margin-bottom: .4rem; }
.progress-row__label { color: var(--ink-soft); }
.progress-row__val { font-weight: 700; font-variant-numeric: tabular-nums; }
.progress-track { height: 10px; background: var(--teal-pale); border-radius: var(--radius-pill); overflow: hidden; }
.progress-fill { height: 100%; background: var(--teal); border-radius: var(--radius-pill); }
.progress-card__foot { padding: .9rem 1.25rem; border-top: 1px solid var(--border); font-size: .84rem; color: var(--ink-soft); background: var(--bg); }

/* Pasek faktów pod nagłówkiem */
.factbar-wrap { margin-top: calc(var(--space-4) * -1); position: relative; z-index: 2; }
.factbar {
  display: grid;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact { background: #fff; padding: 1.1rem 1.25rem; }
.fact strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: var(--teal-dark); line-height: 1.15; }
.fact span { font-size: .9rem; color: var(--ink-soft); }

/* --- 8. KARTY ----------------------------------------------------------- */

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card--link:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--teal-pale);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.card__icon svg { width: 26px; height: 26px; }

.card--coral .card__icon { background: var(--coral-pale); color: var(--coral-text); }
.card--yellow .card__icon { background: var(--yellow-pale); color: var(--yellow-text); }
.card--coral:hover { border-color: var(--coral); }
.card--yellow:hover { border-color: var(--yellow); }

.card--accent { border-top: 5px solid var(--teal); }
.card--accent.card--coral { border-top-color: var(--coral); }
.card--accent.card--yellow { border-top-color: var(--yellow); }

.card__more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .95rem; margin-top: var(--space-1); }
.card__more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card--link:hover .card__more svg { transform: translateX(3px); }

/* Kroki */
.step { position: relative; padding-left: 4.25rem; }
.step__num {
  position: absolute; left: 0; top: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--teal-dark); color: var(--yellow);
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}

/* --- 9. KOREPETYTORZY --------------------------------------------------- */

.tutor { display: grid; grid-template-columns: 132px 1fr; gap: var(--space-3); align-items: start; }
@media (max-width: 520px) { .tutor { grid-template-columns: 1fr; } }

.tutor__photo {
  width: 132px; height: 132px;
  border-radius: var(--radius-lg);
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: var(--teal-dark);
  object-fit: cover;
  overflow: hidden;
}
.tutor__role { font-size: .88rem; font-weight: 600; color: var(--teal-text); margin-bottom: .35rem; }
.tutor__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: var(--space-2); }
.tag {
  font-size: .82rem; font-weight: 500;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: .28rem .75rem;
}

/* --- 10. CENNIK --------------------------------------------------------- */

.price-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.price-table caption { text-align: left; color: var(--ink-soft); font-size: .92rem; padding-bottom: var(--space-2); }
.price-table th, .price-table td { padding: .95rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table thead th { background: var(--teal-dark); color: #fff; font-family: var(--font-head); font-size: .9rem; }
.price-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.price-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.price-table td:nth-child(n+2) { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-table tbody tr:nth-child(even) { background: var(--bg); }
.price-table tr.is-featured { background: #FFF7E8 !important; }
.price-table small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .87rem; margin-top: .15rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pack {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-3);
}
.pack--featured { border: 2px solid var(--coral); }
.pack__flag {
  display: inline-block; align-self: flex-start;
  background: var(--coral); color: var(--coral-ink);
  font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: var(--radius-pill); margin-bottom: .75rem;
}
.pack__price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--teal-dark); margin: .3rem 0; }
.pack__price small { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.pack ul { list-style: none; padding: 0; margin: var(--space-2) 0; }
.pack li { display: flex; gap: .55rem; font-size: .95rem; margin-bottom: .55rem; }
.pack li svg { width: 18px; height: 18px; color: var(--teal-dark); flex: none; margin-top: .28rem; }
.pack .btn { margin-top: auto; }

/* Karty poziomów cenowych */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-3); }

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--top { border: 2px solid var(--coral); padding-top: calc(var(--space-3) + 6px); }
.price-card__flag {
  position: absolute; top: -13px; left: var(--space-3);
  background: var(--coral); color: var(--coral-ink);
  font-family: var(--font-head); font-weight: 800;
  font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: var(--radius-pill);
}
.price-card__level { font-size: .92rem; color: var(--ink-soft); margin-bottom: .3rem; }
.price-card__amount { font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; color: var(--teal-dark); line-height: 1.05; }
.price-card__amount small { font-family: var(--font-body); font-weight: 500; font-size: .92rem; color: var(--ink-soft); margin-left: .35rem; }
.price-card hr { border: 0; border-top: 1px solid var(--teal-pale); margin: var(--space-2) 0; }
.price-card__row { display: flex; justify-content: space-between; gap: .75rem; font-size: .93rem; margin-bottom: .45rem; }
.price-card__row span:first-child { color: var(--ink-soft); }
.price-card__row span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.price-card__note { font-size: .88rem; color: var(--ink-soft); margin-top: auto; padding-top: var(--space-2); }

/* Zwijana pełna tabela */
.rozwin {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  margin-top: var(--space-3);
  overflow: hidden;
}
.rozwin summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  position: relative; color: var(--ink);
}
.rozwin summary::-webkit-details-marker { display: none; }
.rozwin summary small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .87rem; color: var(--ink-soft); margin-top: .12rem; }
.rozwin summary:hover { background: var(--teal-pale); }
.rozwin summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 1.35rem;
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--teal-dark);
  border-bottom: 2.5px solid var(--teal-dark);
  transform: rotate(45deg); transition: transform .2s ease;
}
.rozwin[open] summary::after { transform: rotate(-135deg); top: 1.55rem; }
.rozwin__body { padding: 0 1.25rem 1.25rem; background: #fff; }

/* --- 11. FAQ ------------------------------------------------------------ */

.faq { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: .7rem; overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg); }
.faq summary::after {
  content: ""; position: absolute; right: 1.25rem; top: 1.45rem;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--teal-dark);
  border-bottom: 2.5px solid var(--teal-dark);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: rotate(-135deg); top: 1.65rem; }
.faq__body { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); }
.faq__body p:last-child { margin-bottom: 0; }

/* --- 12. FORMULARZ ------------------------------------------------------ */

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}
@media (max-width: 560px) { .form-card { padding: var(--space-3); } }

.field { margin-bottom: var(--space-2); }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .4rem; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .87rem; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem 1rem;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, background-color .2s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--teal); }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--teal-dark); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #C0392B; background: #FDF1F0; }

.field-error { display: block; color: #A32D2D; font-size: .88rem; font-weight: 500; margin-top: .35rem; }

.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.checkbox input { width: 22px; height: 22px; min-height: 22px; margin-top: .15rem; flex: none; accent-color: var(--teal-dark); }

.hp { position: absolute; left: -9999px; }

.alert { border-radius: var(--radius); padding: 1.1rem 1.25rem; margin-bottom: var(--space-3); font-weight: 500; }
.alert--ok { background: #E4F5F7; border: 1.5px solid var(--teal); color: #04434B; }
.alert--err { background: #FDF1F0; border: 1.5px solid #E7A9A2; color: #8A2019; }
.alert p:last-child { margin-bottom: 0; }

/* --- 13. STOPKA --------------------------------------------------------- */

.footer { background: var(--ink); color: #B6CDD3; padding: var(--space-5) 0 var(--space-3); }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--space-2); }
.footer a { color: #B6CDD3; text-decoration: none; }
.footer a:hover { color: var(--yellow); text-decoration: underline; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer__grid { display: grid; gap: var(--space-4); grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { display: flex; align-items: center; gap: .65rem; margin-bottom: var(--space-2); }
.footer__logo img { width: 44px; height: 44px; border-radius: 11px; }
.footer__logo span { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.1rem; }
.footer__bottom {
  margin-top: var(--space-4); padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: space-between;
  font-size: .88rem;
}
.social { display: flex; gap: .6rem; margin-top: var(--space-2); }
.social a {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease;
}
.social a:hover { background: var(--teal-dark); }
.social svg { width: 20px; height: 20px; }

/* --- 14. PASEK CTA NA TELEFONIE ---------------------------------------- */

.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: var(--z-bar);
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--border);
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .5rem;
  box-shadow: 0 -4px 20px rgba(18,59,69,.09);
}
.mobile-bar .btn { flex: 1; min-height: 50px; font-size: .95rem; padding: .7rem .8rem; }
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* --- 15. DROBIAZGI ------------------------------------------------------ */

.note {
  border-left: 4px solid var(--teal);
  background: var(--teal-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.25rem;
  color: #0A4E57;
}
.note strong { color: var(--ink); }

.crumbs { font-size: .88rem; color: var(--ink-soft); padding: var(--space-2) 0 0; }
.crumbs a { color: var(--ink-soft); }
.crumbs span { padding: 0 .35rem; }

.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--teal-dark); line-height: 1.1; }
.section--teal .stat__num { color: var(--yellow); }
.stat__label { font-size: .95rem; color: var(--ink-soft); }
.section--teal .stat__label { color: #F0F9FA; }

.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: .65rem; margin-bottom: .7rem; }
.checklist svg { width: 21px; height: 21px; color: var(--teal-dark); flex: none; margin-top: .3rem; }
.section--teal .checklist svg { color: var(--yellow); }

.divider { height: 1px; background: var(--border); border: 0; margin: var(--space-5) 0; }

.text-center { text-align: center; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }

@media print {
  .nav, .mobile-bar, .footer, .btn { display: none !important; }
  body { padding-bottom: 0; }
}
